/* wakarivalo.co — design tokens + base styles
   Mobile-first RWD. Palette: deep navy surface, warm gold accent (premium/trust),
   emerald for positive/CTA actions. */

:root {
  --bg: #0b0f1a;
  --surface: #131a2b;
  --surface-2: #1a2338;
  --border: #29334d;
  --text: #eef1f8;
  --text-dim: #a7b0c4;
  --text-faint: #6b7590;
  --gold: #e7b23a;
  --gold-dim: #b8892a;
  --emerald: #22c55e;
  --emerald-dim: #16a34a;
  --red: #ef4444;
  --radius: 14px;
  --radius-sm: 8px;
  --max: 1120px;
  --shadow: 0 8px 30px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* ---------- Top notice bar ---------- */
.notice-bar {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text-dim);
  text-align: center;
  padding: 8px 16px;
}
.notice-bar strong { color: var(--gold); }

/* ---------- Header ---------- */
header.site {
  position: sticky; top: 0; z-index: 40;
  background: rgba(11,15,26,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; max-width: var(--max); margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; letter-spacing: .2px; text-decoration: none; }
.logo .mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(145deg, var(--gold), var(--gold-dim));
  display: flex; align-items: center; justify-content: center;
  color: #1a1200; font-weight: 900; font-size: 16px;
}
.logo .name span { color: var(--gold); }
nav.links { display: none; gap: 28px; font-size: 14.5px; color: var(--text-dim); }
nav.links a { text-decoration: none; color: inherit; }
nav.links a:hover { color: var(--text); }
nav.links a.active { color: var(--gold); }
.cta-btn {
  background: linear-gradient(145deg, var(--emerald), var(--emerald-dim));
  color: #06210f; font-weight: 700; border: none;
  padding: 10px 18px; border-radius: 999px; font-size: 14px;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 6px 18px rgba(34,197,94,.25);
}
@media (min-width: 860px) { nav.links { display: flex; } }

/* ---------- Hero ---------- */
.hero {
  padding: 44px 0 36px;
  background:
    radial-gradient(60% 60% at 85% 0%, rgba(231,178,58,.14), transparent 60%),
    radial-gradient(50% 50% at 10% 10%, rgba(34,197,94,.10), transparent 60%);
}
.hero-grid { display: grid; gap: 28px; align-items: center; }
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-dim); font-size: 12.5px; font-weight: 600;
  padding: 6px 11px; border-radius: 999px;
}
.badge.gold { color: var(--gold); border-color: rgba(231,178,58,.35); }
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); }

h1 { font-size: 30px; line-height: 1.2; margin: 0 0 12px; letter-spacing: -.2px; }
h1 .accent { color: var(--gold); }
.hero p.lead { color: var(--text-dim); font-size: 16px; margin: 0 0 22px; max-width: 60ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-primary {
  background: linear-gradient(145deg, var(--emerald), var(--emerald-dim));
  color: #06210f; font-weight: 800; padding: 14px 22px; border-radius: 12px;
  text-decoration: none; font-size: 15px; box-shadow: 0 10px 24px rgba(34,197,94,.28);
}
.btn-secondary {
  background: transparent; border: 1px solid var(--border); color: var(--text);
  padding: 14px 22px; border-radius: 12px; text-decoration: none; font-size: 15px;
}
.hero-disclosure { margin-top: 14px; font-size: 12px; color: var(--text-faint); }

.hero-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow);
}
.hero-card h2 { font-size: 15px; margin: 0 0 12px; color: var(--text-dim); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.spec-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.spec-list li { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; border-bottom: 1px dashed var(--border); padding-bottom: 10px; }
.spec-list li:last-child { border-bottom: none; padding-bottom: 0; }
.spec-list .k { color: var(--text-dim); }
.spec-list .v { font-weight: 700; text-align: right; }
.spec-list .v.gold { color: var(--gold); }

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.15fr .85fr; }
  h1 { font-size: 40px; }
}

/* ---------- Quick answer box (AEO) ---------- */
.answer-box {
  background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm); padding: 18px 20px; margin: 28px 0;
}
.answer-box p { margin: 0; color: var(--text); font-size: 15px; }
.answer-box .label { color: var(--gold); font-weight: 800; font-size: 12.5px; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 8px; display:block; }

/* ---------- Sections ---------- */
section.block { padding: 40px 0; border-top: 1px solid var(--border); }
section.block:first-of-type { border-top: none; }
.eyebrow { color: var(--emerald); font-weight: 800; font-size: 12.5px; text-transform: uppercase; letter-spacing: .7px; margin: 0 0 8px; }
h2.title { font-size: 24px; margin: 0 0 14px; }
h3.sub { font-size: 17px; margin: 22px 0 8px; color: var(--text); }
p { color: var(--text-dim); margin: 0 0 14px; }

.grid-3 { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px;
}
.card .icon { font-size: 22px; margin-bottom: 10px; }
.card h4 { margin: 0 0 6px; font-size: 15.5px; color: var(--text); }
.card p { margin: 0; font-size: 13.5px; }

table.compare { width: 100%; border-collapse: collapse; font-size: 14px; margin: 10px 0 4px; }
table.compare th, table.compare td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); }
table.compare th { color: var(--text-dim); font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: .4px; }
table.compare td { color: var(--text); }
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); padding: 4px 8px; }

.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; display: grid; gap: 14px; }
.steps li { display: flex; gap: 14px; }
.steps li::before {
  counter-increment: step; content: counter(step);
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--gold); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px;
}
.steps .txt strong { display: block; color: var(--text); margin-bottom: 2px; }
.steps .txt span { color: var(--text-dim); font-size: 13.5px; }

/* ---------- Trust / legal ---------- */
.trust-panel {
  background: linear-gradient(145deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; display: grid; gap: 16px;
}
.trust-row { display: flex; align-items: flex-start; gap: 12px; }
.trust-row .ico {
  flex: none; width: 38px; height: 38px; border-radius: 10px;
  background: rgba(231,178,58,.12); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.trust-row h4 { margin: 0 0 4px; font-size: 14.5px; color: var(--text); }
.trust-row p { margin: 0; font-size: 13.5px; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--border); padding: 16px 0; }
.faq-item summary {
  cursor: pointer; font-weight: 700; font-size: 15px; color: var(--text);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--gold); font-size: 20px; font-weight: 800; flex: none; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 10px 0 0; font-size: 14.5px; }

/* ---------- Closing CTA band ---------- */
.cta-band {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
  text-align: center;
}
.cta-band .title { margin-bottom: 8px; }
.cta-band p { margin: 0 auto 18px; max-width: 48ch; }
.steps-cta { margin-top: 22px; }

/* ---------- Footer ---------- */
footer.site { border-top: 1px solid var(--border); padding: 32px 0 24px; background: var(--surface); }
.footer-grid { display: grid; gap: 22px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-grid h5 { font-size: 13px; color: var(--text-dim); text-transform: uppercase; letter-spacing: .5px; margin: 0 0 10px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-grid a { color: var(--text-dim); text-decoration: none; font-size: 13.5px; }
.footer-grid a:hover { color: var(--text); }
.legal-note { font-size: 12px; color: var(--text-faint); margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border); line-height: 1.7; }
.age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border: 2px solid var(--red); color: var(--red);
  border-radius: 8px; font-weight: 900; font-size: 12px; margin-right: 8px; vertical-align: middle;
}
