/* ============================================================
   withorca.com — homepage styles
   Production stylesheet. Tokens come from colors_and_type.css;
   this file carries resets, component styling (ported from the
   design prototype's component tree), states, keyframes and the
   responsive reflow. Wireframe scaffolding is intentionally gone.
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 132px; }
body {
  font-family: var(--font-sans);
  background: var(--orca-white);
  color: var(--app-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--app-select); color: var(--orca-depth); }
img { max-width: 100%; }
a { color: inherit; }

:root { --wrap: 1180px; }

/* ---- icons ---- */
.ic { flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.7;
      stroke-linecap: round; stroke-linejoin: round; }
.ic--fill { fill: currentColor; stroke: none; }

/* ============================================================
   Buttons / links
   ============================================================ */
.btn {
  font-family: var(--font-sans); font-weight: 600;
  font-size: 13.5px; letter-spacing: 0.005em;
  padding: 9px 16px; border-radius: var(--radius-pill);
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: filter var(--dur-fast) var(--ease-serene), transform var(--dur-fast) var(--ease-serene);
}
.btn--big { font-size: 15px; padding: 13px 22px; }
.btn:hover { filter: brightness(0.97); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--accent-cyan); color: var(--orca-depth); border: 1px solid var(--accent-cyan); }
.btn--ghost   { background: transparent; color: var(--fg-on-dark-1); border: 1px solid rgba(255,255,255,0.34); }
.btn--outline { background: transparent; color: var(--app-ink); border: 1px solid var(--app-line-strong); }
.btn--outline-dark { background: transparent; color: var(--fg-on-dark-1); border: 1px solid rgba(255,255,255,0.34); }
.btn--default { background: var(--orca-white); color: var(--app-ink); border: 1px solid var(--app-line-strong); }

.nav-link:hover { color: var(--app-ink) !important; }
.mega-item:hover { background: var(--app-select-soft) !important; }
.foot-link:hover { color: var(--fg-on-dark-1) !important; }

.card-hover { transition: box-shadow var(--dur-base) var(--ease-serene), transform var(--dur-base) var(--ease-serene), border-color var(--dur-base) var(--ease-serene); }
.card-hover:hover { transform: translateY(-2px); box-shadow: var(--shadow-float); border-color: var(--app-line-strong); }

/* ============================================================
   Layout helpers
   ============================================================ */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 40px; }

/* ---- eyebrow (spaced-caps label with rule) ---- */
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 11.5px; color: var(--app-slate-icon);
  font-family: var(--font-sans); font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-caps); text-transform: uppercase;
}
.eyebrow--dark { color: var(--fg-on-dark-2); }
.eyebrow .rule { width: 20px; height: 1.5px; background: currentColor; opacity: 0.55; }
.eyebrow .num { font-variant-numeric: tabular-nums; opacity: 0.7; }

/* ---- section shell ---- */
.section { padding: 96px 0; position: relative; background: var(--orca-white); color: var(--app-ink); }
.section--sunken   { background: var(--app-surface-sunken); }
.section--dark     { background: var(--orca-depth); color: var(--fg-on-dark-1); }
.section--gradient { background: var(--orca-gradient); color: var(--fg-on-dark-1); }
.section--pad100 { padding: 100px 0; }
.section--pad104 { padding: 104px 0; }

.section-head { text-align: left; margin-bottom: 44px; max-width: 860px; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 { margin: 16px 0 0; color: var(--app-ink); font-family: var(--font-display); }
.section-head--dark h2 { color: var(--fg-on-dark-1); }
.section-head .lede { margin: 16px 0 0; color: var(--app-ink-2); }
.section-head--dark .lede { color: var(--fg-on-dark-2); }

/* ============================================================
   Top navigation
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--app-line);
}
.nav__bar {
  height: 62px; display: flex; align-items: center;
  justify-content: space-between; gap: 18px;
}
.nav__brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; }
.nav__brand img { height: 20px; width: auto; }

.nav__menu { display: flex; align-items: center; gap: 2px; }
.nav__link {
  font-family: var(--font-sans); font-size: 13.5px; font-weight: 500;
  color: var(--app-ink-2); padding: 8px 11px; text-decoration: none;
  white-space: nowrap; border-radius: 8px;
}
.nav__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__login { font-family: var(--font-sans); font-size: 13px; font-weight: 500; color: var(--app-ink-2); text-decoration: none; white-space: nowrap; }

/* nav item w/ mega menu */
.nav__item { position: relative; }
.nav__item > a {
  display: inline-flex; align-items: center; gap: 5px; text-decoration: none;
  font-family: var(--font-sans); font-size: 13.5px; font-weight: 500;
  color: var(--app-ink-2); padding: 8px 11px; border-radius: 8px; white-space: nowrap;
}
.nav__item > a .chev { transition: transform var(--dur-base) var(--ease-serene); }
.nav__item:hover > a { font-weight: 600; color: var(--app-ink); }
.nav__item:hover > a .chev { transform: rotate(180deg); }

.nav__pop {
  position: absolute; top: 100%; left: -8px; padding-top: 10px; z-index: 60;
  display: none;
}
.nav__item:hover .nav__pop,
.nav__pop:hover { display: block; }

.mega {
  background: var(--orca-white); border: 1px solid var(--app-line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-float); padding: 14px;
  display: flex; gap: 14px; align-items: stretch; max-width: calc(100vw - 32px);
}
.mega__cols { display: grid; gap: 14px; flex: 1; }
.mega__head { font-family: var(--font-sans); font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-caps); text-transform: uppercase;
  color: var(--app-slate-icon); font-size: 10px; padding: 4px 8px 8px; }
.mega__list { display: flex; flex-direction: column; gap: 2px; }
.mega-item { display: flex; gap: 11px; align-items: flex-start; text-decoration: none;
  border-radius: var(--radius-md); padding: 9px; }
.mega-item .chip {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  background: var(--app-surface-sunken); border: 1px solid var(--app-line);
  display: flex; align-items: center; justify-content: center; color: var(--app-slate-icon);
}
.mega-item .txt { display: flex; flex-direction: column; gap: 2px; }
.mega-item .txt--noblurb { gap: 0; padding-top: 6px; }
.mega-item .lbl { font-size: 13px; font-weight: 600; color: var(--app-ink); }
.mega-item .blurb { font-size: 11.5px; line-height: 1.35; color: var(--app-ink-2); }

.mega__feature {
  width: 176px; flex-shrink: 0; background: var(--orca-gradient-soft);
  color: var(--fg-on-dark-1); text-decoration: none; border-radius: var(--radius-md);
  padding: 18px 16px; display: flex; flex-direction: column; gap: 8px;
  border: 1px solid rgba(255,255,255,0.12);
}
.mega__feature img { height: 20px; width: auto; align-self: flex-start; opacity: 0.9; }
.mega__feature .ft-title { font-size: 15px; font-weight: 700; font-family: var(--font-display); line-height: 1.25; margin-top: 4px; }
.mega__feature .ft-body { font-size: 12px; color: var(--fg-on-dark-2); line-height: 1.45; }
.mega__feature .ft-cta { margin-top: auto; padding-top: 10px; display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--accent-cyan); }

/* burger + mobile menu */
.nav__burger { display: none; align-items: center; justify-content: center;
  width: 62px; height: 62px; flex-shrink: 0; padding: 0;
  background: var(--accent-cyan); border: 1px solid var(--accent-cyan); border-radius: 50%;
  cursor: pointer; font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: .01em; color: var(--orca-depth); }
.nav__burger-close { display: none; }
.nav__burger.is-open .nav__burger-open { display: none; }
.nav__burger.is-open .nav__burger-close { display: inline; }
.mobile-menu { display: none; position: fixed; inset: 0; top: 62px; z-index: 70;
  background: var(--orca-white); overflow-y: auto; padding: 8px 0 116px; }
.mobile-menu.open { display: block; }
.mobile-menu .wrap { padding: 0 24px; }
.mobile-sec { border-bottom: 1px solid var(--app-line); }
.mobile-sec > summary { list-style: none; cursor: pointer; padding: 16px 2px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 16px; font-weight: 600; color: var(--app-ink); }
.mobile-sec > summary::-webkit-details-marker { display: none; }
.mobile-sec[open] > summary .chev { transform: rotate(180deg); }
.mobile-col { margin-bottom: 8px; }
.mobile-col .h { font-family: var(--font-sans); font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-caps); text-transform: uppercase;
  color: var(--app-slate-icon); font-size: 10px; padding: 8px 2px; }
.mobile-link { display: flex; align-items: center; gap: 10px; padding: 10px 2px;
  text-decoration: none; font-size: 14px; color: var(--app-ink-2); }
.mobile-flat { display: block; padding: 16px 2px; border-bottom: 1px solid var(--app-line);
  font-size: 16px; font-weight: 600; color: var(--app-ink); text-decoration: none; }
.mobile-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.mobile-cta .login { text-align: center; padding: 10px; font-size: 14px; color: var(--app-ink-2); text-decoration: none; }

/* ============================================================
   Hero
   ============================================================ */
.hero { background: var(--orca-gradient); color: var(--fg-on-dark-1); position: relative; }
.hero .wrap { padding-top: 76px; padding-bottom: 56px; }
.hero__split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero__title { font-family: var(--font-display); font-weight: var(--weight-bold);
  font-size: clamp(34px, 4.4vw, 60px); line-height: 1.08; margin: 18px 0 0; letter-spacing: -0.015em; }
.hero__lede { color: var(--fg-on-dark-2); margin: 22px 0 0; max-width: 540px; }
.hero__cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

.hero__ladderwrap { margin-top: 52px; }
.hero__ladderhead { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.hero__ladderhead .lbl { color: var(--fg-on-dark-2); font-size: 11px;
  font-family: var(--font-sans); font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-caps); text-transform: uppercase; }
.hero__ladderhead .line { flex: 1; height: 1px; background: rgba(255,255,255,0.14); }

/* ============================================================
   Conversion ladder
   ============================================================ */
.ladder { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.ladder__card {
  text-decoration: none; display: flex; flex-direction: column; gap: 10px;
  padding: 18px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16);
  color: var(--fg-on-dark-1);
}
.ladder--compact .ladder__card { padding: 16px; }
.ladder__card.goal { background: var(--accent-cyan); border-color: var(--accent-cyan); color: var(--orca-depth); }
.ladder__top { display: flex; align-items: center; justify-content: space-between; }
.ladder__chip { width: 30px; height: 30px; border-radius: 999px; display: flex;
  align-items: center; justify-content: center; background: rgba(255,255,255,0.08); }
.ladder__card.goal .ladder__chip { background: rgba(38,51,63,0.12); }
.ladder__n { font-size: 11px; font-weight: 700; opacity: 0.5; font-variant-numeric: tabular-nums; }
.ladder__action { font-size: 15px; font-weight: 700; font-family: var(--font-display); }
.ladder__commit { font-size: 11.5px; line-height: 1.4; color: var(--fg-on-dark-2); }
.ladder__card.goal .ladder__commit { color: var(--orca-depth); opacity: 0.8; }
.ladder__go { margin-top: auto; padding-top: 8px; display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; }

/* ============================================================
   Credibility strip / marquee
   ============================================================ */
.cred { background: var(--orca-white); border-bottom: 1px solid var(--app-line); padding: 26px 0; }
.cred__cap { text-align: center; font-size: 12px; color: var(--app-ink-3); margin-bottom: 16px; letter-spacing: 0.02em; }

@keyframes wf-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; width: max-content; animation: wf-marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0 34px; height: 52px; flex-shrink: 0; }
.marquee__sq { width: 22px; height: 22px; border-radius: 5px; border: 1.4px dashed var(--app-line-strong);
  display: inline-flex; align-items: center; justify-content: center; color: var(--app-ink-3); }
.marquee__name { font-size: 14px; font-weight: 600; color: var(--app-ink-3); letter-spacing: 0.01em; white-space: nowrap; }
.marquee__logo { height: 30px; width: auto; max-width: 158px; object-fit: contain; display: block;
  opacity: 0.6; transition: opacity 0.25s ease; }
.marquee__item:hover .marquee__logo { opacity: 1; }

/* ============================================================
   01 · The situation
   ============================================================ */
.tool-card { background: var(--orca-white); border: 1px solid var(--app-line);
  border-radius: var(--radius-lg); padding: 20px; position: relative; overflow: hidden; }
.tool-card .chip { width: 40px; height: 40px; border-radius: 10px; background: var(--app-surface-sunken);
  border: 1px solid var(--app-line); display: flex; align-items: center; justify-content: center; color: var(--app-slate-icon); }
.tool-card .name { font-size: 15.5px; font-weight: 700; margin-top: 14px; font-family: var(--font-display); }
.tool-card .tool { font-size: 12.5px; color: var(--app-ink-2); margin-top: 3px; }
.tool-card .crack { margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--app-line-strong);
  display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--accent-red); }

/* ============================================================
   02 · The hidden cost
   ============================================================ */
.vignette { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg); padding: 26px 24px; }
.vignette .mark { font-size: 24px; color: var(--accent-cyan); font-family: var(--font-display); line-height: 0.6; }
.vignette .q { font-size: 20px; font-weight: 600; font-family: var(--font-display); line-height: 1.3; margin-top: 8px; }
.vignette .who { font-size: 12.5px; color: var(--fg-on-dark-3); margin-top: 12px; letter-spacing: 0.02em; }
.stat-band { margin-top: 22px; display: flex; align-items: center; gap: 18px;
  background: rgba(0,0,0,0.22); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 22px 26px; flex-wrap: wrap; }
.stat-band .num { font-size: 40px; font-weight: 800; font-family: var(--font-display); color: var(--accent-cyan); line-height: 1; }
.stat-band .body { flex: 1; min-width: 240px; }
.stat-band .body .t { font-size: 15px; font-weight: 600; }
.stat-band .body .src { font-size: 12.5px; color: var(--fg-on-dark-3); margin-top: 4px; }

/* ============================================================
   03 · The reframe (collapse diagram)
   ============================================================ */
.reframe { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; margin-top: 8px; }
.reframe__pills { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.reframe__pill { display: flex; align-items: center; gap: 9px; padding: 10px 14px;
  border: 1px dashed var(--app-line-strong); border-radius: 999px; font-size: 12.5px;
  color: var(--app-ink-2); background: var(--app-surface-sunken); }
.reframe__pill .ic { color: var(--app-slate-icon); }
.reframe__orca { display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 28px 34px; border-radius: var(--radius-lg); background: var(--orca-gradient-soft);
  color: var(--fg-on-dark-1); box-shadow: var(--shadow-float); }
.reframe__orca img { height: 30px; width: auto; }
.reframe__orca .sub { font-size: 12px; color: var(--fg-on-dark-2); }

/* ============================================================
   04 · Sonar walkthrough
   ============================================================ */
.steps { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.step { display: flex; align-items: center; gap: 9px; padding: 9px 15px; border-radius: 999px;
  background: var(--orca-white); border: 1px solid var(--app-line); font-size: 13px; font-weight: 600; }
.step .chip { width: 22px; height: 22px; border-radius: 999px; background: var(--app-select-soft);
  display: flex; align-items: center; justify-content: center; color: var(--app-slate-icon); }

.browser { background: var(--app-surface); border: 1px solid var(--app-line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-float); overflow: hidden; }
.browser__bar { display: flex; align-items: center; gap: 7px; padding: 10px 14px;
  border-bottom: 1px solid var(--app-line); background: var(--app-surface-sunken); }
.browser__dot { width: 10px; height: 10px; border-radius: 999px; }
.browser__url { margin-left: 10px; flex: 1; height: 22px; border-radius: 999px;
  background: var(--orca-white); border: 1px solid var(--app-line); display: flex;
  align-items: center; padding: 0 12px; font-size: 11px; color: var(--app-ink-3); }

.sonar-note { display: flex; align-items: center; gap: 10px; margin-top: 18px; padding: 12px 16px;
  border-radius: var(--radius-md); background: var(--orca-white); border: 1px solid var(--app-line);
  font-size: 13.5px; font-weight: 600; color: var(--app-ink); }
.sonar-cta { display: flex; gap: 14px; margin-top: 22px; flex-wrap: wrap; align-items: center; }
.sonar-cta .text-link { display: inline-flex; align-items: center; gap: 7px; font-size: 14px;
  font-weight: 600; color: var(--app-ink); text-decoration: none; }

/* ============================================================
   05 · Proof
   ============================================================ */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.metric { border-left: 2px solid var(--accent-cyan); padding-left: 18px; }
.metric .num { font-size: 34px; font-weight: 800; font-family: var(--font-display); line-height: 1; letter-spacing: -0.01em; }
.metric .lbl { font-size: 13px; color: var(--fg-on-dark-2); margin-top: 8px; line-height: 1.4; }
.metric .src { font-size: 11px; color: var(--fg-on-dark-3); margin-top: 6px; }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
.quote { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg); padding: 24px 22px; display: flex; flex-direction: column; }
.quote .q { font-size: 16px; font-weight: 500; font-family: var(--font-display); line-height: 1.45; }
.quote .by { margin-top: auto; padding-top: 18px; display: flex; align-items: center; gap: 10px; }
.quote .av { width: 30px; height: 30px; border-radius: 999px; background: var(--app-slate); flex-shrink: 0; }
.quote .who { font-size: 12.5px; font-weight: 600; }
.quote .seg { font-size: 11px; color: var(--fg-on-dark-3); }

/* ============================================================
   06 · Self-select
   ============================================================ */
.seg-card { text-decoration: none; background: var(--orca-white); border: 1px solid var(--app-line);
  border-radius: var(--radius-lg); padding: 22px; display: flex; flex-direction: column; gap: 12px; color: var(--app-ink); }
.seg-card .chip { width: 42px; height: 42px; border-radius: 11px; background: var(--app-surface-sunken);
  border: 1px solid var(--app-line); display: flex; align-items: center; justify-content: center; color: var(--app-slate-icon); }
.seg-card .name { font-size: 16px; font-weight: 700; font-family: var(--font-display); }
.seg-card .line { font-size: 13px; color: var(--app-ink-2); line-height: 1.5; }
.seg-card .go { margin-top: auto; padding-top: 10px; display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--app-ink); }
.seg-all { text-align: center; margin-top: 28px; }
.seg-all a { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--app-ink); text-decoration: none; }

/* ============================================================
   Final CTA
   ============================================================ */
.final { text-align: center; max-width: 720px; margin: 0 auto; }
.final .eyebrow { justify-content: center; }
.final h2 { font-family: var(--font-display); margin: 16px 0 0; color: var(--fg-on-dark-1); }
.final .lede { color: var(--fg-on-dark-2); margin: 16px auto 0; max-width: 560px; }
.final__cta { display: flex; gap: 12px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }
.final__ladder { margin-top: 44px; }
.final__signoff { text-align: center; margin-top: 36px; font-size: 15px; color: var(--fg-on-dark-2); font-family: var(--font-display); font-weight: 500; }

/* ============================================================
   Placeholder (imagery pending — a parallel workstream)
   ============================================================ */
.ph { position: relative; width: 100%; min-height: 240px;
  border: 1.5px dashed var(--app-line-strong); border-radius: var(--radius-lg);
  background: var(--app-surface-sunken); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px; padding: 22px; text-align: center;
  background-image: repeating-linear-gradient(135deg, rgba(107,131,168,0.10) 0, rgba(107,131,168,0.10) 1px, transparent 1px, transparent 9px); }
.ph--dark { border-color: rgba(255,255,255,0.28); background-color: rgba(255,255,255,0.03);
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0, rgba(255,255,255,0.06) 1px, transparent 1px, transparent 9px); }
.ph__tag { position: absolute; top: 12px; left: 12px; font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--app-ink-3);
  border: 1px solid var(--app-line-strong); border-radius: 999px; padding: 3px 9px; }
.ph--dark .ph__tag { color: var(--fg-on-dark-3); border-color: rgba(255,255,255,0.2); }
.ph__icon { width: 44px; height: 44px; border-radius: 12px; border: 1.5px solid var(--app-line-strong);
  background: var(--orca-white); display: flex; align-items: center; justify-content: center; color: var(--app-slate-icon); }
.ph--dark .ph__icon { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); color: var(--fg-on-dark-2); }
.ph--video .ph__icon { width: 54px; height: 54px; border-radius: 999px; }
.ph__label { font-size: 13.5px; font-weight: 600; color: var(--app-ink); }
.ph--dark .ph__label { color: var(--fg-on-dark-1); }
.ph__sub { font-size: 12px; margin-top: 4px; color: var(--app-ink-2); max-width: 340px; line-height: 1.45; }
.ph--dark .ph__sub { color: var(--fg-on-dark-2); }
.ph__stamp { display: inline-block; transform: rotate(-5deg); font-size: 12.5px; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--app-ink-3);
  border: 2px solid currentColor; border-radius: 8px; padding: 7px 16px 6px; opacity: 0.9; }
.ph--dark .ph__stamp { color: var(--fg-on-dark-2); }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--orca-gradient-soft); color: var(--fg-on-dark-1); }
.footer__grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 36px; padding: 60px 40px 32px; }
.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer__brand img { height: 22px; width: auto; }
.footer__blurb { margin-top: 18px; font-size: 14.5px; line-height: 1.65; color: var(--fg-on-dark-2); max-width: 250px; }
.footer__tag { margin-top: 18px; font-size: 14px; color: var(--fg-on-dark-2); }
.footer__col .h { font-family: var(--font-sans); font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-caps); text-transform: uppercase;
  color: var(--fg-on-dark-3); font-size: 11px; margin-bottom: 16px; }
.footer__col .links { display: flex; flex-direction: column; gap: 11px; }
.foot-link { font-size: 13.5px; color: var(--fg-on-dark-2); text-decoration: none; }
.footer__certs { display: flex; align-items: center; gap: 22px; max-width: var(--wrap); margin: 0 auto; padding: 4px 40px 30px; flex-wrap: wrap; }
.footer__certs img { height: 50px; width: auto; filter: brightness(0) invert(1); opacity: 0.8;
  transition: opacity var(--dur-base) var(--ease-serene); }
.footer__certs img:hover { opacity: 1; }
.footer__bar { border-top: 1px solid rgba(255,255,255,0.12); }
.footer__bar .row { display: flex; justify-content: space-between; padding: 18px 40px;
  font-size: 12px; color: var(--fg-on-dark-3); flex-wrap: wrap; gap: 8px; }
/* "Cookie settings" sits inline in the legal line — match that text, not the
   larger/brighter footer-column .foot-link styling. Hover still brightens (line 52). */
.footer__bar .foot-link { font-size: inherit; color: inherit; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .grid-3 { grid-template-columns: repeat(2, 1fr) !important; }
  .hero__split { grid-template-columns: 1fr !important; }
  .footer__grid { grid-template-columns: 1fr 1fr !important; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .quotes  { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav__menu, .nav__actions { display: none; }
  /* Round Menu button floats at the bottom-centre so it's within thumb reach */
  .nav__burger { display: flex;
    position: fixed; left: 50%; bottom: calc(20px + env(safe-area-inset-bottom));
    transform: translateX(-50%); z-index: 80;
    box-shadow: 0 10px 34px rgba(0,192,233,.42); }
}
@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr !important; }
  .metrics { grid-template-columns: 1fr; }
  .ladder  { grid-template-columns: 1fr !important; }
  .wrap, .footer__grid, .footer__bar .row, .footer__certs { padding-left: 20px !important; padding-right: 20px !important; }
  .footer__grid { grid-template-columns: 1fr !important; }
  .footer__certs img { height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ============================================================
   INNER PAGES
   ============================================================ */

/* default section-head lede width + centered ledes */
.section-head .lede { max-width: 720px; }
.section-head--center .lede { margin-left: auto; margin-right: auto; }

/* page heroes (dark gradient) */
.phero--dark { background: var(--orca-gradient); color: var(--fg-on-dark-1); position: relative; }
.page-h1 { font-family: var(--font-display); font-weight: var(--weight-bold);
  line-height: 1.1; margin: 16px 0 0; letter-spacing: -0.015em; }

/* shared centered gradient CTA block */
.cta-center { text-align: center; max-width: 680px; margin: 0 auto; }
.cta-center h2 { font-family: var(--font-display); }
.cta-center .lede { color: var(--fg-on-dark-2); margin: 14px auto 0; max-width: 520px; }
.cta-center__btns { display: flex; gap: 12px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }

/* ---- sticky sub-nav (Platform / Segment / Watch) ---- */
.subnav { position: sticky; top: 62px; z-index: 40; background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-bottom: 1px solid var(--app-line); }
.subnav .wrap { height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.subnav__items { display: flex; align-items: center; gap: 4px; overflow-x: auto; }
.subnav__title { font-size: 13px; font-weight: 700; color: var(--app-ink); margin-right: 12px; white-space: nowrap; }
.subnav__link { font-size: 13px; font-weight: 500; text-decoration: none; color: var(--app-ink-2);
  padding: 7px 11px; border-radius: 8px; white-space: nowrap; border-bottom: 2px solid transparent; }
.subnav__link.active { font-weight: 700; color: var(--app-ink); border-bottom-color: var(--accent-cyan); }
.subnav__cta { display: flex; gap: 8px; flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease-serene), opacity var(--dur-base) var(--ease-serene); }
/* Once the sub-nav docks under the header, its CTAs slide up and merge into the
   main top-bar CTAs (which sit directly above and stay sticky). z-index keeps the
   moving cluster behind the header, so it appears to tuck into the top bar. */
.subnav.docked .subnav__cta { transform: translateY(-57px); opacity: 0; pointer-events: none; }
@media (max-width: 900px) { .subnav__cta { display: none; } }

/* ---- Platform: engine ---- */
.engine { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--app-line);
  border-radius: var(--radius-lg); overflow: hidden; background: var(--orca-white); }
.engine__step { padding: 26px 22px; border-right: 1px solid var(--app-line); position: relative; }
.engine__step:last-child { border-right: 0; }
.engine__chip { width: 44px; height: 44px; border-radius: 11px; background: var(--app-surface-sunken);
  border: 1px solid var(--app-line); display: flex; align-items: center; justify-content: center; color: var(--app-slate-icon); }
.engine__num { font-size: 11px; font-weight: 700; color: var(--app-ink-3); margin-top: 16px; letter-spacing: 0.04em; }
.engine__title { font-size: 16px; font-weight: 700; font-family: var(--font-display); margin-top: 4px; }
.engine__body { font-size: 13px; color: var(--app-ink-2); margin-top: 8px; line-height: 1.5; }
.engine__conn { position: absolute; right: -11px; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 22px; height: 22px; border-radius: 999px; background: var(--orca-white); border: 1px solid var(--app-line);
  display: flex; align-items: center; justify-content: center; color: var(--app-slate-icon); }

/* ---- Platform: alternating acts ---- */
.act__split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.act__text { order: 1; } .act__media { order: 2; }
.act--flip .act__text { order: 2; } .act--flip .act__media { order: 1; }
.act__points { display: flex; flex-direction: column; gap: 11px; margin-top: 22px; }
.act__point { display: flex; align-items: center; gap: 11px; font-size: 14.5px; font-weight: 500; }
.act__point .tick { width: 22px; height: 22px; border-radius: 999px; background: var(--app-select-soft);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent-cyan); }

/* ---- Solutions ---- */
.sol-core { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.sol-core__card { text-decoration: none; color: var(--app-ink); background: var(--orca-white);
  border: 1px solid var(--app-line); border-radius: var(--radius-lg); padding: 26px; display: flex; gap: 18px; scroll-margin-top: 130px; }
.sol-core__chip { width: 48px; height: 48px; border-radius: 12px; background: var(--app-surface-sunken);
  border: 1px solid var(--app-line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--app-slate-icon); }
.sol-core__name { font-size: 18px; font-weight: 700; font-family: var(--font-display); }
.sol-core__line { font-size: 14px; color: var(--app-ink-2); margin-top: 6px; line-height: 1.5; }
.sol-core__words { font-size: 11.5px; color: var(--app-ink-3); margin-top: 12px; letter-spacing: 0.03em; text-transform: uppercase; }
.sol-core__go { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 13px; font-weight: 600; }
.sol-sec { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.sol-sec__card { background: var(--app-surface-sunken); border: 1px dashed var(--app-line-strong);
  border-radius: var(--radius-lg); padding: 22px 24px; display: flex; gap: 16px; align-items: center; scroll-margin-top: 130px; }
.sol-sec__chip { width: 40px; height: 40px; border-radius: 10px; background: var(--orca-white);
  border: 1px solid var(--app-line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--app-slate-icon); }
.sol-sec__name { font-size: 15.5px; font-weight: 700; }
.sol-sec__line { font-size: 13px; color: var(--app-ink-2); margin-top: 3px; }
.sol-need { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sol-need__card { text-decoration: none; color: var(--app-ink); background: var(--orca-white);
  border: 1px solid var(--app-line); border-radius: var(--radius-lg); padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.sol-need__card .ic { color: var(--app-slate-icon); }
.sol-need__name { font-size: 15.5px; font-weight: 700; font-family: var(--font-display); }
.sol-need__line { font-size: 13px; color: var(--app-ink-2); line-height: 1.5; }

/* Expanded use-case feature: video + why it matters */
.sol-feature { display: grid; grid-template-columns: 1fr 1.1fr; gap: 36px; align-items: center;
  background: var(--orca-white); border: 1px solid var(--app-line); border-radius: var(--radius-lg);
  padding: 34px; margin-bottom: 24px; }
.sol-feature__body { display: flex; flex-direction: column; gap: 16px; }
.sol-feature__head { display: flex; align-items: center; gap: 11px; }
.sol-feature__head .ic { color: var(--app-slate-icon); }
.sol-feature__name { font-size: 23px; font-weight: 700; font-family: var(--font-display); line-height: 1.2; }
.sol-feature__line { font-size: 15px; color: var(--app-ink-2); line-height: 1.55; }
.sol-feature__list { list-style: none; padding: 0; margin: 2px 0 0; display: flex; flex-direction: column; gap: 13px; }
.sol-feature__list li { display: flex; gap: 11px; font-size: 14px; line-height: 1.55; color: var(--app-ink); }
.sol-feature__list .ic { color: var(--app-slate-icon); flex-shrink: 0; margin-top: 2px; }
.sol-feature__list b { font-weight: 700; }
.sol-feature__link { display: inline-flex; align-items: center; gap: 7px; margin-top: 4px;
  font-size: 14px; font-weight: 600; color: var(--app-ink); text-decoration: none; }
.sol-feature__link .ic { color: var(--app-slate-icon); }
.sol-feature__video { position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--radius-md); overflow: hidden; background: var(--app-surface-sunken);
  border: 1px solid var(--app-line); }
.sol-feature__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---- By-need: stacked use-case sections ---- */
/* sticky jump-nav across the six use-cases */
.uc-nav { position: sticky; top: 62px; z-index: 30; background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid var(--app-line); }
.uc-nav .wrap { display: flex; align-items: center; gap: 6px; height: 52px; overflow-x: auto; }
.uc-nav__title { font-size: 13px; font-weight: 700; color: var(--app-ink); margin-right: 10px; white-space: nowrap; }
.uc-nav__link { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  font-size: 13px; font-weight: 500; text-decoration: none; color: var(--app-ink-2);
  padding: 6px 11px; border-radius: 999px; border: 1px solid transparent; }
.uc-nav__link .ic { color: var(--app-slate-icon); }
.uc-nav__link:hover { color: var(--app-ink); }
.uc-nav__link.active { font-weight: 700; color: var(--app-ink);
  background: var(--app-surface-sunken); border-color: var(--app-line); }
.uc-nav__link.active .ic { color: var(--accent-cyan); }

/* a single use-case block */
.uc__head { max-width: 720px; }
.uc__eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--app-ink-3); margin-bottom: 14px; }
.uc__eyebrow .ic { color: var(--app-slate-icon); }
.uc__hook { font-size: clamp(24px, 2.6vw, 34px); font-weight: 700; font-family: var(--font-display);
  line-height: 1.18; letter-spacing: -0.01em; margin: 0; }
.uc__intro { font-size: 16px; color: var(--app-ink-2); line-height: 1.6; margin: 16px 0 0; max-width: 700px; }
.uc__sub { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--app-ink);
  margin: 38px 0 16px; padding-bottom: 10px; border-bottom: 1px solid var(--app-line); }

/* condensed proof — light treatment, sits inside the light section */
.uc-proof { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 16px; }
.uc-proof__q { background: var(--orca-white); border: 1px solid var(--app-line);
  border-left: 3px solid var(--accent-cyan); border-radius: var(--radius-md); padding: 22px 24px;
  display: flex; flex-direction: column; }
.uc-proof__t { font-family: var(--font-display); font-size: 15.5px; font-weight: 500; line-height: 1.5; color: var(--app-ink); }
.uc-proof__by { margin-top: 14px; font-size: 12.5px; font-weight: 600; color: var(--app-ink-3); }
.uc-stat { margin-top: 16px; display: flex; gap: 18px; align-items: center;
  background: var(--orca-white); border: 1px solid var(--app-line); border-radius: var(--radius-md); padding: 20px 24px; }
.uc-stat__n { font-size: 34px; font-weight: 800; font-family: var(--font-display); color: var(--app-ink); line-height: 1; flex-shrink: 0; }
.uc-stat__t { font-size: 13.5px; color: var(--app-ink-2); line-height: 1.55; }
.uc-stat__t .src { display: block; font-size: 12px; color: var(--app-ink-3); margin-top: 3px; }

.uc-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 32px;
  padding-top: 22px; border-top: 1px solid var(--app-line); }
.uc-cta__line { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--app-ink); margin-right: auto; }

@media (max-width: 860px) {
  .uc-proof { grid-template-columns: 1fr; }
}

/* ---- Segment: bento + big quote ---- */
.bento { display: grid; grid-template-columns: 1.5fr 1fr; gap: 16px; }
.bento__big { grid-row: span 2; background: var(--orca-white); border: 1px solid var(--app-line);
  border-radius: var(--radius-lg); padding: 26px; display: flex; flex-direction: column; gap: 16px; }
.bento__card { background: var(--orca-white); border: 1px solid var(--app-line); border-radius: var(--radius-lg);
  padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.bento__chip { width: 44px; height: 44px; border-radius: 11px; background: var(--app-surface-sunken);
  border: 1px solid var(--app-line); display: flex; align-items: center; justify-content: center; color: var(--app-slate-icon); }
.bento__card .bento__chip { width: 42px; height: 42px; }
.bento h3 { font-family: var(--font-display); font-weight: 700; }
.bento__big h3 { font-size: 19px; margin: 16px 0 0; line-height: 1.25; }
.bento__big p { font-size: 14px; color: var(--app-ink-2); margin: 10px 0 0; line-height: 1.55; }
.bento__card h3 { font-size: 16.5px; margin: 0; line-height: 1.3; }
.bento__card p { font-size: 13.5px; color: var(--app-ink-2); margin: 0; line-height: 1.55; }

.bigquote { max-width: 860px; margin: 0 auto; text-align: center; }
.bigquote blockquote { font-size: clamp(22px, 2.6vw, 32px); font-family: var(--font-display);
  font-weight: 500; line-height: 1.35; margin: 20px 0 0; letter-spacing: -0.01em; }
.bigquote__by { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 24px; }
.bigquote__av { width: 38px; height: 38px; border-radius: 999px; background: var(--app-slate); flex-shrink: 0; }
.bigquote__who { font-size: 13.5px; font-weight: 600; text-align: left; }
.bigquote__sub { font-size: 12px; color: var(--app-ink-3); text-align: left; }

/* ============================================================
   Segment landing pages (ICP) — pains, two-problems, does/doesn't, FAQ
   Heroes, sub-nav, feature grids, proof and CTAs reuse the shared
   components above; these classes cover the parts unique to the
   per-segment pages.
   ============================================================ */

/* hero supporting note (e.g. MFO scope note) */
.seg-note { margin-top: 22px; padding: 13px 16px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16);
  font-size: 13px; color: var(--fg-on-dark-2); line-height: 1.55; max-width: 560px; }
.seg-note strong { color: var(--fg-on-dark-1); font-weight: 600; }

/* framed product screenshot used as a segment hero visual (on the dark hero) */
.hero-shot { display: block; width: 100%; height: auto; border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.14); box-shadow: var(--shadow-dark); background: var(--orca-white); }

/* hero intro row: the lede and the fit-note sit side by side beneath the
   headline, so the full-width demo below gets the whole content width. */
.hero__intro { display: grid; grid-template-columns: 1.35fr 1fr; gap: 40px;
  align-items: start; margin: 22px 0 40px; }

/* interactive demo as a full-width hero band (on the dark hero). The demo
   bundle adapts its layout to its width; at the full content width it renders
   the complete, readable app composition, so we let it fill natively. */
.hero-demo { position: relative; width: 100%; aspect-ratio: 11 / 5; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid rgba(255,255,255,0.14); box-shadow: var(--shadow-dark); background: var(--orca-depth); }
.hero-demo__frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 980px) { .hero__intro { grid-template-columns: 1fr; gap: 18px; }
  .hero-demo { aspect-ratio: 3 / 2; } }
@media (max-width: 640px) { .hero-demo { aspect-ratio: 4 / 5; } }

/* clickable hero shot (opens the zoom lightbox) + "click to zoom" hint */
.hero-shot-btn { display: block; width: 100%; padding: 0; border: 0; background: transparent;
  position: relative; cursor: zoom-in; border-radius: var(--radius-lg); }
.hero-shot-btn .hero-shot { transition: box-shadow var(--dur-base) var(--ease-serene); }
.hero-shot-btn:hover .hero-shot,
.hero-shot-btn:focus-visible .hero-shot { box-shadow: 0 18px 52px rgba(0,0,0,0.55); }
.zoom-hint { position: absolute; right: 12px; bottom: 12px; display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 13px; border-radius: var(--radius-pill); font-family: var(--font-sans); font-size: 12.5px; font-weight: 600;
  color: #fff; background: rgba(38,51,63,0.78); border: 1px solid rgba(255,255,255,0.18);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); box-shadow: 0 4px 14px rgba(0,0,0,0.35);
  pointer-events: none; transition: background var(--dur-fast) var(--ease-serene), color var(--dur-fast) var(--ease-serene); }
.zoom-hint .ic { color: var(--accent-cyan); }
.hero-shot-btn:hover .zoom-hint,
.hero-shot-btn:focus-visible .zoom-hint { background: var(--accent-cyan); color: var(--orca-depth); border-color: var(--accent-cyan); }
.hero-shot-btn:hover .zoom-hint .ic,
.hero-shot-btn:focus-visible .zoom-hint .ic { color: var(--orca-depth); }

/* image zoom lightbox */
.imglb { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center;
  padding: 24px; background: rgba(6,12,18,0.9); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.imglb[hidden] { display: none; }
.imglb__close { position: absolute; top: 16px; right: 18px; z-index: 2; display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius-pill);
  padding: 8px 14px; font: 600 13px var(--font-sans); cursor: pointer; }
.imglb__close:hover { background: rgba(255,255,255,0.2); }
.imglb__stage { max-width: 96vw; max-height: 86vh; overflow: auto; border-radius: var(--radius-md);
  box-shadow: 0 24px 70px rgba(0,0,0,0.5); -webkit-overflow-scrolling: touch; }
.imglb__img { display: block; max-width: 96vw; max-height: 86vh; width: auto; height: auto;
  cursor: zoom-in; user-select: none; -webkit-user-drag: none; }
.imglb__stage.zoomed { cursor: grab; }
.imglb__stage.zoomed .imglb__img { max-width: none; max-height: none; width: 175vw; cursor: zoom-out; }
.imglb__cap { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); white-space: nowrap;
  font-size: 12.5px; color: rgba(255,255,255,0.7); font-family: var(--font-sans); pointer-events: none; }

/* "Does this sound familiar?" — pain-point cards */
.pains { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.pain { background: var(--orca-white); border: 1px solid var(--app-line);
  border-radius: var(--radius-lg); padding: 24px; }
.pain__q { display: flex; gap: 11px; font-family: var(--font-display); font-weight: 600;
  font-size: 16.5px; line-height: 1.35; color: var(--app-ink); }
.pain__q .mark { color: var(--accent-cyan); font-size: 26px; line-height: 0.9;
  font-family: var(--font-display); flex-shrink: 0; }
.pain__body { font-size: 13.5px; color: var(--app-ink-2); margin-top: 12px; line-height: 1.6; }

/* SFO "two problems" split */
.twoprob { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.twoprob__card { background: var(--orca-white); border: 1px solid var(--app-line);
  border-radius: var(--radius-lg); padding: 26px; }
.twoprob__tag { display: inline-flex; align-items: center; gap: 8px; font-size: 11px;
  font-weight: 700; letter-spacing: var(--tracking-caps); text-transform: uppercase;
  color: var(--app-slate-icon); }
.twoprob__card h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin: 12px 0 0; }
.twoprob__card p { font-size: 14px; color: var(--app-ink-2); margin: 10px 0 0; line-height: 1.6; }

/* "What ORCA does — and doesn't" */
.does { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.does__card { border: 1px solid var(--app-line); border-radius: var(--radius-lg);
  padding: 26px; background: var(--orca-white); }
.does__card--yes { border-color: rgba(0,192,233,0.45); background: var(--app-select-soft); }
.does__head { display: flex; align-items: center; gap: 11px; font-family: var(--font-display);
  font-weight: 700; font-size: 16px; color: var(--app-ink); }
.does__badge { width: 28px; height: 28px; border-radius: 999px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; }
.does__card--yes .does__badge { background: var(--accent-cyan); color: var(--orca-depth); }
.does__card--no .does__badge { background: var(--app-surface); color: var(--app-ink-3); border: 1px solid var(--app-line-strong); }
.does__body { font-size: 14px; color: var(--app-ink-2); margin-top: 16px; line-height: 1.6; }
.does__body p { margin: 0 0 12px; }
.does__body p:last-child { margin-bottom: 0; }

/* FAQ accordion */
.faq { max-width: 820px; }
.faq__item { border-bottom: 1px solid var(--app-line); }
.faq__item > summary { list-style: none; cursor: pointer; padding: 20px 0; gap: 16px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-display); font-weight: 600; font-size: 16.5px; color: var(--app-ink); }
.faq__item > summary::-webkit-details-marker { display: none; }
.faq__item > summary .chev { flex-shrink: 0; color: var(--app-slate-icon);
  transition: transform var(--dur-base) var(--ease-serene); }
.faq__item[open] > summary .chev { transform: rotate(180deg); }
.faq__a { font-size: 14.5px; color: var(--app-ink-2); line-height: 1.65; padding: 0 0 22px; max-width: 700px; }
.faq__a p { margin: 0 0 12px; }
.faq__a p:last-child { margin-bottom: 0; }

@media (max-width: 860px) {
  .pains, .twoprob, .does { grid-template-columns: 1fr !important; }
}

/* ---- Why ORCA: pillars + comparison ---- */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.pillar { background: var(--orca-white); border: 1px solid var(--app-line); border-radius: var(--radius-lg); padding: 26px; scroll-margin-top: 90px; }
.pillar__top { display: flex; align-items: center; gap: 14px; }
.pillar__chip { width: 44px; height: 44px; border-radius: 11px; background: var(--app-surface-sunken);
  border: 1px solid var(--app-line); display: flex; align-items: center; justify-content: center; color: var(--app-slate-icon); }
.pillar__n { font-size: 12px; font-weight: 700; color: var(--app-ink-3); }
.pillar h3 { font-size: 18px; font-weight: 700; font-family: var(--font-display); margin: 16px 0 0; }
.pillar p { font-size: 14px; color: var(--app-ink-2); margin: 10px 0 0; line-height: 1.6; }

.cmp-wrap { overflow-x: auto; border: 1px solid var(--app-line); border-radius: var(--radius-lg); }
.cmp { width: 100%; min-width: 720px; border-collapse: collapse; font-family: var(--font-sans); table-layout: fixed; }
.cmp th.cap, .cmp td.cap { width: 32%; }
.cmp th:not(.cap), .cmp td:not(.cap) { width: 17%; }
.cmp th { padding: 16px; font-size: 12.5px; font-weight: 700; color: var(--app-ink-2);
  background: var(--app-surface-sunken); border-bottom: 1px solid var(--app-line); border-left: 1px solid var(--app-line); text-align: center; white-space: nowrap; }
.cmp th.cap { text-align: left; padding: 16px 20px; font-size: 12px; font-weight: 600; border-left: 0; }
.cmp th.orca { color: var(--orca-depth); background: var(--app-select-soft); }
.cmp td { padding: 15px 16px; text-align: center; border-left: 1px solid var(--app-line);
  border-bottom: 1px solid var(--app-line); font-size: 13.5px; }
.cmp td.cap { text-align: left; padding: 15px 20px; font-weight: 500; border-left: 0; }
.cmp tbody tr:nth-child(even) { background: var(--app-surface-sunken); }
.cmp td.orca { background: rgba(199,208,228,0.18); }
.cmp tr:last-child td { border-bottom: 0; }
.cell-yes { display: inline-flex; width: 24px; height: 24px; border-radius: 999px;
  background: var(--app-select-soft); align-items: center; justify-content: center; color: var(--accent-cyan); }
.cell-part { font-size: 12px; color: var(--app-ink-3); font-weight: 600; }
.cell-no { color: var(--app-line-strong); }

/* Comparison: stack into one card per capability on mobile (no horizontal scroll) */
@media (max-width: 760px) {
  .cmp-wrap { overflow-x: visible; border: 0; border-radius: 0; }
  .cmp { min-width: 0; table-layout: auto; }
  .cmp td.cap, .cmp td:not(.cap) { width: auto; }
  .cmp thead { display: none; }
  .cmp tbody { display: flex; flex-direction: column; gap: 12px; }
  .cmp tr,
  .cmp tbody tr:nth-child(even) { display: block; background: var(--app-surface);
    border: 1px solid var(--app-line); border-radius: var(--radius-lg); overflow: hidden; }
  .cmp td { display: flex; align-items: center; justify-content: space-between;
    padding: 11px 16px; border-left: 0; border-bottom: 1px solid var(--app-line); }
  .cmp td::before { content: attr(data-label); font-size: 13px; font-weight: 500;
    color: var(--app-ink-2); margin-right: 16px; }
  .cmp td.cap { display: block; padding: 14px 16px 12px; font-size: 14.5px; font-weight: 600;
    color: var(--app-ink); background: var(--app-surface-sunken); }
  .cmp td.orca { background: var(--app-select-soft); }
  .cmp td:last-child { border-bottom: 0; }
}

/* ---- Customers ---- */
.filters { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.filters > .ic { color: var(--app-ink-3); margin-right: 4px; }
.chip-btn { font-family: var(--font-sans); font-size: 13px; font-weight: 500; cursor: pointer;
  padding: 8px 15px; border-radius: 999px; background: var(--orca-white); color: var(--app-ink-2);
  border: 1px solid var(--app-line-strong); transition: all var(--dur-fast) var(--ease-serene); }
.chip-btn.on { font-weight: 600; background: var(--accent-cyan); color: var(--orca-depth); border-color: var(--accent-cyan); }
.stories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.story { background: var(--orca-white); border: 1px solid var(--app-line); border-radius: var(--radius-lg);
  padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.story__top { display: flex; align-items: center; justify-content: space-between; }
.story__logo { display: inline-flex; align-items: center; gap: 8px; }
.story__sq { width: 26px; height: 26px; border-radius: 6px; border: 1.4px dashed var(--app-line-strong);
  display: inline-flex; align-items: center; justify-content: center; color: var(--app-ink-3); }
.story__name { font-size: 14px; font-weight: 700; }
.story__seg { font-size: 10.5px; font-weight: 600; color: var(--app-slate-icon); letter-spacing: 0.04em;
  text-transform: uppercase; border: 1px solid var(--app-line); border-radius: 999px; padding: 3px 9px; }
.story__metric { display: flex; align-items: baseline; gap: 10px; }
.story__metric .n { font-size: 30px; font-weight: 800; font-family: var(--font-display); letter-spacing: -0.01em; line-height: 1; }
.story__metric .l { font-size: 13px; color: var(--app-ink-2); }
.story__quote { font-size: 14px; color: var(--app-ink); margin: 0; line-height: 1.55; font-family: var(--font-display); font-weight: 500; }
.story__role { margin-top: auto; font-size: 12px; color: var(--app-ink-3); }

/* ---- Watch a demo ---- */
.watch-split { display: grid; grid-template-columns: 1.5fr 1fr; gap: 24px; align-items: start; }
.chapters { display: flex; flex-direction: column; gap: 8px; }
.chapters__label { color: var(--app-slate-icon); font-size: 10.5px; padding: 0 4px 4px;
  font-family: var(--font-sans); font-weight: 600; letter-spacing: var(--tracking-caps); text-transform: uppercase; }
.chapter { text-align: left; cursor: pointer; display: flex; gap: 12px; align-items: flex-start;
  padding: 13px 14px; border-radius: var(--radius-md); background: transparent; border: 1px solid transparent;
  font-family: var(--font-sans); width: 100%; }
.chapter.on { background: var(--orca-white); border-color: var(--app-line); box-shadow: var(--shadow-node); }
.chapter__num { width: 26px; height: 26px; border-radius: 999px; flex-shrink: 0; display: flex;
  align-items: center; justify-content: center; background: var(--app-surface-sunken); color: var(--app-ink-2); font-size: 11px; font-weight: 700; }
.chapter.on .chapter__num { background: var(--accent-cyan); color: var(--orca-depth); }
.chapter__main { flex: 1; }
.chapter__row { display: flex; justify-content: space-between; gap: 8px; }
.chapter__t { font-size: 13.5px; font-weight: 600; color: var(--app-ink); }
.chapter.on .chapter__t { font-weight: 700; }
.chapter__len { font-size: 11.5px; color: var(--app-ink-3); font-variant-numeric: tabular-nums; }
.chapter__d { display: block; font-size: 12px; color: var(--app-ink-2); margin-top: 3px; line-height: 1.4; }

/* video poster (click to open theater mode) */
.video-poster { position: relative; display: block; width: 100%; padding: 0; border: 0;
  background: var(--orca-depth); cursor: pointer; overflow: hidden; }
.video-poster__img { display: block; width: 100%; height: auto; transition: transform 0.35s ease, opacity 0.35s ease; }
.video-poster:hover .video-poster__img, .video-poster:focus-visible .video-poster__img { transform: scale(1.02); opacity: 0.92; }
.video-poster__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 999px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.92); color: var(--orca-depth); box-shadow: 0 8px 30px rgba(4,16,38,0.45);
  transition: transform 0.25s ease, background 0.25s ease; }
.video-poster:hover .video-poster__play, .video-poster:focus-visible .video-poster__play { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
.video-poster__meta { position: absolute; left: 0; right: 0; bottom: 0; display: flex; align-items: center;
  justify-content: space-between; gap: 12px; padding: 28px 16px 12px;
  background: linear-gradient(to top, rgba(4,16,38,0.75), rgba(4,16,38,0)); }
.video-poster__t { font-family: var(--font-display); font-weight: 600; font-size: 13.5px; color: #fff; }
.video-poster__len { font-size: 12px; color: rgba(255,255,255,0.75); font-variant-numeric: tabular-nums; }

/* theater-mode overlay */
.theater { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  background: rgba(244,246,250,0.78); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.theater[hidden] { display: none; }
.theater__stage { width: min(1400px, 94vw, calc(88vh * 16 / 9)); aspect-ratio: 16 / 9;
  border-radius: var(--radius-md); overflow: hidden; background: var(--orca-depth);
  box-shadow: 0 30px 80px rgba(4,16,38,0.35); }
.theater__frame { display: block; width: 100%; height: 100%; border: 0; }
.theater__close { position: absolute; top: 18px; right: 24px; display: flex; align-items: center; gap: 7px;
  padding: 9px 16px; border: 0; border-radius: 999px; cursor: pointer; background: transparent;
  font-family: var(--font-sans); font-size: 14px; font-weight: 600; color: var(--app-ink); }
.theater__close:hover { background: rgba(4,16,38,0.06); }

/* ---- Book a demo ---- */
.book-split { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 40px; align-items: start; }
.flow { display: flex; flex-direction: column; gap: 4px; }
.flow__step { display: flex; gap: 16px; }
.flow__rail { display: flex; flex-direction: column; align-items: center; }
.flow__chip { width: 40px; height: 40px; border-radius: 999px; background: var(--orca-white);
  border: 1px solid var(--app-line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--app-slate-icon); }
.flow__line { width: 1.5px; flex: 1; min-height: 26px; background: var(--app-line); margin: 6px 0; }
.flow__body { padding-bottom: 22px; }
.flow__n { font-size: 11px; font-weight: 700; color: var(--app-ink-3); }
.flow__t { font-size: 16px; font-weight: 700; font-family: var(--font-display); margin-top: 2px; }
.flow__d { font-size: 13.5px; color: var(--app-ink-2); margin-top: 4px; line-height: 1.5; max-width: 300px; }
.book-assure { display: flex; align-items: flex-start; gap: 10px; margin-top: 8px; padding: 14px 16px;
  border-radius: var(--radius-md); background: var(--app-select-soft); border: 1px solid var(--app-line); }
.book-assure > .ic { color: var(--app-slate-icon); margin-top: 1px; flex-shrink: 0; }
.book-assure span { font-size: 12.5px; color: var(--app-ink-2); line-height: 1.5; }
.book-card { background: var(--orca-white); border: 1px solid var(--app-line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float); padding: 28px; }
.book-card__title { font-size: 17px; font-weight: 700; font-family: var(--font-display); }
.book-card__sub { font-size: 12.5px; color: var(--app-ink-3); margin-top: 4px; margin-bottom: 22px; }
.book-form { display: flex; flex-direction: column; gap: 22px; }
.field > label { display: block; font-size: 12.5px; font-weight: 600; color: var(--app-ink); margin-bottom: 9px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.book-input { width: 100%; font-family: var(--font-sans); font-size: 14px; padding: 11px 13px;
  border-radius: var(--radius-sm); border: 1px solid var(--app-line-strong); background: var(--orca-white); color: var(--app-ink); }
.book-input::placeholder { color: var(--app-ink-3); }
.book-divider { height: 1px; background: var(--app-line); }
.book-names { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.book-fine { font-size: 11.5px; color: var(--app-ink-3); text-align: center; line-height: 1.5; }
.book-signoff { text-align: center; margin-top: 40px; font-size: 15px; color: var(--app-ink-2); font-family: var(--font-display); font-weight: 600; }
.savvycal-embed { min-height: 640px; }
.savvycal-embed iframe { border: 0; border-radius: var(--radius-md); width: 100%; display: block; }

/* ---- scaled live demo embed (iframe of a self-contained demo) ---- */
.embed { position: relative; width: 100%; overflow: hidden; background: var(--orca-white); }
.embed iframe { position: absolute; top: 0; left: 0; border: 0; transform-origin: top left; }

/* ---- 404 ---- */
.notfound { min-height: 68vh; display: flex; align-items: center; justify-content: center; text-align: center;
  background: var(--orca-gradient); color: var(--fg-on-dark-1); padding: 80px 24px; }
.notfound h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(64px, 12vw, 120px); line-height: 1; margin: 0; }
.notfound h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 3vw, 32px); margin: 8px 0 0; }
.notfound p { color: var(--fg-on-dark-2); margin: 16px auto 0; max-width: 460px; }
.notfound__btns { display: flex; gap: 12px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }

/* ---- inner-page responsive ---- */
@media (max-width: 980px) {
  .act__split, .watch-split, .book-split { grid-template-columns: 1fr !important; }
  .act--flip .act__text, .act__text { order: 1; }
  .act--flip .act__media, .act__media { order: 2; }
  .sol-core, .sol-sec, .pillars, .book-names { grid-template-columns: 1fr !important; }
  .sol-need, .stories { grid-template-columns: repeat(2, 1fr) !important; }
  .sol-feature { grid-template-columns: 1fr !important; gap: 24px; padding: 26px; }
  .sol-feature__video { order: -1; }
  .bento { grid-template-columns: 1fr !important; }
  .bento__big { grid-row: auto; }
  .engine { grid-template-columns: repeat(2, 1fr); }
  .engine__conn { display: none; }
}
@media (max-width: 640px) {
  .sol-need, .stories, .engine { grid-template-columns: 1fr !important; }
}
