/* ============================================================
   AIROIOPS redesign preview v5  -  shared stylesheet
   Pattern borrowed from genaipi.org:
   dark dramatic hero  ->  light readable body  ->  dark close.
   Hybrid structure: full homepage + real standalone pages.
   Brand kept: AIROIOPS purple + cyan.
   ============================================================ */

:root {
  --ink: #0c0d1f;
  --ink-2: #14132e;
  --bg: #ffffff;
  --tint: linear-gradient(180deg, #faf9ff 0%, #f0fbfd 100%);
  --card: #ffffff;
  --border: #e7e7f1;
  --border-2: #d6d6e6;
  --text: #11121f;
  --text-2: #56586e;
  --text-3: #8a8ca0;
  --purple: #7c5cff;
  --purple-deep: #6a47f0;
  --indigo: #6366f1;
  --cyan: #06b6d4;
  --r-sm: 14px;
  --r: 20px;
  --r-lg: 26px;
  --sh-1: 0 1px 2px rgba(17,18,40,.05), 0 10px 26px rgba(17,18,40,.07);
  --sh-2: 0 2px 6px rgba(17,18,40,.07), 0 22px 48px rgba(17,18,40,.13);
  --sh-purple: 0 14px 36px rgba(124,92,255,.34);
  --maxw: 1300px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg); color: var(--text);
  -webkit-font-smoothing: antialiased; line-height: 1.62;
}
a { color: inherit; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* preview ribbon ------------------------------------------------ */
.preview-bar {
  background: #000; color: #c9c4ff;
  font-size: 12px; font-weight: 600; text-align: center;
  padding: 7px 16px; letter-spacing: .01em;
}
.preview-bar b { color: #fff; font-weight: 700; }

/* ============ NAV ============================================= */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(12,13,32,.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 24px;
}
.logo {
  display: inline-flex; align-items: center; gap: 0;
  font-weight: 800; font-size: 20px; letter-spacing: -.02em;
  text-decoration: none; color: #fff;
}
.logo-mark { width: 26px; height: 26px; flex: none; margin-right: 9px; }
.logo span {
  background: linear-gradient(120deg, #a68bff, #5fe6ff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 24px; }
.nav-item {
  text-decoration: none; color: rgba(255,255,255,.66);
  font-size: 14.5px; font-weight: 500; transition: color .15s ease;
}
.nav-item:hover, .nav-item.current { color: #fff; }
.nav-cta {
  text-decoration: none; color: #fff;
  background: linear-gradient(120deg, var(--purple), var(--indigo));
  font-size: 14px; font-weight: 700;
  padding: 10px 20px; border-radius: var(--r-sm);
  box-shadow: 0 8px 20px rgba(124,92,255,.4);
  transition: transform .12s ease, box-shadow .15s ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(124,92,255,.5); }
.nav-lang { display: flex; align-items: center; gap: 3px; }
.nav-lang button {
  background: none; border: none; cursor: pointer; font-family: inherit;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.5);
  padding: 4px 6px; border-radius: 6px; transition: color .15s ease;
}
.nav-lang button:hover, .nav-lang button.active { color: #fff; }
.nav-lang-sep { color: rgba(255,255,255,.3); font-size: 12px; }
.nav-toggle {
  display: none; margin-left: auto; width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06);
  border-radius: 11px; cursor: pointer;
  flex-direction: column; gap: 4px; align-items: center; justify-content: center;
}
.nav-toggle span { width: 18px; height: 2px; background: #fff; border-radius: 2px; }

/* ============ BUTTONS ========================================= */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 15.5px; font-weight: 700; font-family: inherit;
  padding: 15px 26px; border-radius: var(--r-sm);
  text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .12s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease, color .16s ease;
}
.btn svg { transition: transform .15s ease; }
.btn-primary {
  background: linear-gradient(120deg, var(--purple), var(--indigo));
  color: #fff; box-shadow: var(--sh-purple);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(124,92,255,.46); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost { background: var(--card); color: var(--text); border-color: var(--border-2); }
.btn-ghost:hover { border-color: var(--purple); color: var(--purple-deep); transform: translateY(-2px); }
.btn-glass {
  background: rgba(255,255,255,.08); color: #fff;
  border-color: rgba(255,255,255,.28);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.btn-glass:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.btn.big { padding: 17px 28px; font-size: 16px; width: 100%; justify-content: center; }

/* ============ SECTION SCAFFOLD ================================ */
section { padding: 96px 0; }
.band-tint { background: var(--tint); }
.kicker {
  display: inline-block; font-size: 12.5px; font-weight: 800;
  letter-spacing: .13em; text-transform: uppercase; color: var(--purple);
  margin-bottom: 14px;
}
h2.h2 {
  font-size: clamp(29px, 4vw, 43px); line-height: 1.16;
  font-weight: 800; letter-spacing: -.025em; margin: 0 0 16px;
}
.grad {
  background: linear-gradient(120deg, var(--purple), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lede { font-size: 17.5px; color: var(--text-2); max-width: 680px; margin: 0 0 46px; }
.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }
.section-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 44px; }
.center .section-cta { justify-content: center; }

/* ============ HOME HERO (dark) ================================ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 520px at 78% 8%, rgba(124,92,255,.34), transparent 60%),
    radial-gradient(760px 520px at 6% 92%, rgba(6,182,212,.26), transparent 58%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
  padding: 78px 0 150px;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(700px 460px at 70% 30%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(700px 460px at 70% 30%, #000, transparent 75%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.04fr .96fr;
  gap: 56px; align-items: center;
}
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  color: #d9d6ff; font-size: 13px; font-weight: 600;
  padding: 8px 15px; border-radius: 999px; margin-bottom: 24px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74,222,128,.22);
}
h1 {
  font-size: clamp(40px, 5.6vw, 64px); line-height: 1.06;
  font-weight: 900; letter-spacing: -.035em; color: #fff; margin: 0 0 22px;
}
h1 .grad {
  background: linear-gradient(120deg, #a68bff, #5fe6ff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.hl {
  font-size: 18.5px; color: rgba(255,255,255,.74);
  margin: 0 0 30px; max-width: 540px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-alt { font-size: 14.5px; color: rgba(255,255,255,.5); margin: 20px 0 0; }
.cta-alt a { color: #a68bff; font-weight: 600; text-decoration: none; }
.cta-alt a:hover { text-decoration: underline; }
.trust {
  display: flex; align-items: center; gap: 12px;
  margin-top: 30px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.stars { color: #fbbf24; font-size: 15px; letter-spacing: 2px; }
.trust-text { font-size: 13.5px; color: rgba(255,255,255,.6); }

/* ============ PAGE HERO (compact dark, for sub-pages) ========= */
.page-hero {
  position: relative; overflow: hidden; text-align: center;
  background:
    radial-gradient(720px 420px at 50% 0%, rgba(124,92,255,.32), transparent 64%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
  padding: 70px 0 84px;
}
.page-hero .kicker { color: #a68bff; }
.page-hero h1 {
  font-size: clamp(33px, 4.6vw, 52px); margin: 0 auto 18px; max-width: 880px;
}
.page-hero .ph-lede {
  font-size: 17.5px; color: rgba(255,255,255,.72);
  max-width: 660px; margin: 0 auto;
}
.page-hero .section-cta { justify-content: center; }

/* ============ ROI CARD (dark hero) ============================ */
.roi-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r); overflow: hidden;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
}
.roi-head {
  display: flex; align-items: center; gap: 9px;
  padding: 16px 22px; border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 13.5px; font-weight: 700; color: #fff;
  background: rgba(255,255,255,.04);
}
.roi-head .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(6,182,212,.25);
}
.roi-body { padding: 26px 24px 28px; }
.roi-body label { display: block; margin-bottom: 24px; }
.roi-body label > span {
  display: block; font-size: 13.5px; font-weight: 600;
  color: rgba(255,255,255,.7); margin-bottom: 11px;
}
.roi-body input[type=range] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; border-radius: 6px;
  background: rgba(255,255,255,.16); outline: none;
}
.roi-body input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(120deg, var(--purple), var(--cyan));
  border: 3px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,.4); cursor: pointer;
}
.roi-body input[type=range]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--purple); border: 3px solid #fff; cursor: pointer;
}
.roi-body output {
  display: inline-block; margin-top: 10px;
  font-size: 13px; font-weight: 700; color: #fff;
  background: rgba(124,92,255,.3); padding: 3px 11px; border-radius: 7px;
}
.roi-out {
  margin-top: 8px; padding: 22px; border-radius: var(--r-sm);
  background: linear-gradient(135deg, rgba(124,92,255,.22), rgba(6,182,212,.18));
  border: 1px solid rgba(255,255,255,.14); text-align: center;
}
.roi-num { font-size: 40px; font-weight: 900; letter-spacing: -.02em; color: #fff; }
.roi-sub { font-size: 13px; color: rgba(255,255,255,.66); margin-top: 4px; }

/* ============ STAT STRIP ====================================== */
.stats { padding: 0; }
.stats-grid {
  position: relative; z-index: 5;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: -78px;
}
.stat {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); box-shadow: var(--sh-2);
  padding: 26px 22px; text-align: center;
}
.stat .num {
  font-size: 33px; font-weight: 900; letter-spacing: -.02em;
  background: linear-gradient(120deg, var(--purple-deep), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat .lbl { font-size: 13px; color: var(--text-2); margin-top: 4px; }

/* stat row that sits inside a normal section (sub-pages) */
.stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.stat-row.four { grid-template-columns: repeat(4, 1fr); }

/* ============ CARD GRID ======================================= */
.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px; box-shadow: var(--sh-1);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.card:hover {
  transform: translateY(-4px); box-shadow: var(--sh-2);
  border-color: var(--border-2);
}
.card-num {
  display: inline-block; font-size: 21px; font-weight: 800;
  color: var(--purple-deep); letter-spacing: -.01em; margin-bottom: 12px;
}
.card-num.chip {
  background: linear-gradient(120deg, rgba(124,92,255,.13), rgba(6,182,212,.13));
  color: var(--purple-deep); padding: 5px 13px; border-radius: 999px;
  font-size: 14px;
}
.card-num-suf { font-size: 14px; font-weight: 600; color: var(--text-3); }
.card h3 { font-size: 18px; font-weight: 700; margin: 0 0 9px; letter-spacing: -.01em; }
.card p { font-size: 14.5px; color: var(--text-2); margin: 0; }

/* ============ DEPARTMENT TABS ================================= */
.tabs {
  display: flex; flex-wrap: wrap; gap: 6px;
  border-bottom: 1px solid var(--border); margin-bottom: 30px;
}
.tab {
  background: none; border: none; cursor: pointer; font-family: inherit;
  font-size: 14.5px; font-weight: 600; color: var(--text-2);
  padding: 12px 18px; border-bottom: 2.5px solid transparent; margin-bottom: -1px;
  transition: color .15s ease, border-color .15s ease;
}
.tab:hover { color: var(--text); }
.tab.is-active { color: var(--purple-deep); border-bottom-color: var(--purple); }
.panel { display: none; }
.panel.is-active { display: grid; grid-template-columns: 1.18fr .82fr; gap: 28px; }
.sp-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 32px; box-shadow: var(--sh-1);
}
.sp-icon {
  width: 48px; height: 48px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  color: #fff; margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(124,92,255,.34);
}
.sp-card h3 { font-size: 21px; font-weight: 800; margin: 0 0 10px; letter-spacing: -.015em; }
.sp-card > p { font-size: 15px; color: var(--text-2); margin: 0 0 20px; }
.sp-bullets { list-style: none; padding: 0; margin: 0 0 22px; }
.sp-bullets li {
  font-size: 14.5px; color: var(--text); padding: 9px 0 9px 28px;
  position: relative; border-bottom: 1px solid var(--border);
}
.sp-bullets li:last-child { border-bottom: none; }
.sp-bullets li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 15px; height: 15px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(124,92,255,.18), rgba(6,182,212,.18));
  box-shadow: inset 0 0 0 2px var(--purple);
}
.sp-side {
  background: linear-gradient(165deg, #f4f1ff, #e9fbfd);
  border: 1px solid #e3def9; border-radius: var(--r); padding: 30px;
}
.sp-eyebrow {
  font-size: 12px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 18px;
}
.sp-stat { margin-bottom: 20px; }
.sp-stat .num {
  font-size: 32px; font-weight: 900; letter-spacing: -.02em;
  color: var(--purple-deep);
}
.sp-stat .lbl { font-size: 13px; color: var(--text-2); margin-top: 2px; }
.sp-disclaimer {
  font-size: 11.5px; color: var(--text-3);
  padding-top: 15px; border-top: 1px solid #e3def9;
}

/* ============ OUTCOMES (row list) ============================= */
.outcome-list { border-top: 1px solid var(--border); }
.outcome-row {
  display: grid; grid-template-columns: 220px 1fr; gap: 38px;
  padding: 32px 4px; border-bottom: 1px solid var(--border); align-items: start;
}
.outcome-no {
  font-size: 12px; font-weight: 800; letter-spacing: .14em;
  color: var(--text-3); margin-bottom: 7px;
}
.outcome-key {
  font-size: 32px; font-weight: 900; letter-spacing: -.025em;
  background: linear-gradient(120deg, var(--purple-deep), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.outcome-row h3 { font-size: 19px; font-weight: 700; letter-spacing: -.012em; margin: 2px 0 9px; }
.outcome-row p { font-size: 15px; color: var(--text-2); margin: 0; }

/* ============ ASSESSMENT (intro + numbered list) ============== */
.assess-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 54px; align-items: start; }
.assess-intro { position: sticky; top: 96px; }
.report-visual {
  margin-top: 28px; background: linear-gradient(180deg, var(--ink-2), var(--ink));
  border-radius: var(--r); padding: 24px; box-shadow: var(--sh-2);
}
.rv-doc {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px; padding: 20px;
}
.rv-line { height: 9px; border-radius: 5px; background: rgba(255,255,255,.13); margin-bottom: 10px; }
.rv-line.g { background: linear-gradient(90deg, var(--purple), var(--cyan)); width: 72%; }
.rv-line.s { width: 52%; margin-bottom: 0; }
.rv-cap { font-size: 11.5px; color: rgba(255,255,255,.55); margin-top: 16px; text-align: center; }
.assess-steps { list-style: none; margin: 0; padding: 0; }
.assess-steps li { position: relative; padding: 0 0 30px 72px; }
.assess-steps li:last-child { padding-bottom: 0; }
.assess-steps li::before {
  content: attr(data-n); position: absolute; left: 0; top: 0;
  width: 48px; height: 48px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  color: #fff; font-weight: 800; font-size: 15px;
  box-shadow: 0 8px 18px rgba(124,92,255,.32);
}
.assess-steps li::after {
  content: ""; position: absolute; left: 23px; top: 54px; bottom: 6px;
  width: 2px; background: var(--border-2);
}
.assess-steps li:last-child::after { display: none; }
.assess-steps h3 { font-size: 19px; font-weight: 700; margin: 3px 0 8px; letter-spacing: -.012em; }
.assess-steps p { font-size: 15px; color: var(--text-2); margin: 0; }

/* ============ HOW (connected timeline) ======================== */
.timeline { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.timeline::before {
  content: ""; position: absolute; left: 16%; right: 16%; top: 28px; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--cyan)); opacity: .4;
}
.tl-step { position: relative; }
.tl-node {
  position: relative; z-index: 1;
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  color: #fff; font-weight: 800; font-size: 21px;
  box-shadow: 0 10px 24px rgba(124,92,255,.38);
}
.tl-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 26px 24px; box-shadow: var(--sh-1);
}
.tl-day {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .07em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 7px;
}
.tl-card h3 { font-size: 18.5px; font-weight: 700; margin: 0 0 9px; letter-spacing: -.012em; }
.tl-card p { font-size: 14.5px; color: var(--text-2); margin: 0; }

/* ============ BUILDS LIST ===================================== */
.builds-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.build-row {
  display: block;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 24px 26px; box-shadow: var(--sh-1);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.build-row:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: var(--border-2); }
.build-row.retainer { background: linear-gradient(160deg, #f4f1ff, #e9fbfd); border-color: #e3def9; }
.build-tag {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 12px;
  background: linear-gradient(120deg, var(--purple-deep), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.build-row h3 { font-size: 17.5px; font-weight: 800; margin: 0 0 7px; letter-spacing: -.015em; line-height: 1.25; }
.build-row p { font-size: 14px; color: var(--text-2); margin: 0; line-height: 1.5; }
@media (max-width: 900px) { .builds-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .builds-list { grid-template-columns: 1fr; } }

/* ============ FAQ ACCORDION =================================== */
.faq-acc { max-width: 860px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--r-sm);
  background: var(--card); margin-bottom: 12px; box-shadow: var(--sh-1); overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: inherit; font-weight: 700; font-size: 16.5px; color: var(--text);
  padding: 20px 24px; display: flex; justify-content: space-between;
  align-items: center; gap: 18px;
}
.faq-ico {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px;
  background: linear-gradient(135deg, rgba(124,92,255,.14), rgba(6,182,212,.14));
  color: var(--purple-deep); font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a-inner { padding: 0 24px 22px; }
.faq-a-inner p { font-size: 15px; color: var(--text-2); margin: 0; }
.faq-item.open .faq-ico { background: linear-gradient(135deg, var(--purple), var(--indigo)); color: #fff; }

/* ============ STORY CARDS (customers) ========================= */
.story {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 36px; box-shadow: var(--sh-1);
  margin-bottom: 18px;
}
.story-chapter {
  font-size: 12px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--purple-deep); margin-bottom: 10px;
}
.story h3 { font-size: 21px; font-weight: 800; letter-spacing: -.015em; margin: 0 0 12px; }
.story > p { font-size: 14.5px; color: var(--text-2); margin: 0 0 22px; }
.story-metrics { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.story-metrics > div {
  flex: 1; min-width: 150px; background: var(--tint);
  border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 16px; text-align: center;
}
.story-metrics .sm-num {
  display: block; font-size: 22px; font-weight: 900;
  color: var(--purple-deep); letter-spacing: -.02em;
}
.story-metrics .sm-lbl { display: block; font-size: 12px; color: var(--text-2); margin-top: 3px; }
.story.soon { border-style: dashed; box-shadow: none; opacity: .72; }
.story.soon .story-chapter { color: var(--text-3); }

/* ============ PROOF (built visual) ============================ */
.proof-card {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 0;
  border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-2);
}
.proof-main { padding: 40px; background: var(--card); }
.proof-tag {
  font-size: 11.5px; font-weight: 800; letter-spacing: .1em;
  color: var(--purple-deep); margin-bottom: 14px;
}
.proof-main h3 {
  font-size: 22px; font-weight: 800; letter-spacing: -.015em; margin: 0 0 14px;
}
.proof-main > p { font-size: 14.5px; color: var(--text-2); margin: 0 0 24px; }
.proof-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 26px; }
.proof-metrics > div {
  background: var(--tint); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 16px 12px; text-align: center;
}
.proof-metrics .pm-num {
  display: block; font-size: 23px; font-weight: 900;
  color: var(--purple-deep); letter-spacing: -.02em;
}
.proof-metrics .pm-lbl { display: block; font-size: 12px; color: var(--text-2); margin-top: 3px; }
.proof-visual {
  background:
    radial-gradient(420px 300px at 80% 0%, rgba(124,92,255,.4), transparent 65%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
  padding: 32px; display: flex; flex-direction: column; gap: 14px; justify-content: center;
}
.pv-row { display: flex; gap: 12px; }
.pv-tile {
  flex: 1; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13); border-radius: 13px; padding: 14px;
}
.pv-tile .t { font-size: 10.5px; color: rgba(255,255,255,.55); letter-spacing: .04em; }
.pv-tile .v { font-size: 21px; font-weight: 800; color: #fff; margin-top: 3px; }
.pv-tile .v.g {
  background: linear-gradient(120deg, #a68bff, #5fe6ff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pv-bars { display: flex; align-items: flex-end; gap: 8px; height: 84px; }
.pv-bars span {
  flex: 1; border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--purple), rgba(6,182,212,.55));
}
.pv-cap { font-size: 10.5px; color: rgba(255,255,255,.4); text-align: center; }
.proof-browse { text-align: center; margin-top: 30px; }

/* ============ TESTIMONIAL ===================================== */
.tcard {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--sh-2);
  padding: 46px; max-width: 800px; margin: 0 auto; position: relative;
}
.tmark {
  font-size: 72px; font-weight: 900; line-height: .55;
  background: linear-gradient(120deg, var(--purple), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: .5; margin-bottom: 10px;
}
.tquote {
  font-size: 22px; font-weight: 600; line-height: 1.5;
  color: var(--text); margin: 0 0 26px; letter-spacing: -.012em;
}
.tattr { display: flex; align-items: center; gap: 14px; }
.tav {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  color: #fff; font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.twho { font-weight: 700; font-size: 15px; }
.trole { font-size: 13px; color: var(--text-2); }

/* ============ ABOUT =========================================== */
.about-grid {
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: 58px; align-items: center;
}
.about-grid p { font-size: 16px; color: var(--text-2); margin: 0 0 16px; }
.about-visual {
  position: relative; aspect-ratio: 1; max-width: 480px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}
.av-ring { position: absolute; border-radius: 50%; border: 1.5px solid; }
.av-ring-1 { inset: 0; border-color: #e2ddf8; }
.av-ring-2 { inset: 15%; border-color: #d3e9f4; }
.av-ring-3 { inset: 30%; border-color: #e2ddf8; }
.av-portrait {
  position: relative; z-index: 1;
  width: 300px; height: 300px; border-radius: 50%;
  object-fit: cover; object-position: center 18%;
  border: 4px solid #fff;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  box-shadow: 0 22px 50px rgba(124,92,255,.34);
}

/* ============ FINAL / BOOK + CTA BAND (dark) ================== */
.final, .cta-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(800px 480px at 50% 0%, rgba(124,92,255,.34), transparent 62%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
}
.final-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; text-align: center; }
.final h2, .cta-band h2 { font-size: clamp(28px, 3.8vw, 39px); color: #fff; }
.final h2 .grad, .cta-band h2 .grad {
  background: linear-gradient(120deg, #a68bff, #5fe6ff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.final .final-inner > p:not(.final-alt), .cta-band p {
  font-size: 16.5px; color: rgba(255,255,255,.72); margin: 0 0 34px;
}
.cta-band .inner { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; text-align: center; }
.cta-band .section-cta { justify-content: center; margin-top: 0; }
.qual-form {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); box-shadow: 0 30px 70px rgba(0,0,0,.5);
  padding: 32px; text-align: left;
}
.qual-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.qual-field { display: block; margin-bottom: 17px; }
.qual-field > span {
  display: block; font-size: 13.5px; font-weight: 600;
  color: var(--text); margin-bottom: 7px;
}
.qual-field input[type=text],
.qual-field input[type=email],
.qual-field select,
.qual-field textarea {
  width: 100%; font-family: inherit; font-size: 14.5px;
  padding: 12px 14px; border: 1.5px solid var(--border-2);
  border-radius: 11px; background: #fff; color: var(--text);
  outline: none; transition: border-color .15s ease, box-shadow .15s ease;
}
.qual-field input:focus, .qual-field select:focus, .qual-field textarea:focus {
  border-color: var(--purple); box-shadow: 0 0 0 3px rgba(124,92,255,.15);
}
.qual-field textarea { resize: vertical; }
.qual-checks { display: flex; flex-wrap: wrap; gap: 9px 18px; margin-top: 5px; }
.qual-checks label {
  display: flex; align-items: center; gap: 7px;
  font-size: 14px; color: var(--text-2); cursor: pointer;
}
.qual-checks input { accent-color: var(--purple); }
.final-alt { font-size: 14px; color: rgba(255,255,255,.5); margin: 22px 0 0; }
.final-alt a { color: #a68bff; font-weight: 600; text-decoration: none; }
.final-sub { font-size: 13px; color: rgba(255,255,255,.42); margin-top: 14px; }
.form-done {
  display: none; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 26px; text-align: center;
  font-size: 15px; font-weight: 600; color: var(--purple-deep);
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
}

/* ============ FOOTER ========================================== */
footer { background: var(--ink); color: #b7b9cc; padding: 48px 0; }
.foot-area { font-size: 13.5px; max-width: 740px; margin: 0 auto 24px; text-align: center; }
.foot-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; max-width: var(--maxw);
  margin: 0 auto; padding: 24px 24px 0;
  border-top: 1px solid rgba(255,255,255,.09); font-size: 13px;
}
.foot-mid {
  font-weight: 800; letter-spacing: .1em;
  background: linear-gradient(120deg, #a68bff, #5fe6ff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ============ RESPONSIVE ====================================== */
@media (max-width: 940px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #0e0f26; border-bottom: 1px solid rgba(255,255,255,.1);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 18px 18px; display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-item { padding: 13px 6px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-cta { text-align: center; margin-top: 12px; }
  .nav-toggle { display: flex; }
  .hero-grid, .about-grid { grid-template-columns: 1fr; gap: 42px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); margin-top: -64px; }
  .panel.is-active { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 30px; }
  .timeline::before { display: none; }
  .tl-node { margin-bottom: 14px; }
  .assess-grid { grid-template-columns: 1fr; gap: 34px; }
  .assess-intro { position: static; }
  .proof-card { grid-template-columns: 1fr; }
  .proof-visual { min-height: 280px; }
  .stat-row, .stat-row.four { grid-template-columns: repeat(2, 1fr); }
  .grid.three { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  section { padding: 64px 0; }
  .hero { padding: 56px 0 132px; }
  .page-hero { padding: 52px 0 64px; }
  .wrap, .wrap-narrow { padding: 0 18px; }
  .nav-inner { padding: 12px 18px; }
  .grid, .grid.three { grid-template-columns: 1fr; }
  .qual-row { grid-template-columns: 1fr; }
  .proof-metrics { grid-template-columns: 1fr; }
  .proof-main, .tcard, .qual-form, .story { padding: 26px; }
  .foot-bottom { justify-content: center; text-align: center; }
  .outcome-row { grid-template-columns: 1fr; gap: 10px; padding: 24px 2px; }
  .outcome-key { font-size: 27px; }
  .assess-steps li { padding-left: 62px; }
  .build-row { grid-template-columns: 1fr; gap: 12px; padding: 24px; }
  .stat-row, .stat-row.four { grid-template-columns: 1fr; }
}

/* ============ FORM: honeypot + conditional inputs ============= */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.heard-other-input, .referral-input { display: none; margin-top: 10px; }
.heard-other-input.is-visible, .referral-input.is-visible { display: block; }

/* ============ ASSESSMENT INTAKE (light body, sub-page) ======== */
.intake-meta {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  justify-content: center; margin-top: 26px;
  font-size: 13.5px; color: rgba(255,255,255,.6);
}
.intake-meta b { color: #fff; font-weight: 700; }
.intake-wrap { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.intake-form { background: none; border: none; box-shadow: none; padding: 0; }
.intake-section {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); box-shadow: var(--sh-1);
  padding: 32px 32px; margin-bottom: 20px;
}
.intake-section.priority {
  border-color: var(--purple);
  box-shadow: 0 14px 40px rgba(124,92,255,.18);
}
.intake-head { display: flex; align-items: center; gap: 13px; margin-bottom: 4px; }
.intake-num {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  color: #fff; font-weight: 800; font-size: 15px;
  box-shadow: 0 6px 16px rgba(124,92,255,.3);
}
.intake-title { font-size: 21px; font-weight: 800; letter-spacing: -.018em; margin: 0; }
.intake-sub { color: var(--text-2); font-size: 14px; margin: 8px 0 22px; }
.intake-form .qual-field > span { font-size: 14px; }
.intake-form .qual-field .req { color: var(--purple); margin-left: 3px; }
.intake-help { font-size: 13px; color: var(--text-3); margin: -2px 0 8px; font-style: italic; }
.intake-form textarea { min-height: 86px; }
.intake-form textarea.tall { min-height: 124px; }
.qual-field input[type=tel],
.qual-field input[type=url] {
  width: 100%; font-family: inherit; font-size: 14.5px;
  padding: 12px 14px; border: 1.5px solid var(--border-2);
  border-radius: 11px; background: #fff; color: var(--text);
  outline: none; transition: border-color .15s ease, box-shadow .15s ease;
}
.qual-field input[type=tel]:focus,
.qual-field input[type=url]:focus {
  border-color: var(--purple); box-shadow: 0 0 0 3px rgba(124,92,255,.15);
}
.qual-field input[type=file] {
  width: 100%; font-family: inherit; font-size: 13.5px;
  padding: 11px 14px; border: 1.5px dashed var(--border-2);
  border-radius: 11px; background: #fff; color: var(--text-2);
  cursor: pointer; transition: border-color .15s ease;
}
.qual-field input[type=file]:hover { border-color: var(--purple); }
.qual-field input[type=color] {
  width: 100%; height: 48px; padding: 5px;
  border: 1.5px solid var(--border-2); border-radius: 11px;
  background: #fff; cursor: pointer;
}
.intake-price {
  display: inline-flex; align-items: baseline; gap: 7px;
  padding: 12px 20px; background: #fff; border: 1px solid #e3def9;
  border-radius: 12px; margin-bottom: 18px;
}
.intake-price .num { font-size: 26px; font-weight: 800; color: var(--text); letter-spacing: -.02em; }
.intake-price .lbl { font-size: 14px; color: var(--text-2); font-weight: 500; }
.intake-price .plus { font-size: 17px; color: var(--text-3); margin: 0 3px; }
.intake-submit {
  background: linear-gradient(160deg, #f4f1ff, #e9fbfd);
  border: 1px solid #e3def9; border-radius: var(--r);
  padding: 36px 32px; text-align: center;
}
.intake-submit p { font-size: 15px; color: var(--text-2); margin: 0 0 22px; }
.intake-submit .btn.big { width: auto; }
@media (max-width: 600px) {
  .intake-section, .intake-submit { padding: 26px 22px; }
}

/* ============ CASE STUDY (light body, sub-page) ============== */
.cs-tags { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin-top: 24px; }
.cs-tag {
  padding: 6px 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px;
  font-size: 12px; color: rgba(255,255,255,.72); font-weight: 600;
  background: rgba(255,255,255,.06);
}
.cs-note {
  background: linear-gradient(135deg, #f4f1ff, #e9fbfd);
  border: 1px solid #e3def9; border-radius: var(--r-sm);
  padding: 18px 22px; font-size: 14.5px; color: var(--text-2);
  margin-bottom: 28px; line-height: 1.6;
}
.cs-note strong { color: var(--text); }
.cs-note a { color: var(--purple-deep); font-weight: 600; }
.cs-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 28px; }
.cs-metric {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-sm); box-shadow: var(--sh-1); padding: 24px 22px;
}
.cs-metric .num {
  font-size: clamp(26px, 3vw, 36px); font-weight: 900; letter-spacing: -.02em;
  background: linear-gradient(120deg, var(--purple-deep), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1.08; margin-bottom: 8px;
}
.cs-metric .lbl { font-size: 12.5px; color: var(--text-2); line-height: 1.45; }
.cs-metric .compound {
  margin-top: 13px; padding-top: 12px; border-top: 1px solid var(--border);
  font-size: 11.5px; color: var(--text-3); line-height: 1.5;
}
.cs-find-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 26px; }
.cs-find {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-sm); box-shadow: var(--sh-1); padding: 26px;
}
.cs-find-num {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .08em;
  color: var(--purple-deep); margin-bottom: 12px;
  background: linear-gradient(120deg, rgba(124,92,255,.13), rgba(6,182,212,.13));
  padding: 4px 11px; border-radius: 999px;
}
.cs-find h3 { font-size: 17.5px; font-weight: 800; margin: 0 0 9px; letter-spacing: -.012em; }
.cs-find p { font-size: 14px; color: var(--text-2); margin: 0; }
.cs-table {
  width: 100%; border-collapse: collapse; margin-top: 26px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-sm); overflow: hidden; box-shadow: var(--sh-1);
}
.cs-table th, .cs-table td {
  padding: 13px 16px; border-bottom: 1px solid var(--border);
  text-align: left; font-size: 13.5px;
}
.cs-table th {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-3); font-weight: 800; background: var(--tint);
}
.cs-table tr:last-child td { border-bottom: none; }
.cs-table td { color: var(--text-2); }
.cs-table td strong { color: var(--text); font-weight: 700; }
.cs-table .pos { color: var(--purple-deep); font-weight: 700; }
.cs-callout {
  background: linear-gradient(135deg, #f4f1ff, #e9fbfd);
  border: 1px solid #e3def9; border-radius: var(--r);
  padding: 28px 32px; margin-top: 28px;
}
.cs-callout-label {
  font-size: 11.5px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--purple-deep); margin-bottom: 10px;
}
.cs-callout p { margin: 0; font-size: 16px; color: var(--text); line-height: 1.6; font-weight: 500; }
.cs-callout a { color: var(--purple-deep); font-weight: 700; }
.cs-quickwins { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 26px; }
.cs-qw {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); box-shadow: var(--sh-1); padding: 28px 26px;
}
.cs-qw-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 13px; }
.cs-qw-num {
  font-size: 12px; font-weight: 800; letter-spacing: .08em; color: var(--purple-deep);
  background: linear-gradient(120deg, rgba(124,92,255,.13), rgba(6,182,212,.13));
  padding: 4px 11px; border-radius: 999px;
}
.cs-qw-cost { font-size: 12px; color: var(--text-3); font-weight: 600; }
.cs-qw h3 { font-size: 17.5px; font-weight: 800; margin: 0 0 9px; letter-spacing: -.012em; }
.cs-qw p { font-size: 14px; color: var(--text-2); margin: 0 0 16px; }
.cs-qw-foot {
  display: flex; gap: 18px; flex-wrap: wrap; padding-top: 15px;
  border-top: 1px solid var(--border); font-size: 12.5px; color: var(--text-3);
}
.cs-qw-foot strong { color: var(--text-2); font-weight: 700; }
.cs-outcomes {
  list-style: none; padding: 0; margin: 26px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.cs-outcomes li {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-sm); box-shadow: var(--sh-1);
  font-size: 14.5px; color: var(--text); line-height: 1.5;
  padding: 16px 18px 16px 46px; position: relative;
}
.cs-outcomes li::before {
  content: ""; position: absolute; left: 16px; top: 18px;
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
}
.cs-outcomes li::after {
  content: ""; position: absolute; left: 21px; top: 23px;
  width: 8px; height: 4px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.cs-stack { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.cs-stack-chip {
  padding: 10px 16px; border: 1px solid var(--border-2); border-radius: 12px;
  background: var(--card); font-size: 13px; color: var(--text-2); font-weight: 500;
}
.cs-stack-chip strong { color: var(--text); font-weight: 700; }
.cs-phase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 26px; }
.cs-phase {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); box-shadow: var(--sh-1); padding: 28px 26px;
}
.cs-phase-num {
  font-size: 11.5px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--purple-deep); margin-bottom: 11px;
}
.cs-phase h3 { font-size: 17.5px; font-weight: 800; margin: 0 0 9px; letter-spacing: -.012em; }
.cs-phase p { font-size: 14px; color: var(--text-2); margin: 0; }
.cs-prose { font-size: 16.5px; color: var(--text-2); max-width: 70ch; margin: 0 0 16px; }
@media (max-width: 940px) {
  .cs-metrics { grid-template-columns: repeat(2, 1fr); }
  .cs-find-grid, .cs-quickwins, .cs-outcomes { grid-template-columns: 1fr; }
  .cs-phase-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .cs-metrics { grid-template-columns: 1fr; }
  .cs-callout { padding: 24px 22px; }
  .cs-table th, .cs-table td { padding: 11px 13px; font-size: 12.5px; }
}

/* ============ LISTING ENGINE REPORT (light body, sub-page) ==== */
.lr-banner {
  background: linear-gradient(135deg, #fff7e6, #fffdf5);
  border: 1px solid #f4dca0; border-radius: var(--r-sm);
  padding: 16px 20px; margin-bottom: 30px;
  font-size: 14px; color: #8a6914; line-height: 1.55;
}
.lr-banner strong { color: #6b4f00; font-weight: 800; }
.lr-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lr-kpi {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-sm); box-shadow: var(--sh-1); padding: 22px 20px;
}
.lr-kpi .lr-kpi-lbl {
  font-size: 11.5px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 8px;
}
.lr-kpi .lr-kpi-val {
  font-size: 34px; font-weight: 900; letter-spacing: -.02em;
  background: linear-gradient(120deg, var(--purple-deep), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.lr-kpi .lr-trend {
  display: inline-block; margin-top: 9px;
  font-size: 11.5px; font-weight: 700;
  padding: 3px 10px; border-radius: 999px;
}
.lr-kpi .lr-trend.up { color: #15803d; background: rgba(34,197,94,.12); }
.lr-kpi .lr-trend.flat { color: var(--text-3); background: var(--tint); }
.lr-topics {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); box-shadow: var(--sh-1); overflow: hidden;
}
.lr-topic {
  display: grid; grid-template-columns: 44px 1fr auto;
  align-items: center; gap: 18px;
  padding: 18px 24px; border-bottom: 1px solid var(--border);
}
.lr-topic:last-child { border-bottom: none; }
.lr-rank {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  color: #fff; font-weight: 800; font-size: 14px;
}
.lr-topic-name { font-weight: 700; font-size: 15px; color: var(--text); margin-bottom: 2px; }
.lr-topic-meta { font-size: 12.5px; color: var(--text-3); }
.lr-topic-stats { display: flex; gap: 22px; }
.lr-topic-stats .lr-st { text-align: right; }
.lr-topic-stats .lr-st .n { font-size: 18px; font-weight: 900; color: var(--purple-deep); line-height: 1; }
.lr-topic-stats .lr-st .l {
  font-size: 10px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-3); margin-top: 4px;
}
.lr-plat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lr-plat {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-sm); box-shadow: var(--sh-1); padding: 20px;
}
.lr-plat.top { border-color: #aee9c1; box-shadow: 0 12px 30px rgba(34,197,94,.14); }
.lr-plat-head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.lr-badge {
  width: 30px; height: 30px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 12px; font-weight: 800;
}
.lr-badge.fb { background: #1877f2; }
.lr-badge.ig { background: linear-gradient(45deg, #fdcb52, #e1306c, #833ab4); }
.lr-badge.li { background: #0a66c2; }
.lr-badge.pin { background: #e60023; }
.lr-badge.tt { background: #111; }
.lr-badge.yt { background: #ff0000; }
.lr-plat-name { font-weight: 800; font-size: 15px; }
.lr-tag {
  font-size: 10px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: #15803d;
  background: rgba(34,197,94,.14); padding: 3px 8px; border-radius: 6px;
}
.lr-plat-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.lr-plat-stats .lr-ps {
  text-align: center; padding: 10px 4px;
  background: var(--tint); border: 1px solid var(--border); border-radius: 9px;
}
.lr-plat-stats .lr-ps .n { font-size: 17px; font-weight: 900; color: var(--text); line-height: 1; }
.lr-plat-stats .lr-ps .l {
  font-size: 10px; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; color: var(--text-3); margin-top: 5px;
}
.lr-insights { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.lr-insight {
  border-radius: var(--r); padding: 26px; border: 1px solid var(--border);
}
.lr-insight.good { background: linear-gradient(135deg, #f0fdf4, #ffffff); border-color: #aee9c1; }
.lr-insight.adjust { background: linear-gradient(135deg, #fffbeb, #ffffff); border-color: #f4dca0; }
.lr-insight h3 { font-size: 17px; font-weight: 800; margin: 0 0 14px; }
.lr-insight.good h3 { color: #15803d; }
.lr-insight.adjust h3 { color: #b45309; }
.lr-insight ul { margin: 0; padding-left: 20px; }
.lr-insight ul li { font-size: 14px; color: var(--text-2); margin-bottom: 10px; }
.lr-insight ul li strong { color: var(--text); font-weight: 700; }
.lr-next {
  background: linear-gradient(135deg, #f4f1ff, #e9fbfd);
  border: 1px solid #e3def9; border-radius: var(--r);
  padding: 26px 30px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.lr-next h3 { font-size: 18px; font-weight: 800; margin: 0 0 5px; }
.lr-next p { font-size: 14px; color: var(--text-2); margin: 0; }
.lr-next-date {
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  color: #fff; padding: 14px 22px; border-radius: var(--r-sm); text-align: center;
}
.lr-next-date .d { font-size: 22px; font-weight: 900; line-height: 1; }
.lr-next-date .y {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  color: rgba(255,255,255,.78); margin-top: 5px;
}
@media (max-width: 940px) {
  .lr-kpis { grid-template-columns: repeat(2, 1fr); }
  .lr-plat-grid { grid-template-columns: 1fr; }
  .lr-insights { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .lr-kpis { grid-template-columns: 1fr; }
  .lr-topic { grid-template-columns: 36px 1fr; }
  .lr-topic-stats { grid-column: 1 / -1; justify-content: flex-start; padding-left: 54px; }
}

/* ============ STAGE-1 CHOOSER ============ */
.chooser-grid { margin-top: 36px; }
.chooser-card { display: flex; flex-direction: column; text-align: left; }
.chooser-card h3 { font-size: 20px; font-weight: 800; margin: 0 0 10px; letter-spacing: -.01em; }
.chooser-card p { font-size: 14.5px; color: var(--text-2); margin: 0 0 22px; }
.chooser-card .btn { align-self: flex-start; margin-top: auto; }
.chooser-status { font-size: 13.5px; color: var(--purple-deep); font-weight: 600; margin: 14px 0 0 !important; min-height: 1.1em; }
.chooser-status:empty { display: none; }
.intakeopt-call {
  margin-top: auto !important;
  font-size: 18px !important; font-weight: 800;
  color: var(--purple-deep) !important; letter-spacing: -.01em;
}
.intakeopt-call a {
  color: inherit; text-decoration: underline;
  text-underline-offset: 3px; text-decoration-thickness: 2px;
}
.intakeopt-call a:hover { opacity: .8; }
@media (max-width: 720px) {
  .chooser-grid { grid-template-columns: 1fr; }
  .chooser-card .btn { align-self: stretch; justify-content: center; }
}

/* ============ LEGAL LINKS (footer) ============================ */
.foot-links {
  text-align: center;
  padding: 0 24px 20px;
  font-size: 13px;
}
.foot-links a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
}
.foot-links a:hover { color: #fff; }
.foot-links span { margin: 0 8px; color: rgba(255,255,255,.25); }

/* ============ HERO AGENT DEMO (iMessage-style) ============ */
.hero-demo { display: flex; flex-direction: column; align-items: center; }
.demo-phone {
  width: 100%; max-width: 372px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px; overflow: hidden;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 30px 70px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.08);
}
.dp-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
}
.dp-id { display: flex; align-items: center; gap: 11px; }
.dp-av {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 17px; color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  box-shadow: 0 4px 14px rgba(124,92,255,.45);
}
.dp-name { font-size: 14.5px; font-weight: 700; color: #fff; letter-spacing: -.01em; }
.dp-sub { display: flex; align-items: center; gap: 6px; font-size: 11.5px; color: rgba(255,255,255,.55); margin-top: 1px; }
.dp-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 3px rgba(74,222,128,.22); }
.dp-live {
  font-size: 10px; font-weight: 800; letter-spacing: .12em; color: #fff;
  background: rgba(6,182,212,.22); border: 1px solid rgba(6,182,212,.4);
  padding: 4px 9px; border-radius: 999px;
}
.dp-thread {
  display: flex; flex-direction: column; gap: 9px;
  padding: 20px 16px 18px; min-height: 322px;
}
.dp-msg {
  max-width: 82%; padding: 9px 13px;
  font-size: 13.5px; line-height: 1.42; border-radius: 17px;
  opacity: 0; transform: translateY(10px) scale(.98);
  animation: dpIn .5s cubic-bezier(.22,1,.36,1) forwards;
}
.dp-msg.in {
  align-self: flex-start;
  background: rgba(255,255,255,.13); color: rgba(255,255,255,.94);
  border-bottom-left-radius: 6px;
}
.dp-msg.out {
  align-self: flex-end;
  background: linear-gradient(120deg, var(--purple), var(--indigo));
  color: #fff; border-bottom-right-radius: 6px;
  box-shadow: 0 6px 16px rgba(124,92,255,.32);
}
.dp-thread .dp-msg:nth-child(1) { animation-delay: .3s; }
.dp-thread .dp-msg:nth-child(2) { animation-delay: 1.0s; }
.dp-thread .dp-msg:nth-child(3) { animation-delay: 1.7s; }
.dp-thread .dp-msg:nth-child(4) { animation-delay: 2.5s; }
.dp-thread .dp-msg:nth-child(5) { animation-delay: 3.3s; }
.dp-last { animation-delay: 5.0s !important; }
.dp-typing {
  align-self: flex-start; display: flex; gap: 5px;
  padding: 12px 14px; border-radius: 17px; border-bottom-left-radius: 6px;
  background: rgba(255,255,255,.13);
  opacity: 0; animation: dpFlash 1.4s ease 3.8s forwards;
}
.dp-typing span {
  width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.6);
  animation: dpBlink 1s infinite ease-in-out;
}
.dp-typing span:nth-child(2) { animation-delay: .18s; }
.dp-typing span:nth-child(3) { animation-delay: .36s; }
.dp-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; border-top: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  color: #fff; font-weight: 700; font-size: 13.5px; text-decoration: none;
  transition: background .2s ease;
}
.dp-cta svg { transition: transform .2s ease; }
.dp-cta:hover { background: rgba(255,255,255,.12); }
.dp-cta:hover svg { transform: translateX(3px); }
.dp-cta:focus-visible { outline: 2px solid var(--cyan); outline-offset: -2px; }
.demo-cap {
  margin: 16px auto 0; max-width: 330px; text-align: center;
  font-size: 12.5px; line-height: 1.5; color: rgba(255,255,255,.55);
}
@keyframes dpIn { to { opacity: 1; transform: none; } }
@keyframes dpBlink { 0%, 60%, 100% { opacity: .35; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
@keyframes dpFlash { 0% { opacity: 0; transform: translateY(10px); } 16% { opacity: 1; transform: none; } 78% { opacity: 1; } 100% { opacity: 0; transform: translateY(-4px); } }
@media (prefers-reduced-motion: reduce) {
  .dp-msg { opacity: 1; transform: none; animation: none; }
  .dp-typing { display: none; }
}

/* ============ TRUST BAR ============ */
.trustbar { padding: 32px 0 8px; }
.trustbar-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 11px 22px;
}
.trust-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--text-2);
}
.trust-chip svg { color: var(--purple); flex-shrink: 0; }
@media (max-width: 600px) {
  .trustbar-row { gap: 9px 15px; }
  .trust-chip { font-size: 12px; }
}
