/* ============================================================
   THE AI HARNESS BLUEPRINT — Sales Site Stylesheet
   Design language: dark hero + gradient accents, glass, Sora/Inter
   ============================================================ */

:root {
  --bg-dark: #070a14;
  --bg-dark2: #0b1020;
  --bg-dark3: #111a30;
  --bg-light: #f6f8fc;
  --bg-light2: #ffffff;
  --ink-dark: #0b1020;
  --ink-light: #edf1f9;
  --muted-dark: #8f9ab8;
  --muted-light: #5b6580;
  --accent-cyan: #23d5e8;
  --accent-purple: #a855f7;
  --accent-green: #2ee6a5;
  --accent-amber: #ffd23f;
  --grad-hot: linear-gradient(120deg, #23d5e8 0%, #a855f7 55%, #2ee6a5 100%);
  --grad-cta: linear-gradient(120deg, #ffd23f 0%, #ff8a3d 55%, #ff5d8f 100%);
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-lg: 0 30px 70px -20px rgba(2, 6, 20, .55);
  --shadow-glow: 0 0 0 1px rgba(35, 213, 232, .25), 0 22px 55px -22px rgba(168, 85, 247, .6);
  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: #1c2333;
  background: var(--bg-light);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; letter-spacing: -.02em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Section helpers ---------- */
.section { padding: clamp(70px, 9vw, 120px) 0; position: relative; }
.band-dark { background: var(--bg-dark); color: var(--ink-light); }
.band-dark2 { background: var(--bg-dark2); color: var(--ink-light); }
.band-light { background: var(--bg-light); color: var(--ink-dark); }
.band-white { background: var(--bg-light2); color: var(--ink-dark); }

/* floating gradient orbs */
.orb {
  position: absolute; border-radius: 50%; filter: blur(70px);
  opacity: .55; pointer-events: none; z-index: 0; animation: drift 16s ease-in-out infinite;
}
.orb.cyan { background: #23d5e8; }
.orb.purple { background: #a855f7; }
.orb.green { background: #2ee6a5; }
@keyframes drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px,-30px) scale(1.1); }
  66% { transform: translate(-30px,20px) scale(.95); }
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: .8rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent-cyan);
  background: rgba(35,213,232,.08); border: 1px solid rgba(35,213,232,.22);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 22px;
}
.eyebrow.dark { color: var(--accent-purple); border-color: rgba(168,85,247,.3); background: rgba(168,85,247,.08); }
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 12px currentColor; animation: blink 2s infinite; }
@keyframes blink { 50% { opacity: .3; transform: scale(.7);} }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.08rem;
  padding: 18px 34px; border-radius: 999px; border: 0; cursor: pointer;
  text-align: center; transition: transform .25s ease, box-shadow .25s ease;
  position: relative; line-height: 1.1;
}
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(5px); }
.btn-warm { background: var(--grad-cta); color: #241100; box-shadow: 0 16px 40px -12px rgba(255,138,61,.75); animation: pulseWarm 2.2s infinite; }
.btn-warm:hover { transform: translateY(-3px) scale(1.02); }
.btn-ghost { background: rgba(255,255,255,.06); color: var(--ink-light); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: rgba(255,255,255,.4); transform: translateY(-2px); }
.btn-dark { background: var(--grad-hot); color: #04101c; box-shadow: 0 16px 40px -12px rgba(168,85,247,.7); }
.btn-dark:hover { transform: translateY(-3px) scale(1.02); }
.btn-lg { font-size: 1.2rem; padding: 21px 42px; }
.btn-block { width: 100%; }

@keyframes pulseWarm {
  0%,100% { box-shadow: 0 16px 40px -12px rgba(255,138,61,.75), 0 0 0 0 rgba(255,138,61,.5); }
  50% { box-shadow: 0 16px 40px -12px rgba(255,138,61,.75), 0 0 0 18px rgba(255,138,61,0); }
}

/* ---------- Headline/typography ---------- */
.lead { font-size: clamp(1.1rem, 1.6vw, 1.35rem); color: var(--muted-dark); max-width: 60ch; }
.band-light .lead, .band-white .lead { color: var(--muted-light); }
.h1 { font-size: clamp(2.4rem, 5.8vw, 4.4rem); font-weight: 800; }
.h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); font-weight: 700; margin-bottom: 18px; }
.h3 { font-size: 1.35rem; font-weight: 700; }
.gradient-text {
  background: var(--grad-hot); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.em { font-style: italic; font-weight: 600; color: var(--accent-amber); }
.band-light .gradient-text, .band-white .gradient-text { background: var(--grad-hot); -webkit-background-clip: text; background-clip: text; }

.section-head { text-align: center; max-width: 760px; margin: 0 auto clamp(40px, 6vw, 66px); }
.section-head .lead { margin: 0 auto; }

/* ---------- Hero ---------- */
.hero { background: radial-gradient(1200px 700px at 75% -10%, rgba(168,85,247,.28), transparent 60%), radial-gradient(1000px 600px at 10% 110%, rgba(35,213,232,.24), transparent 55%), var(--bg-dark); color: var(--ink-light); overflow: hidden; position: relative; }
.hero-inner { position: relative; z-index: 2; padding: clamp(70px, 10vw, 140px) 0 clamp(50px, 7vw, 90px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }

.checklist { margin: 28px 0 34px; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; font-size: 1.03rem; color: #d7deee; }
.checklist .tick {
  flex: none; width: 26px; height: 26px; border-radius: 50%; margin-top: 2px;
  background: var(--grad-hot); color: #061024; font-weight: 800; font-size: .85rem;
  display: grid; place-items: center; box-shadow: 0 0 16px rgba(35,213,232,.5);
}
.checklist b { color: #fff; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.secure-note { display: flex; align-items: center; gap: 10px; font-size: .86rem; color: var(--muted-dark); margin-top: 16px; }
.secure-note svg { flex: none; }

/* badges row */
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.badge {
  font-family: var(--font-mono); font-size: .74rem; letter-spacing: .05em;
  padding: 7px 13px; border-radius: 8px; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14); color: #cdd6ea;
}
.pay-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; align-items: center; }
.pay-badge { font-family: var(--font-mono); font-size: .72rem; padding: 6px 10px; border-radius: 6px; background: #fff; color: #223; border: 1px solid #e4e7f0; font-weight: 700; }

/* ---------- Harness loop diagram ---------- */
.loop-wrap { position: relative; z-index: 2; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius-lg); padding: 30px; backdrop-filter: blur(8px); }
.loop-title { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-cyan); text-align: center; margin-bottom: 22px; }
.loop { display: flex; align-items: stretch; gap: 0; flex-wrap: wrap; justify-content: center; }
.loop-node {
  flex: 1 1 160px; min-width: 150px; text-align: center; padding: 22px 14px; border-radius: 16px;
  background: linear-gradient(160deg, rgba(35,213,232,.12), rgba(168,85,247,.08));
  border: 1px solid rgba(255,255,255,.12); position: relative; transition: transform .3s ease, box-shadow .3s ease;
}
.loop-node:hover { transform: translateY(-5px); box-shadow: var(--shadow-glow); }
.loop-node .ico { font-size: 1.7rem; margin-bottom: 10px; display: block; filter: drop-shadow(0 0 10px rgba(35,213,232,.6)); }
.loop-node .nl { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: #fff; }
.loop-node .nd { font-size: .82rem; color: var(--muted-dark); margin-top: 5px; }
.loop-node::after { content: ""; position: absolute; inset: 0; border-radius: 16px; background: radial-gradient(120px 40px at 50% 0%, rgba(35,213,232,.35), transparent 70%); opacity: 0; transition: opacity .3s; }
.loop-node:hover::after { opacity: 1; }
.loop-arrow { flex: 0 0 34px; display: grid; place-items: center; color: var(--accent-purple); font-size: 1.4rem; position: relative; }
.loop-arrow::before { content: ""; position: absolute; width: 40px; height: 3px; background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple)); opacity: .7; border-radius: 3px; overflow: hidden; background-size: 200% 100%; animation: flow 1.8s linear infinite; }
@keyframes flow { to { background-position: 200% 0; } }
.loop-foot { text-align: center; margin-top: 20px; font-family: var(--font-mono); font-size: .78rem; color: var(--accent-green); letter-spacing: .04em; }

/* mini dashboard mock (CSS built, no image slot) */
.dash { margin-top: 26px; background: rgba(10,14,26,.75); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.dash-bar { display: flex; gap: 7px; align-items: center; padding: 11px 14px; background: rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.07); }
.dash-bar span { width: 11px; height: 11px; border-radius: 50%; }
.dash-bar .rd { background: #ff5f57; } .dash-bar .yl { background: #febc2e; } .dash-bar .gr { background: #28c840; }
.dash-bar .url { font-family: var(--font-mono); font-size: .72rem; color: var(--muted-dark); margin-left: 8px; }
.dash-body { padding: 16px; display: grid; gap: 12px; }
.dash-row { display: flex; align-items: center; gap: 12px; }
.dash-dot { width: 18px; height: 18px; border-radius: 6px; background: var(--grad-hot); }
.dash-lines { flex: 1; }
.dash-lines i { display: block; height: 8px; border-radius: 5px; background: rgba(255,255,255,.12); margin-bottom: 6px; }
.dash-lines i:last-child { width: 62%; margin-bottom: 0; }
.dash-metric { font-family: var(--font-mono); font-size: .8rem; color: var(--accent-green); font-weight: 700; }
.dash-bars { display: flex; gap: 8px; align-items: flex-end; height: 60px; }
.dash-bars i { flex: 1; border-radius: 5px 5px 0 0; background: linear-gradient(180deg, var(--accent-cyan), var(--accent-purple)); animation: bar 2.4s ease-in-out infinite; }
@keyframes bar { 0%,100% { height: 22%; } 50% { height: 90%; } }

/* ---------- Hero video player (embedded sales video) ---------- */
.video-card {
  position: relative; z-index: 2; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(35,213,232,.3); box-shadow: var(--shadow-glow);
  background: rgba(8,12,24,.85); backdrop-filter: blur(8px);
}
.video-card-bar { display: flex; gap: 7px; align-items: center; padding: 12px 16px; background: rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.08); }
.video-card-bar span { width: 11px; height: 11px; border-radius: 50%; }
.video-card-bar .rd { background: #ff5f57; } .video-card-bar .yl { background: #febc2e; } .video-card-bar .gr { background: #28c840; }
.video-card-bar .url { font-family: var(--font-mono); font-size: .7rem; color: var(--muted-dark); margin-left: 8px; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.video-card-bar .live-dot { color: var(--accent-green); font-size: .66rem; animation: blink 1.6s infinite; }

.video-stage { position: relative; aspect-ratio: 16 / 9; background: #05070f; overflow: hidden; }
.video-stage iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.video-poster {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center; cursor: pointer;
  background: radial-gradient(120% 120% at 50% -10%, rgba(168,85,247,.42), transparent 55%), radial-gradient(120% 120% at 50% 120%, rgba(35,213,232,.32), transparent 55%), linear-gradient(165deg, #0b1020, #0d1326);
  transition: opacity .45s ease, transform .45s ease; z-index: 2; padding: 20px;
}
.video-card.playing .video-poster { opacity: 0; pointer-events: none; transform: scale(1.04); }
.poster-inner { position: relative; }
.poster-tag { display: inline-block; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-cyan); background: rgba(35,213,232,.1); border: 1px solid rgba(35,213,232,.25); padding: 6px 13px; border-radius: 999px; margin-bottom: 18px; }
.poster-title { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.5rem, 3.2vw, 2.1rem); color: #fff; line-height: 1.12; }
.play-btn {
  margin: 26px auto 0; width: 86px; height: 86px; border-radius: 50%; border: 0; cursor: pointer;
  display: grid; place-items: center; font-size: 1.7rem; color: #241100; background: var(--grad-cta);
  box-shadow: 0 18px 44px -12px rgba(255,138,61,.8); animation: pulseWarm 2.2s infinite; transition: transform .25s ease;
  padding-left: 7px; line-height: 1;
}
.play-btn:hover { transform: scale(1.08); }
.postersub { margin-top: 18px; font-size: .86rem; color: var(--muted-dark); }

.video-controls { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px; background: rgba(255,255,255,.04); border-top: 1px solid rgba(255,255,255,.08); }
.vc-link { font-family: var(--font-mono); font-size: .74rem; color: var(--accent-cyan); text-decoration: none; border-bottom: 1px solid rgba(35,213,232,.35); padding-bottom: 1px; transition: color .2s, border-color .2s; }
.vc-link:hover { color: #fff; border-color: #fff; }
.vc-hint { font-family: var(--font-mono); font-size: .7rem; color: var(--muted-dark); }

/* ---------- Stats / trust strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: center; padding: 28px 18px; border-radius: var(--radius); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); }
.stat .num { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; background: var(--grad-hot); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat .lab { font-size: .92rem; color: var(--muted-dark); margin-top: 8px; }

.stars { color: var(--accent-amber); letter-spacing: 3px; font-size: 1.15rem; }

/* ---------- Pain cards ---------- */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pain-card { background: #0e1426; border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius); padding: 30px 26px; }
.pain-card .pc-ico { font-size: 1.8rem; margin-bottom: 16px; }
.pain-card h4 { font-size: 1.2rem; margin-bottom: 10px; color: #fff; }
.pain-card p { color: var(--muted-dark); font-size: .98rem; }

/* ---------- Comparison ---------- */
.cmp { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.cmp-col { border-radius: var(--radius-lg); padding: 32px; }
.cmp-old { background: #eef0f8; border: 1px solid #e1e4f0; }
.cmp-new { background: linear-gradient(165deg, #0b1020, #141f3b); border: 1px solid rgba(35,213,232,.3); color: var(--ink-light); box-shadow: var(--shadow-glow); }
.cmp-col h3 { margin-bottom: 22px; display: flex; align-items: center; gap: 10px; }
.cmp-old h3 { color: #8791ab; }
.cmp-list { display: grid; gap: 16px; }
.cmp-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; }
.cmp-list .x { color: #c0392b; font-weight: 800; }
.cmp-list .chk { color: var(--accent-green); font-weight: 800; }
.cmp-old li { color: #5b6580; }
.cmp-new li { color: #d7deee; }

/* ---------- Pillars ---------- */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar { background: #fff; border: 1px solid #e8ebf5; border-radius: var(--radius); padding: 30px 26px; position: relative; transition: transform .3s, box-shadow .3s; }
.pillar:hover { transform: translateY(-5px); box-shadow: 0 24px 50px -22px rgba(20,30,80,.25); }
.pillar .val { position: absolute; top: 22px; right: 22px; font-family: var(--font-mono); font-size: .78rem; color: var(--accent-purple); background: rgba(168,85,247,.1); padding: 5px 10px; border-radius: 8px; font-weight: 700; }
.pillar .pi { width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center; font-size: 1.6rem; background: var(--grad-hot); margin-bottom: 20px; box-shadow: 0 12px 26px -10px rgba(168,85,247,.6); }
.pillar h4 { font-size: 1.25rem; margin-bottom: 10px; }
.pillar p { color: var(--muted-light); font-size: .98rem; }

/* ---------- Value stack ---------- */
.stack-box { max-width: 820px; margin: 0 auto; background: #fff; color: var(--ink-dark); border: 1px solid #e8ebf5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.stack-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 28px; border-bottom: 1px solid #eef1f8; flex-wrap: wrap; }
.stack-row:last-of-type { border-bottom: none; }
.stack-row .name { font-family: var(--font-head); font-weight: 600; }
.stack-row .sval { font-family: var(--font-mono); color: var(--accent-purple); font-weight: 700; white-space: nowrap; }
.stack-total { display: flex; justify-content: space-between; align-items: center; padding: 26px 28px; background: linear-gradient(120deg, #0b1020, #15224a); color: #fff; flex-wrap: wrap; gap: 16px; }
.stack-total .lbl { font-family: var(--font-head); font-weight: 700; }
.stack-total .total { font-family: var(--font-mono); font-size: 2rem; font-weight: 800; color: var(--accent-cyan); }
.stack-price { text-align: center; padding: 36px 28px; }
.stack-price .reg { font-size: 1.35rem; color: var(--muted-light); }
.stack-price .now { font-family: var(--font-head); font-size: clamp(2.8rem, 7vw, 4.2rem); font-weight: 800; color: var(--ink-dark); }
.stack-price .now small { font-size: .5em; }
.stack-price .note { font-family: var(--font-mono); color: #0d9b6c; font-weight: 700; margin-top: 8px; letter-spacing: .03em; }

/* ---------- Bonus ---------- */
.bonus-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.bonus {
  background: linear-gradient(165deg, #0d1326, #131e3a); color: var(--ink-light);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 32px 30px; position: relative; overflow: hidden;
}
.bonus .bstar { position: absolute; top: -30px; right: -20px; font-size: 8rem; color: rgba(255,210,63,.12); pointer-events: none; }
.bonus .btag { display: inline-block; font-family: var(--font-mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-amber); background: rgba(255,210,63,.1); border: 1px solid rgba(255,210,63,.25); padding: 6px 12px; border-radius: 999px; margin-bottom: 16px; }
.bonus h4 { font-size: 1.4rem; margin-bottom: 12px; color: #fff; }
.bonus p { color: #c3cdea; font-size: .99rem; margin-bottom: 18px; }
.bonus .bval { font-family: var(--font-mono); color: var(--accent-cyan); font-weight: 700; }

/* ---------- Qualification ---------- */
.q-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 900px; margin: 0 auto; }
.q-col { border-radius: var(--radius-lg); padding: 34px; }
.q-yes { background: linear-gradient(165deg, rgba(46,230,165,.12), rgba(35,213,232,.08)); border: 1px solid rgba(46,230,165,.28); }
.q-no { background: #eef0f8; border: 1px solid #e1e4f0; }
.q-col h3 { margin-bottom: 20px; font-size: 1.3rem; }
.q-col ul { display: grid; gap: 14px; }
.q-col li { display: flex; gap: 11px; align-items: flex-start; font-size: 1rem; }
.q-yes li { color: #12392c; } .q-yes h3 { color: #0d2f23; }
.q-no li { color: #5b6580; }
.q-yes .chk { color: var(--accent-green); font-weight: 800; }
.q-no .x { color: #c0392b; font-weight: 800; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e6e9f3; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 18px; font-family: var(--font-head); font-size: 1.13rem; font-weight: 600; color: var(--ink-dark); }
.faq-q .plus { flex: none; font-size: 1.6rem; color: var(--accent-purple); transition: transform .3s; line-height: 1; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; color: var(--muted-light); }
.faq-a p { padding-bottom: 24px; }
.faq-item.open .faq-a { max-height: 600px; }

/* ---------- Final close ---------- */
.final { background: radial-gradient(1000px 600px at 50% -20%, rgba(168,85,247,.35), transparent 60%), radial-gradient(900px 500px at 10% 120%, rgba(35,213,232,.25), transparent 55%), var(--bg-dark); color: var(--ink-light); text-align: center; position: relative; overflow: hidden; }
.final-inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }
.final .lead { margin: 0 auto 40px; color: #b9c3dc; }

/* ---------- Footer ---------- */
.footer { background: #05070f; color: var(--muted-dark); padding: 60px 0 30px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer h5 { font-family: var(--font-head); color: #fff; margin-bottom: 16px; font-size: 1.05rem; }
.footer p, .footer li { font-size: .92rem; color: var(--muted-dark); }
.footer ul { display: grid; gap: 10px; }
.footer a:hover { color: var(--accent-cyan); }
.footer-brand { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: #fff; margin-bottom: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: .82rem; }
.footer .disclaimer-text { font-size: .8rem; color: #99a3bf; margin-top: 20px; line-height: 1.7; }
.wplus_disclaimer { margin-top: 22px; font-size: .8rem; color: #99a3bf; }

/* ---------- Sticky nav & progress ---------- */
.progress-bar { position: fixed; top: 0; left: 0; height: 4px; width: 0; background: var(--grad-hot); z-index: 999; transition: width .1s; }
.topnav {
  position: fixed; top: 4px; left: 0; right: 0; z-index: 998; padding: 14px 0;
  transition: background .3s, box-shadow .3s, padding .3s;
}
.topnav.solid { background: rgba(5,7,15,.82); backdrop-filter: blur(10px); box-shadow: 0 6px 24px -10px rgba(0,0,0,.5); padding: 10px 0; }
.topnav .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topnav .brand { font-family: var(--font-head); font-weight: 800; color: #fff; font-size: 1.06rem; }
.topnav .nav-cta { padding: 11px 20px; font-size: .92rem; }

/* floating bottom CTA (mobile) */
.float-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 997; padding: 12px 16px; background: rgba(5,7,15,.92); backdrop-filter: blur(10px); border-top: 1px solid rgba(255,255,255,.1); display: none; }
.float-cta .btn { width: 100%; padding: 16px; font-size: 1.02rem; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }

/* ---------- Legal pages ---------- */
.legal { background: #fff; }
.legal-head { padding: 40px 0 10px; }
.legal h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 8px; }
.legal .updated { font-family: var(--font-mono); font-size: .8rem; color: var(--muted-light); }
.legal-body { padding: 30px 0 70px; max-width: 820px; }
.legal-body h2 { font-size: 1.35rem; margin: 30px 0 12px; color: var(--ink-dark); }
.legal-body p, .legal-body li { font-size: 1.02rem; color: #4a5570; margin-bottom: 12px; }
.legal-body ul { list-style: disc; padding-left: 24px; margin-bottom: 18px; }
.legal-body a { color: var(--accent-purple); text-decoration: underline; }
.legal-body strong { color: var(--ink-dark); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .pain-grid, .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .loop { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .loop-node { flex: none; min-width: 0; }
  .loop-arrow { display: none; }
  .cmp { grid-template-columns: 1fr; }
  .q-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .pain-grid, .pillar-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .topnav .hide-sm { display: none; }
  .float-cta { display: block; }
  body { padding-bottom: 70px; }
  .hero-cta .btn { width: 100%; }
}
@media (min-width: 721px) {
  .float-cta { display: none !important; }
}
