﻿:root {
  color-scheme: dark;
  --navy-950: #020712;
  --navy-925: #04101f;
  --navy-900: #061126;
  --navy-850: #081a33;
  --navy-800: #0c2440;
  --green-600: #63b800;
  --green-500: #9cff00;
  --green-400: #b7ff2a;
  --green-300: #d8ff79;
  --cyan-300: #76e4ff;
  --text-strong: #f4fff0;
  --text-soft: #c7d3de;
  --text-muted: #91a1b3;
  --line: rgba(156, 255, 0, 0.24);
  --line-blue: rgba(118, 228, 255, 0.18);
  --surface: rgba(8, 26, 51, 0.84);
  --surface-strong: rgba(6, 17, 38, 0.96);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--navy-950);
  color: var(--text-strong);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}
body.modal-open { overflow: hidden; }
img { max-width: 100%; }
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--green-500); outline-offset: 3px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--green-500);
  color: #081100;
  border-radius: var(--radius);
  transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 74px;
  padding: 10px 28px;
  border-bottom: 1px solid rgba(156, 255, 0, 0.16);
  background: rgba(2, 7, 18, 0.88);
  backdrop-filter: blur(18px);
}
.brand-home, .footer-brand { display: inline-flex; align-items: center; flex: none; }
.brand-logo { position: relative; display: inline-flex; align-items: flex-start; justify-content: flex-start; overflow: hidden; flex: none; }
.brand-logo__image { display: block; width: var(--logo-image-width); max-width: none; height: auto; object-fit: contain; transform: translate(var(--logo-offset-x), var(--logo-offset-y)); }
.brand-logo--header { width: 192px; height: 56px; --logo-image-width: 244px; --logo-offset-x: -20px; --logo-offset-y: -63px; }
.brand-logo--footer { width: 156px; height: 46px; --logo-image-width: 198px; --logo-offset-x: -16px; --logo-offset-y: -51px; }
.brand-logo--modal { width: 132px; height: 40px; --logo-image-width: 166px; --logo-offset-x: -13px; --logo-offset-y: -43px; }
.brand-logo--regular { width: 180px; height: 54px; --logo-image-width: 228px; --logo-offset-x: -18px; --logo-offset-y: -59px; }

.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: 8px; color: var(--text-soft); }
.mobile-nav-brand { display: none; }
.site-nav a, .nav-cta { min-height: 42px; padding: 10px 12px; border-radius: var(--radius); }
.site-nav a:hover, .nav-cta:hover { color: var(--text-strong); background: rgba(255, 255, 255, 0.06); }
.nav-cta { border: 1px solid var(--line); background: rgba(156, 255, 0, 0.08); color: var(--green-400); }
.menu-button { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(156, 255, 0, 0.08); color: var(--green-500); }
.menu-button span { display: block; width: 18px; height: 2px; margin: 5px auto; background: currentColor; }

.section { padding: 86px 24px; background: var(--navy-950); }
.section-dark { background: var(--navy-900); }
.section-inner { width: min(100%, var(--max)); margin: 0 auto; }
.eyebrow { margin: 0 0 14px; color: var(--green-400); font-size: 0.86rem; font-weight: 900; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 20px; font-size: 4.8rem; line-height: 0.96; letter-spacing: 0; }
h1 span, h2 span { color: var(--green-400); }
h2 { margin-bottom: 18px; font-size: 2.65rem; line-height: 1.05; letter-spacing: 0; }
h3 { margin-bottom: 12px; font-size: 1.18rem; line-height: 1.2; letter-spacing: 0; }
p { color: var(--text-soft); }
strong { color: var(--text-strong); }

.hero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  padding: 126px 24px 72px;
  background: var(--navy-950);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 7, 18, 0.98) 0%, rgba(2, 7, 18, 0.92) 45%, rgba(2, 7, 18, 0.58) 100%);
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(2, 7, 18, 0) 0%, var(--navy-950) 92%);
  z-index: 1;
}
.hero-media { position: absolute; inset: 26px 0 0; display: flex; align-items: center; justify-content: center; }
.hero-media img { width: min(1040px, 86%); height: min(600px, 76%); object-fit: contain; opacity: 0.16; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.82fr); gap: 52px; align-items: center; }
.hero-content { max-width: 690px; }
.hero-subheadline { max-width: 650px; margin-bottom: 16px; color: var(--text-strong); font-size: 1.24rem; font-weight: 700; }
.hero-copy { max-width: 640px; margin-bottom: 28px; color: var(--text-soft); font-size: 1.08rem; }
.hero-actions, .final-cta-inner { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.hero-microcopy { margin: 18px 0 0; color: var(--green-300); font-size: 0.94rem; font-weight: 800; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; max-width: 100%; padding: 12px 18px; border: 1px solid transparent; border-radius: var(--radius); font-weight: 900; text-align: center; white-space: normal; }
.button-primary { background: var(--green-500); color: #081100; box-shadow: 0 14px 42px rgba(156, 255, 0, 0.22); }
.button-primary:hover { background: var(--green-400); }
.button-secondary, .button-plan { border-color: var(--line); background: rgba(8, 26, 51, 0.82); color: var(--text-strong); }
.button-secondary:hover, .button-plan:hover { background: rgba(156, 255, 0, 0.12); }

.campaign-mockup { border: 1px solid var(--line); border-radius: var(--radius); background: rgba(4, 16, 31, 0.88); box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.03); overflow: hidden; }
.campaign-mockup::before { content: ""; display: block; height: 4px; background: linear-gradient(90deg, rgba(156,255,0,.24), var(--green-500), rgba(156,255,0,.24)); }
.mockup-topline, .mockup-stats, .mockup-lead, .mockup-priority { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.mockup-topline { padding: 14px 16px; border-bottom: 1px solid rgba(156,255,0,.14); color: var(--text-muted); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; }
.mockup-title { padding: 18px 18px 10px; }
.mockup-title p { margin-bottom: 4px; color: var(--green-400); font-size: 0.8rem; font-weight: 900; text-transform: uppercase; }
.mockup-title h2 { margin-bottom: 0; font-size: 1.3rem; }
.mockup-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); padding: 10px 18px 18px; }
.mockup-stats div { min-height: 78px; padding: 12px; border: 1px solid var(--line-blue); border-radius: var(--radius); background: rgba(255,255,255,.035); }
.mockup-stats strong { display: block; color: var(--green-400); font-size: 1.4rem; line-height: 1; }
.mockup-stats span { color: var(--text-muted); font-size: 0.78rem; }
.mockup-priority { margin: 0 18px 12px; padding: 14px; border: 1px solid rgba(156,255,0,.46); border-radius: var(--radius); background: rgba(156,255,0,.1); }
.mockup-priority p { margin: 0; color: var(--text-muted); font-size: 0.8rem; font-weight: 800; text-transform: uppercase; }
.mockup-priority strong { color: var(--green-300); }
.mockup-leads { display: grid; gap: 10px; padding: 0 18px 18px; }
.mockup-lead { min-height: 70px; padding: 12px; border: 1px solid rgba(156,255,0,.18); border-radius: var(--radius); background: rgba(255,255,255,.035); }
.mockup-lead strong, .mockup-lead span { display: block; }
.mockup-lead span { color: var(--text-muted); font-size: 0.9rem; }
.mockup-lead em { flex: none; min-width: 104px; padding: 7px 8px; border-radius: 6px; color: #081100; font-size: 0.78rem; font-style: normal; font-weight: 900; text-align: center; }
.lead-hot em { background: var(--green-500); box-shadow: 0 0 22px rgba(156,255,0,.34); }
.lead-warm em { background: rgba(156,255,0,.72); }
.lead-cold em { background: rgba(156,255,0,.28); color: var(--text-strong); }

.signal-band { padding-top: 54px; background: #07101f; }
.signal-grid, .feature-grid, .plans-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.signal-grid article { min-height: 190px; padding: 22px 0; border-top: 1px solid var(--line); }
.signal-grid span { display: block; margin-bottom: 26px; color: var(--cyan-300); font-weight: 900; }
.signal-grid p, .copy-stack p, .feature-card p, .plan-card p, .plans-header p, .heat-layout p, .audience p, .final-cta p, .modal-panel p, .site-footer p, .impact-inner p, .antagonist p, .steps-grid p { color: var(--text-soft); }

.impact-band { background: #04101f; }
.impact-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr); gap: 36px; align-items: end; padding-top: 22px; border-top: 1px solid var(--line); }
.impact-inner h2 { margin-bottom: 0; }
.impact-inner p { margin-bottom: 0; font-size: 1.08rem; }

.two-column, .heat-layout, .audience-inner, .positioning-layout, .problem-layout { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: 54px; align-items: center; }
.copy-stack { font-size: 1.08rem; }
.copy-stack strong { display: block; margin-top: 18px; color: var(--green-300); font-size: 1.12rem; }
.section-heading { max-width: 820px; margin-bottom: 28px; }
.section-heading p { font-size: 1.06rem; }
.feature-grid-six { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-card, .plan-card, .modal-plan, .steps-grid article { border: 1px solid var(--line-blue); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.feature-card { min-height: 250px; padding: 24px; }
.feature-card strong { display: block; margin-top: 18px; color: var(--green-300); }

.section-heat { background: #03101b; }
.heat-layout-main { align-items: start; }
.heat-closing { display: block; margin-top: 24px; color: var(--green-300); font-size: 1.12rem; }
.temperature-map { display: grid; gap: 12px; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-strong); box-shadow: var(--shadow); }
.temperature-level { display: grid; grid-template-columns: 54px 1fr auto; gap: 14px; align-items: center; min-height: 92px; padding: 14px; border: 1px solid rgba(156,255,0,.16); border-radius: var(--radius); background: rgba(156,255,0,.035); }
.temperature-level > span { display: block; width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(156,255,0,.42); background: rgba(156,255,0,.12); }
.temperature-level h3 { margin-bottom: 4px; color: var(--green-300); font-size: 1rem; }
.temperature-level p { margin-bottom: 0; }
.temperature-level em { padding: 7px 8px; border-radius: 6px; color: var(--green-300); background: rgba(156,255,0,.08); font-size: 0.78rem; font-style: normal; font-weight: 900; text-transform: uppercase; }
.level-cold { opacity: 0.72; }
.level-cold > span { background: rgba(156,255,0,.1); }
.level-aware { background: rgba(156,255,0,.055); }
.level-aware > span { background: rgba(156,255,0,.28); box-shadow: 0 0 12px rgba(156,255,0,.1); }
.level-interested { background: rgba(156,255,0,.08); }
.level-interested > span { background: rgba(156,255,0,.54); box-shadow: 0 0 18px rgba(156,255,0,.2); }
.level-hot { border-color: rgba(156,255,0,.56); background: rgba(156,255,0,.12); }
.level-hot > span { background: var(--green-500); box-shadow: 0 0 28px rgba(156,255,0,.48); animation: radarPulse 1.9s ease-in-out infinite; }
@keyframes radarPulse { 0%, 100% { transform: scale(1); opacity: 0.86; } 50% { transform: scale(1.14); opacity: 1; } }

.antagonist { background: #07101f; }
.antagonist-inner { max-width: 880px; }
.antagonist-inner p { max-width: 760px; font-size: 1.08rem; }
.antagonist-inner strong { display: block; margin: 26px 0; color: var(--green-300); font-size: 1.35rem; line-height: 1.18; }

.steps-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.steps-grid article { min-height: 230px; padding: 20px; }
.steps-grid span { display: inline-flex; margin-bottom: 20px; color: var(--green-400); font-weight: 900; }
.steps-grid h3 { font-size: 1.02rem; }

.audience { background: #04101f; }
.audience-inner { align-items: start; }
.audience-inner strong { display: block; margin-top: 18px; color: var(--green-300); }
.audience-tags { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 0; padding: 0; list-style: none; }
.audience-tags li { min-height: 54px; padding: 15px; border: 1px solid var(--line-blue); border-radius: var(--radius); background: rgba(8,26,51,.72); color: var(--text-strong); font-weight: 800; }

.plans-header { max-width: 760px; margin-bottom: 28px; }
.plan-card { display: flex; min-height: 330px; flex-direction: column; gap: 14px; padding: 24px; }
.plan-featured { border-color: rgba(156,255,0,.56); background: linear-gradient(180deg, rgba(156,255,0,.12), rgba(8,26,51,.94)); }
.plan-tag { align-self: flex-start; margin-bottom: 0; padding: 6px 8px; border: 1px solid var(--line); border-radius: 6px; color: var(--green-400); font-size: 0.82rem; font-weight: 900; }
.plan-price { display: grid; gap: 2px; margin: 0; color: var(--green-300); font-size: 1.1rem; font-weight: 900; }
.plan-period { color: var(--text-soft); font-size: 0.92rem; font-weight: 800; }
.plan-card ul, .modal-plan ul { display: grid; gap: 10px; margin: 0 0 8px; padding: 0; list-style: none; color: var(--text-soft); }
.plan-card li, .modal-plan li { position: relative; padding-left: 22px; }
.plan-card li::before, .modal-plan li::before { content: ""; position: absolute; left: 0; top: 0.66em; width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); }
.plan-card .button, .modal-plan .button { width: 100%; margin-top: auto; }

.final-cta { background: #07101f; }
.final-cta-inner { justify-content: space-between; gap: 28px; padding-top: 34px; border-top: 1px solid var(--line); }
.final-cta h2 { max-width: 760px; margin-bottom: 12px; }
.final-cta p { max-width: 650px; margin-bottom: 12px; }
.final-cta strong { color: var(--green-300); }

.site-footer { padding: 34px 24px; border-top: 1px solid rgba(156,255,0,.16); background: var(--navy-950); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; width: min(100%, var(--max)); margin: 0 auto; }
.site-footer p { margin: 0; }
.site-footer nav { display: flex; align-items: center; gap: 14px; color: var(--text-muted); }
.site-footer a:hover { color: var(--green-400); }

.plans-modal[hidden] { display: none; }
.plans-modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.72); }
.modal-panel { position: relative; z-index: 1; width: min(100%, 980px); max-height: min(800px, 92vh); overflow: auto; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #061126; box-shadow: var(--shadow); }
.modal-close { position: absolute; top: 14px; right: 14px; display: inline-grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--line-blue); border-radius: var(--radius); background: rgba(255,255,255,.04); color: var(--text-strong); font-size: 1.35rem; line-height: 1; }
.modal-brand { margin-bottom: 14px; }
.modal-panel h2 { max-width: 640px; margin-bottom: 10px; }
.modal-plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 24px; }
.modal-plan { display: flex; min-height: 286px; flex-direction: column; gap: 12px; padding: 20px; }
.modal-plan-featured, .modal-plan.is-active { border-color: rgba(156,255,0,.62); }
.modal-plan p { margin-bottom: 0; }

.checkout-modal[hidden] { display: none; }
.checkout-modal { position: fixed; inset: 0; z-index: 260; display: grid; place-items: center; padding: 20px; }
.checkout-backdrop { position: absolute; inset: 0; background: rgba(2, 7, 18, 0.88); }
.checkout-panel { position: relative; z-index: 1; display: flex; width: min(100%, 920px); height: min(860px, 92vh); flex-direction: column; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #061126; box-shadow: var(--shadow); }
.checkout-panel h2 { margin-bottom: 10px; font-size: 1.5rem; }
.checkout-loading, .checkout-fallback { display: grid; flex: 1; place-items: center; margin: 0; border: 1px solid var(--line-blue); border-radius: var(--radius); background: rgba(8, 26, 51, 0.72); text-align: center; }
.checkout-fallback { gap: 14px; align-content: center; padding: 22px; }
.checkout-fallback[hidden], .checkout-loading[hidden], .checkout-frame[hidden] { display: none; }
.checkout-frame { width: 100%; flex: 1; min-height: 620px; border: 1px solid var(--line-blue); border-radius: var(--radius); background: #fff; }

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .campaign-mockup { max-width: 720px; }
  .steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .site-header { min-height: 68px; padding: 8px 18px; }
  .brand-logo--header { width: 164px; height: 48px; --logo-image-width: 208px; --logo-offset-x: -17px; --logo-offset-y: -54px; }
  .menu-button { display: block; }
  .site-nav { position: fixed; inset: 68px 14px auto; display: none; flex-direction: column; align-items: stretch; gap: 6px; padding: 12px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(2,7,18,.98); box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .mobile-nav-brand { display: inline-flex; align-items: center; min-height: 48px; padding: 4px 0 10px; border-bottom: 1px solid var(--line); }
  .site-nav a, .nav-cta { width: 100%; text-align: left; }
  .hero { min-height: 78vh; padding-top: 108px; }
  .hero::before { background: linear-gradient(180deg, rgba(2,7,18,.99) 0%, rgba(2,7,18,.9) 62%, rgba(2,7,18,.64) 100%); }
  .hero-media { inset: 100px 0 0; }
  .hero-media img { width: min(760px, 112%); height: min(500px, 64%); opacity: 0.12; }
  h1 { font-size: 3.9rem; }
  h2 { font-size: 2.05rem; }
  .hero-subheadline { font-size: 1.08rem; }
  .hero-copy { font-size: 1rem; }
  .hero-grid, .hero-signals, .signal-grid, .feature-grid, .plans-grid, .modal-plans, .two-column, .heat-layout, .audience-inner, .positioning-layout, .problem-layout, .impact-inner { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .temperature-level { grid-template-columns: 46px 1fr; }
  .temperature-level em { grid-column: 2; justify-self: start; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .hero, .section { padding-left: 18px; padding-right: 18px; }
  h1 { font-size: 3.05rem; }
  h2 { font-size: 1.72rem; }
  .button { width: 100%; }
  .mockup-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mockup-lead { align-items: flex-start; flex-direction: column; }
  .mockup-lead em { min-width: 0; }
  .feature-card, .plan-card, .modal-panel, .steps-grid article { padding: 18px; }
  .steps-grid, .audience-tags { grid-template-columns: 1fr; }
  .modal-panel { max-height: 90vh; }
  .checkout-modal { padding: 8px; }
  .checkout-panel { height: calc(100dvh - 16px); padding: 18px; }
  .checkout-frame { min-height: 0; }
  .checkout-fallback .button { width: 100%; }
  .site-footer nav { align-items: flex-start; flex-direction: column; }
}

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