:root {
  --bg: #070908;
  --bg-soft: #0c100d;
  --panel: #101510;
  --panel-2: #141b14;
  --ink: #f4f7f2;
  --muted: #a3ada2;
  --line: rgba(255,255,255,.10);
  --green: #79f20a;
  --green-2: #b4ff71;
  --shadow: 0 24px 80px rgba(0,0,0,.38);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 8%, rgba(121,242,10,.08), transparent 25rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 100; padding: 10px 16px; background: var(--green); color: #071000; border-radius: 10px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(7,9,8,.82);
  backdrop-filter: blur(18px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; width: 225px; }
.brand img { width: 100%; height: 54px; object-fit: cover; object-position: center; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: #c5cdc4; font-size: .92rem; font-weight: 650; }
.nav a:hover, .nav a[aria-current="page"] { color: white; }
.nav .nav-cta { padding: 10px 18px; color: #071000; background: var(--green); border-radius: 999px; }
.menu-button { display: none; width: 44px; height: 44px; color: white; background: transparent; border: 1px solid var(--line); border-radius: 12px; }

.hero { padding: 94px 0 72px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 72px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--green-2); text-transform: uppercase; letter-spacing: .16em; font-size: .74rem; font-weight: 800; }
.eyebrow::before { content: ""; width: 7px; height: 7px; background: var(--green); border-radius: 50%; box-shadow: 0 0 18px var(--green); }
h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: -.045em; }
h1 { margin-top: 22px; max-width: 760px; font-size: clamp(3.25rem, 7vw, 6.5rem); }
h1 .accent, h2 .accent { color: var(--green); }
.hero-copy > p { max-width: 650px; margin: 28px 0 0; color: #b6c0b5; font-size: clamp(1.05rem, 2vw, 1.25rem); }
.actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 50px; padding: 0 21px; border: 1px solid transparent; border-radius: 999px; font-weight: 800; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #071000; background: var(--green); box-shadow: 0 10px 35px rgba(121,242,10,.17); }
.button-secondary { background: rgba(255,255,255,.03); border-color: var(--line); }
.button-secondary:hover { border-color: rgba(121,242,10,.45); }
.proof { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; color: var(--muted); font-size: .86rem; }
.proof span { display: inline-flex; align-items: center; gap: 8px; }
.proof span::before { content: "✓"; color: var(--green); font-weight: 900; }

.market-card { position: relative; min-height: 495px; padding: 26px; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(155deg, rgba(20,27,20,.98), rgba(7,9,8,.94)); box-shadow: var(--shadow); overflow: hidden; }
.market-card::after { content: ""; position: absolute; width: 240px; height: 240px; right: -90px; top: -90px; background: var(--green); filter: blur(100px); opacity: .12; }
.terminal-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .14em; }
.live { display: inline-flex; align-items: center; gap: 7px; color: var(--green-2); }
.live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.chart { width: 100%; height: 220px; margin: 28px 0 10px; }
.chart .grid-line { stroke: rgba(255,255,255,.08); stroke-width: 1; }
.chart .area { fill: url(#chartFill); }
.chart .line { fill: none; stroke: var(--green); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 8px rgba(121,242,10,.42)); }
.signal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.signal { padding: 15px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.025); }
.signal small { display: block; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-size: .64rem; }
.signal strong { display: block; margin-top: 5px; font-size: .98rem; }
.terminal-note { margin: 18px 0 0; padding-top: 18px; color: #cbd2ca; border-top: 1px solid var(--line); font-size: .9rem; }

.stats { padding: 0 0 95px; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 28px 34px; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat strong { display: block; font-size: clamp(2rem, 4vw, 3.1rem); letter-spacing: -.05em; }
.stat span { color: var(--muted); font-size: .9rem; }

.section { padding: 102px 0; }
.section-soft { background: linear-gradient(180deg, rgba(13,17,14,.78), rgba(8,10,9,.45)); border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 42px; }
.section-heading h2 { max-width: 690px; margin-top: 15px; font-size: clamp(2.3rem, 5vw, 4.2rem); }
.section-heading > p { max-width: 420px; margin: 0; color: var(--muted); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { position: relative; min-height: 285px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(20,27,20,.72), rgba(11,14,12,.86)); overflow: hidden; }
.card-number { color: var(--green); font-size: .76rem; font-weight: 900; letter-spacing: .14em; }
.card h3 { margin-top: 54px; font-size: 1.55rem; }
.card p { margin: 15px 0 0; color: var(--muted); }
.card-link { display: inline-flex; margin-top: 23px; color: var(--green-2); font-weight: 800; font-size: .9rem; }

.feature { display: grid; grid-template-columns: .92fr 1.08fr; gap: 70px; align-items: center; }
.video-frame { position: relative; aspect-ratio: 16/10; border: 1px solid var(--line); border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); background: #111; }
.video-frame img { width: 100%; height: 100%; object-fit: cover; opacity: .72; transition: transform .35s ease, opacity .35s ease; }
.video-frame:hover img { transform: scale(1.025); opacity: .85; }
.play { position: absolute; inset: 50% auto auto 50%; display: grid; width: 70px; height: 70px; place-items: center; transform: translate(-50%, -50%); color: #071000; background: var(--green); border-radius: 50%; box-shadow: 0 12px 45px rgba(0,0,0,.4); font-size: 1.4rem; }
.feature-copy h2 { margin-top: 16px; font-size: clamp(2.4rem, 5vw, 4.5rem); }
.feature-copy p { color: var(--muted); font-size: 1.05rem; }
.check-list { display: grid; gap: 13px; padding: 0; margin: 26px 0 0; list-style: none; }
.check-list li { display: flex; gap: 12px; }
.check-list li::before { content: "↗"; flex: 0 0 auto; display: grid; width: 25px; height: 25px; place-items: center; color: #071000; background: var(--green); border-radius: 50%; font-weight: 900; font-size: .75rem; }

.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.video-card { border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: var(--panel); }
.video-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #111; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.video-card:hover img { transform: scale(1.035); }
.video-body { padding: 21px; }
.video-body small { color: var(--green-2); font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.video-body h3 { margin-top: 10px; line-height: 1.25; letter-spacing: -.025em; font-size: 1.12rem; }

.affiliate-notice {
  display: flex;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto 38px;
  padding: 20px 22px;
  color: #c8d0c7;
  border: 1px solid rgba(121,242,10,.22);
  border-radius: 16px;
  background: rgba(121,242,10,.055);
  font-size: .9rem;
}
.affiliate-notice strong { color: var(--green-2); white-space: nowrap; }
.resource-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.resource-card { display: flex; flex-direction: column; min-height: 390px; padding: 29px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(20,27,20,.76), rgba(9,12,10,.92)); }
.resource-card.featured { border-color: rgba(121,242,10,.25); }
.resource-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.resource-icon { display: grid; width: 52px; height: 52px; place-items: center; color: #071000; background: var(--green); border-radius: 15px; font-weight: 950; letter-spacing: -.05em; }
.home-resource-card { min-height: 340px; }
.home-resource-card .resource-top { align-items: flex-start; }
.home-resource-card .card-number { max-width: 145px; padding-top: 4px; text-align: right; }
.home-resource-card h3 { margin-top: 26px; }
.resource-tag { padding: 6px 10px; color: var(--green-2); border: 1px solid rgba(121,242,10,.2); border-radius: 999px; font-size: .66rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.resource-card h2, .resource-card h3 { margin-top: 28px; font-size: 1.8rem; }
.resource-card p { margin: 13px 0 0; color: var(--muted); }
.resource-card .best-for { margin-top: 18px; color: #e5eae4; font-size: .9rem; }
.resource-card .best-for strong { color: var(--green-2); }
.resource-card .actions { margin-top: auto; padding-top: 26px; }
.resource-card .button { width: 100%; }
.resource-card .micro { margin-top: 13px; color: #7f897e; font-size: .72rem; }
.risk-panel { margin-top: 32px; padding: 28px; border: 1px solid rgba(255,190,70,.24); border-radius: 18px; background: rgba(255,190,70,.045); }
.risk-panel h2 { font-size: 1.55rem; letter-spacing: -.025em; }
.risk-panel p { margin-bottom: 0; color: #bfc6bd; }

.cta-band { position: relative; padding: 55px; border: 1px solid rgba(121,242,10,.28); border-radius: 30px; background: radial-gradient(circle at 80% 0, rgba(121,242,10,.19), transparent 40%), var(--panel); overflow: hidden; }
.cta-band h2 { max-width: 760px; font-size: clamp(2.4rem, 5vw, 4.6rem); }
.cta-band p { max-width: 650px; color: #bdc7bc; }

.page-hero { padding: 100px 0 72px; text-align: center; }
.page-hero h1 { max-width: 940px; margin-inline: auto; font-size: clamp(3.2rem, 7vw, 6.2rem); }
.page-hero p { max-width: 700px; margin: 24px auto 0; color: var(--muted); font-size: 1.15rem; }
.page-hero .actions { justify-content: center; }
.pricing-layout { display: grid; grid-template-columns: 1fr 430px; gap: 45px; align-items: start; }
.price-card { position: sticky; top: 110px; padding: 32px; border: 1px solid rgba(121,242,10,.3); border-radius: 25px; background: var(--panel); }
.price-card .label { color: var(--green); text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 900; }
.price-card h2 { margin-top: 13px; font-size: 2.5rem; }
.price-card p { color: var(--muted); }
.price-card .button { width: 100%; margin-top: 13px; }
.content-stack { display: grid; gap: 35px; }
.content-block { padding-bottom: 35px; border-bottom: 1px solid var(--line); }
.content-block h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.content-block p { color: var(--muted); }
.faq { display: grid; gap: 12px; }
details { padding: 20px 22px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.02); }
summary { cursor: pointer; font-weight: 800; }
details p { margin-bottom: 0; color: var(--muted); }
.prose { max-width: 820px; margin-inline: auto; }
.prose h2 { margin-top: 46px; font-size: 2rem; }
.prose h3 { margin-top: 30px; font-size: 1.3rem; }
.prose p, .prose li { color: #b4beb3; }
.prose a { color: var(--green-2); text-decoration: underline; }
.legal-note { padding: 18px 20px; border-left: 3px solid var(--green); background: var(--panel); }

.site-footer { padding: 70px 0 34px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 60px; }
.footer-brand img { width: 250px; height: 90px; object-fit: cover; }
.footer-brand p { max-width: 480px; color: var(--muted); font-size: .92rem; }
.footer-col h3 { margin-bottom: 16px; letter-spacing: .06em; text-transform: uppercase; font-size: .75rem; color: var(--green-2); }
.footer-col a { display: block; margin: 9px 0; color: #b7c0b6; font-size: .9rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 52px; padding-top: 24px; border-top: 1px solid var(--line); color: #7f897e; font-size: .78rem; }
.disclaimer { max-width: 780px; }

@media (max-width: 900px) {
  .menu-button { display: inline-grid; place-items: center; }
  .nav { display: none; position: absolute; inset: 76px 0 auto; padding: 20px; flex-direction: column; align-items: stretch; gap: 8px; border-bottom: 1px solid var(--line); background: #090c0a; }
  .nav.open { display: flex; }
  .nav a { padding: 11px 20px; }
  .nav .nav-cta { text-align: center; }
  .hero-grid, .feature, .pricing-layout { grid-template-columns: 1fr; }
  .hero { padding-top: 62px; }
  .hero-grid { gap: 46px; }
  .market-card { min-height: auto; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 20px; }
  .card-grid, .video-grid, .resource-grid { grid-template-columns: 1fr 1fr; }
  .price-card { position: static; }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .brand { width: 192px; }
  h1 { font-size: 3.35rem; }
  .hero { padding-top: 48px; }
  .proof { display: grid; gap: 8px; }
  .market-card { padding: 19px; border-radius: 22px; }
  .signal-grid { grid-template-columns: 1fr; }
  .stat-row, .card-grid, .video-grid, .resource-grid, .footer-grid { grid-template-columns: 1fr; }
  .affiliate-notice { display: block; }
  .affiliate-notice strong { display: block; margin-bottom: 7px; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--line); }
  .section { padding: 75px 0; }
  .card h3 { margin-top: 34px; }
  .cta-band { padding: 32px 25px; }
  .page-hero { padding-top: 70px; }
  .footer-grid { gap: 30px; }
  .footer-bottom { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
