:root {
  color-scheme: dark;
  --bg: #0d0c12;
  --panel: #17141f;
  --panel-2: #201a2d;
  --ink: #f7f3eb;
  --muted: #aba4b7;
  --line: #393246;
  --acid: #bdff58;
  --violet: #7657ff;
}

* { box-sizing: border-box; }
html { background: var(--bg); scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 8% 8%, rgba(118, 87, 255, .21), rgba(118, 87, 255, 0) 32rem),
    var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

.skip-link { position: fixed; top: 10px; left: 10px; z-index: 20; padding: 10px 14px; transform: translateY(-150%); border-radius: 8px; background: var(--acid); color: #111016; font-weight: 800; }
.skip-link:focus { transform: translateY(0); }

.page-shell { width: min(1440px, calc(100% - 56px)); margin: 0 auto; }
.site-header { min-height: 86px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.wordmark { color: var(--ink); text-decoration: none; display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.wordmark-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--acid); color: #111016; font-size: 12px; }
.market-badge { padding: 9px 12px; border: 1px solid #5c526b; border-radius: 999px; color: #c7bfd0; font-family: "Courier New", monospace; font-size: 11px; letter-spacing: .14em; }

.hero { min-height: calc(100vh - 124px); display: grid; grid-template-columns: minmax(0, 1.28fr) minmax(390px, .72fr); gap: clamp(34px, 5vw, 84px); align-items: center; padding: 54px 0 36px; }
.hero-copy { min-width: 0; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 22px; color: var(--acid); font-family: "Courier New", monospace; font-size: 12px; font-weight: 700; letter-spacing: .13em; }
.eyebrow span { width: 44px; height: 2px; background: var(--acid); }
h1 { max-width: 790px; margin: 0; font-size: clamp(58px, 6.2vw, 92px); line-height: .93; letter-spacing: -.065em; }
h1 em { display: block; color: var(--acid); font-style: normal; }
.supporting-line { max-width: 780px; margin: 25px 0 30px; color: #d6d0dc; font-size: clamp(18px, 1.55vw, 24px); line-height: 1.45; }

.proof-gallery { display: grid; grid-template-columns: 1.65fr .9fr; gap: 12px; max-width: 850px; }
.proof-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 12px; }
.proof-card { position: relative; min-width: 0; margin: 0; overflow: hidden; border: 1px solid #514660; border-radius: 15px; background: var(--panel); box-shadow: 0 22px 60px rgba(0,0,0,.25); }
.proof-card img { display: block; width: 100%; height: 100%; min-height: 126px; object-fit: cover; object-position: center; }
.proof-card-main img { min-height: 276px; object-position: top left; }
.proof-card figcaption { position: absolute; right: 8px; bottom: 8px; left: 8px; display: flex; justify-content: space-between; gap: 8px; padding: 8px 10px; border-radius: 9px; background: rgba(13, 12, 18, .88); backdrop-filter: blur(8px); color: #eee9f2; font-size: 11px; }
.proof-card figcaption span { color: var(--acid); font-family: "Courier New", monospace; font-size: 9px; letter-spacing: .08em; }
.example-note { margin: 10px 2px 0; color: #8d8596; font-size: 11px; line-height: 1.45; }

.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0; margin: 14px 0 0; list-style: none; }
.facts li { display: flex; align-items: baseline; gap: 9px; padding: 12px 13px; border-top: 1px solid var(--line); color: #b8b0c1; font-size: 12px; }
.facts strong { color: var(--ink); font-size: 17px; }

.intake-card { position: relative; padding: clamp(26px, 3vw, 42px); overflow: hidden; border: 1px solid #564a67; border-radius: 28px; background: rgba(27, 23, 36, .95); box-shadow: 0 34px 110px rgba(0,0,0,.42); }
.intake-card::before { content: ""; position: absolute; top: -80px; right: -90px; width: 250px; height: 250px; border-radius: 50%; background: rgba(118, 87, 255, .23); filter: blur(12px); pointer-events: none; }
.intake-kicker { position: relative; display: flex; align-items: center; gap: 8px; color: var(--acid); font-family: "Courier New", monospace; font-size: 11px; letter-spacing: .15em; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 5px rgba(189,255,88,.13); }
h2 { position: relative; margin: 22px 0 8px; font-size: clamp(36px, 3vw, 50px); line-height: 1; letter-spacing: -.045em; }
.intake-card > p { position: relative; margin: 0 0 24px; color: var(--muted); font-size: 13px; }
.intake-card > p span { color: var(--violet); margin: 0 5px; }
form { position: relative; display: grid; gap: 14px; }
label { display: grid; grid-template-columns: 1fr auto; gap: 7px; color: #b9b1c3; font-family: "Courier New", monospace; font-size: 10px; font-weight: 700; letter-spacing: .1em; }
label input { grid-column: 1 / -1; }
.required { color: var(--acid); font-size: 8px; font-weight: 400; }
.optional { color: #756f7d; font-weight: 400; }
input { width: 100%; height: 48px; padding: 0 14px; border: 1px solid #474052; border-radius: 10px; outline: 0; background: #100e16; color: var(--ink); font: 15px Arial, sans-serif; }
input:focus { border-color: var(--acid); box-shadow: 0 0 0 3px rgba(189,255,88,.12); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.consent { display: flex; align-items: flex-start; gap: 9px; line-height: 1.45; letter-spacing: .02em; }
.consent input { flex: 0 0 auto; width: 19px; height: 19px; accent-color: var(--acid); }
.consent a { color: var(--acid); }
button { min-height: 58px; border: 0; border-radius: 12px; background: var(--acid); color: #111016; font-size: 13px; font-weight: 900; letter-spacing: .08em; cursor: pointer; box-shadow: 0 12px 32px rgba(189,255,88,.12); }
button:disabled { cursor: wait; opacity: .68; }
button span { margin-left: 8px; font-size: 19px; }
.reassurance { margin: 15px 0 18px !important; text-align: center; }
.safety-strip { display: flex; justify-content: space-between; gap: 9px; padding-top: 16px; border-top: 1px solid var(--line); color: #736c7d; font-family: "Courier New", monospace; font-size: 8px; letter-spacing: .08em; }
.form-trap, .response-frame { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px, 1px, 1px, 1px) !important; opacity: 0 !important; pointer-events: none !important; }
.form-status { min-height: 18px; margin: -4px 0 0; color: #f2c3c3; font: 12px/1.45 Arial, sans-serif; letter-spacing: 0; }
.success-panel { display: none; padding: 22px; border: 1px solid rgba(189,255,88,.38); border-radius: 14px; background: rgba(189,255,88,.08); }
.success-panel .success-check { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 13px; border-radius: 50%; background: var(--acid); color: #111016; font-size: 20px; font-weight: 900; }
.success-panel p { margin: 0 0 8px; color: #c9c1d1; font: 13px/1.5 Arial, sans-serif; }
.success-panel h3 { margin: 0 0 9px; color: var(--ink); font-size: 23px; line-height: 1.05; letter-spacing: -.03em; }
form.is-complete > :not(.success-panel) { display: none; }
form.is-complete .success-panel { display: block; }

.intro-card { margin: 0 0 42px; border: 1px solid var(--line); border-radius: 18px; background: rgba(23,20,31,.78); }
.intro-card summary { display: flex; align-items: center; gap: 12px; padding: 19px 22px; cursor: pointer; color: #ded7e4; font-size: 14px; font-weight: 700; list-style: none; }
.intro-card summary::-webkit-details-marker { display: none; }
.intro-card summary span { color: var(--acid); font: 10px "Courier New", monospace; letter-spacing: .12em; }
.intro-card summary b { margin-left: auto; color: var(--acid); font-size: 20px; }
.intro-card[open] summary b { transform: rotate(45deg); }
.intro-body { display: grid; grid-template-columns: .7fr 1.3fr; gap: 22px; padding: 0 22px 22px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.intro-body video { width: 100%; max-height: 360px; border-radius: 12px; background: #08070c; }

footer { min-height: 64px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); color: #6e6875; font-size: 12px; }
footer nav { display: flex; gap: 20px; }
footer a { color: #9b94a3; }

@media (max-width: 980px) {
  .page-shell { width: min(100% - 34px, 760px); }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .intake-card { order: 2; }
}

@media (max-width: 620px) {
  .site-header { min-height: 72px; }
  .market-badge { display: none; }
  .hero { padding-top: 38px; gap: 28px; }
  h1 { font-size: clamp(47px, 14vw, 68px); }
  .supporting-line { font-size: 18px; }
  .proof-gallery { grid-template-columns: 1fr; }
  .proof-stack { display: none; }
  .proof-card-main img { min-height: 220px; }
  .facts { grid-template-columns: 1fr; gap: 0; }
  .field-row { grid-template-columns: 1fr; }
  .safety-strip { flex-wrap: wrap; }
  .intro-body { grid-template-columns: 1fr; }
  footer { gap: 20px; padding: 22px 0; }
}
