/* wakastake.co — distinct theme: deep indigo/violet + neon lime/cyan (crypto-casino energy).
   Structurally different from wakarivalo: centered single-column hero + stat ticker,
   underline tab nav, numbered sections, two-column FAQ cards, horizontal related-strip. */

:root {
  --bg: #120a24;
  --surface: #1b1036;
  --surface-2: #241442;
  --border: #382465;
  --text: #f1edfa;
  --text-dim: #b3a4d6;
  --text-faint: #7a6ba3;
  --lime: #c6ff3d;
  --lime-dim: #9fd928;
  --cyan: #35e0d0;
  --cyan-dim: #23b3a6;
  --red: #ff5470;
  --radius: 4px;
  --radius-lg: 4px;
  --max: 1160px;
}

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

/* ---------- notice ---------- */
.notice-bar {
  background: var(--surface-2); border-bottom: 1px solid var(--border);
  font-size: 12px; color: var(--text-dim); text-align: center; padding: 9px 16px;
  letter-spacing: .2px;
}
.notice-bar strong { color: var(--lime); }

/* ---------- header: underline tabs, not pill nav ---------- */
header.site { border-bottom: 1px solid var(--border); background: var(--bg); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px 0; max-width: var(--max); margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 19px; text-decoration: none; text-transform: uppercase; letter-spacing: .5px; }
.logo .mark {
  width: 32px; height: 32px; border-radius: var(--radius);
  background: var(--lime); color: #0c1400;
  display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 15px;
}
.logo .name span { color: var(--cyan); }
nav.links { display: none; gap: 22px; font-size: 13.5px; color: var(--text-dim); margin-top: 18px; text-transform: uppercase; letter-spacing: .4px; font-weight: 700; }
nav.links a { text-decoration: none; color: inherit; padding-bottom: 16px; border-bottom: 2px solid transparent; }
nav.links a:hover { color: var(--text); }
nav.links a.active { color: var(--lime); border-bottom-color: var(--lime); }
.cta-btn {
  background: var(--lime); color: #0c1400; font-weight: 800; border: none;
  padding: 11px 20px; border-radius: var(--radius); font-size: 13.5px;
  text-decoration: none; white-space: nowrap; text-transform: uppercase; letter-spacing: .3px;
  margin-bottom: 12px;
}
@media (min-width: 860px) { nav.links { display: flex; } .nav { align-items: flex-end; } }

/* ---------- hero: centered single column + stat ticker ---------- */
.hero { padding: 56px 0 0; text-align: center; }
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; justify-content: center; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-dim); font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .3px;
  padding: 6px 12px; border-radius: var(--radius);
}
.badge.gold { color: var(--lime); border-color: rgba(198,255,61,.35); }
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); }

h1 { font-size: 30px; line-height: 1.18; margin: 0 auto 16px; letter-spacing: -.3px; max-width: 22ch; }
h1 .accent { color: var(--lime); }
.hero p.lead { color: var(--text-dim); font-size: 16px; margin: 0 auto 26px; max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.btn-primary {
  background: var(--lime); color: #0c1400; font-weight: 800; padding: 15px 26px; border-radius: var(--radius);
  text-decoration: none; font-size: 14.5px; text-transform: uppercase; letter-spacing: .4px;
}
.btn-secondary {
  background: transparent; border: 1px solid var(--border); color: var(--text);
  padding: 15px 26px; border-radius: var(--radius); text-decoration: none; font-size: 14.5px;
  text-transform: uppercase; letter-spacing: .4px;
}
.hero-disclosure { margin-top: 16px; font-size: 11.5px; color: var(--text-faint); }

/* stat ticker replaces the hero side-card */
.hero-card { margin-top: 40px; border-top: 1px solid var(--border); background: var(--surface); }
.hero-card h2 { display: none; }
.spec-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2,1fr); max-width: var(--max); margin: 0 auto; }
.spec-list li {
  display: flex; flex-direction: column; gap: 4px; padding: 18px 20px;
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.spec-list li:nth-child(even) { border-right: none; }
.spec-list .k { color: var(--text-faint); font-size: 11px; text-transform: uppercase; letter-spacing: .4px; order: 2; }
.spec-list .v { font-weight: 800; font-size: 15px; order: 1; }
.spec-list .v.gold { color: var(--lime); }
@media (min-width: 700px) {
  .spec-list { grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); }
  .spec-list li:nth-child(even) { border-right: 1px solid var(--border); }
  .spec-list li:last-child { border-right: none; }
}

/* ---------- answer box ---------- */
.answer-box {
  background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--cyan);
  border-radius: var(--radius); padding: 20px 22px; margin: 34px 0;
}
.answer-box p { margin: 0; color: var(--text); font-size: 15px; }
.answer-box .label { color: var(--cyan); font-weight: 800; font-size: 11.5px; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 8px; display:block; }

/* ---------- sections: numbered instead of eyebrow ---------- */
section.block { padding: 48px 0; border-top: 1px solid var(--border); counter-increment: sect; }
.wrap { counter-reset: none; }
body { counter-reset: sect; }
section.block:first-of-type { border-top: none; }
.eyebrow {
  color: var(--cyan); font-weight: 900; font-size: 12px; text-transform: uppercase; letter-spacing: .8px; margin: 0 0 10px;
}
.eyebrow::before { content: counter(sect, decimal-leading-zero) " — "; color: var(--lime); }
h2.title { font-size: 25px; margin: 0 0 16px; }
h3.sub { font-size: 17px; margin: 24px 0 8px; color: var(--text); }
p { color: var(--text-dim); margin: 0 0 14px; }

.grid-3 { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); grid-template-columns: 1fr; }
@media (min-width: 760px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.card { background: var(--surface); padding: 20px; }
.card .icon { font-size: 20px; margin-bottom: 10px; }
.card h4 { margin: 0 0 6px; font-size: 14.5px; color: var(--text); text-transform: uppercase; letter-spacing: .3px; }
.card p { margin: 0; font-size: 13px; }

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

.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; display: grid; gap: 0; border: 1px solid var(--border); }
.steps li { display: flex; gap: 16px; padding: 16px 18px; border-bottom: 1px solid var(--border); }
.steps li:last-child { border-bottom: none; }
.steps li::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  flex: none; color: var(--lime); font-weight: 900; font-size: 14px; font-family: monospace;
}
.steps .txt strong { display: block; color: var(--text); margin-bottom: 2px; text-transform: uppercase; font-size: 13.5px; letter-spacing: .2px; }
.steps .txt span { color: var(--text-dim); font-size: 13px; }

.trust-panel { border: 1px solid var(--border); display: grid; }
.trust-row { display: flex; gap: 16px; padding: 20px; border-bottom: 1px solid var(--border); background: var(--surface); }
.trust-row:last-child { border-bottom: none; }
.trust-row .ico {
  flex: none; width: 34px; height: 34px; border-radius: var(--radius);
  background: rgba(198,255,61,.1); color: var(--lime);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.trust-row h4 { margin: 0 0 4px; font-size: 14px; color: var(--text); text-transform: uppercase; letter-spacing: .2px; }
.trust-row p { margin: 0; font-size: 13.5px; }

/* ---------- FAQ: two-column cards, all open, not accordion ---------- */
.faq-grid { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); grid-template-columns: 1fr; }
@media (min-width: 760px) { .faq-grid { grid-template-columns: 1fr 1fr; } }
.faq-item { background: var(--surface); padding: 20px; }
.faq-item summary {
  cursor: default; font-weight: 800; font-size: 14.5px; color: var(--cyan);
  list-style: none; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .2px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: none; }
.faq-item p { margin: 0; font-size: 13.5px; color: var(--text-dim); }

/* ---------- related: horizontal strip ---------- */
.related-strip { display: flex; gap: 1px; overflow-x: auto; background: var(--border); border: 1px solid var(--border); }
.related-strip a {
  flex: 1 0 220px; background: var(--surface); padding: 18px; text-decoration: none;
}
.related-strip h4 { margin: 0 0 6px; font-size: 14px; color: var(--lime); text-transform: uppercase; }
.related-strip p { margin: 0; font-size: 12.5px; color: var(--text-dim); }

.cta-band { padding: 44px 0; border-top: 1px solid var(--border); background: var(--surface); text-align: center; }
.cta-band .title { margin-bottom: 8px; text-transform: uppercase; }
.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: 40px 0 26px; background: var(--surface); }
.footer-grid { display: grid; gap: 26px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-grid h5 { font-size: 12px; color: var(--cyan); text-transform: uppercase; letter-spacing: .5px; margin: 0 0 12px; }
.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: 13px; }
.footer-grid a:hover { color: var(--text); }
.legal-note { font-size: 11.5px; color: var(--text-faint); margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--border); line-height: 1.75; }
.age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border: 2px solid var(--red); color: var(--red);
  border-radius: var(--radius); font-weight: 900; font-size: 11px; margin-right: 8px; vertical-align: middle;
}
