/* ═══════════════════════════════════════════════════════════════════════════
   Vyapiq — website
   Deep teal ground, warm coral accent. Bricolage Grotesque for display,
   Figtree for reading, JetBrains Mono for small data labels.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --ink:        #072A2B;
  --ink-2:      #0B3A3B;
  --ink-3:      #10494A;
  --teal:       #13877F;
  --teal-soft:  #D4ECE8;
  --coral:      #FF6B4A;
  --brand-green: #34A675;
  --coral-deep: #C43E22;
  --coral-soft: #FFE3DA;
  --sand:       #FFF1E6;
  --paper:      #F3F7F6;
  --surface:    #FFFFFF;
  --text:       #0E1D1D;
  --muted:      #52625F;
  --line:       #DCE6E3;

  --on-ink:        #EAF4F2;
  --on-ink-muted:  #9FBDB9;
  --ink-line:      rgba(255,255,255,.10);

  --radius:    20px;
  --shadow:    0 1px 2px rgba(7,42,43,.05), 0 18px 40px -22px rgba(7,42,43,.35);
  --shadow-lg: 0 30px 80px -30px rgba(0,0,0,.55);

  --display: 'Bricolage Grotesque', ui-sans-serif, system-ui, 'Segoe UI', Arial, sans-serif;
  --body:    'Figtree', ui-sans-serif, system-ui, 'Segoe UI', Arial, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --ease: cubic-bezier(.2,.7,.2,1);
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--display); margin: 0; line-height: 1.05; text-wrap: balance; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }

.skip { position: absolute; left: -999px; top: 8px; background: var(--coral); color: var(--ink); padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }
:focus-visible { outline: 2.5px solid var(--coral); outline-offset: 3px; border-radius: 6px; }

/* ─── Icons ─────────────────────────────────────────────────────────────── */
.ic { display: inline-flex; width: 1.1em; height: 1.1em; vertical-align: -.18em; flex-shrink: 0; }
.ic svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ic.big { width: 34px; height: 34px; }

/* ─── Type helpers ──────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12.5px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--coral-deep); margin-bottom: 18px;
}
.eyebrow.on-dark { color: var(--coral); }
.lede { font-size: clamp(17px, 1.6vw, 20px); color: var(--muted); max-width: 60ch; }
.lede.on-dark { color: var(--on-ink-muted); }

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 700; font-size: 16.5px;
  padding: 15px 26px; border-radius: 999px; text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: 15px; }
.btn-coral { background: var(--coral); color: var(--ink); box-shadow: 0 12px 30px -12px rgba(255,107,74,.7); }
.btn-coral:hover { box-shadow: 0 18px 38px -12px rgba(255,107,74,.85); }
.btn-ghost { color: var(--on-ink); border-color: rgba(255,255,255,.28); }
.btn-ghost:hover { border-color: var(--on-ink); background: rgba(255,255,255,.06); }
.btn-ghost .ic { transition: transform .25s var(--ease); }
.btn-ghost:hover .ic { transform: translateX(4px); }
.btn-ink { background: var(--ink); color: var(--on-ink); }
.btn-ink:hover { box-shadow: 0 16px 34px -14px rgba(7,42,43,.8); }
.btn-outline-ink { color: var(--ink); border-color: rgba(7,42,43,.4); }
.btn-outline-ink:hover { border-color: var(--ink); background: rgba(7,42,43,.06); }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.cta-row.center { justify-content: center; }

/* ─── Nav ───────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 50;
  color: var(--on-ink);
  transition: background .35s, box-shadow .35s, backdrop-filter .35s;
}
.nav.solid { background: rgba(7,42,43,.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--ink-line); }
.nav-in { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 28px; letter-spacing: -.03em; text-decoration: none; color: inherit; }
.wordmark { display: inline-flex; align-items: baseline; font-family: var(--display); font-weight: 800; letter-spacing: -.035em; line-height: 1; }
.wm-i { position: relative; }
.wm-i::before { content: ""; position: absolute; left: 50%; top: -.02em; width: .2em; height: .2em; border-radius: 50%; background: var(--brand-green); transform: translateX(-50%); }
.wm-q { color: var(--brand-green); width: .78em; height: .98em; margin-left: .05em; align-self: flex-end; transform: translateY(.13em); overflow: visible; }
.wordmark { align-items: flex-end; }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { text-decoration: none; font-weight: 600; font-size: 15.5px; color: var(--on-ink-muted); transition: color .2s; }
.nav-links a:hover { color: var(--on-ink); }
.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; position: relative; }
.nav-toggle span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--on-ink); border-radius: 2px; transition: transform .3s var(--ease), top .3s var(--ease); }
.nav-toggle span:first-child { top: 17px; }
.nav-toggle span:last-child  { top: 26px; }
.nav.open .nav-toggle span:first-child { top: 21px; transform: rotate(45deg); }
.nav.open .nav-toggle span:last-child  { top: 21px; transform: rotate(-45deg); }

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--on-ink);
  padding: calc(var(--nav-h) + clamp(48px, 9vw, 110px)) 0 clamp(70px, 9vw, 120px);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; }
.g1 { width: 560px; height: 560px; background: radial-gradient(circle, rgba(255,107,74,.55), transparent 65%); top: -160px; right: -120px; animation: drift1 16s ease-in-out infinite alternate; }
.g2 { width: 620px; height: 620px; background: radial-gradient(circle, rgba(19,135,127,.7), transparent 65%); bottom: -260px; left: -180px; animation: drift2 19s ease-in-out infinite alternate; }
.gridlines {
  position: absolute; inset: 0;
  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;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%);
}
@keyframes drift1 { to { transform: translate(-80px, 60px) scale(1.08); } }
@keyframes drift2 { to { transform: translate(90px, -40px) scale(1.1); } }

.hero-in { position: relative; display: grid; grid-template-columns: minmax(0,1.08fr) minmax(0,.92fr); gap: clamp(36px, 5vw, 70px); align-items: center; }
.hero-title { font-size: clamp(36px, 4.1vw, 58px); font-weight: 800; letter-spacing: -.03em; line-height: 1.02; }
.hero-title em { display: block; margin-top: .12em; }
.hero-title em { font-style: normal; color: var(--coral); }
.hero-copy .lede { margin-top: 26px; }
.hero-note { margin-top: 26px; font-size: 14.5px; color: var(--on-ink-muted); display: flex; align-items: center; gap: 10px; }
.hero-note::before { content: ""; width: 26px; height: 1.5px; background: var(--coral); }

.hero-copy > * { opacity: 0; transform: translateY(22px); animation: rise .9s var(--ease) forwards; }
.hero-copy > *:nth-child(2) { animation-delay: .08s; }
.hero-copy > *:nth-child(3) { animation-delay: .18s; }
.hero-copy > *:nth-child(4) { animation-delay: .28s; }
.hero-copy > *:nth-child(5) { animation-delay: .38s; }
.ask { opacity: 0; transform: translateY(30px) scale(.98); animation: rise 1s .35s var(--ease) forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* Ask Vyapiq panel */
.ask {
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px; padding: 20px;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
  min-height: 420px;
}
.ask-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.ask-title { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 700; font-size: 17px; }
.ask-title .ic { color: var(--coral); }
.ask-live { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 11.5px; color: var(--on-ink-muted); letter-spacing: .06em; text-transform: uppercase; }
.ask-live i { width: 7px; height: 7px; border-radius: 50%; background: #3DDC97; box-shadow: 0 0 0 0 rgba(61,220,151,.6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(61,220,151,0); } 100% { box-shadow: 0 0 0 0 rgba(61,220,151,0); } }

.ask-input {
  display: flex; align-items: center; gap: 10px;
  background: rgba(3,22,23,.55); border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 14px 14px 14px 16px; min-height: 58px;
}
.ask-input > .ic { color: var(--on-ink-muted); }
.ask-q { font-size: 16.5px; color: var(--on-ink); min-width: 0; overflow-wrap: anywhere; }
.caret { width: 2px; height: 20px; background: var(--coral); animation: blink 1s steps(1) infinite; margin-left: -6px; }
@keyframes blink { 50% { opacity: 0; } }
.ask-mic { margin-left: auto; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,107,74,.16); color: var(--coral); }

.ask-answer { margin-top: 16px; display: grid; gap: 10px; }
.ans-meta { font-family: var(--mono); font-size: 12px; color: var(--on-ink-muted); letter-spacing: .04em; display: flex; justify-content: space-between; }
.ans-big { font-family: var(--display); font-weight: 800; font-size: 46px; letter-spacing: -.03em; color: var(--on-ink); line-height: 1; margin: 6px 0 4px; }
.res {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 11px 13px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.res.show, .ans-meta.show, .ans-big.show { opacity: 1; transform: none; }
.ans-meta, .ans-big { opacity: 0; transform: translateY(8px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.res-av { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; font-weight: 700; font-size: 13px; background: rgba(19,135,127,.45); color: var(--on-ink); flex-shrink: 0; }
.res-main { min-width: 0; flex: 1; }
.res-main strong { display: block; font-size: 14.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.res-main span { font-size: 12.5px; color: var(--on-ink-muted); }
.tag { font-family: var(--mono); font-size: 11px; font-weight: 500; padding: 4px 8px; border-radius: 6px; white-space: nowrap; }
.tag.red   { background: rgba(255,107,74,.18); color: #FF9A82; }
.tag.hot   { background: rgba(255,107,74,.18); color: #FF9A82; }
.tag.amber { background: rgba(255,196,87,.16); color: #FFD27F; }

/* ─── Marquee ───────────────────────────────────────────────────────────── */
.marquee { background: var(--coral); color: var(--ink); overflow: hidden; padding: 16px 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee-track span { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -.01em; padding: 0 26px; display: inline-flex; align-items: center; gap: 52px; white-space: nowrap; }
.marquee-track span::after { content: "✦"; font-size: 14px; opacity: .6; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ─── Sections ──────────────────────────────────────────────────────────── */
.sec { padding: clamp(68px, 8.5vw, 116px) 0; position: relative; }
.sec.dark { background: var(--ink); color: var(--on-ink); }
.sec-head { max-width: 780px; margin-bottom: clamp(36px, 5vw, 60px); }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .lede { margin-left: auto; margin-right: auto; }
.sec-head h2 { font-size: clamp(36px, 4.8vw, 62px); font-weight: 700; letter-spacing: -.035em; }
.sec-head .lede { margin-top: 20px; }

/* Reveal on scroll (only when JS is running, so content is never lost) */
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: calc(var(--d, 0) * 90ms); }
.js .reveal.in { opacity: 1; transform: none; }

/* ─── Comparison ────────────────────────────────────────────────────────── */
.compare { background: var(--paper); }
.cmp { background: var(--surface); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); overflow: hidden; }
.cmp-row { display: grid; grid-template-columns: minmax(0,.72fr) minmax(0,1.2fr) minmax(0,1.08fr); }
.cmp-row > span { display: flex; align-items: flex-start; gap: 12px; padding: 19px 26px; border-top: 1px solid var(--line); font-size: 16.5px; line-height: 1.45; }
.cmp-head > span { border-top: 0; align-items: center; font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding-block: 17px; }
.cmp-head > span.with { background: var(--ink); color: var(--on-ink); }
.cmp [role="rowheader"] { font-family: var(--display); font-weight: 700; font-size: 18.5px; letter-spacing: -.015em; color: var(--ink); line-height: 1.25; }
.cmp-row > .with { background: #E6F3F0; color: var(--text); font-weight: 500; }
.cmp-row > .without { color: var(--muted); }
.cmp-row > span > .ic { width: 22px; height: 22px; padding: 4px; border-radius: 50%; margin-top: 1px; }
.cmp .with > .ic { background: var(--teal); color: #fff; }
.cmp .with > .ic svg { stroke-width: 3; }
.cmp .without > .ic { background: var(--coral-soft); color: var(--coral-deep); }
.cmp .without > .ic svg { stroke-width: 3; }
.cmp-row:not(.cmp-head) { transition: background .25s; }
.cmp-row:not(.cmp-head):hover > span:first-child { color: var(--teal); }

/* ─── Product screens: frame + tilt ─────────────────────────────────────── */
.js .ui.tilt { transform: perspective(1400px) rotateY(-7deg) rotateX(4deg) translateY(10px); transition: transform 1.2s var(--ease), box-shadow 1.2s var(--ease); }
.js .reveal.in .ui.tilt { transform: none; }
.js .ai-row.flip .ui.tilt { transform: perspective(1400px) rotateY(7deg) rotateX(4deg) translateY(10px); }
.js .ai-row.flip.in .ui.tilt { transform: none; }

/* ─── AI ────────────────────────────────────────────────────────────────── */
.ai { background: radial-gradient(900px 500px at 90% 0%, rgba(255,107,74,.12), transparent 60%), radial-gradient(900px 600px at 0% 100%, rgba(19,135,127,.25), transparent 60%), var(--ink); }
.ai-rows { display: grid; gap: clamp(56px, 7vw, 88px); }
.ai-row { display: grid; grid-template-columns: minmax(0,.78fr) minmax(0,1.22fr); gap: clamp(32px, 5vw, 64px); align-items: center; }
.ai-row.flip { grid-template-columns: minmax(0,1.22fr) minmax(0,.78fr); }
.ai-row.flip .ai-copy { order: 2; }
.ai-tag { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--coral); background: rgba(255,107,74,.12); border: 1px solid rgba(255,107,74,.25); padding: 7px 14px; border-radius: 999px; margin-bottom: 20px; }
.ai-copy h3, .ai-mini-copy h3 { font-size: clamp(28px, 3.1vw, 40px); font-weight: 700; letter-spacing: -.03em; margin-bottom: 16px; }
.ai-copy p, .ai-mini-copy p { color: var(--on-ink-muted); font-size: 17px; max-width: 46ch; }
.quotes { margin-top: 22px; display: grid; gap: 10px; }
.quotes li { background: rgba(255,255,255,.06); border: 1px solid var(--ink-line); border-radius: 16px 16px 16px 4px; padding: 11px 16px; font-size: 15px; color: var(--on-ink); width: fit-content; max-width: 100%; }
.quotes li:nth-child(2) { margin-left: 22px; }
.quotes li:nth-child(3) { margin-left: 44px; }

.ai-minis { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; margin-top: clamp(56px, 7vw, 88px); }
.ai-mini { display: grid; gap: 26px; align-content: start; background: rgba(255,255,255,.035); border: 1px solid var(--ink-line); border-radius: 26px; padding: clamp(24px, 3vw, 34px); }
.ai-mini-copy h3 { font-size: clamp(24px, 2.4vw, 30px); margin-bottom: 10px; }
.ai-mini-copy p { font-size: 16px; }
.ai-mini-copy .ai-tag { margin-bottom: 16px; }

/* ─── Journey ───────────────────────────────────────────────────────────── */
.journey { background: linear-gradient(180deg, var(--paper), #EAF2F0); }
.jbar { position: sticky; top: calc(var(--nav-h) + 10px); z-index: 20; margin-bottom: clamp(44px, 6vw, 72px); }
.jbar-in { display: flex; align-items: center; gap: 22px; background: rgba(255,255,255,.9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid var(--line); border-radius: 20px; padding: 10px 18px 10px 10px; box-shadow: var(--shadow); }
.order-chip { display: grid; grid-template-columns: auto auto; column-gap: 14px; align-items: center; background: var(--ink); color: var(--on-ink); border-radius: 14px; padding: 10px 12px 10px 16px; flex-shrink: 0; }
.oc-dot { display: none; }
.oc-top { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--on-ink-muted); display: inline-flex; align-items: center; gap: 7px; }
.oc-top::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--coral); animation: pulse2 1.8s infinite; }
@keyframes pulse2 { 50% { opacity: .35; } }
.order-chip strong { grid-column: 1; font-family: var(--display); font-size: 17px; font-weight: 700; letter-spacing: -.02em; white-space: nowrap; }
.oc-status { grid-column: 2; grid-row: 1 / span 2; font-weight: 700; font-size: 13px; background: var(--coral); color: var(--ink); padding: 6px 12px; border-radius: 999px; white-space: nowrap; }
.oc-status.bump { animation: bump .5s var(--ease); }
@keyframes bump { 40% { transform: scale(1.12); } }

.stages-wrap { position: relative; flex: 1; min-width: 0; }
.stages { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); }
.stages li { display: grid; justify-items: center; gap: 5px; font-weight: 600; font-size: 13px; color: var(--muted); text-align: center; transition: color .35s; }
.st-dot { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--surface); border: 1.5px solid var(--line); color: var(--muted); transition: all .4s var(--ease); }
.st-dot .ic { width: 16px; height: 16px; }
.stages li.done { color: var(--text); }
.stages li.done .st-dot { background: var(--teal); border-color: var(--teal); color: #fff; }
.stages li.active { color: var(--text); }
.stages li.active .st-dot { background: var(--coral); border-color: var(--coral); color: var(--ink); transform: scale(1.12); box-shadow: 0 0 0 6px rgba(255,107,74,.18); }
.st-track { position: absolute; top: 17px; left: calc(100% / 12); right: calc(100% / 12); height: 2px; background: var(--line); border-radius: 2px; }
.st-fill { position: absolute; inset: 0 auto 0 0; width: 0; background: linear-gradient(90deg, var(--teal), var(--coral)); border-radius: 2px; transition: width .6s var(--ease); }

.steps { display: grid; gap: clamp(56px, 6.5vw, 84px); }
.step { display: grid; grid-template-columns: minmax(0,.7fr) minmax(0,1.3fr); gap: clamp(28px, 4vw, 60px); align-items: center; }
.step:nth-child(even) { grid-template-columns: minmax(0,1.3fr) minmax(0,.7fr); }
.step:nth-child(even) .step-copy { order: 2; }
.step-no { font-family: var(--mono); font-size: 12.5px; color: var(--coral-deep); letter-spacing: .08em; text-transform: uppercase; display: block; margin-bottom: 14px; }
.step-copy h3 { font-size: clamp(26px, 2.8vw, 36px); font-weight: 700; letter-spacing: -.03em; margin-bottom: 14px; }
.step-copy p { color: var(--muted); font-size: 17px; max-width: 42ch; }
.js .step { opacity: .78; transition: opacity .6s var(--ease); }
.js .step.current { opacity: 1; }

/* ─── Sell · Make · Deliver ─────────────────────────────────────────────── */
.smd { background: var(--sand); }
.smd-cols { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.smd-col { background: var(--surface); border: 1px solid rgba(7,42,43,.07); border-radius: 24px; padding: 30px 28px 14px; box-shadow: var(--shadow); }
.smd-verb { display: block; font-family: var(--display); font-weight: 800; font-size: clamp(50px, 5.4vw, 74px); letter-spacing: -.05em; line-height: .9; color: var(--ink); margin-bottom: 18px; }
.smd-col:nth-child(2) .smd-verb { color: var(--teal); }
.smd-col:nth-child(3) .smd-verb { color: var(--coral-deep); }
.smd-col li { display: grid; grid-template-columns: 22px minmax(0,1fr); column-gap: 13px; padding: 13px 0; border-top: 1px solid var(--line); }
.smd-col li > .ic { grid-row: span 2; width: 20px; height: 20px; margin-top: 2px; color: var(--ink); }
.smd-col:nth-child(2) li > .ic { color: var(--teal); }
.smd-col:nth-child(3) li > .ic { color: var(--coral-deep); }
.smd-col li > b { font-weight: 700; font-size: 16px; line-height: 1.3; }
.smd-col li > span:not(.ic) { font-size: 14.5px; color: var(--muted); line-height: 1.4; }

/* ─── After the sale ────────────────────────────────────────────────────── */
.after { background: radial-gradient(800px 500px at 100% 100%, rgba(255,107,74,.12), transparent 60%), radial-gradient(700px 500px at 0% 0%, rgba(19,135,127,.22), transparent 60%), var(--ink); }
.after-in { display: grid; grid-template-columns: minmax(0,1.3fr) minmax(0,.7fr); gap: clamp(32px, 5vw, 64px); align-items: center; }
.after-points { display: grid; gap: 4px; }
.after-points li { display: grid; grid-template-columns: 44px minmax(0,1fr); gap: 16px; padding: 18px 0; border-top: 1px solid var(--ink-line); }
.after-points li:last-child { border-bottom: 1px solid var(--ink-line); }
.after-points .ic { width: 44px; height: 44px; padding: 11px; border-radius: 12px; background: rgba(255,107,74,.12); color: var(--coral); }
.after-points h3 { font-size: 20px; font-weight: 700; letter-spacing: -.015em; margin-bottom: 4px; }
.after-points p { color: var(--on-ink-muted); font-size: 15.5px; line-height: 1.5; }

/* ─── Proof ─────────────────────────────────────────────────────────────── */
.trust { background: radial-gradient(800px 500px at 0% 0%, rgba(255,107,74,.12), transparent 60%), var(--ink-2); }
.trust .sec-head { max-width: 900px; margin-bottom: clamp(32px, 4vw, 48px); }
.proof-line { font-family: var(--display); font-weight: 700; font-size: clamp(30px, 3.8vw, 50px); letter-spacing: -.035em; line-height: 1.08; text-wrap: balance; }
.stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); border-top: 1px solid var(--ink-line); border-bottom: 1px solid var(--ink-line); margin-bottom: clamp(44px, 6vw, 72px); }
.stats > div { padding: 26px 24px 26px 0; display: grid; gap: 4px; }
.stats > div + div { padding-left: 28px; border-left: 1px solid var(--ink-line); }
.stats b { font-family: var(--display); font-weight: 800; font-size: clamp(42px, 5vw, 68px); letter-spacing: -.045em; line-height: 1; color: var(--coral); font-variant-numeric: tabular-nums; }
.stats span { color: var(--on-ink-muted); font-size: 16px; }
.trust-in { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(40px, 7vw, 100px); align-items: start; }
.quote { margin: 0; position: relative; padding-top: 54px; }
.quote::before { content: "“"; position: absolute; top: -22px; left: -4px; font-family: var(--display); font-weight: 800; font-size: 120px; line-height: 1; color: var(--coral); }
.quote blockquote { margin: 0; font-family: var(--display); font-weight: 600; font-size: clamp(24px, 2.5vw, 32px); letter-spacing: -.02em; line-height: 1.25; text-wrap: pretty; }
.quote figcaption { margin-top: 22px; display: flex; align-items: center; gap: 12px; color: var(--on-ink-muted); font-size: 15.5px; font-weight: 600; }
.quote figcaption::before { content: ""; width: 28px; height: 1.5px; background: var(--coral); }
.roles li { display: grid; grid-template-columns: 130px minmax(0,1fr); gap: 16px; padding: 16px 0; border-top: 1px solid var(--ink-line); }
.roles li:last-child { border-bottom: 1px solid var(--ink-line); }
.roles strong { font-family: var(--display); font-size: 19px; font-weight: 700; letter-spacing: -.01em; color: var(--on-ink); }
.roles span { color: var(--on-ink-muted); font-size: 16px; }
.fine { margin-top: 20px; font-size: 15.5px; color: var(--coral); font-weight: 600; }

/* ─── Onboarding flow ───────────────────────────────────────────────────── */
.onboard { background: var(--surface); }
.flow { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flow::before { content: ""; position: absolute; left: 28px; right: calc((100% - 72px) / 4 - 28px); top: 28px; height: 2px; background: linear-gradient(90deg, var(--teal), var(--coral)); transform: scaleX(0); transform-origin: left; transition: transform 1.6s var(--ease); }
.flow.drawn::before { transform: scaleX(1); }
.flow li { position: relative; }
.flow-n { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: var(--on-ink); font-family: var(--display); font-weight: 800; font-size: 22px; margin-bottom: 24px; position: relative; z-index: 1; box-shadow: 0 0 0 8px var(--surface); }
.flow li:last-child .flow-n { background: var(--coral); color: var(--ink); }
.flow h3 { font-size: 22px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 10px; }
.flow p { color: var(--muted); font-size: 16px; }

/* ─── FAQ ───────────────────────────────────────────────────────────────── */
.faq-in { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 6vw, 90px); align-items: start; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; font-family: var(--display); font-weight: 600; font-size: 20px; letter-spacing: -.015em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: ""; width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%; background: var(--teal-soft) no-repeat center / 14px 14px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M7 1v12M1 7h12' stroke='%2313877F' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); transition: transform .35s var(--ease), background-color .35s; }
.faq-list details[open] summary::after { transform: rotate(45deg); background-color: var(--coral-soft); }
.faq-list details p { padding: 0 50px 24px 0; color: var(--muted); }

/* ─── Book a demo (form) ────────────────────────────────────────────────── */
.final { position: relative; overflow: hidden; background: var(--coral); color: var(--ink); padding: clamp(76px, 9vw, 124px) 0; }
.final-bg { position: absolute; inset: 0; pointer-events: none; }
.g3 { width: 800px; height: 800px; left: 20%; top: 50%; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(255,241,230,.55), transparent 60%); filter: blur(40px); opacity: .42; }
.final-in { position: relative; display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(36px, 6vw, 80px); align-items: center; }
.final h2 { font-size: clamp(38px, 5vw, 66px); font-weight: 800; letter-spacing: -.045em; max-width: 13ch; }
.final .lede { color: rgba(7,42,43,.8); margin-top: 22px; max-width: 44ch; }
.contact-line { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 32px; }
.contact-line a { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-weight: 600; font-size: 15.5px; color: var(--ink); border-bottom: 1.5px solid rgba(7,42,43,.25); padding-bottom: 2px; }
.contact-line a:hover { border-bottom-color: var(--ink); }

.demo-form { background: var(--surface); color: var(--text); border-radius: 26px; padding: clamp(22px, 3vw, 36px); box-shadow: 0 40px 80px -40px rgba(7,42,43,.55); }
.f-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px 16px; }
.f { display: grid; gap: 7px; }
.f-wide { grid-column: 1 / -1; }
.f > span { font-size: 14px; font-weight: 600; color: var(--ink); }
.f > span i { font-style: normal; color: var(--coral-deep); }
.f input, .f select, .f textarea { width: 100%; font: inherit; font-size: 16px; color: var(--text); background: var(--paper); border: 1.5px solid var(--line); border-radius: 12px; padding: 12px 14px; transition: border-color .2s, box-shadow .2s, background .2s; }
.f textarea { resize: vertical; min-height: 88px; }
.f select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%2352625F' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 12px; padding-right: 38px; }
.f input::placeholder, .f textarea::placeholder { color: #93A29F; }
.f input:focus, .f select:focus, .f textarea:focus { outline: none; background: #fff; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(19,135,127,.14); }
.f.bad input { border-color: var(--coral-deep); background: #FFF7F4; }
.f-err { font-style: normal; font-size: 13px; color: var(--coral-deep); min-height: 0; }
.f-err:empty { display: none; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.f-submit { width: 100%; justify-content: center; margin-top: 22px; font-size: 17px; padding-block: 16px; }
.f-submit[disabled] { opacity: .65; cursor: progress; transform: none; }
.f-status { margin-top: 14px; font-size: 15px; font-weight: 600; text-align: center; }
.f-status:empty { display: none; }
.f-status.err { color: var(--coral-deep); }
.f-status.ok { color: var(--teal); }
.f-privacy { margin-top: 12px; font-size: 13px; color: var(--muted); text-align: center; line-height: 1.5; }
.f-privacy a { color: var(--teal); }
.industry-note { margin-top: 14px; font-size: 14.5px; color: var(--muted); font-style: italic; }
.foot-place { font-size: 14px; }
.foot-links { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.foot-links a { font-size: 14px; color: var(--on-ink-muted); text-decoration: none; }
.foot-links a:hover { color: var(--on-ink); }
/* Tap to enlarge a product screen on phones */
.zoom { position: fixed; inset: 0; z-index: 90; background: rgba(4,20,21,.92); display: flex; flex-direction: column; padding: 14px 0 20px; }
.zoom[hidden] { display: none !important; }
.zoom-bar { display: flex; justify-content: space-between; align-items: center; padding: 0 16px 12px; color: var(--on-ink); font-size: 14px; }
.zoom-close { width: 40px; height: 40px; border-radius: 50%; border: 0; background: rgba(255,255,255,.14); color: #fff; font-size: 22px; cursor: pointer; }
.zoom-scroll { flex: 1; overflow: auto; -webkit-overflow-scrolling: touch; padding: 0 16px; }
.zoom-scroll .ui { width: 820px; max-width: none; transform: none !important; }
.zoom-hint { display: none; }
@media (max-width: 700px) {
  .zoom-hint { display: block; text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 8px; }
  .dark .zoom-hint { color: var(--on-ink-muted); }
  figure.ui { cursor: zoom-in; }
}
.f-done { text-align: center; padding: 40px 10px; display: grid; justify-items: center; gap: 12px; }
.f-done .ic { width: 56px; height: 56px; padding: 14px; border-radius: 50%; background: var(--teal); color: #fff; }
.f-done h3 { font-size: 28px; font-weight: 700; letter-spacing: -.02em; }
.f-done p { color: var(--muted); max-width: 36ch; }

/* ─── Footer ────────────────────────────────────────────────────────────── */
.foot { background: var(--ink); color: var(--on-ink-muted); padding: 36px 0; }
.foot-in { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.foot .brand { color: var(--on-ink); font-size: 22px; }
.foot-copy { margin-left: auto; font-size: 14px; }
.foot p { font-size: 14.5px; }

/* ─── Floating WhatsApp ─────────────────────────────────────────────────── */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 40;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: var(--coral); color: var(--ink); box-shadow: 0 14px 34px -10px rgba(255,107,74,.75);
  transform: scale(0); transition: transform .4s var(--ease);
}
.wa-float .ic { width: 26px; height: 26px; }
.wa-float.show { transform: scale(1); }
.wa-float.show.hide-near-form { transform: scale(0); }
.wa-float:hover { transform: scale(1.08); }

/* ═══════════════════════════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .stages li { font-size: 0; gap: 0; }
  .step, .step:nth-child(even) { grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); }
  .step:nth-child(even) { grid-template-columns: minmax(0,1.2fr) minmax(0,.8fr); }
}

@media (max-width: 900px) {
  :root { --nav-h: 64px; }
  body { font-size: 16.5px; }
  .nav-links {
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; gap: 0; margin: 0;
    background: rgba(7,42,43,.97); backdrop-filter: blur(14px);
    padding: 8px clamp(20px, 4vw, 40px) 18px;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .3s, transform .3s var(--ease);
    border-bottom: 1px solid var(--ink-line);
  }
  .nav-links a { padding: 14px 0; font-size: 18px; color: var(--on-ink); border-bottom: 1px solid var(--ink-line); }
  .nav.open { background: rgba(7,42,43,.97); }
  .nav.open .nav-links { opacity: 1; transform: none; pointer-events: auto; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }

  .hero-in { grid-template-columns: minmax(0,1fr); }
  .ask { min-height: 392px; }
  .ai-row, .ai-row.flip, .trust-in, .faq-in, .step, .step:nth-child(even) { grid-template-columns: minmax(0,1fr); }
  .ai-row.flip .ai-copy, .step:nth-child(even) .step-copy { order: 0; }
  .ai-minis { grid-template-columns: minmax(0,1fr); }
  .after-in, .final-in { grid-template-columns: minmax(0,1fr); }
  .stats > div { padding: 18px 10px 18px 0; }
  .stats > div + div { padding-left: 12px; }
  .stats b { font-size: clamp(26px, 8vw, 42px); }
  .stats span { font-size: 13px; line-height: 1.35; }
  .hero-title em { display: inline; }
  .js .ui.tilt, .js .ai-row.flip .ui.tilt { transform: translateY(14px); }
  .smd-cols { grid-template-columns: minmax(0,1fr); }
  .flow { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .flow::before { display: none; }
  .step { gap: 24px; }
  .js .step { opacity: 1; }

  /* Journey bar: compact */
  .jbar { top: calc(var(--nav-h) + 6px); margin-left: -8px; margin-right: -8px; }
  .jbar-in { gap: 12px; padding: 8px 12px 8px 8px; border-radius: 16px; }
  .order-chip { padding: 7px 8px; border-radius: 11px; grid-template-columns: auto; }
  .order-chip .oc-top, .order-chip strong { display: none; }
  .oc-status { grid-column: 1; grid-row: 1; font-size: 12px; padding: 5px 10px; }
  .st-dot { width: 28px; height: 28px; }
  .st-dot .ic { width: 13px; height: 13px; }
  .st-track { top: 13px; }
  .stages li.active .st-dot { box-shadow: 0 0 0 4px rgba(255,107,74,.2); }

  /* Comparison: one card per row */
  .cmp-head { display: none; }
  .cmp-row { grid-template-columns: minmax(0,1fr); padding: 18px 18px 16px; border-top: 1px solid var(--line); gap: 8px; }
  .cmp-row:nth-child(2) { border-top: 0; }
  .cmp-row > span { border-top: 0; padding: 0; font-size: 15.5px; }
  .cmp-row > .with { background: #E6F3F0; border-radius: 12px; padding: 11px 12px; }
  .cmp-row > .without { padding: 4px 12px 0; }
  .cmp [role="rowheader"] { font-size: 18px; padding-bottom: 2px; }
}

@media (max-width: 600px) {
  .flow { grid-template-columns: 1fr; }
  .roles li { grid-template-columns: 1fr; gap: 4px; }
  .quotes li:nth-child(2), .quotes li:nth-child(3) { margin-left: 0; }
  .ans-big { font-size: 38px; }
  .cta-row .btn { flex: 1 1 auto; justify-content: center; }
  .foot-copy { margin-left: 0; }
  .faq-list details p { padding-right: 0; }
  .ai-mini { padding: 20px 16px; }
  .f-grid { grid-template-columns: minmax(0,1fr); }
  .contact-line { gap: 10px 18px; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   Multi-page additions
   ═══════════════════════════════════════════════════════════════════════════ */
.nav-links a[aria-current="page"] { color: var(--on-ink); box-shadow: inset 0 -2px 0 var(--coral); padding-bottom: 4px; }

/* Page header on inner pages */
.page-hero { position: relative; overflow: hidden; background: var(--ink); color: var(--on-ink); padding: calc(var(--nav-h) + clamp(48px, 7vw, 88px)) 0 clamp(44px, 6vw, 72px); }
.page-hero-in { position: relative; }
.page-hero-in > * { max-width: 860px; }
.page-hero h1 { font-size: clamp(38px, 5.2vw, 66px); font-weight: 800; letter-spacing: -.035em; line-height: 1.02; }
.page-hero .lede { margin-top: 20px; }
.industry-note.on-dark { color: var(--on-ink-muted); }

/* Home · AI cards */
.home-ai .sec-head { margin-bottom: clamp(32px, 4vw, 48px); }
.ai-cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.ai-card { background: rgba(255,255,255,.04); border: 1px solid var(--ink-line); border-radius: 22px; padding: 28px 26px 30px; transition: transform .35s var(--ease), border-color .35s, background .35s; }
.ai-card:hover { transform: translateY(-5px); border-color: rgba(255,107,74,.35); background: rgba(255,255,255,.06); }
.ai-card-ic { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: rgba(255,107,74,.14); color: var(--coral); margin-bottom: 22px; }
.ai-card-ic .ic { width: 22px; height: 22px; }
.ai-card h3 { font-size: 23px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 10px; }
.ai-card p { color: var(--on-ink-muted); font-size: 16px; line-height: 1.55; }
.ai-also { margin-top: 26px; color: var(--on-ink-muted); font-size: 15.5px; line-height: 1.6; }
.ai-also span { color: var(--on-ink); font-weight: 600; margin-right: 6px; }
.more-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 26px; font-weight: 700; font-size: 16.5px; color: var(--coral-deep); text-decoration: none; }
.more-link.on-dark { color: var(--coral); }
.more-link .ic { transition: transform .25s var(--ease); }
.more-link:hover .ic { transform: translateX(4px); }

/* Home · how it works */
.home-flow { background: linear-gradient(180deg, var(--paper), #EAF2F0); }
.home-flow-in { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(28px, 5vw, 64px); align-items: center; }
.flowlist { display: grid; gap: 4px; counter-reset: fl; }
.flowlist li { position: relative; display: grid; grid-template-columns: 44px minmax(0,1fr); gap: 16px; padding: 12px 0; }
.flowlist li:not(:last-child)::after { content: ""; position: absolute; left: 21px; top: 58px; bottom: -8px; width: 2px; background: var(--line); }
.fl-ic { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--surface); border: 1.5px solid var(--line); color: var(--teal); position: relative; z-index: 1; }
.fl-ic .ic { width: 19px; height: 19px; }
.flowlist h3 { font-size: 19px; font-weight: 700; letter-spacing: -.015em; margin: 2px 0 3px; }
.flowlist p { color: var(--muted); font-size: 15.5px; line-height: 1.5; }
.after-strip { margin-top: clamp(28px, 4vw, 44px); display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; background: var(--ink); color: var(--on-ink); border-radius: 18px; padding: 18px 24px; }
.after-strip-label { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--coral); }
.after-strip-items { color: var(--on-ink-muted); font-size: 15.5px; }

/* Home · quote */
.home-quote { max-width: 860px; }

/* CTA band */
.cta-band { background: var(--coral); color: var(--ink); padding: clamp(52px, 7vw, 84px) 0; }
.cta-band-in { display: flex; align-items: center; justify-content: space-between; gap: 24px 40px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(30px, 3.6vw, 46px); font-weight: 800; letter-spacing: -.035em; max-width: 18ch; }
.cta-band p { margin-top: 10px; color: rgba(7,42,43,.8); font-size: 17px; }
.cta-band .cta-row { margin-top: 0; }

/* Features · teams */
.teams-in { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(32px, 6vw, 90px); align-items: start; }
.teams-in .sec-head { margin-bottom: 0; }

/* FAQ page */
.faq-narrow .faq-list { max-width: 820px; }

/* Demo page */
.demo-sec { padding-top: clamp(48px, 6vw, 80px); }
.demo-sec .final-copy h2 { font-size: clamp(28px, 3vw, 38px); max-width: none; }
.next-steps { display: grid; gap: 18px; margin-top: 24px; }
.next-steps li { display: grid; grid-template-columns: 40px minmax(0,1fr); gap: 14px; }
.next-steps li > span { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: var(--on-ink); font-family: var(--display); font-weight: 800; }
.next-steps b { display: block; font-size: 18px; margin-top: 2px; }
.next-steps p { color: rgba(7,42,43,.8); font-size: 15.5px; }

/* Sticky booking bar on phones */
.mbar { display: none; }
@media (max-width: 700px) {
  .mbar { display: flex; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(7,42,43,.94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 -10px 30px -18px rgba(0,0,0,.6); }
  .mbar-demo { flex: 1; justify-content: center; padding-block: 13px; }
  .mbar-wa { width: 50px; flex-shrink: 0; border-radius: 999px; display: grid; place-items: center; background: rgba(255,255,255,.12); color: var(--on-ink); }
  .mbar-wa .ic { width: 22px; height: 22px; }
  body:has(.mbar) { padding-bottom: 76px; }
  body:has(.mbar) .wa-float { display: none; }
}
@media (max-width: 900px) {
  .ai-cards, .home-flow-in, .teams-in { grid-template-columns: minmax(0,1fr); }
  .cta-band-in { flex-direction: column; align-items: flex-start; }
}

/* ─── Reduced motion ────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .js .reveal, .hero-copy > *, .ask { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none; }
  .js .ui.tilt { transform: none !important; }
}

/* Home · compact Sell · Make · Deliver */
.smd-lite { display: grid; gap: 0; }
.smd-lite li { position: relative; padding: 11px 0 11px 22px; border-top: 1px solid var(--line); font-size: 16px; font-weight: 500; line-height: 1.35; }
.smd-lite li::before { content: ""; position: absolute; left: 2px; top: 18px; width: 8px; height: 8px; border-radius: 50%; background: var(--ink); }
.smd-col:nth-child(2) .smd-lite li::before { background: var(--teal); }
.smd-col:nth-child(3) .smd-lite li::before { background: var(--coral-deep); }
.smd-home .smd-col { padding-bottom: 18px; }
.smd-col .smd-lite li { display: block; }
@media (max-width: 600px) {
  .flow { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 26px 18px; }
  .flow-n { width: 44px; height: 44px; font-size: 18px; margin-bottom: 14px; box-shadow: none; }
  .flow h3 { font-size: 19px; }
  .flow p { font-size: 14.5px; }
  .proof-line { font-size: 26px; }
  .smd-home .smd-verb { font-size: 44px; margin-bottom: 10px; }
  .smd-lite li { padding-block: 9px; font-size: 15.5px; }
}
/* Features: AI section follows the page header directly */
.ai-after-hero { padding-top: clamp(20px, 3vw, 36px); }
/* Home: cards and strip are links */
a.ai-card { display: block; color: inherit; text-decoration: none; }
.ai-card-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 700; font-size: 15px; color: var(--coral); }
.ai-card-more .ic { transition: transform .25s var(--ease); }
a.ai-card:hover .ai-card-more .ic { transform: translateX(4px); }
a.after-strip { text-decoration: none; transition: transform .25s var(--ease), box-shadow .25s; }
a.after-strip:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.after-strip-go { margin-left: auto; color: var(--coral); display: inline-flex; }
