/* ============================================================
   SuplixIA — Landing
   Type: Sora (display) + Manrope (body)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:root {
  /* surfaces */
  --ink:       #0b1110;
  --ink-2:     #101a18;
  --ink-soft:  #16241f;
  --bg:        #ffffff;
  --bg-warm:   #f5f7f4;
  --bg-cool:   #eef2f0;
  --card:      #ffffff;

  /* text */
  --text:      #0c1412;
  --text-soft: #444f4b;
  --text-mut:  #6c7672;
  --on-dark:   #eef4f1;
  --on-dark-soft: #9cb0a9;

  /* brand */
  --green:        #14b866;
  --green-ink:    #0c9a6f;
  --green-deep:   #0fa58e;
  --green-bright: #25d366;
  --grad:  linear-gradient(135deg, #20cd7a 0%, #0fa58e 100%);
  --grad-soft: linear-gradient(135deg, rgba(32,205,122,.16), rgba(15,165,142,.16));
  --amber:     #e3993a;

  /* lines & shadow */
  --line:      rgba(12,20,18,.09);
  --line-2:    rgba(12,20,18,.14);
  --line-dark: rgba(255,255,255,.10);
  --shadow:    0 18px 50px -20px rgba(8,30,24,.30);
  --shadow-sm: 0 6px 20px -10px rgba(8,30,24,.25);
  --shadow-lg: 0 40px 90px -30px rgba(6,40,30,.55);

  --r:   16px;
  --r-lg: 26px;
  --maxw: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

/* ============================================================ layout */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-weight: 600;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green-ink);
  background: none; border: none;
  padding: 0; border-radius: 0;
  position: relative;
}
.eyebrow::before { /* index marker */
  content:""; width: 22px; height: 2px; border-radius: 2px;
  background: var(--grad); transform: none;
}
.eyebrow.on-dark { color: #7ff0bf; background: none; border: none; }
.section-head.center .eyebrow { justify-content: center; }

h1,h2,h3 { font-family: "Sora", sans-serif; font-weight: 700; letter-spacing: -.02em; line-height: 1.04; margin: 0; }
.section-head { max-width: 720px; margin: 0 0 clamp(34px,5vw,56px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.6vw, 50px); margin: 18px 0 0; }
.section-head p { font-size: clamp(16px,1.6vw,19px); color: var(--text-soft); line-height: 1.55; margin: 16px 0 0; }
.lead-dark .section-head h2 { color: var(--on-dark); }
.lead-dark .section-head p { color: var(--on-dark-soft); }

/* ============================================================ buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: "Sora"; font-weight: 600; font-size: 16px;
  padding: 16px 26px; border-radius: 13px;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s, color .18s;
  white-space: nowrap; will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  color: #04140e; background: var(--grad);
  box-shadow: 0 14px 30px -12px rgba(15,165,142,.7), inset 0 1px 0 rgba(255,255,255,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(15,165,142,.85), inset 0 1px 0 rgba(255,255,255,.4); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { color: var(--on-dark); border: 1px solid var(--line-dark); background: rgba(255,255,255,.04); }
.btn-ghost:hover { background: rgba(255,255,255,.09); transform: translateY(-2px); }
.btn-ghost.light { color: var(--text); border-color: var(--line-2); background: #fff; }
.btn-ghost.light:hover { background: var(--bg-warm); }
.btn-lg { padding: 19px 34px; font-size: 17px; }
.btn-block { width: 100%; }

/* online dot */
.dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--green-bright);
  position: relative; flex: none;
  box-shadow: 0 0 0 0 rgba(37,211,102,.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70%  { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.badge-2s {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: "Sora"; font-weight: 700; font-size: 12px; letter-spacing: .01em;
  color: #04140e; background: var(--green-bright);
  padding: 5px 10px; border-radius: 100px;
}

/* ============================================================ header */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(11,17,16,.72); backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line-dark);
  transition: background .3s;
}
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: "Sora"; font-weight: 700; font-size: 19px; color: var(--on-dark); letter-spacing: -.02em; }
.logo .mark {
  width: 30px; height: 30px; border-radius: 9px 9px 9px 3px;
  background: var(--grad); display: grid; place-items: center; color: #04140e;
  box-shadow: 0 6px 16px -6px rgba(15,165,142,.8);
}
.logo .mark svg { width: 16px; height: 16px; }
.logo b { color: var(--green-bright); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: var(--on-dark-soft); font-size: 14.5px; font-weight: 600; transition: color .15s; }
.nav-links a:hover { color: var(--on-dark); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav .btn { padding: 11px 20px; font-size: 14.5px; }
.nav-burger { display: none; }

/* ============================================================ hero */
.hero { background: var(--ink); color: var(--on-dark); padding: clamp(40px,6vw,76px) 0 clamp(60px,7vw,96px); overflow: hidden; position: relative; }
.hero::before { /* single soft glow — calm, behind the phone */
  content:""; position: absolute; inset: -20% -12% 0 auto; width: 70%; pointer-events: none; z-index: 0;
  background:
    radial-gradient(48% 52% at 80% 26%, rgba(32,205,122,.22), transparent 66%),
    radial-gradient(40% 44% at 96% 64%, rgba(15,165,142,.16), transparent 70%);
  animation: aurora 24s var(--ease) infinite alternate;
}
.hero::after { /* whisper of grid, concentrated near the phone */
  content:""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.038) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(85% 80% at 82% 22%, #000 10%, transparent 68%);
          mask-image: radial-gradient(85% 80% at 82% 22%, #000 10%, transparent 68%);
}
@keyframes aurora {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(-2%,1.5%,0) scale(1.05); }
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(34px,5vw,70px);
  align-items: center;
}
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--on-dark);
  background: rgba(255,255,255,.04); border: 1px solid var(--line-dark);
  padding: 8px 15px 8px 12px; border-radius: 8px;
  backdrop-filter: blur(6px);
}
.hero h1 { font-size: clamp(40px,5.6vw,66px); margin: 22px 0 0; max-width: 15ch; line-height: 1.03; text-wrap: balance; }
.hero h1 .g { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: clamp(17px,1.9vw,21px); color: var(--on-dark-soft); line-height: 1.55; margin: 22px 0 0; max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 0; }
.trust { display: flex; align-items: center; gap: 18px; margin: 26px 0 0; flex-wrap: wrap; font-size: 14px; color: var(--on-dark-soft); }
.trust .stars { color: #ffcf5c; letter-spacing: 2px; font-size: 15px; }
.trust b { color: var(--on-dark); font-weight: 700; }
.trust .sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.25); }

/* phone */
.phone-stage { display: flex; justify-content: center; position: relative; }
.phone-stage::after {
  content:""; position: absolute; inset: -8% -10%; z-index: 0;
  background: radial-gradient(50% 50% at 50% 45%, rgba(32,205,122,.25), transparent 70%);
  filter: blur(20px);
}
.phone {
  position: relative; z-index: 2; width: 330px; max-width: 86vw;
  background: #0a0f0e; border-radius: 42px; padding: 11px;
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  cursor: pointer;
}
.phone-screen { background: #0d1a16; border-radius: 32px; overflow: hidden; height: 600px; display: flex; flex-direction: column; position: relative; }
.wa-head {
  display: flex; align-items: center; gap: 11px; padding: 16px 16px 14px;
  background: linear-gradient(180deg,#11201b,#0f1c18); border-bottom: 1px solid rgba(255,255,255,.06);
}
.wa-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; color:#04140e; flex: none; }
.wa-avatar svg { width: 20px; height: 20px; }
.wa-id { flex: 1; min-width: 0; }
.wa-id .n { font-family:"Sora"; font-weight: 700; font-size: 15px; color:#eef4f1; display:flex; align-items:center; gap:7px; }
.wa-id .s { font-size: 12px; color: var(--green-bright); display:flex; align-items:center; gap:6px; margin-top:2px; }
.wa-head .ic { color: rgba(255,255,255,.5); display:flex; gap:16px; }
.wa-head .ic svg { width: 19px; height: 19px; }
.wa-body {
  flex: 1; padding: 16px 14px; display: flex; flex-direction: column; gap: 9px;
  overflow: hidden;
  background:
    radial-gradient(120% 70% at 50% 0%, rgba(32,205,122,.05), transparent 55%),
    #0a1512;
}
.msg {
  max-width: 80%; padding: 9px 13px; border-radius: 14px; font-size: 14px; line-height: 1.42;
  opacity: 0; transform: translateY(10px) scale(.97); animation: msgin .34s var(--ease) forwards;
}
@keyframes msgin { to { opacity: 1; transform: none; } }
.msg.them { align-self: flex-start; background: #1a2723; color: #e7efeb; border-radius: 14px 14px 14px 4px; }
.msg.me   { align-self: flex-end; background: #115e43; color: #eafff4; border-radius: 14px 14px 4px 14px; }
.msg .t { font-size: 10.5px; opacity: .55; display:block; text-align:right; margin-top: 3px; }
.typing { align-self: flex-start; background: #1a2723; padding: 12px 15px; border-radius: 14px 14px 14px 4px; display: flex; gap: 5px; }
.typing i { width: 7px; height: 7px; border-radius: 50%; background: #6f8079; animation: bounce 1.2s infinite; }
.typing i:nth-child(2){ animation-delay:.18s; } .typing i:nth-child(3){ animation-delay:.36s; }
@keyframes bounce { 0%,60%,100%{ transform: translateY(0); opacity:.5;} 30%{ transform: translateY(-5px); opacity:1;} }
.wa-foot { padding: 11px 14px; background:#0f1c18; border-top:1px solid rgba(255,255,255,.06); display:flex; align-items:center; gap:10px; }
.wa-foot .field { flex:1; background:#1a2723; border-radius: 100px; padding: 10px 15px; font-size: 13px; color: #6f8079; }
.wa-foot .send { width: 38px; height: 38px; border-radius: 50%; background: var(--grad); display:grid; place-items:center; color:#04140e; flex:none; }
.wa-foot .send svg { width:18px; height:18px; }
.phone .reply-badge {
  position: absolute; top: 78px; right: -14px; z-index: 5;
  opacity: 0; transform: translateX(8px) scale(.9); transition: all .3s var(--ease);
  box-shadow: 0 10px 24px -8px rgba(37,211,102,.7);
}
.phone .reply-badge.show { opacity: 1; transform: none; }
.tap-hint {
  position: absolute; bottom: -34px; left: 50%; transform: translateX(-50%);
  font-size: 13px; color: var(--on-dark-soft); display:flex; align-items:center; gap:7px; white-space:nowrap;
}
.tap-hint svg { width: 15px; height: 15px; }

/* ============================================================ numbers band */
.numbers { background: var(--bg); color: var(--text); padding: clamp(52px,6.5vw,88px) 0; border-top: 1px solid var(--line); position: relative; overflow: hidden; }
.numbers::before { content:""; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(60% 70% at 50% -10%, rgba(32,205,122,.06), transparent 62%); }
.numbers-head { text-align: center; max-width: 760px; margin: 0 auto clamp(34px,4.5vw,56px); position: relative; z-index: 2; }
.numbers-head .eyebrow { justify-content: center; }
.numbers-head h2 { font-family:"Sora"; font-weight: 700; letter-spacing: -.02em; line-height: 1.08; font-size: clamp(26px,3.6vw,42px); color: var(--text); margin: 16px 0 0; text-wrap: balance; }
.numbers-head h2 .g { background: var(--grad); -webkit-background-clip:text; background-clip:text; color: transparent; }
.numbers-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; z-index: 2; }
.stat { text-align: center; padding: 6px clamp(16px,2vw,30px); position: relative; }
.stat + .stat::before { content:""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 1px;
  background: linear-gradient(180deg, transparent, var(--line-2) 22%, var(--line-2) 78%, transparent); }
.stat .v { font-family:"Sora"; font-weight: 800; font-size: clamp(38px,5vw,60px); letter-spacing:-.03em; line-height:1; background: var(--grad); -webkit-background-clip:text; background-clip:text; color: transparent; }
.stat .l { font-family:"Sora"; font-weight: 700; font-size: 15.5px; color: var(--text); margin-top: 12px; line-height: 1.3; }
.stat .note { font-size: 13.5px; color: var(--text-soft); margin-top: 10px; line-height: 1.5; max-width: 26ch; margin-left: auto; margin-right: auto; text-wrap: pretty; }

/* ============================================================ pain */
.pain { background: var(--bg-cool); padding: clamp(64px,8vw,110px) 0; }
.pain .section-head h2 .x { color: #c2553f; }
.pain-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.pain-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pain-card .emoji { font-size: 30px; line-height:1; }
.pain-card h3 { font-size: 21px; margin: 18px 0 0; }
.pain-card p { color: var(--text-soft); font-size: 15.5px; line-height:1.6; margin: 11px 0 22px; }
.pain-card .big { font-family:"Sora"; font-weight: 800; font-size: 44px; letter-spacing:-.03em; color:#c2553f; line-height:1; margin-top: auto; }
.pain-card .big span { font-size: 16px; font-weight:700; color: var(--text-mut); display:block; margin-top:6px; letter-spacing:0; }
/* problem -> solution flip */
.pain-card .flip { margin-top: 22px; padding: 18px 18px 16px; border-radius: 14px;
  background: linear-gradient(180deg, rgba(32,205,122,.10), rgba(15,165,142,.07));
  border: 1px solid rgba(15,165,142,.18); }
.pain-card .flip-tag { display:inline-flex; align-items:center; gap:7px;
  font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing:.06em; text-transform: uppercase;
  color: var(--green-ink); margin-bottom: 9px; }
.pain-card .flip-tag svg { width: 13px; height: 13px; }
.pain-card .flip p { color: var(--text); font-weight: 600; font-size: 15px; line-height: 1.5; margin: 0; }
.pain-bridge { text-align: center; margin: clamp(34px,4.5vw,52px) auto 0; max-width: 640px;
  font-size: clamp(17px,1.8vw,20px); font-weight: 600; color: var(--text-soft); line-height: 1.5; }
.pain-bridge b { color: var(--text); }
.pain-bridge a { color: var(--green-ink); font-weight: 700; white-space: nowrap; transition: color .15s; }
.pain-bridge a:hover { color: var(--green-deep); }

/* ============================================================ steps */
.steps { background: var(--bg-warm); padding: clamp(64px,8vw,110px) 0; }
.stepper { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; margin-top: 18px; }
.stepper::before { content:""; position:absolute; top: 31px; left: 16%; right: 16%; height:2px; background: repeating-linear-gradient(90deg, var(--line-2) 0 8px, transparent 8px 16px); }
.step { padding: 0 26px; text-align: center; position: relative; }
.step .num { width: 64px; height: 64px; margin: 0 auto; border-radius: 20px 20px 20px 6px; background: var(--grad); color:#04140e; display:grid; place-items:center; font-family:"Sora"; font-weight:800; font-size:24px; box-shadow: 0 14px 30px -12px rgba(15,165,142,.6); position:relative; z-index:2; }
.step h3 { font-size: 21px; margin: 22px 0 0; }
.step p { color: var(--text-soft); font-size: 15.5px; line-height:1.6; margin: 10px 0 0; }

/* ============================================================ intelligence */
.intel { background: var(--bg-cool); color: var(--text); padding: clamp(64px,8vw,110px) 0; position: relative; overflow: hidden; }
.intel::before { content:""; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(42% 46% at 88% 12%, rgba(32,205,122,.10), transparent 62%),
    radial-gradient(38% 40% at 4% 92%, rgba(15,165,142,.08), transparent 64%); }
.intel::after { content:""; position:absolute; inset:0; pointer-events:none;
  background-image:
    linear-gradient(rgba(12,20,18,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12,20,18,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(80% 70% at 78% 30%, #000 5%, transparent 70%);
          mask-image: radial-gradient(80% 70% at 78% 30%, #000 5%, transparent 70%); }
.intel .section-head { position: relative; z-index: 2; max-width: 760px; }
.intel .section-head h2 { color: var(--text); }
.intel .section-head h2 .g { background: var(--grad); -webkit-background-clip:text; background-clip:text; color: transparent; }
.intel .section-head p { color: var(--text-soft); }
.intel-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(34px,5vw,64px); align-items: center; position: relative; z-index: 2; }

.intel-points { display: flex; flex-direction: column; gap: 20px; margin: 0 0 32px; padding: 0; list-style: none; }
.intel-points li { display: flex; gap: 15px; align-items: center; }
.ip-ic { width: 42px; height: 42px; flex: none; border-radius: 12px; display: grid; place-items: center;
  background: rgba(32,205,122,.10); border: 1px solid rgba(15,165,142,.24); color: var(--green-ink); }
.ip-ic svg { width: 20px; height: 20px; }
.intel-points b { font-family:"Sora"; font-weight: 700; font-size: 16.5px; color: var(--text); display: block; }
.intel-points span { font-size: 14.5px; color: var(--text-soft); line-height: 1.5; display: block; margin-top: 4px; }

/* browser mock + AI HUD — light preview */
.intel-demo { position: relative; }
.browser { background: #ffffff; border: 1px solid rgba(12,20,18,.10); border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lg); }
.br-bar { display: flex; align-items: center; gap: 14px; padding: 12px 16px; background: #eef1f0; border-bottom: 1px solid rgba(12,20,18,.08); }
.br-dots { display: flex; gap: 7px; }
.br-dots i { width: 11px; height: 11px; border-radius: 50%; background: rgba(12,20,18,.14); }
.br-dots i:first-child { background: #f0604d; } .br-dots i:nth-child(2){ background:#f4b942; } .br-dots i:nth-child(3){ background:#3fc46b; }
.br-url { flex: 1; display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; color: var(--text-mut);
  background: #ffffff; border: 1px solid rgba(12,20,18,.07); border-radius: 8px; padding: 7px 12px; }
.br-url svg { width: 13px; height: 13px; color: var(--green-ink); }
.br-body { position: relative; min-height: 420px; padding: 26px;
  background: radial-gradient(120% 80% at 80% 0%, rgba(32,205,122,.06), transparent 58%), #f7f9f8; }

/* product page */
.site-skel { display: flex; gap: 22px; }
.sk-img { width: 150px; height: 150px; flex: none; border-radius: 14px; background: linear-gradient(135deg, #e7ecea, #f1f5f3); border: 1px solid rgba(12,20,18,.05); }
.sk-info { display: flex; flex-direction: column; gap: 12px; padding-top: 8px; flex: 1; }
.sk-line { height: 13px; border-radius: 6px; background: rgba(12,20,18,.10); }
.sk-line.w80 { width: 80%; } .sk-line.w50 { width: 50%; }
.sk-price { font-family:"Sora"; font-weight: 800; font-size: 26px; color: var(--text); margin-top: 4px; }
.sk-btn { align-self: flex-start; margin-top: 8px; font-family:"Sora"; font-weight: 700; font-size: 13px; color: #04140e;
  background: var(--grad); padding: 10px 20px; border-radius: 10px; box-shadow: 0 8px 18px -8px rgba(15,165,142,.6); }

/* AI reading HUD — light card */
.ai-hud { position: relative; margin-top: 22px; padding: 18px 18px 20px; border-radius: 16px;
  background: #ffffff; border: 1px solid rgba(15,165,142,.24); box-shadow: 0 22px 50px -26px rgba(8,30,24,.4), 0 0 0 4px rgba(32,205,122,.05); }
.hud-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 13px; }
.hud-title { display: flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; color: var(--text); }
.hud-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(37,211,102,.6); animation: pulse 2.2s infinite; }
.hud-live { font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--green-ink); background: rgba(32,205,122,.10); border: 1px solid rgba(15,165,142,.25); padding: 4px 9px; border-radius: 7px; }
.hud-journey { font-size: 13px; color: var(--text-mut); padding-bottom: 14px; border-bottom: 1px solid rgba(12,20,18,.08); }
.hud-meter { margin: 14px 0 16px; }
.hm-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 9px; font-size: 13.5px; color: var(--text); font-weight: 600; }
.hm-val { font-family:"Sora"; font-weight: 800; color: var(--green-ink); font-size: 14.5px; }
.hm-track { height: 8px; border-radius: 100px; background: rgba(12,20,18,.08); overflow: hidden; }
.hm-fill { display: block; height: 100%; width: 87%; border-radius: 100px; background: var(--grad);
  box-shadow: 0 0 12px rgba(32,205,122,.4); }
.intel-demo .hm-fill { width: 0; transition: width 1.3s var(--ease) .15s; }
.intel-demo.reading .hm-fill { width: 87%; }
.hud-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.hud-chip { font-size: 12.5px; color: var(--text); background: var(--bg-warm); border: 1px solid rgba(12,20,18,.10); padding: 7px 11px; border-radius: 9px; display: inline-flex; align-items: center; gap: 7px; }
.hud-chip i { font-family: var(--mono); font-style: normal; font-size: 10px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--text-mut); }
.hud-chip.hot { background: rgba(227,153,58,.12); border-color: rgba(227,153,58,.35); color: #b9702a; }
.hud-chip.hot i { color: #b9702a; opacity: .85; }
.hud-decision { display: flex; align-items: center; gap: 9px; margin-top: 15px; padding: 12px 14px; border-radius: 12px;
  background: linear-gradient(120deg, rgba(32,205,122,.14), rgba(15,165,142,.09)); border: 1px solid rgba(15,165,142,.28);
  font-size: 13.5px; color: #0a6b4e; font-weight: 600; }
.hud-decision b { color: var(--text); }
.hud-decision svg { width: 17px; height: 17px; flex: none; color: var(--green-ink); }
.hud-decision b { color: #fff; }

/* staggered "reading" reveal */
.intel-demo .hud-chip, .intel-demo .hud-decision, .intel-demo .widget-bubble .wb-msg {
  opacity: 0; transform: translateY(8px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.intel-demo.reading .hud-chip, .intel-demo.reading .hud-decision, .intel-demo.reading .widget-bubble .wb-msg {
  opacity: 1; transform: none; }
.intel-demo.reading .hud-chip:nth-child(1){ transition-delay: 1.15s; }
.intel-demo.reading .hud-chip:nth-child(2){ transition-delay: 1.35s; }
.intel-demo.reading .hud-chip:nth-child(3){ transition-delay: 1.55s; }
.intel-demo.reading .hud-decision { transition-delay: 1.85s; }
.intel-demo.reading .widget-bubble .wb-msg { transition-delay: 2.25s; }

/* chat widget */
.widget-bubble { position: absolute; right: 22px; bottom: 22px; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; max-width: 250px; z-index: 4; }
.wb-msg { background: #fff; color: #15201c; font-size: 13px; line-height: 1.45; padding: 12px 14px; border-radius: 14px 14px 4px 14px; border: 1px solid rgba(12,20,18,.08); box-shadow: 0 18px 40px -16px rgba(8,30,24,.45); }
.wb-launcher { width: 52px; height: 52px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; color: #04140e; box-shadow: 0 12px 28px -8px rgba(32,205,122,.7); }
.wb-launcher svg { width: 24px; height: 24px; }

/* ============================================================ verticals */
.verticals { background: var(--bg); padding: clamp(64px,8vw,110px) 0; }
.tabs { display: inline-flex; gap: 6px; background: var(--bg-cool); padding: 6px; border-radius: 100px; margin-bottom: 34px; }
.tab {
  display:flex; align-items:center; gap:9px;
  font-family:"Sora"; font-weight:600; font-size:15px; color: var(--text-mut);
  padding: 11px 22px; border-radius: 100px; transition: all .2s var(--ease);
}
.tab .ico { font-size: 18px; }
.tab[aria-selected="true"] { background: var(--ink); color: var(--on-dark); box-shadow: var(--shadow-sm); }
.vert-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(34px,5vw,64px); align-items: center; }
.vert-copy h3 { font-size: clamp(26px,3vw,36px); margin: 16px 0 0; }
.vert-copy p { color: var(--text-soft); font-size: 17px; line-height: 1.6; margin: 16px 0 24px; }
.vert-points { display: flex; flex-direction: column; gap: 12px; }
.vert-points li { display:flex; gap:11px; align-items:flex-start; font-size:15.5px; color: var(--text-soft); }
.vert-points .ck { width:22px; height:22px; border-radius:50%; background: var(--grad-soft); color: var(--green-ink); display:grid; place-items:center; flex:none; margin-top:1px; }
.vert-points .ck svg { width:13px; height:13px; }
.chat-card {
  background: var(--ink); border-radius: var(--r-lg); padding: 22px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 10px; position: relative; overflow: hidden;
}
.chat-card::before { content:""; position:absolute; inset:0; background: radial-gradient(60% 50% at 80% 10%, rgba(32,205,122,.12), transparent 70%); }
.chat-card .ch-head { display:flex; align-items:center; gap:10px; padding-bottom:14px; border-bottom:1px solid var(--line-dark); position:relative; z-index:2; }
.chat-card .ch-head .av { width:34px; height:34px; border-radius:50%; background: var(--grad); display:grid; place-items:center; color:#04140e; flex:none; font-size:16px;}
.chat-card .ch-head .n { font-family:"Sora"; font-weight:700; font-size:14px; color: var(--on-dark); }
.chat-card .ch-head .s { font-size:12px; color: var(--green-bright); display:flex; align-items:center; gap:6px; }
.chat-card .bubbles { display:flex; flex-direction:column; gap:9px; position:relative; z-index:2; padding-top:6px; }
.chat-card .b { max-width: 82%; padding: 10px 14px; border-radius: 14px; font-size:14px; line-height:1.45; }
.chat-card .b.them { align-self:flex-start; background:#1a2723; color:#e7efeb; border-radius:14px 14px 14px 4px; }
.chat-card .b.me { align-self:flex-end; background:#115e43; color:#eafff4; border-radius:14px 14px 4px 14px; }
.chat-card .stamp { align-self:flex-end; }

/* ============================================================ roi */
.roi { background: var(--ink); color: var(--on-dark); padding: clamp(64px,8vw,110px) 0; overflow:hidden; }
.roi::before { content:""; position:absolute; inset:0; background: radial-gradient(50% 40% at 85% 80%, rgba(15,165,142,.18), transparent 70%); pointer-events:none; }
.roi-grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,4vw,56px); align-items: stretch; position:relative; z-index:2; }
.roi-inputs { background: rgba(255,255,255,.04); border:1px solid var(--line-dark); border-radius: var(--r-lg); padding: clamp(26px,3vw,38px); }
.field-row { margin-bottom: 26px; }
.field-row:last-child { margin-bottom: 0; }
.field-row label { display:flex; justify-content:space-between; align-items:baseline; font-size:14.5px; font-weight:600; color: var(--on-dark); margin-bottom: 14px; }
.field-row label .val { font-family:"Sora"; font-weight:700; font-size:18px; color: var(--green-bright); }
input[type=range] { -webkit-appearance:none; appearance:none; width:100%; height:6px; border-radius:100px; background: rgba(255,255,255,.12); outline:none; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance:none; width:22px; height:22px; border-radius:50%; background:#fff; border:4px solid var(--green); cursor:pointer; box-shadow: 0 4px 12px -3px rgba(0,0,0,.5); transition: transform .12s; }
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.12); }
input[type=range]::-moz-range-thumb { width:18px; height:18px; border-radius:50%; background:#fff; border:4px solid var(--green); cursor:pointer; }
.roi-results { background: var(--grad); border-radius: var(--r-lg); padding: clamp(26px,3vw,40px); color:#04140e; display:flex; flex-direction:column; position:relative; overflow:hidden; box-shadow: var(--shadow-lg); }
.roi-results::before { content:""; position:absolute; inset:0; background: radial-gradient(60% 60% at 90% 10%, rgba(255,255,255,.22), transparent 60%); }
.roi-results .rl { font-size: 14px; font-weight:700; opacity:.8; position:relative; }
.roi-hero { font-family:"Sora"; font-weight:800; font-size: clamp(46px,6vw,72px); letter-spacing:-.03em; line-height:1; margin: 8px 0 4px; position:relative; }
.roi-sub { font-size: 15px; font-weight:600; opacity:.85; position:relative; }
.roi-break { margin-top: auto; padding-top: 26px; display:grid; gap:14px; position:relative; }
.roi-line { display:flex; justify-content:space-between; align-items:center; padding-top:14px; border-top:1px solid rgba(4,20,14,.18); font-size:15px; }
.roi-line b { font-family:"Sora"; font-weight:800; font-size:19px; }
.roi-line:first-child { border-top:none; padding-top:0; }
.roi-foot { margin-top:22px; font-size:12.5px; color: var(--on-dark-soft); position:relative; z-index:2; }

/* ============================================================ comparison */
.compare { background: var(--bg-warm); padding: clamp(64px,8vw,110px) 0; }
.ctable { display:flex; align-items:stretch; max-width: 980px; margin: 0 auto; padding-top: 18px; }
.ccol { flex:1; display:flex; flex-direction:column; }
.ccol.feat { flex: 1.5; }
.ccol .ch { height: 88px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:2px; font-family:"Sora"; font-weight:700; font-size:14.5px; color: var(--text-mut); text-align:center; padding: 0 8px; }
.ccol.feat .ch { align-items:flex-start; justify-content:flex-end; padding: 0 0 14px; }
.ccol .ch small { font-size:11.5px; font-weight:600; color: var(--text-mut); opacity:.8; }
.ccol .cell { height: 58px; display:flex; align-items:center; justify-content:center; border-top:1px solid var(--line); }
.ccol.feat .cell { justify-content:flex-start; font-size:14.5px; font-weight:600; color: var(--text); padding-right: 14px; line-height:1.25; }
/* elevated us column */
.ccol.us {
  position: relative; margin-top: -18px; border-radius: 22px;
  background: var(--ink); box-shadow: var(--shadow-lg); z-index: 2;
  padding: 0 4px 18px;
}
.ccol.us::before { content:""; position:absolute; inset:-2px; border-radius:24px; background: var(--grad); z-index:-1; }
.ccol.us .ch { color:#fff; font-size:17px; height: 106px; padding-top: 8px; }
.ccol.us .ch small { color: #7ff0bf; }
.ccol.us .cell { border-top:1px solid rgba(255,255,255,.10); }
.us-flag { display:inline-block; margin-bottom: 8px; background: var(--grad); color:#04140e; font-family:"Sora"; font-weight:800; font-size:11px; letter-spacing:.04em; padding:5px 13px; border-radius:100px; }
.tick { width:26px; height:26px; border-radius:50%; background: rgba(20,184,102,.14); color: var(--green-ink); display:grid; place-items:center; }
.tick svg { width:15px; height:15px; }
.cross { width:26px; height:26px; color: var(--text-mut); display:grid; place-items:center; opacity:.45; font-size:18px; }
.ccol.us .tick { background: rgba(255,255,255,.16); color:#7ff0bf; }
.ccol.us .cell-label { color:#eafff4; font-size:13px; font-weight:600; }

/* ============================================================ testimonials */
.testi { background: var(--bg); padding: clamp(64px,8vw,110px) 0; }
.testi-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tcard { background:#fff; border:1px solid var(--line); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); display:flex; flex-direction:column; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.result-badge { align-self:flex-start; font-family:"Sora"; font-weight:800; font-size:22px; letter-spacing:-.02em; color: var(--green-ink); background: var(--grad-soft); border:1px solid rgba(15,165,142,.2); padding: 9px 16px; border-radius: 12px; }
.tcard .quote { font-size: 16px; line-height:1.6; color: var(--text); margin: 20px 0 22px; flex:1; }
.tcard .who { display:flex; align-items:center; gap:13px; }
.tcard .who .av { width:46px; height:46px; border-radius:50%; background: var(--ink); color: var(--green-bright); display:grid; place-items:center; font-family:"Sora"; font-weight:700; font-size:16px; flex:none; }
.tcard .who .nm { font-family:"Sora"; font-weight:700; font-size:15px; }
.tcard .who .rl { font-size:13px; color: var(--text-mut); margin-top:2px; }
.tcard .vtag { margin-left:auto; font-size:12px; font-weight:700; color: var(--green-ink); background: var(--grad-soft); padding:5px 11px; border-radius:100px; }

/* ============================================================ faq */
.faq { background: var(--bg-warm); padding: clamp(64px,8vw,110px) 0; }
.faq-list { max-width: 800px; margin: 0 auto; display:flex; flex-direction:column; gap: 12px; }
.qa { background:#fff; border:1px solid var(--line); border-radius: var(--r); overflow:hidden; transition: box-shadow .2s; }
.qa[open] { box-shadow: var(--shadow-sm); }
.qa summary { list-style:none; cursor:pointer; padding: 22px 24px; font-family:"Sora"; font-weight:600; font-size: 17px; display:flex; justify-content:space-between; align-items:center; gap:16px; }
.qa summary::-webkit-details-marker { display:none; }
.qa summary .pl { width:26px; height:26px; flex:none; border-radius:50%; background: var(--bg-cool); display:grid; place-items:center; transition: transform .25s var(--ease), background .2s; position:relative; }
.qa summary .pl::before, .qa summary .pl::after { content:""; position:absolute; background: var(--text); border-radius:2px; transition: opacity .2s; }
.qa summary .pl::before { width:12px; height:2px; }
.qa summary .pl::after { width:2px; height:12px; }
.qa[open] summary .pl { background: var(--green); transform: rotate(90deg); }
.qa[open] summary .pl::before, .qa[open] summary .pl::after { background:#04140e; }
.qa[open] summary .pl::after { opacity:0; }
.qa .ans { padding: 0 24px 24px; color: var(--text-soft); font-size: 15.5px; line-height:1.65; }

/* ============================================================ final cta */
.final { background: var(--ink); color: var(--on-dark); padding: clamp(70px,9vw,130px) 0; text-align:center; overflow:hidden; }
.final::before { content:""; position:absolute; inset:0; background: radial-gradient(55% 60% at 50% 0%, rgba(32,205,122,.22), transparent 70%); }
.final .in { position:relative; z-index:2; max-width: 760px; margin:0 auto; }
.final h2 { font-size: clamp(34px,5.4vw,62px); }
.final p { font-size: clamp(17px,2vw,21px); color: var(--on-dark-soft); margin: 22px 0 34px; line-height:1.55; }
.final .micro { margin-top:22px; font-size:14px; color: var(--on-dark-soft); display:flex; gap:18px; justify-content:center; flex-wrap:wrap; }
.final .micro span { display:flex; align-items:center; gap:7px; }
.final .micro svg { width:15px; height:15px; color: var(--green-bright); }

/* ============================================================ footer */
.foot { background: var(--ink-2); color: var(--on-dark-soft); padding: clamp(54px,6vw,80px) 0 40px; border-top:1px solid var(--line-dark); }
.foot-grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom:1px solid var(--line-dark); }
.foot .logo { margin-bottom: 16px; }
.foot-about { font-size: 14.5px; line-height:1.6; max-width: 34ch; }
.foot col, .foot-col { } 
.foot-col h4 { font-family:"Sora"; font-weight:700; font-size:13px; letter-spacing:.06em; text-transform:uppercase; color: var(--on-dark); margin:0 0 16px; }
.foot-col a { display:block; font-size:14.5px; margin-bottom:11px; transition: color .15s; }
.foot-col a:hover { color: var(--on-dark); }
.foot-bottom { display:flex; justify-content:space-between; align-items:center; gap:20px; padding-top: 28px; flex-wrap:wrap; }
.seals { display:flex; gap: 12px; flex-wrap:wrap; }
.seal { display:flex; align-items:center; gap:8px; font-size:12.5px; font-weight:600; color: var(--on-dark-soft); background: rgba(255,255,255,.04); border:1px solid var(--line-dark); padding:8px 13px; border-radius:10px; }
.seal svg { width:15px; height:15px; color: var(--green-bright); }
.foot-copy { font-size:13px; }

/* ============================================================ sticky mobile cta */
.mcta { display:none; position: fixed; left:0; right:0; bottom:0; z-index:70; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(11,17,16,.92); backdrop-filter: blur(12px); border-top:1px solid var(--line-dark); }
.mcta .btn { width:100%; }

/* reveal */
.reveal { opacity:0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity:1; transform:none; }

/* ============================================================ responsive */
@media (max-width: 980px) {
  .hero { padding: clamp(28px,7vw,48px) 0 clamp(48px,8vw,72px); }
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .hero h1, .hero-sub { max-width: none; }
  .hero h1 { font-size: clamp(33px,8.4vw,46px); margin-top: 18px; }
  .hero-sub { font-size: clamp(15.5px,4.4vw,18px); margin-top: 16px; }
  .hero-cta, .trust { justify-content: center; }
  .hero-cta { margin-top: 24px; }
  .trust { margin-top: 20px; }
  .phone-stage { margin-top: 4px; }
  .vert-grid { grid-template-columns: 1fr; }
  .intel-grid { grid-template-columns: 1fr; gap: 36px; }
  .roi-grid { grid-template-columns: 1fr; }
  .nav-links { display:none; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  .nav-cta .btn { display:none; }
  .nav-burger { display:grid; }
  /* mobile hero: punchy copy first, chat proof peeking right after */
  .hero h1 { font-size: clamp(32px,8.6vw,42px); }
  .hero-cta { flex-direction: column; gap: 11px; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .phone { width: 300px; }
  .phone-screen { height: 440px; }
  .phone .reply-badge { top: 70px; }
  .numbers-grid { grid-template-columns: 1fr 1fr; gap: 36px 16px; }
  .stat + .stat::before { display: none; }
  .pain-grid, .testi-grid { grid-template-columns: 1fr; }
  .stepper { grid-template-columns: 1fr; gap: 36px; }
  .stepper::before { display:none; }
  .step { padding: 0; }
  .mcta { display:block; }
  body { padding-bottom: 76px; }
  /* comparison -> scroll */
  .compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 16px 4px 8px; margin: 0 -8px; }
  .ctable { min-width: 640px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 440px) {
  .wrap { padding: 0 18px; }
  .numbers-grid { gap: 28px 14px; }
  .tabs { width: 100%; justify-content: space-between; }
  .tab { padding: 11px 12px; flex:1; justify-content:center; }
  .tab .lbl { font-size: 13.5px; }
  .foot-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .01ms !important; }
}