/* ============================================================
   Spectral Point — product-led landing
   Display: Space Grotesk · Body: Hanken Grotesk · UI: JetBrains Mono
   ============================================================ */
:root {
  --bg:        #ffffff;
  --bg-2:      #fbfbfd;
  --panel:     #f4f6fb;
  --surface:   #ffffff;
  --ink:       #0e1320;
  --ink-2:     #1a2236;
  --muted:     #566080;
  --faint:     #8a93a8;
  --line:      #e7eaf1;
  --line-2:    #d8dde9;

  --brand:      #2f6bff;
  --brand-deep: #1f50cc;
  --brand-soft: #eef3ff;
  --on-brand:   #ffffff;
  --good:       #1faf6a;
  --good-soft:  #e7f6ee;
  --warn:       #e0a020;

  --dark:    #0c0e16;
  --dark-2:  #12151f;
  --dark-3:  #1b1f2e;
  --unsliced: #9e1b1b;
  --unsliced-deep: #7e1414;

  --r-lg: 18px;
  --r:    14px;
  --r-sm: 10px;
  --maxw: 1180px;

  --sh-s: 0 1px 2px rgba(14,19,32,.05), 0 1px 1px rgba(14,19,32,.03);
  --sh-m: 0 16px 40px -24px rgba(16,24,55,.30), 0 2px 8px -3px rgba(16,24,55,.07);
  --sh-l: 0 44px 90px -42px rgba(12,18,45,.46);
  --sh-brand: 0 14px 32px -14px rgba(47,107,255,.55);

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  font-size: 17px; line-height: 1.6; letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: "Space Grotesk", "Hanken Grotesk", sans-serif; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; line-height: 1.05; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg, video { display: block; max-width: 100%; }
::selection { background: color-mix(in oklab, var(--brand) 22%, white); color: var(--ink); }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; border-radius: 5px; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(72px, 9vw, 124px) 0; position: relative; }
.section-head { max-width: 900px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 3.8vw, 3rem); margin: 16px 0 0; }
.section-head .sub { margin-top: 16px; color: var(--muted); font-size: clamp(1.02rem, 1.4vw, 1.16rem); max-width: 60ch; }
.section-head.center .sub { margin-inline: auto; }

.eyebrow { font-family: "JetBrains Mono", monospace; font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand-deep); display: inline-flex; align-items: center; gap: 9px; font-weight: 500; }
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 2px; background: var(--brand); }
.eyebrow.center { justify-content: center; }
.eyebrow.faint { color: var(--faint); } .eyebrow.faint::before { background: var(--faint); }
.accent { color: var(--brand); }

/* ---------- buttons ---------- */
.btn {
  font-family: "Hanken Grotesk", sans-serif; font-size: 15.5px; font-weight: 600; letter-spacing: -0.01em;
  padding: 14px 22px; border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn--primary { background: var(--brand); color: var(--on-brand); box-shadow: var(--sh-brand); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -16px rgba(47,107,255,.62); }
.btn--ghost { background: var(--surface); color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.26); backdrop-filter: blur(6px); }
.btn--light:hover { background: rgba(255,255,255,.18); }
.btn--lg { padding: 15px 26px; font-size: 16px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.trust { font-size: 13.5px; color: var(--faint); display: inline-flex; align-items: center; gap: 8px; }
.trust .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--good); box-shadow: 0 0 0 4px var(--good-soft); }

/* ---------- spectrum mark ---------- */
.spectrum-mark { display: inline-flex; gap: 3px; align-items: flex-end; height: 22px; }
.spectrum-mark i { width: 4px; border-radius: 2px; display: block; }
.spectrum-mark i:nth-child(1){ height: 10px; background: #9db4ff; }
.spectrum-mark i:nth-child(2){ height: 16px; background: #5b86ff; }
.spectrum-mark i:nth-child(3){ height: 22px; background: var(--brand); }
.spectrum-mark i:nth-child(4){ height: 14px; background: var(--brand-deep); }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-name { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 19px; letter-spacing: -0.02em; color: var(--ink); }

/* ============================================================ Header */
.site-header { position: sticky; top: 0; z-index: 100; background: color-mix(in oklab, var(--bg) 82%, transparent); border-bottom: 1px solid transparent; transition: border-color .3s, background .3s, backdrop-filter .3s; }
.site-header.is-stuck { border-color: var(--line); backdrop-filter: saturate(1.4) blur(14px); background: color-mix(in oklab, var(--bg) 88%, transparent); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 20px; }

/* ============================================================ Hero */
.hero { position: relative; text-align: center; padding: clamp(56px, 9vw, 110px) 0 clamp(48px, 7vw, 84px); overflow: hidden; }
.hero-inner { position: relative; z-index: 2; max-width: 940px; margin-inline: auto; }
.hero h1 { font-size: clamp(2.6rem, 5.8vw, 4.6rem); font-weight: 700; letter-spacing: -0.035em; margin: 22px auto 0; max-width: 22ch; }
.hero h1 .accent { color: var(--brand); }
.hero .lead { margin: 22px auto 0; font-size: clamp(1.08rem, 1.5vw, 1.3rem); color: var(--muted); max-width: 50ch; line-height: 1.5; }
.hero .btn-row { justify-content: center; margin-top: 32px; }
.hero .trust { margin-top: 20px; }

/* floating geometric accents */
.geo { position: absolute; z-index: 0; border-radius: 9px; opacity: .5; pointer-events: none; }
.geo.sq { border: 1.5px solid; }
.geo.fill { opacity: .14; }
.geo.g1 { width: 70px; height: 70px; top: 14%; left: 9%; border-color: var(--brand); transform: rotate(18deg); animation: drift 9s ease-in-out infinite; }
.geo.g2 { width: 48px; height: 48px; top: 60%; left: 14%; background: #7b5bff; transform: rotate(-12deg); animation: drift 11s ease-in-out infinite -2s; }
.geo.g3 { width: 90px; height: 90px; top: 20%; right: 8%; border-color: #7b5bff; transform: rotate(-20deg); animation: drift 10s ease-in-out infinite -4s; }
.geo.g4 { width: 40px; height: 40px; top: 64%; right: 13%; background: var(--brand); transform: rotate(24deg); animation: drift 8s ease-in-out infinite -1s; }
.geo.g5 { width: 26px; height: 26px; top: 38%; left: 4%; background: var(--brand); border-radius: 50%; }
.hero-glow { position: absolute; z-index: 0; top: -160px; left: 50%; transform: translateX(-50%); width: 900px; height: 520px; background: radial-gradient(60% 60% at 50% 40%, rgba(47,107,255,.16), transparent 70%); pointer-events: none; }
@keyframes drift { 0%,100%{ transform: translateY(0) rotate(var(--r,0deg)); } 50%{ transform: translateY(-16px) rotate(var(--r,0deg)); } }
@media (max-width: 720px){ .geo { display: none; } }

/* ============================================================ Showcase: Unsliced product */
.showcase { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.unsliced {
  max-width: 1040px; margin: 48px auto 0;
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-l);
}
.u-topbar { position: relative; height: 50px; background: var(--unsliced); display: flex; align-items: center; justify-content: center; }
.u-topbar .u-wordmark { height: 17px; filter: brightness(0) invert(1); opacity: .96; }
.u-topbar .u-acct { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.4); display: grid; place-items: center; color: #fff; }
.u-topbar .u-acct svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 1.8; }
.u-body { display: grid; grid-template-columns: 290px 1fr; min-height: 472px; }

/* sidebar */
.u-side { border-right: 1px solid var(--line); background: var(--bg-2); padding: 18px 16px; display: flex; flex-direction: column; min-width: 0; }
.u-side .s-title { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 15px; color: var(--ink); line-height: 1.2; }
.u-side .s-sub { font-size: 12.5px; color: var(--faint); margin-top: 2px; }
.u-search { display: flex; align-items: center; gap: 8px; margin: 14px 0 12px; background: var(--surface); border: 1px solid var(--line-2); border-radius: 9px; padding: 9px 11px; color: var(--faint); font-size: 12.5px; }
.u-search svg { width: 14px; height: 14px; stroke: var(--faint); fill: none; stroke-width: 2; flex: none; }
.u-curric { display: flex; flex-direction: column; gap: 3px; overflow: hidden; }
.u-mod { }
.u-mod > .m-head { display: flex; align-items: center; gap: 9px; padding: 9px 8px; border-radius: 8px; cursor: default; }
.u-mod > .m-head:hover { background: var(--surface); }
.u-mod .m-num { width: 19px; height: 19px; flex: none; border-radius: 6px; background: var(--brand-soft); color: var(--brand-deep); font-family: "JetBrains Mono", monospace; font-size: 10.5px; font-weight: 600; display: grid; place-items: center; }
.u-mod .m-name { font-size: 12.8px; font-weight: 600; color: var(--ink-2); line-height: 1.3; min-width: 0; }
.u-mod .m-chev { margin-left: auto; width: 13px; height: 13px; color: var(--faint); flex: none; }
.u-mod .m-items { display: flex; flex-direction: column; gap: 1px; padding: 2px 0 6px 36px; }
.u-mod .m-item { font-size: 12.3px; color: var(--muted); padding: 6px 8px; border-radius: 6px; display: flex; align-items: center; gap: 7px; }
.u-mod .m-item::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--line-2); flex: none; }
.u-mod .m-item.active { background: var(--brand-soft); color: var(--brand-deep); font-weight: 600; }
.u-mod .m-item.active::before { background: var(--brand); }
.u-mod .m-item .beta { font-family: "JetBrains Mono", monospace; font-size: 8.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--warn); background: #fdf4e3; border: 1px solid #f3e2bd; border-radius: 4px; padding: 1px 5px; margin-left: auto; }
.u-mod.collapsed .m-items { display: none; }
.u-mod.collapsed .m-chev { transform: rotate(-90deg); }

/* main chat */
.u-main { display: flex; flex-direction: column; min-width: 0; background: var(--surface); }
.u-thread { flex: 1; padding: 24px 28px; display: flex; flex-direction: column; gap: 18px; overflow: hidden; }
.u-msg { display: flex; gap: 12px; align-items: flex-start; animation: msgIn .45s var(--ease) both; max-width: 92%; }
.u-msg.me { align-self: flex-end; flex-direction: row-reverse; }
@keyframes msgIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.u-av { width: 34px; height: 34px; border-radius: 9px; flex: none; display: grid; place-items: center; font-size: 12px; font-weight: 700; color: #fff; }
.u-av.clone { background: linear-gradient(135deg, #4d7bff, var(--brand-deep)); }
.u-av.me { background: #cfd6e6; color: var(--ink-2); }
.u-bub { border-radius: 4px 13px 13px 13px; padding: 13px 15px; font-size: 14px; line-height: 1.55; }
.u-msg.me .u-bub { border-radius: 13px 4px 13px 13px; background: var(--brand); color: #fff; }
.u-bub.clone { background: var(--bg-2); border: 1px solid var(--line); color: var(--ink-2); }
.u-bub .b-lead { font-weight: 600; color: var(--ink); }
.u-bub ul { margin: 10px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 7px; }
.u-bub li { position: relative; padding-left: 18px; color: var(--muted); font-size: 13.3px; line-height: 1.45; }
.u-bub li::before { content: ""; position: absolute; left: 2px; top: 7px; width: 6px; height: 6px; border-radius: 2px; background: var(--brand); }
.u-bub .b-foot { margin-top: 12px; color: var(--ink-2); }
.u-bub .b-time { display: block; margin-top: 10px; font-family: "JetBrains Mono", monospace; font-size: 10.5px; color: var(--faint); }
.u-meta { font-size: 11.5px; font-weight: 700; color: var(--ink); margin-bottom: 5px; display: flex; align-items: center; gap: 7px; }
.u-meta .tag { font-family: "JetBrains Mono", monospace; font-size: 9px; letter-spacing: .06em; text-transform: uppercase; color: var(--brand-deep); background: var(--brand-soft); border: 1px solid color-mix(in oklab, var(--brand) 18%, var(--line)); padding: 2px 6px; border-radius: 5px; font-weight: 600; }
.u-typing { display: inline-flex; gap: 5px; padding: 13px 15px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 4px 13px 13px 13px; }
.u-typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); opacity: .45; animation: bounce 1.2s ease-in-out infinite; }
.u-typing i:nth-child(2){ animation-delay: .15s; } .u-typing i:nth-child(3){ animation-delay: .3s; }
@keyframes bounce { 0%,60%,100%{ transform: translateY(0); opacity:.4; } 30%{ transform: translateY(-5px); opacity:.9; } }
.u-cursor { display: inline-block; width: 8px; height: 1.05em; background: var(--brand); margin-left: 2px; vertical-align: -2px; animation: caret .9s steps(1) infinite; }
@keyframes caret { 0%,50%{ opacity:1; } 51%,100%{ opacity:0; } }
/* input bar */
.u-input { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-top: 1px solid var(--line); background: var(--surface); }
.u-input .plus, .u-input .mic { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex: none; color: var(--muted); border: 1px solid var(--line-2); background: var(--bg-2); }
.u-input .plus svg, .u-input .mic svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.9; }
.u-input .field { flex: 1; min-width: 0; color: var(--faint); font-size: 13.5px; padding: 0 4px; }
.u-input .send { width: 36px; height: 36px; border-radius: 9px; flex: none; background: var(--unsliced); display: grid; place-items: center; }
.u-input .send svg { width: 17px; height: 17px; fill: #fff; }
.showcase .caption { text-align: center; margin: 16px auto 0; font-size: 13px; color: var(--faint); font-family: "JetBrains Mono", monospace; }
@media (max-width: 760px){ .u-body { grid-template-columns: 1fr; } .u-side { display: none; } .u-msg { max-width: 100%; } .u-thread { padding: 18px 16px; } }

/* ============================================================ Integrations */
.integ { padding: clamp(40px,6vw,60px) 0; }
.integ .eyebrow { justify-content: center; display: flex; margin-bottom: 26px; }
.integ-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.integ-cell {
  display: grid; place-items: center; height: 84px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--sh-s); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.integ-cell:hover { transform: translateY(-3px); box-shadow: var(--sh-m); border-color: var(--line-2); }
.integ-cell img { max-height: 34px; max-width: 140px; width: auto; object-fit: contain; transition: filter .3s ease; }
/* marks that read small at the base size — bump so they're clearly visible */
.integ-cell img[alt="Skool"],
.integ-cell img[alt="Thinkific"],
.integ-cell img[alt="Teachable"],
.integ-cell img[alt="Slack"] { max-height: 44px; max-width: 160px; }
/* Mobile + tablet (no precise hover): show logos in full colour */
/* Desktop (mouse/hover): tasteful grayscale at rest, full colour on hover */
@media (hover: hover) and (pointer: fine) {
  .integ-cell img { filter: grayscale(1) opacity(.72); }
  .integ-cell:hover img { filter: grayscale(0) opacity(1); }
}
.integ-cell .txtlogo { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 18px; color: var(--muted); letter-spacing: -0.02em; transition: color .3s; }
.integ-cell:hover .txtlogo { color: var(--ink); }
@media (max-width: 820px){ .integ-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================ Why founders run it — 3 cards */
.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.fcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 18px; box-shadow: var(--sh-s); display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.fcard:hover { transform: translateY(-5px); box-shadow: var(--sh-m); border-color: var(--line-2); }
.fcard .mock { background: var(--dark); border-radius: var(--r); padding: 18px; min-height: 188px; position: relative; overflow: hidden; }
.fcard .mock::before { content: ""; position: absolute; inset: 0; background: radial-gradient(90% 80% at 85% 0%, rgba(47,107,255,.26), transparent 58%); pointer-events: none; }
.fcard .body { padding: 22px 12px 12px; }
.fcard h3 { font-size: 1.32rem; letter-spacing: -0.025em; }
.fcard p { margin-top: 10px; color: var(--muted); font-size: 14.5px; line-height: 1.55; }
.pill { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-family: "JetBrains Mono", monospace; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; color: var(--brand-deep); background: var(--brand-soft); border: 1px solid color-mix(in oklab, var(--brand) 16%, var(--line)); padding: 6px 11px; border-radius: 999px; }
@media (max-width: 900px){ .three { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* mock: ingest checklist */
.ingest { position: relative; display: flex; flex-direction: column; gap: 9px; }
.ingest .ic-row { display: flex; align-items: center; gap: 10px; font-size: 12.8px; color: rgba(255,255,255,.82); }
.ingest .ic-check { width: 18px; height: 18px; border-radius: 6px; background: rgba(31,175,106,.18); border: 1px solid rgba(31,175,106,.5); display: grid; place-items: center; flex: none; }
.ingest .ic-check svg { width: 11px; height: 11px; stroke: #46d196; fill: none; stroke-width: 2.6; }
.ingest .ic-ready { margin-top: 5px; display: flex; align-items: center; gap: 9px; background: rgba(47,107,255,.16); border: 1px solid rgba(47,107,255,.4); border-radius: 9px; padding: 9px 11px; color: #cfe0ff; font-size: 12.5px; font-weight: 600; }
.ingest .ic-ready .sp { display: inline-flex; gap: 2px; align-items: flex-end; height: 14px; }
.ingest .ic-ready .sp i { width: 3px; border-radius: 2px; background: #6f97ff; display:block; }
.ingest .ic-ready .sp i:nth-child(1){height:6px} .ingest .ic-ready .sp i:nth-child(2){height:11px} .ingest .ic-ready .sp i:nth-child(3){height:14px} .ingest .ic-ready .sp i:nth-child(4){height:9px}

/* mock: student memory cards */
.mem { display: flex; flex-direction: column; gap: 11px; position: relative; }
.mem .mcard { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; padding: 11px 12px; display: flex; gap: 10px; align-items: flex-start; }
.mem .m-ava { width: 30px; height: 30px; border-radius: 8px; flex: none; display: grid; place-items: center; font-size: 11px; font-weight: 700; color: #fff; }
.mem .mcard:nth-child(1) .m-ava { background: #d36a8e; } .mem .mcard:nth-child(2) .m-ava { background: #5aa9e6; }
.mem .m-nm { font-size: 12.5px; font-weight: 700; color: #fff; }
.mem .m-ctx { font-size: 11.6px; color: rgba(255,255,255,.6); margin-top: 2px; line-height: 1.35; }
.mem .m-tag { font-family: "JetBrains Mono", monospace; font-size: 8.5px; letter-spacing:.05em; text-transform: uppercase; color: #9fe9c8; display: inline-flex; align-items: center; gap: 5px; margin-top: 5px; }
.mem .m-tag::before { content:""; width:5px;height:5px;border-radius:50%;background:var(--good); }

/* mock: connected platforms */
.connected { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; position: relative; }
.connected .cn { background: #fff; border-radius: 9px; height: 44px; display: grid; place-items: center; padding: 8px; }
.connected .cn img { max-height: 20px; max-width: 70px; object-fit: contain; }
.connected .cn .ok { position: absolute; }
.connected .cn-badge { grid-column: 1 / -1; margin-top: 4px; display: inline-flex; align-self: start; align-items: center; gap: 7px; font-size: 11.5px; color: #cfe0ff; font-weight: 600; }
.connected .cn-badge .d { width: 7px; height: 7px; border-radius: 50%; background: var(--good); box-shadow: 0 0 0 3px rgba(31,175,106,.25); }

/* ============================================================ Quality bar */
.quality { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.qcard { margin-top: 48px; background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-lg); box-shadow: var(--sh-m); display: grid; grid-template-columns: 1.15fr 1fr; overflow: hidden; }
.q-left { padding: 30px 32px; border-right: 1px solid var(--line); }
.q-right { padding: 30px 32px; background: var(--bg-2); }
.q-h { font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }
.q-num { display: flex; align-items: baseline; gap: 12px; margin-top: 10px; }
.q-num .n { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: clamp(2.6rem, 5vw, 3.6rem); letter-spacing: -0.04em; color: var(--ink); line-height: 1; }
.q-delta { display: inline-flex; align-items: center; gap: 5px; font-weight: 700; font-size: 13.5px; color: var(--good); background: var(--good-soft); border-radius: 999px; padding: 4px 10px; }
.q-delta svg { width: 12px; height: 12px; }
.chart { margin-top: 24px; position: relative; }
.chart svg { width: 100%; height: auto; display: block; overflow: visible; }
.chart .thr-label { font-family: "JetBrains Mono", monospace; font-size: 10px; fill: var(--faint); }
.bar { fill: var(--brand); }
.bar.under { fill: #c5d3f6; }
.barlabel { font-family: "JetBrains Mono", monospace; font-size: 8.5px; fill: var(--faint); }

.q-title { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.q-rows { margin-top: 16px; display: flex; flex-direction: column; }
.q-row { display: flex; align-items: center; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.q-row:last-child { border-bottom: none; }
.q-row .st { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.q-row .st.green { background: var(--good); box-shadow: 0 0 0 3px var(--good-soft); }
.q-row .st.blue { background: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
.q-row .rk { font-size: 14px; color: var(--muted); }
.q-row .rv { margin-left: auto; font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 15px; color: var(--ink); }
.q-status { margin-top: 16px; display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 13.5px; color: var(--good); background: var(--good-soft); border: 1px solid color-mix(in oklab, var(--good) 22%, white); border-radius: 10px; padding: 11px 14px; }
.q-status svg { width: 16px; height: 16px; stroke: var(--good); fill: none; stroke-width: 2.2; }
.q-foot { margin-top: 20px; font-size: 13px; color: var(--faint); display: flex; align-items: center; gap: 10px; }
.q-foot .mk { color: var(--brand); }
@media (max-width: 820px){ .qcard { grid-template-columns: 1fr; } .q-left { border-right: none; border-bottom: 1px solid var(--line); } }

/* ============================================================ Testimonial */
.testi { }
.testi-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px,5vw,56px); align-items: center; }
.testi-quote { font-family: "Space Grotesk", sans-serif; font-weight: 500; font-size: clamp(1.5rem, 2.5vw, 2.1rem); line-height: 1.32; letter-spacing: -0.025em; color: var(--ink); margin: 22px 0 28px; }
.testi-quote .hl { color: var(--brand); }
.testi-by { display: flex; align-items: center; gap: 14px; }
.testi-by .avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, #4d7bff, var(--brand-deep)); display: grid; place-items: center; font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 21px; color: #fff; flex: none; }
.testi-by .who { font-weight: 700; font-size: 16px; color: var(--ink); }
.testi-by .role { font-size: 13.5px; color: var(--faint); }

.player { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--dark); box-shadow: var(--sh-l); border: 1px solid var(--line-2); aspect-ratio: 16/10; }
.player video { width: 100%; height: 100%; object-fit: cover; background: #06080f; }
.player .poster { position: absolute; inset: 0; display: grid; place-items: center; cursor: pointer; transition: opacity .35s ease; background: radial-gradient(120% 90% at 75% 12%, rgba(47,107,255,.46), transparent 60%), radial-gradient(100% 80% at 12% 100%, rgba(123,91,255,.28), transparent 65%), var(--dark); }
.player.is-playing .poster { opacity: 0; pointer-events: none; }
.player .poster:focus-visible { outline: 3px solid #fff; outline-offset: -6px; }
.play-btn { position: relative; z-index: 2; width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,.96); display: grid; place-items: center; box-shadow: 0 16px 40px -10px rgba(0,0,0,.5); transition: transform .3s var(--ease); }
.player .poster:hover .play-btn, .player .poster:focus-visible .play-btn { transform: scale(1.07); }
.play-btn svg { width: 25px; height: 25px; margin-left: 3px; fill: var(--ink); }
.player .pulse { position: absolute; z-index: 1; width: 72px; height: 72px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.5); animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0%{ transform: scale(1); opacity:.7; } 100%{ transform: scale(2.4); opacity:0; } }
.player-caption { position: absolute; z-index: 2; left: 18px; bottom: 18px; right: 18px; display: flex; align-items: center; gap: 12px; color: #fff; pointer-events: none; }
.player.is-playing .player-caption { opacity: 0; transition: opacity .3s; }
.player-caption .avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, #4d7bff, var(--brand-deep)); border: 1.5px solid rgba(255,255,255,.5); display: grid; place-items: center; font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 17px; color: #fff; flex: none; }
.player-caption .who { font-weight: 700; font-size: 15px; }
.player-caption .role { font-size: 12.5px; opacity: .82; }
@media (max-width: 860px){ .testi-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ============================================================ Comparison */
.compare { display: grid; grid-template-columns: 1.2fr 1fr 1fr; margin-top: 48px; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); box-shadow: var(--sh-s); }
.compare .c { padding: 20px 22px; border-bottom: 1px solid var(--line); display: flex; align-items: center; }
.compare .c.brandcol { background: var(--brand-soft); }
.compare .c.head { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 16px; gap: 10px; }
.compare .c.head.brandcol { color: var(--brand-deep); }
.compare .rl { font-weight: 600; color: var(--ink); font-size: 14.5px; }
.compare .mk { width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; flex: none; }
.compare .mk.b { background: var(--brand); } .compare .mk.b svg { stroke: #fff; }
.compare .mk.x { background: var(--panel); border: 1px solid var(--line-2); }
.compare .mk svg { width: 14px; height: 14px; fill: none; stroke-width: 2.3; }
.compare .cell { gap: 11px; font-size: 14px; color: var(--muted); }
.compare .ci { width: 20px; height: 20px; flex: none; border-radius: 50%; display: grid; place-items: center; }
.compare .ci.yes { background: var(--good-soft); } .compare .ci.no { background: #fbeceb; }
.compare .ci svg { width: 12px; height: 12px; stroke-width: 2.5; fill: none; }
.compare .ci.yes svg { stroke: #138a52; } .compare .ci.no svg { stroke: #d6453c; }
.compare .crow { display: contents; }
.compare .crow:last-child .c { border-bottom: none; }
@media (max-width: 760px){
  .compare { grid-template-columns: 1fr; border: none; background: none; box-shadow: none; gap: 14px; }
  .compare .crow { display: grid; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
  .compare .c { border: none; border-bottom: 1px solid var(--line); }
  .compare .c:last-child { border-bottom: none; }
  .compare .head-row { display: none; }
}

/* ============================================================ Team */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.team-card { display: grid; grid-template-columns: 168px 1fr; gap: 24px; align-items: start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--sh-s); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--sh-m); border-color: var(--line-2); }
.team-photo { width: 168px; height: 204px; object-fit: cover; border-radius: var(--r); background: var(--panel); border: 1px solid var(--line); }
.team-name { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--ink); }
.team-role { font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--brand-deep); margin: 8px 0 14px; }
.team-card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }
@media (max-width: 980px){ .team-grid { grid-template-columns: 1fr; } }
@media (max-width: 540px){ .team-card { grid-template-columns: 112px 1fr; gap: 18px; padding: 18px; } .team-photo { width: 112px; height: 144px; } }
@media (max-width: 400px){ .team-card { grid-template-columns: 1fr; } .team-photo { width: 100%; height: 260px; } }

/* ============================================================ FAQ */
.faq { max-width: 820px; margin: 44px auto 0; }
.faq details { border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); margin-bottom: 12px; box-shadow: var(--sh-s); transition: border-color .25s; }
.faq details[open] { border-color: var(--line-2); }
.faq summary { list-style: none; cursor: pointer; padding: 19px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { width: 20px; height: 20px; flex: none; position: relative; color: var(--brand); transition: transform .3s var(--ease); }
.faq details[open] summary .chev { transform: rotate(45deg); }
.faq summary .chev::before, .faq summary .chev::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.faq summary .chev::before { left: 50%; top: 3px; width: 2px; height: 14px; transform: translateX(-50%); }
.faq summary .chev::after { top: 50%; left: 3px; height: 2px; width: 14px; transform: translateY(-50%); }
.faq .ans { padding: 0 22px 20px; color: var(--muted); font-size: 15px; line-height: 1.6; }

/* ============================================================ Final CTA + footer */
.cta-band { position: relative; overflow: hidden; background: var(--dark); color: #fff; text-align: center; padding: clamp(72px,9vw,112px) 0; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(110% 130% at 50% 130%, rgba(47,107,255,.4), transparent 56%), radial-gradient(70% 80% at 14% 0%, rgba(123,91,255,.2), transparent 60%); pointer-events: none; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(2.2rem, 4.4vw, 3.4rem); max-width: 26ch; margin: 16px auto 0; }
.cta-band h2 .accent { color: #7ea6ff; }
.cta-band p { color: rgba(255,255,255,.68); font-size: 18px; max-width: 46ch; margin: 18px auto 0; }
.cta-band .btn-row { justify-content: center; margin-top: 30px; }
.cta-band .eyebrow { color: #8fb0ff; justify-content: center; display: flex; }
.cta-band .eyebrow::before { background: #8fb0ff; }

.site-footer { background: var(--dark); color: rgba(255,255,255,.6); border-top: 1px solid rgba(255,255,255,.08); padding: 54px 0 34px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand { max-width: 320px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { margin-top: 14px; font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.5; }
.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h4 { font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 500; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14.5px; color: rgba(255,255,255,.72); margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }

/* ============================================================ Reveal + motion */
.reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal { opacity: 0; transform: translateY(24px); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce){
  html { scroll-behavior: auto; }
  html.js .reveal, html.js .reveal.in { opacity: 1 !important; transform: none !important; transition: none !important; }
  .geo, .u-typing i, .u-msg, .player .pulse, .u-cursor { animation: none !important; }
}

/* ============================================================ Responsive base */
@media (max-width: 560px){
  .container { padding-inline: 18px; }
  body { font-size: 16px; }
  .header-inner { height: 60px; }
  .btn { width: 100%; }
  .cta-band .btn-row { width: 100%; }
  .header-cta .btn { width: auto; }
  /* hero: don't stretch CTAs edge-to-edge — auto-width pills, stacked & centred */
  .hero .btn-row { flex-direction: column; align-items: center; gap: 10px; }
  .hero .btn { width: auto; max-width: 100%; }
  .section-head h2 br { display: none; }
}
