
:root {
  --bg: #06111f;
  --bg-2: #0a1d2f;
  --card: rgba(255, 255, 255, 0.07);
  --card-strong: rgba(255, 255, 255, 0.11);
  --text: #f7fbff;
  --muted: #b8c7d8;
  --gold: #f4bd3a;
  --teal: #23c8c4;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 30px 80px rgba(0,0,0,.45);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(35, 200, 196, .16), transparent 30%),
    radial-gradient(circle at 75% 15%, rgba(244, 189, 58, .12), transparent 26%),
    linear-gradient(180deg, #06111f 0%, #0a1625 55%, #06111f 100%);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; }
.site-header {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
  font-size: 21px;
  letter-spacing: -.02em;
}
.brand span span { color: var(--gold); }
.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  color: #06111f;
  font-size: 14px;
}
.top-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}
.top-nav a { text-decoration: none; }
.nav-cta {
  padding: 10px 15px;
  border-radius: 999px;
  color: #06111f !important;
  background: var(--gold);
}
.hero {
  width: min(1160px, calc(100% - 32px));
  margin: 24px auto 80px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 52px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 12px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: .95;
  letter-spacing: -.06em;
  margin-bottom: 22px;
}
h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 16px;
}
h3 {
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.hero-subtitle {
  color: var(--muted);
  font-size: 20px;
  max-width: 720px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 16px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
}
.button.primary {
  color: #06111f;
  background: linear-gradient(135deg, var(--gold), #ffd978);
  box-shadow: 0 14px 34px rgba(244, 189, 58, .22);
}
.button.secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255,255,255,.06);
}
.button.full { width: 100%; }
.trust-line {
  color: var(--muted);
  font-size: 15px;
}
.quick-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.quick-points span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  padding: 8px 12px;
  color: #dce9f5;
  font-weight: 800;
  font-size: 13px;
}
.hero-cover { display: flex; justify-content: center; }
.hero-cover img {
  width: min(100%, 450px);
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.16);
}
section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto 80px;
}
.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}
.section-heading p,
.card p,
.feature p,
.who p,
.tax-note p,
.price-copy p,
.final-cta p,
.site-footer p,
.faq p { color: var(--muted); }
.cards.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card,
.feature,
.tax-note,
.price-card,
.price-copy,
.faq details,
.final-cta {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.feature { display: flex; gap: 16px; }
.icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(35, 200, 196, .13);
  border: 1px solid rgba(35, 200, 196, .45);
  color: var(--teal);
  font-weight: 900;
}
.split,
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #e8f1fa;
  font-weight: 750;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--teal);
  font-weight: 1000;
}
.tax-note {
  background: linear-gradient(135deg, rgba(35,200,196,.11), rgba(244,189,58,.08));
}
.price {
  font-size: clamp(58px, 8vw, 84px);
  line-height: 1;
  color: var(--gold);
  font-weight: 1000;
  letter-spacing: -.06em;
  margin-bottom: 8px;
}
.price-subtitle {
  font-size: 18px;
  font-weight: 800;
}
.compact { margin: 24px 0; }
.microcopy {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}
.mini-stat {
  margin-top: 22px;
  padding: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.mini-stat strong {
  display: block;
  color: var(--gold);
  margin-bottom: 6px;
}
.faq details { margin-bottom: 12px; }
.faq summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
}
.faq p { margin: 14px 0 0; }
.final-cta {
  text-align: center;
  max-width: 900px;
  background: linear-gradient(135deg, rgba(244,189,58,.13), rgba(35,200,196,.12));
}
.site-footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.language-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}
.language-links a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 900;
}
.disclaimer { font-size: 13px; }
.language-banner {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 16px;
  background: #071827;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}
.language-banner a {
  color: var(--gold);
  font-weight: 900;
  text-decoration: none;
}
.language-banner button {
  border: 0;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
}
@media (max-width: 900px) {
  .top-nav { display: none; }
  .hero,
  .split,
  .pricing,
  .feature-list,
  .cards.three { grid-template-columns: 1fr; }
  .hero {
    margin-top: 10px;
    gap: 32px;
  }
  .hero-cover { order: -1; }
  .hero-cover img { max-width: 360px; }
  .feature { padding: 20px; }
}
@media (max-width: 560px) {
  .site-header,
  .hero,
  section,
  .site-footer { width: min(100% - 22px, 1160px); }
  h1 { font-size: 42px; }
  .hero-subtitle { font-size: 18px; }
  .button { width: 100%; }
  .hero-cover img {
    max-width: 310px;
    border-radius: 18px;
  }
  .card,
  .feature,
  .tax-note,
  .price-card,
  .price-copy,
  .faq details,
  .final-cta {
    border-radius: 18px;
    padding: 20px;
  }
}


.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.tier-card {
  background: rgba(255,255,255,.055);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
}

.featured-tier {
  border-color: rgba(244, 189, 58, .72);
  background: linear-gradient(135deg, rgba(244,189,58,.13), rgba(35,200,196,.08));
  box-shadow: 0 18px 50px rgba(244,189,58,.12);
}

.tier-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
}

.tier-price {
  font-size: clamp(42px, 6vw, 62px);
  line-height: 1;
  color: var(--gold);
  font-weight: 1000;
  letter-spacing: -.06em;
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
