:root {
  --bg: #080809;
  --surface: #111113;
  --surface-2: #18181b;
  --surface-3: #222226;
  --gold: #d8b44a;
  --gold-light: #f2d978;
  --gold-dark: #9c7324;
  --cream: #f3ead2;
  --text: #f8f7f2;
  --muted: #b7b3aa;
  --line: rgba(216, 180, 74, 0.22);
  --danger: #ffb4ab;
  --success: #b8f5c8;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 8%, rgba(216, 180, 74, 0.12), transparent 26rem),
    radial-gradient(circle at 10% 55%, rgba(216, 180, 74, 0.06), transparent 28rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 3px; }
::selection { background: var(--gold); color: #080809; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -10rem;
  z-index: 9999;
  padding: .85rem 1rem;
  border-radius: 10px;
  color: #080809;
  background: var(--gold-light);
  font-weight: 900;
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.section { padding: 6rem 0; }
.section-tight { padding: 3.5rem 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 .85rem;
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 1.65rem; height: 2px; background: var(--gold); }
.section-title {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2rem, 4.7vw, 4rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.section-copy { max-width: 730px; margin: 1.2rem 0 0; color: var(--muted); font-size: 1.08rem; }
.gold { color: var(--gold-light); }
.muted { color: var(--muted); }
.center { text-align: center; }
.center .section-copy { margin-inline: auto; }
.center .eyebrow { justify-content: center; }
.center .eyebrow::after { content: ""; width: 1.65rem; height: 2px; background: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(8, 8, 9, .86);
  backdrop-filter: blur(18px);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand-text { display: grid; line-height: 1; }
.brand-text strong { font-size: .98rem; letter-spacing: .055em; }
.brand-text span { color: var(--gold); font-size: .68rem; font-weight: 900; letter-spacing: .28em; margin-top: .35rem; }
.nav-links { display: flex; align-items: center; gap: 1.35rem; }
.nav-links a { color: #d7d4cc; text-decoration: none; font-size: .94rem; font-weight: 750; }
.nav-links a:hover { color: var(--gold-light); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--cream);
  background: var(--surface);
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 50px;
  padding: .8rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #080809;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 12px 35px rgba(216, 180, 74, .2);
}
.btn-primary:hover { box-shadow: 0 16px 42px rgba(216, 180, 74, .3); }
.btn-secondary { border-color: var(--line); background: rgba(255,255,255,.035); color: var(--cream); }
.btn-secondary:hover { border-color: rgba(216,180,74,.55); background: rgba(216,180,74,.08); }
.btn-small { min-height: 42px; padding: .7rem 1rem; font-size: .88rem; }
.btn-block { width: 100%; }

.hero { position: relative; overflow: clip; padding: 5.5rem 0 4rem; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(216,180,74,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(216,180,74,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(2rem, 5vw, 5rem); }
.hero h1 { margin: 0; max-width: 760px; font-size: clamp(3rem, 7.8vw, 6.6rem); line-height: .91; letter-spacing: -.07em; }
.hero h1 span { display: block; color: var(--gold-light); }
.hero-copy { max-width: 670px; margin: 1.6rem 0 0; color: #c7c3b9; font-size: clamp(1.05rem, 2vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.hero-note { display: flex; flex-wrap: wrap; gap: .55rem 1.2rem; margin-top: 1.35rem; color: var(--muted); font-size: .86rem; }
.hero-note span { display: inline-flex; align-items: center; gap: .4rem; }
.hero-note span::before { content: "✓"; color: var(--gold-light); font-weight: 900; }
.hero-art { position: relative; }
.hero-art::before { content: ""; position: absolute; inset: 10% 5% 2%; z-index: -1; border-radius: 50%; background: rgba(216,180,74,.13); filter: blur(55px); }
.hero-art img { width: min(100%, 570px); margin-inline: auto; filter: drop-shadow(0 28px 55px rgba(0,0,0,.5)); }

.trust-strip { border-block: 1px solid rgba(255,255,255,.06); background: rgba(255,255,255,.018); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 1.25rem; text-align: center; border-right: 1px solid rgba(255,255,255,.06); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--cream); font-size: .95rem; }
.trust-item span { color: var(--muted); font-size: .78rem; }

.feature-grid, .step-grid, .article-grid { display: grid; gap: 1rem; margin-top: 2.2rem; }
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.feature-card, .step-card, .article-card, .content-card {
  border: 1px solid rgba(255,255,255,.075);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  box-shadow: var(--shadow);
}
.feature-card { padding: 1.65rem; }
.icon-box { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; color: #080809; background: linear-gradient(135deg, var(--gold-light), var(--gold)); font-size: 1.25rem; font-weight: 1000; }
.feature-card h3 { margin: 1rem 0 .5rem; font-size: 1.18rem; }
.feature-card p { margin: 0; color: var(--muted); }

.pricing-wrap { position: relative; }
.pricing-wrap::before { content: ""; position: absolute; left: 50%; top: 38%; width: 72%; height: 40%; transform: translate(-50%,-50%); border-radius: 50%; background: rgba(216,180,74,.07); filter: blur(90px); pointer-events: none; }
.pricing-grid { position: relative; display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; margin-top: 2.4rem; }
.price-card {
  grid-column: span 4;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  background: #101012;
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
}
.price-card:hover { transform: translateY(-5px); border-color: rgba(216,180,74,.55); }
.price-card.featured { grid-column: span 6; border-color: rgba(216,180,74,.55); background: linear-gradient(160deg, rgba(216,180,74,.14), #101012 40%); }
.price-card.quarterly { grid-column: span 6; }
.price-card img { aspect-ratio: 16/9; width: 100%; object-fit: cover; border-bottom: 1px solid rgba(255,255,255,.07); }
.price-body { display: flex; flex: 1; flex-direction: column; padding: 1.4rem; }
.price-kicker { margin: 0; color: var(--gold-light); font-size: .74rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.price-line { display: flex; align-items: baseline; gap: .35rem; margin: .45rem 0 .7rem; }
.price { font-size: 2.45rem; font-weight: 1000; letter-spacing: -.04em; }
.term { color: var(--muted); font-size: .86rem; }
.price-body > p { margin: 0; color: var(--muted); }
.feature-list { display: grid; gap: .55rem; padding: 0; margin: 1rem 0 1.35rem; list-style: none; }
.feature-list li { position: relative; padding-left: 1.45rem; color: #d8d5cc; font-size: .92rem; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-light); font-weight: 1000; }
.price-body .btn { margin-top: auto; }
.badge { position: absolute; right: 1rem; top: 1rem; z-index: 2; padding: .5rem .7rem; border-radius: 999px; color: #080809; background: var(--gold-light); font-size: .68rem; font-weight: 1000; letter-spacing: .1em; text-transform: uppercase; box-shadow: 0 10px 25px rgba(0,0,0,.3); }
.price-disclaimer { max-width: 900px; margin: 1.2rem auto 0; color: var(--muted); text-align: center; font-size: .84rem; }

.step-grid { grid-template-columns: repeat(3, 1fr); counter-reset: steps; }
.step-card { position: relative; padding: 1.7rem; counter-increment: steps; }
.step-card::before { content: "0" counter(steps); display: block; margin-bottom: 1.4rem; color: rgba(216,180,74,.55); font-size: 2.3rem; font-weight: 1000; line-height: 1; }
.step-card h3 { margin: 0 0 .55rem; }
.step-card p { margin: 0; color: var(--muted); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.content-card { padding: clamp(1.5rem, 4vw, 2.5rem); }
.content-card h3 { margin-top: 0; }
.content-card p:last-child { margin-bottom: 0; }
.check-list { display: grid; gap: .85rem; padding: 0; margin: 1.4rem 0 0; list-style: none; }
.check-list li { position: relative; padding-left: 2rem; color: #d9d6cd; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: .05rem; display: grid; place-items: center; width: 1.25rem; height: 1.25rem; border-radius: 50%; color: #080809; background: var(--gold); font-size: .72rem; font-weight: 1000; }

.article-grid { grid-template-columns: repeat(3, 1fr); }
.article-card { overflow: hidden; }
.article-thumb { display: grid; place-items: center; min-height: 180px; padding: 2rem; color: var(--gold-light); background: linear-gradient(145deg, #25231e, #111113); font-size: 3rem; }
.article-body { padding: 1.4rem; }
.article-body small { color: var(--gold-light); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.article-body h3 { margin: .55rem 0; font-size: 1.22rem; line-height: 1.25; }
.article-body p { margin: 0; color: var(--muted); }
.article-body a { display: inline-flex; margin-top: 1rem; color: var(--gold-light); font-weight: 900; text-decoration: none; }
.article-body a:hover { text-decoration: underline; }

.faq { max-width: 900px; margin: 2rem auto 0; }
.faq details { border-bottom: 1px solid rgba(255,255,255,.08); }
.faq summary { position: relative; padding: 1.25rem 3rem 1.25rem 0; cursor: pointer; color: var(--cream); font-weight: 900; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: .3rem; top: 1rem; color: var(--gold-light); font-size: 1.55rem; }
.faq details[open] summary::after { content: "−"; }
.faq p { margin: -.2rem 0 1.25rem; color: var(--muted); }

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 6vw, 4.2rem);
  border: 1px solid rgba(216,180,74,.34);
  border-radius: 30px;
  background: linear-gradient(130deg, rgba(216,180,74,.19), rgba(255,255,255,.025) 50%, rgba(216,180,74,.06));
  box-shadow: var(--shadow);
}
.cta-panel::after { content: ""; position: absolute; right: -9rem; bottom: -12rem; width: 28rem; height: 28rem; border: 1px solid rgba(216,180,74,.3); border-radius: 50%; box-shadow: 0 0 0 3rem rgba(216,180,74,.04), 0 0 0 6rem rgba(216,180,74,.025); }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { max-width: 760px; margin: 0; font-size: clamp(2rem, 5vw, 4rem); line-height: 1; letter-spacing: -.045em; }
.cta-panel p { max-width: 680px; color: #d7d3c8; }

.site-footer { border-top: 1px solid rgba(255,255,255,.07); background: #070708; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 2rem; padding: 3.5rem 0; }
.footer-brand p { max-width: 460px; color: var(--muted); }
.footer-col h3 { margin: .2rem 0 .8rem; font-size: .9rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: .55rem; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: .9rem; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding: 1.2rem 0 2rem; border-top: 1px solid rgba(255,255,255,.06); color: #8e8b84; font-size: .78rem; }

.page-hero { padding: 5rem 0 2.5rem; }
.page-hero h1 { max-width: 900px; margin: 0; font-size: clamp(2.65rem, 7vw, 5.6rem); line-height: .95; letter-spacing: -.06em; }
.page-hero p { max-width: 760px; color: var(--muted); font-size: 1.1rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.3rem; color: var(--muted); font-size: .82rem; }
.breadcrumbs a { color: var(--gold-light); text-decoration: none; }
.prose { width: min(calc(100% - 2rem), 840px); margin-inline: auto; padding: 2rem 0 6rem; }
.prose h2 { margin-top: 2.8rem; font-size: clamp(1.6rem, 4vw, 2.45rem); line-height: 1.15; letter-spacing: -.035em; }
.prose h3 { margin-top: 2rem; font-size: 1.3rem; }
.prose p, .prose li { color: #c9c5bc; }
.prose a { color: var(--gold-light); }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose blockquote { margin: 2rem 0; padding: 1rem 1.3rem; border-left: 4px solid var(--gold); background: rgba(216,180,74,.06); color: var(--cream); }
.prose .callout { margin: 2rem 0; padding: 1.4rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); }
.prose .callout strong { color: var(--gold-light); }
.meta-line { display: flex; flex-wrap: wrap; gap: .65rem 1.2rem; color: #9e9a91; font-size: .82rem; }

.checkout-shell { padding: 3.5rem 0 6rem; }
.checkout-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 1.2rem; align-items: start; }
.order-summary, .checkout-box { border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.order-summary { position: sticky; top: 104px; padding: 1.5rem; }
.order-summary h1 { margin: .3rem 0; font-size: 2rem; line-height: 1.08; }
.order-summary .summary-price { margin: .8rem 0; color: var(--gold-light); font-size: 2.3rem; font-weight: 1000; letter-spacing: -.04em; }
.order-summary p { color: var(--muted); }
.checkout-box { min-height: 630px; overflow: hidden; }
.checkout-loading { display: grid; min-height: 520px; place-items: center; color: var(--muted); }
.spinner { width: 44px; height: 44px; margin: 0 auto 1rem; border: 4px solid rgba(255,255,255,.08); border-top-color: var(--gold); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.checkout-fallback { padding: 1rem 1.5rem 1.5rem; color: var(--muted); font-size: .84rem; text-align: center; }
.checkout-fallback a { color: var(--gold-light); }

.status-card { width: min(calc(100% - 2rem), 720px); margin: 6rem auto; padding: clamp(2rem, 6vw, 4rem); border: 1px solid var(--line); border-radius: 28px; background: var(--surface); text-align: center; box-shadow: var(--shadow); }
.status-icon { display: grid; width: 72px; height: 72px; margin: 0 auto 1.25rem; place-items: center; border-radius: 50%; color: #080809; background: var(--gold-light); font-size: 2rem; font-weight: 1000; }
.status-card h1 { margin: 0; font-size: clamp(2rem, 6vw, 3.8rem); line-height: 1; }
.status-card p { color: var(--muted); }

.not-found { min-height: 70vh; display: grid; place-items: center; text-align: center; }
.not-found strong { display: block; color: rgba(216,180,74,.3); font-size: clamp(6rem, 25vw, 15rem); line-height: .75; }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + .5rem);
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #0d0d0f;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links .btn { width: 100%; }
  .hero-grid, .split, .checkout-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 4rem; }
  .hero-copy { max-width: 760px; }
  .hero-art { width: min(620px, 90%); margin-inline: auto; }
  .feature-grid, .article-grid { grid-template-columns: 1fr 1fr; }
  .price-card { grid-column: span 6; }
  .price-card.featured, .price-card.quarterly { grid-column: span 6; }
  .order-summary { position: static; }
}

@media (max-width: 700px) {
  .section { padding: 4.5rem 0; }
  .brand-text strong { font-size: .88rem; }
  .brand-text span { font-size: .6rem; }
  .hero h1 { font-size: clamp(3rem, 17vw, 5rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.06); }
  .feature-grid, .step-grid, .article-grid { grid-template-columns: 1fr; }
  .pricing-grid { display: grid; grid-template-columns: 1fr; }
  .price-card, .price-card.featured, .price-card.quarterly { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding-top: 3.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
