:root {
  --bg: #080b12;
  --panel: #101722;
  --panel-2: #152033;
  --text: #edf3f7;
  --muted: #a8b5c1;
  --line: rgba(255, 255, 255, .12);
  --brand: #f43f5e;
  --brand-2: #75e6ff;
  --gold: #f5c86a;
  --green: #38d996;
  --shadow: 0 24px 70px rgba(0, 0, 0, .38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(244, 63, 94, .20), transparent 31rem),
    radial-gradient(circle at 90% 10%, rgba(117, 230, 255, .16), transparent 28rem),
    linear-gradient(180deg, #080b12 0%, #10131a 52%, #080b12 100%);
  line-height: 1.65;
}

a { color: inherit; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(16px, 4vw, 48px);
  background: rgba(8, 11, 18, .82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brandmark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .02em;
}
.brandmark::before {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: conic-gradient(from 140deg, var(--brand), var(--brand-2), var(--gold), var(--brand));
  box-shadow: 0 0 28px rgba(244, 63, 94, .45);
}
.age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 26px;
  margin-left: 8px;
  border: 1px solid rgba(245, 200, 106, .5);
  border-radius: 999px;
  color: var(--gold);
  font-size: 12px;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.nav a {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, .08);
}

.wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: stretch;
  padding: clamp(38px, 7vw, 86px) 0 28px;
}
.hero-copy {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(140deg, rgba(21, 32, 51, .92), rgba(16, 23, 34, .74));
  box-shadow: var(--shadow);
}
.kicker {
  margin: 0 0 12px;
  color: var(--brand-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  line-height: 1.12;
}
h1 {
  max-width: 780px;
  font-size: clamp(38px, 7vw, 76px);
  font-weight: 950;
}
h2 {
  margin: 46px 0 18px;
  font-size: clamp(26px, 4vw, 42px);
}
h3 {
  margin-bottom: 10px;
  font-size: 21px;
}
p { margin: 0 0 14px; color: var(--muted); }
.lead {
  max-width: 740px;
  margin-top: 18px;
  font-size: clamp(17px, 2vw, 20px);
  color: #d9e6ee;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #b91c3c);
  box-shadow: 0 14px 36px rgba(244, 63, 94, .28);
  font-weight: 850;
  text-decoration: none;
}
.btn.secondary {
  background: rgba(255, 255, 255, .06);
  border-color: var(--line);
  box-shadow: none;
}
.btn:hover { transform: translateY(-1px); }
.scorecard {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 11, 18, .58);
}
.score {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: end;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.score strong {
  font-size: 36px;
  color: var(--gold);
}
.score span { color: var(--muted); }
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.chip {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #dbe7ef;
  background: rgba(255, 255, 255, .05);
  font-size: 13px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(21, 32, 51, .78), rgba(16, 23, 34, .72));
}
.card strong { color: var(--text); }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .72fr);
  gap: 18px;
  align-items: start;
}
.panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 23, 34, .78);
}
.steps {
  counter-reset: step;
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  color: var(--muted);
}
.steps li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #071018;
  background: var(--brand-2);
  font-weight: 900;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.data-table th,
.data-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.data-table th {
  color: var(--text);
  background: rgba(255, 255, 255, .06);
}
.data-table td { color: var(--muted); }
.notice {
  margin: 34px 0;
  padding: 18px 20px;
  border: 1px solid rgba(245, 200, 106, .38);
  border-radius: 8px;
  color: #f7e6bd;
  background: rgba(245, 200, 106, .08);
}
.faq-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.faq-item h3 { font-size: 18px; }
.footer {
  margin-top: 58px;
  padding: 32px clamp(16px, 4vw, 48px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: rgba(8, 11, 18, .72);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1160px, 100%);
  margin: 0 auto;
}
.small { font-size: 13px; color: #8fa0ad; }

@media (max-width: 860px) {
  .topbar { position: static; align-items: flex-start; flex-direction: column; }
  .nav { justify-content: flex-start; }
  .hero, .split { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 26px; }
  .footer-inner { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}
