:root {
  --bg: #070b14;
  --bg2: #0d1424;
  --ink: #e8ecf7;
  --mut: #9aa3bd;
  --gold: #f0b542;
  --gold2: #ffd277;
  --gold-dim: rgba(240, 181, 66, 0.14);
  --line: rgba(240, 181, 66, 0.22);
  --ok: #3ecf8e;
  --fd: "Sora", "Segoe UI", sans-serif;
  --fb: "Manrope", "Segoe UI", sans-serif;
  --max: 1080px;
  --r: 16px;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--fb);
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 90% -10%, rgba(240, 181, 66, 0.12), transparent 60%),
    radial-gradient(800px 400px at -10% 20%, rgba(48, 86, 160, 0.18), transparent 62%),
    linear-gradient(180deg, #0a1020 0%, var(--bg) 40%, #05070f 100%);
  min-height: 100vh;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold2); text-decoration: none; }
a:hover { color: #fff; }
ul { padding-left: 1.2rem; }
li { margin-bottom: 0.45rem; }

.wrap { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(7, 11, 20, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-family: var(--fd);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand img {
  width: 148px;
  height: auto;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  list-style: none;
  padding: 0;
}

.nav-links a {
  color: var(--mut);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-family: var(--fd);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold2), var(--gold) 55%, #bd8018);
  color: #1a1103;
  box-shadow: 0 10px 28px rgba(240, 181, 66, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
  color: #1a1103;
}

.btn-ghost {
  background: var(--gold-dim);
  border-color: var(--line);
  color: var(--gold2);
}

.btn-ghost:hover { background: rgba(240, 181, 66, 0.22); color: #fff; }

.hero {
  padding: 3.2rem 0 2.2rem;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--gold-dim);
  color: var(--gold2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.hero h1 {
  font-family: var(--fd);
  font-size: clamp(1.85rem, 4.8vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  background: linear-gradient(100deg, #fff6df, var(--gold2) 40%, var(--gold) 70%, #ffedbd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.hero-lead {
  max-width: 720px;
  margin: 0 auto 1.6rem;
  color: var(--mut);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.trust-pill {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--mut);
  font-size: 0.86rem;
  font-weight: 600;
}

.trust-pill strong { color: var(--ok); font-weight: 700; }

.panel {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)), var(--bg2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r);
  padding: clamp(1.2rem, 3vw, 1.8rem);
  box-shadow: var(--shadow);
  margin: 1.4rem 0;
}

.section { padding: 1.2rem 0 2.2rem; }

.section h2 {
  font-family: var(--fd);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  color: var(--gold2);
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
}

.section h3 {
  font-family: var(--fd);
  font-size: 1.1rem;
  color: #fff;
  margin: 1.2rem 0 0.45rem;
}

.section p { color: var(--mut); margin-bottom: 0.95rem; }
.section strong { color: #fff; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature {
  padding: 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
}

.feature h3 { margin-top: 0; color: var(--gold2); font-size: 1.05rem; }
.feature p { margin-bottom: 0; font-size: 0.95rem; }

.steps { counter-reset: step; list-style: none; padding: 0; }
.steps li {
  position: relative;
  padding: 0.95rem 1rem 0.95rem 3.2rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  margin-bottom: 0.7rem;
  background: rgba(255, 255, 255, 0.02);
  color: var(--mut);
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold-dim);
  color: var(--gold);
  font-family: var(--fd);
  font-weight: 800;
  font-size: 0.85rem;
}

.faq details {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 0.7rem;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.1rem;
  font-weight: 700;
  color: var(--gold2);
  font-family: var(--fd);
}
.faq summary::-webkit-details-marker { display: none; }
.faq details[open] summary { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.faq details p { padding: 0.9rem 1.1rem 1.1rem; margin: 0; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--mut);
  margin: 1.2rem 0 0.4rem;
}
.breadcrumbs a { color: var(--mut); }
.breadcrumbs span { opacity: 0.5; }

.site-footer {
  margin-top: 2.5rem;
  padding: 2.2rem 0 2.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  color: var(--mut);
  font-size: 0.9rem;
}
.site-footer .brand-line {
  font-family: var(--fd);
  font-weight: 800;
  color: var(--gold2);
  margin-bottom: 0.6rem;
}
.site-footer p { margin-bottom: 0.55rem; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.2rem;
  margin: 1rem 0 1.2rem;
  list-style: none;
  padding: 0;
}
.age-note {
  max-width: 640px;
  margin: 0.8rem auto 0;
  font-size: 0.82rem;
  color: #7f88a5;
}

.page-hero {
  padding: 2rem 0 0.6rem;
}
.page-hero h1 {
  font-family: var(--fd);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--gold2);
  margin-bottom: 0.7rem;
}
.page-hero p { color: var(--mut); max-width: 760px; }

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero, .panel { animation: rise 0.7s ease both; }
.panel { animation-delay: 0.08s; }

@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .nav { flex-direction: column; align-items: flex-start; }
  .nav-links { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
