/* ============================================================
   NAME — GTM engineering for B2B
   Design language v2: all-light, Ramp-style. See design-language.md
   ============================================================ */

:root {
  --white: #FFFFFF;
  --surface: #F6F6F4;
  --surface-2: #EFEFEC;
  --ink: #101418;
  --muted: #5A6167;
  --faint: rgba(16, 20, 24, .55);
  --ghost: rgba(16, 20, 24, .5);
  --hairline: rgba(16, 20, 24, .08);
  --hairline-strong: rgba(16, 20, 24, .16);
  --accent: #FFE14D;
  --accent-ink: #8A6600;
  --shadow-sm: 0 1px 2px rgba(16, 20, 24, .04);
  --shadow-lg: 0 1px 2px rgba(16, 20, 24, .04), 0 12px 32px -16px rgba(16, 20, 24, .12);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* No overflow-x rule on html/body: overflow-x:hidden makes body a scroll
   container and silently disables every position:sticky descendant (nav,
   journey pin), and overflow-x:clip on the root can kill page scrolling.
   Wide components (marquees, ticker, flowboard) clip themselves instead. */
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: 'Geist', 'Helvetica Neue', Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--ink); text-decoration: none; transition: color .12s ease; }
a:hover { color: var(--muted); }
p { margin: 0; }

.container { max-width: 1480px; margin: 0 auto; padding-left: 56px; padding-right: 56px; }
.num { font-variant-numeric: tabular-nums; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center;
  background: var(--ink); color: var(--white);
  border-radius: 10px; font-weight: 500;
  transition: opacity .12s ease;
}
.btn:hover { opacity: .85; color: var(--white); }
.btn-nav { height: 40px; padding: 0 20px; font-size: 14px; }
.btn-lg  { height: 54px; padding: 0 28px; font-size: 16px; }
.btn-xl  { height: 58px; padding: 0 32px; font-size: 17px; }
.link-quiet { display: inline-flex; align-items: center; height: 54px; padding: 0 8px; font-size: 16px; font-weight: 500; color: var(--muted); }
.btn-ghost {
  display: inline-flex; align-items: center;
  height: 54px; padding: 0 28px;
  background: var(--white); color: var(--ink);
  border: 1px solid var(--hairline-strong); border-radius: 10px;
  font-size: 16px; font-weight: 500;
  transition: border-color .12s ease, background .12s ease;
}
.btn-ghost:hover { border-color: rgba(16, 20, 24, .35); background: var(--surface); color: var(--ink); }
.section-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 72px; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.header-inner { height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { font-size: 25px; font-weight: 500; letter-spacing: -.034em; display: flex; align-items: center; gap: 12px; }
.brand-labs { font-weight: 400; color: var(--muted); margin-left: -6px; }
.site-footer .brand-labs { color: rgba(250, 250, 247, .6); }
.dname-us .brand-labs { margin-left: -4px; }
.ha-built .brand-labs { margin-left: -3px; }
.nav { display: flex; align-items: center; gap: 40px; }
.nav-link { font-size: 15px; color: var(--muted); }

/* ---- Type ---- */
.h2 {
  margin: 0 0 40px;
  font-size: clamp(38px, 5.4vw, 78px);
  font-weight: 500; letter-spacing: -.032em; line-height: 1.03;
  text-wrap: balance;
}
.w14 { max-width: 14ch; } .w15 { max-width: 15ch; } .w16 { max-width: 16ch; } .w18 { max-width: 18ch; }
.section-lead { margin: 0 0 90px; max-width: 620px; font-size: 20px; line-height: 1.65; color: var(--muted); }
.lead-tight { margin-bottom: 88px; }
.fine { margin-top: 20px; font-size: 14px; color: rgba(16, 20, 24, .4); }
.ink-text { color: var(--ink); }
.muted { color: var(--muted); }
.dim { color: rgba(16, 20, 24, .4); }

/* ---- Sections ---- */
.section { padding-top: 190px; padding-bottom: 190px; }
.band { background: var(--surface); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.band-inner { padding-top: 170px; padding-bottom: 170px; }
.band-inner-top { padding-top: 170px; }
.band .h2 { margin-bottom: 64px; }
#system.section { padding-bottom: 190px; }

/* ---- Reveal on scroll ---- */
[data-reveal] {
  opacity: 0; transform: translateY(20px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
[data-reveal].on { opacity: 1; transform: none; }

@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .3; transform: scale(.82); } }
.rise { animation: rise .9s var(--ease) both; }
.rise-2 { animation-delay: .12s; }
.rise-3 { animation-delay: .24s; }

/* ---- Hero ---- */
.hero { padding-top: 96px; padding-bottom: 150px; }
.hero-title {
  margin: 0 0 56px;
  font-size: clamp(46px, 7vw, 104px);
  font-weight: 500; letter-spacing: -.04em; line-height: .98;
  text-wrap: balance;
}
.hero-row {
  display: grid; grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 64px; align-items: start;
  margin-bottom: 84px;
}
.hero-lead { margin: 0; max-width: 560px; font-size: 19px; line-height: 1.65; color: var(--muted); text-wrap: pretty; }
.hero-cta-col { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-qualifier { margin: 0; font-size: 13.5px; color: var(--faint); }
.hero-proof { margin: 0; font-size: 13.5px; color: var(--faint); max-width: 44ch; line-height: 1.55; }
.logostrip {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 24px 56px;
  margin-top: 44px;
}
.logostrip-label { font-size: 13px; color: var(--faint); }
.logostrip img { height: 24px; width: auto; opacity: .55; filter: grayscale(1); transition: opacity .12s ease; }
.logostrip img[alt="Soscale"] { height: 17px; }
.logostrip img:hover { opacity: .8; }
.hero-proof a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }

/* ---- Panels (product mocks) ---- */
.panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; background: var(--surface);
  border-bottom: 1px solid var(--hairline);
  font-size: 14px; color: var(--muted);
}
.live { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; color: var(--muted); }
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px rgba(16, 20, 24, .15);
  animation: pulse 2s ease-in-out infinite;
}
.live-dot-static { animation: none; }

.score-row { padding: 10px 0; }
.score-line { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 9px; font-size: 14px; color: var(--ink); }
.bar { height: 2px; background: var(--hairline); position: relative; }
.bar-fill { height: 2px; transform-origin: left; background: rgba(16, 20, 24, .3); }
.bar-fill.ink { background: var(--ink); }
.feed-row .t { color: var(--ghost); font-variant-numeric: tabular-nums; }

/* ---- Problem diptych: two fading tracks vs one through-line ---- */
.pv { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.pv-panel {
  display: flex; flex-direction: column;
  padding: 32px 36px 30px;
  background: var(--white);
  border: 1px solid var(--hairline); border-radius: 16px;
}
.pv-fixed { border-color: var(--hairline-strong); box-shadow: var(--shadow-lg); }
.pv-header { display: flex; align-items: baseline; gap: 12px; margin-bottom: 36px; }
.pv-when { font-size: 13px; color: var(--faint); }
.pv-what { font-size: 15.5px; font-weight: 500; letter-spacing: -.01em; color: var(--muted); }
.pv-fixed .pv-what { color: var(--ink); }
.pv-lane-label { font-size: 12.5px; color: var(--faint); margin-bottom: 20px; }

.track { position: relative; display: flex; justify-content: space-between; gap: 8px; }
.track::before {
  content: ''; position: absolute;
  left: 5px; right: 5px; top: 4px; height: 2px; border-radius: 2px;
  background: var(--ink);
  transform-origin: left; transform: scaleX(0);
  transition: transform .9s var(--ease);
}
.pv.on .track::before { transform: none; }
.track-fade::before { background: linear-gradient(to right, rgba(16, 20, 24, .35), rgba(16, 20, 24, .05)); }
.station {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  min-width: 0;
  opacity: 0; transform: translateY(6px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.pv.on .station { opacity: 1; transform: none; }
.pv.on .station:nth-child(1) { transition-delay: .1s; }
.pv.on .station:nth-child(2) { transition-delay: .22s; }
.pv.on .station:nth-child(3) { transition-delay: .34s; }
.pv.on .station:nth-child(4) { transition-delay: .46s; }
.pv.on .station:nth-child(5) { transition-delay: .58s; }
.pv.on .station:nth-child(6) { transition-delay: .7s; }
.station:first-child { align-items: flex-start; }
.station:last-child { align-items: flex-end; }
.sdot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--ink);
  box-sizing: border-box;
}
.track-fade .sdot { border-color: rgba(16, 20, 24, .4); }
.track-fade .station:last-child .sdot { border-color: rgba(16, 20, 24, .18); background: var(--surface); }
.track-fade .station:last-child .slabel { color: var(--faint); }
.slabel { font-size: 12px; line-height: 1.35; color: var(--muted); text-align: center; max-width: 88px; }
.station:first-child .slabel { text-align: left; }
.station:last-child .slabel { text-align: right; }
.station-win .sdot { background: var(--accent); border-color: var(--ink); }
.station-win .slabel { color: var(--ink); font-weight: 500; }
.track-pulse { position: absolute; left: 5px; right: 13px; top: 1px; height: 8px; pointer-events: none; }
.track-pulse i {
  position: absolute; top: 0; left: 0;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px rgba(16, 20, 24, .3);
  animation: track-run 5s linear infinite;
}
@keyframes track-run {
  0% { left: 0; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.pv-break { display: flex; align-items: center; gap: 14px; margin: 30px 0 30px; }
.pv-break-line { flex: 1; border-top: 1px dashed rgba(158, 36, 49, .45); }
.pv-break-label { font-size: 12.5px; color: #9E2431; white-space: nowrap; }

.pv-loop { position: relative; height: 24px; margin: 10px 5px 0 5px; }
.pv-loop svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.pv-loop::after {
  content: ''; position: absolute;
  left: calc(4% - 4px); top: 0;
  border: 4px solid transparent; border-bottom: 5px solid var(--accent-ink);
}
.pv-loop-label { margin-top: 8px; text-align: center; font-size: 12.5px; color: var(--accent-ink); }
.pv-cap { margin: auto 0 0; padding-top: 28px; font-size: 14px; line-height: 1.6; color: var(--muted); }
/* ---- Channel bento ---- */
.bento { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 24px; }
.bcard {
  grid-column: span 2;
  display: flex; flex-direction: column;
  min-height: 380px;
  padding: 36px 36px 0;
  background: var(--white);
  border: 1px solid var(--hairline); border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .12s ease, transform .12s ease;
}
.bcard:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.bcard-lg { grid-column: span 3; min-height: 440px; }
.bh {
  margin: 0 0 28px;
  font-size: 16.5px; font-weight: 400; letter-spacing: -.005em; line-height: 1.55;
  color: var(--muted); text-wrap: balance;
}
.bcard-lg .bh { font-size: 18px; max-width: 34ch; }
.bh span {
  display: block;
  font-size: 26px; font-weight: 500; letter-spacing: -.025em; line-height: 1.15;
  color: var(--ink);
  margin-bottom: 12px;
}
.bcard-lg .bh span { font-size: 31px; }
.bviz { margin-top: auto; }
.mini {
  background: var(--surface);
  border: 1px solid var(--hairline); border-bottom: 0;
  border-radius: 12px 12px 0 0;
  padding: 20px 20px 24px;
}
.mini .t { color: var(--faint); font-variant-numeric: tabular-nums; font-size: 12.5px; }
.mini-row {
  display: flex; gap: 12px; align-items: baseline;
  padding: 8px 0; font-size: 13px; color: var(--ink);
  border-bottom: 1px solid rgba(16, 20, 24, .05);
}
.mini-contact {
  margin-top: 14px; padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--hairline-strong); border-radius: 10px;
  box-shadow: var(--shadow-sm);
}
.mini-contact-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.mini-name { font-size: 13.5px; font-weight: 500; color: var(--ink); }
.pill-accent {
  font-size: 12px; color: var(--ink);
  background: var(--accent); border-radius: 999px; padding: 3px 10px;
  white-space: nowrap; flex: none;
}
.mini-sub { font-size: 12.5px; color: var(--faint); }
.mini-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 13px; color: var(--faint); margin-bottom: 12px; }
.mini-acct {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr) auto;
  gap: 12px; align-items: center;
  padding: 8px 0; font-size: 13px; color: var(--ink);
}
.mini-bar { height: 6px; background: rgba(16, 20, 24, .07); border-radius: 4px; overflow: hidden; }
.mini-bar i { display: block; height: 100%; border-radius: 4px; }
.mini-query {
  font-size: 13px; color: var(--muted);
  background: var(--white); border: 1px solid var(--hairline); border-radius: 999px;
  padding: 9px 16px; margin-bottom: 12px;
}
.mini-answer {
  background: var(--white); border: 1px solid var(--hairline); border-radius: 10px;
  padding: 14px 16px; font-size: 13px; color: var(--muted); line-height: 1.55;
}
.mini-answer p { margin: 0; }
.mini-answer b { color: var(--ink); font-weight: 500; }
.mini-label { display: block; font-size: 12px; color: var(--faint); margin-bottom: 6px; }
.committee { display: flex; margin-bottom: 14px; }
.face {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 1px solid var(--hairline-strong);
  font-size: 11px; font-weight: 500; color: var(--muted);
  margin-left: -9px; box-shadow: var(--shadow-sm);
}
.face:first-child { margin-left: 0; }

/* ---- Flowboard (the data model pipeline) ---- */
.flowboard {
  position: relative;
  border: 1px solid var(--hairline); border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 44px 44px 0;
  margin-bottom: 90px;
  overflow: hidden;
}
.flow-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.flow-svg path { fill: none; stroke-width: 1.5; }
.flow-svg .fl-base { stroke: rgba(16, 20, 24, .1); }
.flow-svg .fl-anim { stroke: #2E6F77; stroke-dasharray: 5 8; animation: flowdash 1.2s linear infinite; }
.flow-svg .fl-loop { stroke: rgba(16, 20, 24, .1); }
.flow-svg .fl-loop-anim { stroke: var(--accent-ink); stroke-dasharray: 5 8; animation: flowdash-rev 1.4s linear infinite; }
@keyframes flowdash { to { stroke-dashoffset: -13; } }
@keyframes flowdash-rev { to { stroke-dashoffset: 13; } }
.flowboard.off .flow-svg path { animation-play-state: paused; }

.flow-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  padding-bottom: 64px;
}
.flow-col-title { font-size: 13px; color: var(--faint); margin-bottom: 16px; }
.flow-sources, .flow-outputs { display: flex; flex-direction: column; gap: 10px; }
.fnode {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px;
  background: var(--white);
  border: 1px solid var(--hairline); border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: border-color .12s ease, transform .12s ease;
}
.fnode:hover { border-color: rgba(16, 20, 24, .22); transform: translateY(-1px); }
.fnode b { display: block; font-size: 13.5px; font-weight: 500; color: var(--ink); letter-spacing: -.01em; }
.fnode small { display: block; font-size: 11.5px; color: var(--faint); margin-top: 2px; }
.fnode-ico {
  width: 34px; height: 34px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border-radius: 8px;
  color: var(--muted);
}
.fnode-ico svg { width: 17px; height: 17px; }
.fnode-ico img { width: 16px; height: 16px; object-fit: contain; }
.fnode-out { border-left: 2px solid #2E6F77; }

.flow-hub {
  position: relative; z-index: 1;
  background: var(--ink); color: var(--paper, #FAFAF7);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 2px rgba(16, 20, 24, .08), 0 24px 48px -24px rgba(16, 20, 24, .35);
}
.hub-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.hub-kicker { font-size: 13px; color: rgba(250, 250, 247, .6); }
.hub-live { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: rgba(250, 250, 247, .7); }
.hub-block { padding: 16px; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); border-radius: 10px; }
.hub-block + .hub-block { margin-top: 10px; }
.hub-label { font-size: 12.5px; color: rgba(250, 250, 247, .55); margin-bottom: 12px; }
.hub-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.hub-chips span {
  font-size: 12px; color: #EDEFE8;
  border: 1px solid rgba(255, 255, 255, .22); border-radius: 999px;
  padding: 4px 10px;
}
.hub-sub { font-size: 12px; color: rgba(250, 250, 247, .5); margin-top: 12px; line-height: 1.5; }
.hub-row { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px; font-size: 13.5px; color: #FFFFFF; }
.hub-row + .hub-row { margin-top: 9px; }
.hub-pill-quiet {
  font-size: 12px; color: rgba(250, 250, 247, .85);
  border: 1px solid rgba(255, 255, 255, .25); border-radius: 999px;
  padding: 2px 10px; white-space: nowrap;
}
.hub-acct { font-weight: 500; }
.hub-score { font-variant-numeric: tabular-nums; color: rgba(250, 250, 247, .7); }
.hub-arrow { color: rgba(250, 250, 247, .45); }
.hub-pill { font-size: 12px; background: var(--accent); color: var(--ink); border-radius: 999px; padding: 3px 10px; }

.flow-loop-label {
  position: absolute; left: 50%; bottom: 64px;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 12.5px; color: var(--accent-ink);
  background: var(--white);
  padding: 4px 12px; border: 1px solid var(--hairline); border-radius: 999px;
}
.flow-foot {
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  border-top: 1px solid var(--hairline);
  margin: 0 -44px; padding: 18px 44px 20px;
  font-size: 13px; color: var(--faint);
}

.layers3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; }
.layer3-no { font-size: 13px; color: var(--faint); font-variant-numeric: tabular-nums; }
.layer3-title { font-size: 19px; font-weight: 500; letter-spacing: -.015em; margin: 10px 0 10px; }
.layer3-body { font-size: 15px; line-height: 1.6; color: var(--muted); }

/* ---- What we build: alternating diagnosed → built rows ---- */
.build-diag {
  display: flex; align-items: baseline; gap: 10px;
  margin: 0 0 22px;
  font-size: 13px; line-height: 1.5; color: var(--muted);
}
.build-tag {
  flex: none;
  font-size: 11.5px; color: var(--faint);
  border: 1px dashed var(--hairline-strong); border-radius: 999px;
  padding: 2px 10px;
}
.wwb-rows { display: flex; flex-direction: column; gap: clamp(120px, 12vw, 170px); margin-bottom: clamp(120px, 12vw, 170px); }
.wwb-row {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 6vw, 104px);
  align-items: center;
}
.wwb-copy { max-width: 480px; }
.wwb-row-flip .wwb-copy { grid-column: 2; grid-row: 1; }
.wwb-row-flip .wwb-panel { grid-column: 1; grid-row: 1; justify-self: start; }
.wwb-title {
  margin: 0 0 14px;
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 500; letter-spacing: -.025em; line-height: 1.12;
}
.wwb-body { font-size: 16.5px; line-height: 1.65; color: var(--muted); }
.wwb-panel {
  width: 100%; max-width: 620px; justify-self: end;
  background: var(--white);
  border: 1px solid var(--hairline-strong); border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.wwb-stack { display: inline-flex; align-items: center; gap: 12px; }
.wwb-stack img { height: 16px; width: auto; max-width: 60px; display: block; }
.wwb-panel-body { padding: 16px 24px 24px; }
.wwb-panel .mini-row { font-size: 13.5px; padding: 10px 0; }
.wwb-panel .mini-contact { background: var(--surface); box-shadow: none; margin-top: 16px; }
.wwb-panel .mini-query { background: var(--surface); margin: 6px 0 14px; }
.mini-stage {
  margin-left: auto; flex: none;
  font-size: 11px; color: var(--muted);
  border: 1px solid var(--hairline-strong); border-radius: 999px;
  padding: 2px 8px; white-space: nowrap;
}
.mini-row .pill-accent { margin-left: auto; font-size: 11px; padding: 2px 8px; }
.wwb-closer {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  padding: 40px 48px;
  background:
    linear-gradient(115deg, rgba(255, 225, 77, .25), rgba(255, 255, 255, 0) 55%),
    linear-gradient(295deg, rgba(121, 185, 166, .22), rgba(255, 255, 255, 0) 55%),
    var(--white);
  border: 1px solid var(--hairline-strong); border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.wwb-closer-t { margin: 0 0 8px; font-size: 26px; font-weight: 500; letter-spacing: -.025em; line-height: 1.1; }
.wwb-closer-p { margin: 0; max-width: 62ch; font-size: 15px; line-height: 1.6; color: var(--muted); }
.wwb-closer .btn { flex: none; }

/* ---- Comparison duel ---- */
.duel-h2 { margin-bottom: 64px; }
.duel-top { display: flex; margin-bottom: 44px; }
.duel-punch {
  font-size: clamp(22px, 2.2vw, 30px); line-height: 1.3;
  font-weight: 500; letter-spacing: -.02em; color: var(--ink);
  max-width: 560px; margin: 0; text-wrap: balance;
  transition: opacity .22s ease, transform .22s ease;
}
.mark {
  width: 32px; height: 32px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='5' width='18' height='3.2' rx='1.6' fill='%23101418'/%3E%3Crect x='3' y='10.4' width='11.5' height='3.2' rx='1.6' fill='%23101418'/%3E%3Ccircle cx='18.9' cy='12' r='2.1' fill='%23FFE14D'/%3E%3Crect x='3' y='15.8' width='18' height='3.2' rx='1.6' fill='%23101418'/%3E%3C/svg%3E") center / contain no-repeat;
  position: relative;
  display: inline-block; flex: none;
}
.mark::after {
  content: none; position: absolute; inset: 0; margin: auto;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
.dname-us { display: inline-flex; align-items: center; gap: 10px; }
.seg {
  display: inline-flex; gap: 4px; padding: 4px;
  background: var(--surface-2);
  border: 1px solid var(--hairline); border-radius: 999px;
}
.seg-btn {
  border: 0; background: transparent; cursor: pointer;
  height: 42px; padding: 0 22px; border-radius: 999px;
  font: inherit; font-size: 14.5px; font-weight: 500; color: var(--muted);
  transition: background .15s ease, color .15s ease, box-shadow .15s ease;
}
.seg-btn:hover { color: var(--ink); }
.seg-btn.is-active { background: var(--white); color: var(--ink); box-shadow: var(--shadow-sm); }

.duel-grid {
  position: relative;
  display: grid;
  grid-template-columns: 190px repeat(2, minmax(0, 1fr));
}
/* The elevated, unchanging "us" card behind the third column */
.us-card {
  position: absolute; top: -20px; bottom: -20px;
  right: 0; width: calc((100% - 190px) / 2);
  background: var(--white);
  border: 1px solid var(--hairline-strong); border-radius: 20px;
  box-shadow: var(--shadow-lg);
  pointer-events: none;
}
.dvs {
  position: absolute; top: 50%;
  left: calc(190px + (100% - 190px) / 2);
  transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 1px solid var(--hairline);
  font-size: 12.5px; font-weight: 500; color: var(--muted);
  z-index: 2;
}
.dcell {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  padding: 24px 28px;
  font-size: 16px; line-height: 1.5;
  border-bottom: 1px solid var(--hairline);
}
.duel-grid > .dcell:nth-last-child(-n+3) { border-bottom: 0; }
.dspine { padding-left: 0; font-size: 14px; color: var(--faint); }
.dthem { color: var(--muted); transition: opacity .22s ease, transform .22s ease; }
.dus { color: var(--ink); font-weight: 500; gap: 12px; padding-left: 32px; padding-right: 32px; }
.dcheck { width: 18px; height: 18px; flex: none; }
.dhead { flex-direction: column; align-items: flex-start; justify-content: center; gap: 8px; min-height: 116px; }
.dhead-them { grid-column: 1 / 3; padding-left: 0; }
.dname { font-size: 17px; font-weight: 500; letter-spacing: -.01em; color: var(--ink); }
.dhead-them .dtag { transition: opacity .22s ease, transform .22s ease; }
.dtag { font-size: 14px; color: var(--muted); }
#alternatives.swapping .dthem,
#alternatives.swapping .dhead-them .dtag,
#alternatives.swapping .duel-punch {
  opacity: 0; transform: translateY(6px);
}
.dcell[data-dim]::before { content: none; }

/* ---- Integrations marquee ---- */
.section-integrations { overflow: hidden; }
.split-head {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 64px; align-items: end;
  margin-bottom: 90px;
}
.split-head .h2 { margin-bottom: 0; }
.split-lead {
  font-size: 20px; line-height: 1.65; color: var(--muted);
  max-width: 520px; justify-self: end;
  margin-bottom: 6px;
}
.marquees { display: flex; flex-direction: column; gap: 18px; }
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.mq-track { display: flex; width: max-content; }
/* Until JS clones the group for the loop, render as a centered wrapping wall. */
.marquee:not([data-cloned]) .mq-track { width: auto; }
.marquee:not([data-cloned]) .mq-group { flex-wrap: wrap; justify-content: center; padding: 0 24px; }
.marquee[data-cloned] .mq-track { animation: mq-scroll var(--mq-dur, 60s) linear infinite; }
.marquee-reverse[data-cloned] .mq-track { animation-direction: reverse; }
@keyframes mq-scroll { from { transform: translateX(0); } to { transform: translateX(var(--mq-shift, calc(-100% / 3))); } }
.marquee:hover .mq-track, .marquee.off .mq-track { animation-play-state: paused; }
.mq-group { display: flex; gap: 16px; padding-right: 16px; }
.mq-chip {
  display: inline-flex; align-items: center; gap: 14px;
  height: 64px; padding: 0 28px;
  background: var(--white);
  border: 1px solid var(--hairline); border-radius: 999px;
  font-size: 15.5px; font-weight: 500; color: var(--muted);
  white-space: nowrap;
  transition: color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.mq-chip img { height: 26px; width: auto; max-width: 96px; display: block; }
.mq-chip:hover { color: var(--ink); border-color: rgba(16, 20, 24, .22); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.mq-chip-wordmark img { height: 18px; max-width: 110px; }
.integrations-note { margin-top: 64px; font-size: 17px; color: var(--muted); text-align: center; }

/* ---- Hero app: the GTM engine dashboard ---- */
.hero-app {
  background: var(--white);
  border: 1px solid var(--hairline-strong); border-radius: 16px;
  box-shadow: 0 1px 2px rgba(16, 20, 24, .04), 0 32px 72px -32px rgba(16, 20, 24, .28);
  overflow: hidden;
}
.ha-chrome {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  background: var(--surface);
  border-bottom: 1px solid var(--hairline);
}
.ha-brand { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; letter-spacing: -.01em; }
.ha-brand .mark { width: 20px; height: 20px; }
.ha-chrome-right { display: inline-flex; align-items: center; gap: 20px; }
.ha-built { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--faint); white-space: nowrap; }
.ha-built .mark { width: 16px; height: 16px; }
.ha-kpis {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--hairline);
}
.ha-kpi { padding: 20px 24px; border-right: 1px solid var(--hairline); }
.ha-kpi:last-child { border-right: 0; }
.ha-kpi-n { font-size: 28px; font-weight: 500; letter-spacing: -.02em; line-height: 1; }
.ha-kpi-l { font-size: 12.5px; color: var(--faint); margin-top: 6px; }
.ha-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ha-col { padding: 20px 24px 22px; border-right: 1px solid var(--hairline); min-width: 0; }
.ha-col:last-child { border-right: 0; }
.ha-col-t { font-size: 13px; color: var(--faint); margin-bottom: 14px; }
.ha-feed { height: 228px; overflow: hidden; }
.ha-row {
  display: flex; align-items: baseline; gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(16, 20, 24, .05);
  font-size: 13px; color: var(--muted); white-space: nowrap; overflow: hidden;
}
.ha-row .t { color: var(--ghost); font-variant-numeric: tabular-nums; flex: none; }
.ha-row .pill-accent { margin-left: auto; font-size: 11px; padding: 2px 8px; flex: none; }
.ha-strong { color: var(--ink); font-weight: 500; }
.ha-new { animation: rise .5s var(--ease) both; }
.ha-col .score-row { padding: 8px 0; }
.ha-col .score-line { font-size: 13px; margin-bottom: 8px; }
.ha-col .score-line .pill-accent { font-size: 11px; padding: 1px 8px; }
.ha-chart {
  display: flex; align-items: flex-end; gap: 8px;
  height: 96px; margin-bottom: 10px;
}
.ha-chart i {
  flex: 1; display: block;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  background: #4F8D90;
}
.ha-chart i:nth-child(1) { background: #79B9A6; }
.ha-chart i:nth-child(6) { background: #79B9A6; }
.ha-chart .ha-today { background: var(--accent); }
.ha-chart-cap { font-size: 11.5px; color: var(--faint); margin-bottom: 16px; }
.ha-next {
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--hairline-strong); border-radius: 10px;
}
.ha-next-top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.ha-next-top b { font-size: 13px; font-weight: 500; color: var(--ink); }
.ha-next-top .pill-accent { font-size: 11px; padding: 2px 8px; flex: none; }
.ha-next small { font-size: 12px; color: var(--faint); line-height: 1.5; display: block; }

/* ---- Tickers: full-bleed marquee strips bookending the page ---- */
.ticker {
  display: flex; align-items: stretch;
  border-top: 1px solid var(--hairline);
  background: var(--white);
  overflow: hidden;
}
.ticker-head {
  display: flex; align-items: center; flex: none;
  padding: 0 22px 0 56px;
  background: var(--surface);
  border-right: 1px solid var(--hairline);
  font-size: 13px; color: var(--muted);
}
.ticker .marquee {
  flex: 1; min-width: 0;
  display: flex; align-items: center;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 94%, transparent);
}
.ticker .mq-group,
.ticker .marquee:not([data-cloned]) .mq-group {
  flex-wrap: nowrap; justify-content: flex-start;
  gap: 48px; padding: 0 48px 0 0;
  align-items: center;
}
.ticker .marquee:not([data-cloned]) .mq-track { width: max-content; }
.tick {
  display: inline-flex; align-items: center; gap: 10px;
  height: 58px; font-size: 13.5px; color: var(--muted);
  white-space: nowrap;
}
.tick .t { color: var(--ghost); font-variant-numeric: tabular-nums; }
.tick-strong { color: var(--ink); font-weight: 500; }
.tick .pill-accent { font-size: 11px; padding: 2px 8px; }

/* ---- Journey (sticky scroll narrative) ----
   The pin centers ~575px of content in a full viewport, parking
   (50vh - ~288px) of dead air above the first frame. The calc cancels that
   centering so the narrative starts a constant ~65px under the section
   lead at any viewport height. */
.journey { height: 320vh; position: relative; margin-top: calc(-50vh + 350px); }
/* The pin centers content in the viewport; the split-head needs no extra gap */
.band-inner-top .split-head { margin-bottom: 8px; }
.journey-sticky {
  position: sticky; top: 0; height: 100vh;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 80px; align-items: center;
}
.journey-steps { display: flex; gap: 32px; }
.journey-line { position: relative; width: 2px; background: rgba(16, 20, 24, .1); border-radius: 2px; }
.journey-line-fill {
  position: absolute; inset: 0;
  background: var(--ink); border-radius: 2px;
  transform-origin: top; transform: scaleY(.02);
}
.journey-list { display: flex; flex-direction: column; gap: 44px; padding: 8px 0; }
.jstep { opacity: .38; transition: opacity .3s ease; }
.jstep.active { opacity: 1; }
.jstep-head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.jdot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(16, 20, 24, .15);
  box-shadow: 0 0 0 1px rgba(16, 20, 24, .15);
  transition: background .3s ease;
}
.jstep.passed .jdot { background: var(--accent); }
.jtitle { font-size: 25px; font-weight: 500; letter-spacing: -.025em; }
.jchip {
  font-size: 12px; color: var(--muted);
  background: var(--surface); border: 1px solid var(--hairline); border-radius: 999px;
  padding: 3px 10px; white-space: nowrap;
}
.jbody { margin: 0 0 0 20px; font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 40ch; }

.journey-panes { position: relative; height: 460px; }
.jpane {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(16px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}
.jpane.active { opacity: 1; transform: none; pointer-events: auto; }
.jpane.before { transform: translateY(-16px); }
.jpanel {
  height: 100%;
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--hairline-strong); border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.jpanel-body { flex: 1; display: flex; flex-direction: column; padding: 24px 28px 22px; }
.jpanel-col { justify-content: flex-start; }
.jpane-step { font-size: 12.5px; color: var(--faint); }
.jpanel-foot { margin-top: auto; padding-top: 18px; font-size: 13px; color: var(--faint); }

/* Pane 1 · Scan: the engineer's findings memo */
.memo-row {
  display: grid; grid-template-columns: 128px minmax(0, 1fr) 64px;
  gap: 14px; align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid rgba(16, 20, 24, .05);
  font-size: 13.5px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease; transition-delay: var(--d, 0s);
}
.memo-src { font-size: 13px; font-weight: 500; color: var(--ink); letter-spacing: -.005em; }
.memo-note { color: var(--muted); line-height: 1.5; }
.jstatus { font-size: 12px; color: var(--muted); text-align: right; }
.jstatus-warn { color: #9E2431; }
.jstatus-opp { color: var(--accent-ink); font-weight: 500; }
.journey.on-0 .memo-row { opacity: 1; transform: none; }
.jfind {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  margin-top: auto; padding: 13px 16px;
  background: var(--surface);
  border: 1px solid var(--hairline-strong); border-radius: 10px;
  font-size: 13.5px; font-weight: 500; color: var(--ink);
}

/* Pane 2 · Sprint: Data → Decide → Act mini architecture */
.bp3 { display: flex; gap: 6px; align-items: stretch; }
.bp-col { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 10px; }
.bp-col-h { font-size: 12px; color: var(--faint); margin-bottom: 2px; }
.bp-sep { display: flex; align-items: center; justify-content: center; width: 18px; color: rgba(16, 20, 24, .3); }
.bp-sep::before { content: '\2192'; font-size: 13px; margin-top: 18px; }
.bp-tile2 {
  position: relative;
  padding: 15px 13px 14px;
  background: var(--white);
  border: 1px solid var(--hairline); border-radius: 10px;
  box-shadow: var(--shadow-sm);
  font-size: 12.5px; font-weight: 500; color: var(--ink); letter-spacing: -.005em;
  opacity: 0; transform: scale(.94);
  transition: opacity .5s ease, transform .5s ease; transition-delay: var(--d, 0s);
}
.bdot {
  position: absolute; top: 50%; right: 11px; transform: translateY(-50%);
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px rgba(16, 20, 24, .2);
}
.bdot-inline { position: static; display: inline-block; transform: none; margin-right: 8px; vertical-align: 1px; }
.journey.on-1 .bp-tile2 { opacity: 1; transform: none; }

/* Pane 4 · Operate: KPI row over the live feed */
.jkpis {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 16px; margin-bottom: 6px;
  border-bottom: 1px solid var(--hairline);
}
.jkpi { padding-right: 18px; border-right: 1px solid var(--hairline); }
.jkpi + .jkpi { padding-left: 18px; }
.jkpi:last-child { border-right: 0; padding-right: 0; }
.jkpi-n { font-size: 26px; font-weight: 500; letter-spacing: -.02em; line-height: 1; }
.jkpi-l { font-size: 12px; color: var(--faint); margin-top: 6px; }
.feed-row {
  display: flex; gap: 16px; align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid rgba(16, 20, 24, .05);
  font-size: 13.5px; color: var(--ink);
  opacity: 0; transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease; transition-delay: var(--d, 0s);
}
.feed-hot {
  background: rgba(255, 225, 77, .22);
  border-bottom: 0; border-radius: 8px;
  padding: 11px 12px; margin: 2px -12px;
}
.feed-strong { font-weight: 500; }
.feed-hot .pill-accent { margin-left: auto; font-size: 11px; padding: 2px 8px; }
.journey.on-3 .feed-row { opacity: 1; transform: none; }

/* Pane 3 · Engineer: module cards with status */
.mod-list { display: flex; flex-direction: column; gap: 12px; }
.mod2 {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid rgba(16, 20, 24, .1); border-radius: 10px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease; transition-delay: var(--d, 0s);
}
.mod-ico {
  width: 36px; height: 36px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 1px solid var(--hairline); border-radius: 10px;
  color: var(--muted);
}
.mod-ico svg { width: 17px; height: 17px; }
.mod-txt { min-width: 0; }
.mod-txt b { display: block; font-size: 14px; font-weight: 500; color: var(--ink); letter-spacing: -.01em; }
.mod-txt small { display: block; font-size: 12px; color: var(--faint); margin-top: 2px; }
.mod-status {
  margin-left: auto; flex: none;
  font-size: 11.5px; border-radius: 999px; padding: 3px 10px;
}
.mod-status-live { background: var(--accent); color: var(--ink); }
.mod-status-build { border: 1px solid var(--hairline-strong); color: var(--muted); }
.mod-status-scoped { border: 1px dashed var(--hairline-strong); color: var(--faint); }
.journey.on-2 .mod2 { opacity: 1; transform: none; }

/* ---- Final CTA: the page's one large ink surface, its one centered moment ---- */
.section-cta { padding-bottom: 170px; }
.cta-close {
  background: var(--ink);
  border-radius: 24px;
  padding: clamp(64px, 9vw, 120px) 40px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(16, 20, 24, .08), 0 32px 64px -32px rgba(16, 20, 24, .45);
}
.h2-cta {
  font-size: clamp(40px, 5.6vw, 84px); letter-spacing: -.036em; line-height: 1;
  color: #FAFAF7;
  margin: 0 auto 32px;
}
.cta-lead {
  margin: 0 auto 48px; max-width: 520px;
  font-size: 19px; line-height: 1.65;
  color: rgba(250, 250, 247, .68);
}
.btn-accent {
  display: inline-flex; align-items: center;
  height: 58px; padding: 0 34px;
  background: var(--accent); color: var(--ink);
  border-radius: 12px;
  font-size: 17px; font-weight: 500;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn-accent:hover { color: var(--ink); transform: translateY(-1px); box-shadow: 0 10px 28px -10px rgba(255, 225, 77, .6); }
.cta-qualifier { margin: 22px 0 0; font-size: 13.5px; color: rgba(250, 250, 247, .55); }

/* ---- Footer: dark ground, rounded into the page ---- */
.site-footer {
  background: #16191E;
  border-radius: 28px 28px 0 0;
}
.site-footer .brand { color: #FAFAF7; }
.site-footer .brand:hover { color: #FFFFFF; }
.site-footer .mark { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='5' width='18' height='3.2' rx='1.6' fill='%23FAFAF7'/%3E%3Crect x='3' y='10.4' width='11.5' height='3.2' rx='1.6' fill='%23FAFAF7'/%3E%3Ccircle cx='18.9' cy='12' r='2.1' fill='%23FFE14D'/%3E%3Crect x='3' y='15.8' width='18' height='3.2' rx='1.6' fill='%23FAFAF7'/%3E%3C/svg%3E"); }
.footer-grid {
  display: grid; grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: 48px;
  padding: 72px 0 56px;
}
.footer-brand .brand { margin-bottom: 4px; }
.footer-tag { margin: 18px 0 14px; font-size: 14.5px; line-height: 1.6; color: rgba(250, 250, 247, .62); max-width: 40ch; }
.footer-note { margin: 0; font-size: 13px; color: rgba(250, 250, 247, .45); }
.footer-col { display: flex; flex-direction: column; gap: 11px; align-items: flex-start; }
.footer-h { font-size: 13px; color: rgba(250, 250, 247, .48); margin-bottom: 8px; }
.footer-col a { font-size: 14.5px; color: rgba(250, 250, 247, .74); }
.footer-col a:hover { color: #FFFFFF; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 22px 0 30px;
  font-size: 13px; color: rgba(250, 250, 247, .5);
}

/* ---- Subpages (legal, about) ---- */
.page { padding-top: 72px; padding-bottom: 130px; }
.page-h1 {
  margin: 0 0 14px;
  font-size: clamp(36px, 4.6vw, 60px);
  font-weight: 500; letter-spacing: -.032em; line-height: 1.04;
  text-wrap: balance;
}
.page-meta { font-size: 13.5px; color: var(--faint); margin: 0 0 56px; }
.prose { max-width: 720px; }
.prose h2 { font-size: 21px; font-weight: 500; letter-spacing: -.015em; margin: 44px 0 12px; }
.prose p { font-size: 15.5px; line-height: 1.7; color: var(--muted); margin: 0 0 14px; }
.prose ul { margin: 0 0 14px 18px; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.prose li { font-size: 15.5px; line-height: 1.6; color: var(--muted); }
.prose strong { color: var(--ink); font-weight: 500; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.page-lead { font-size: 19px; line-height: 1.65; color: var(--muted); max-width: 620px; margin: 0 0 56px; }
/* ---- About page ---- */
.about-hero { padding-bottom: 0; }
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.duo p { font-size: 16.5px; line-height: 1.75; color: var(--muted); margin: 0; }
.layers4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; margin-bottom: 72px; }
.fcards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fcard {
  padding: 32px 34px;
  background: var(--white);
  border: 1px solid var(--hairline); border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .12s ease, transform .12s ease;
}
.fcard:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.fcard-head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.avatar {
  width: 64px; height: 64px; flex: none;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  border: 1px solid var(--hairline);
  background-color: var(--surface);
  background-image:
    linear-gradient(var(--hairline) 1px, transparent 1px),
    linear-gradient(90deg, var(--hairline) 1px, transparent 1px);
  background-size: 8px 8px;
  background-position: center;
}
.avatar svg { width: 30px; height: 30px; display: block; }
.avatar-oc { color: #0F2830; }
.avatar-jk { color: #2E6F77; }
.fcard-head b { display: block; font-size: 17px; font-weight: 500; letter-spacing: -.01em; color: var(--ink); }
.fcard-head div span { display: block; font-size: 13px; color: var(--faint); margin-top: 3px; }
.fcard > p { font-size: 14.5px; line-height: 1.65; color: var(--muted); margin: 0; }
.fcard-owns {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--hairline);
}
.tagchip {
  display: inline-flex; align-items: center;
  padding: 6px 13px;
  background: var(--white); border: 1px solid var(--hairline); border-radius: 999px;
  font-size: 13px; color: var(--muted); white-space: nowrap;
}
.tagchips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 64px; }
.proof { margin-top: 96px; padding-top: 72px; border-top: 1px solid var(--hairline); }
.statstrip { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; margin-top: 56px; }
.stat {
  padding: 26px 28px;
  background: var(--white);
  border: 1px solid var(--hairline); border-radius: 16px;
  box-shadow: var(--shadow-sm);
}
.stat-n { font-size: clamp(24px, 2.4vw, 32px); font-weight: 500; letter-spacing: -.02em; color: var(--ink); line-height: 1.1; }
.stat-l { margin-top: 8px; font-size: 13px; color: var(--faint); }
.pull {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 32px); font-weight: 500;
  letter-spacing: -.02em; line-height: 1.35;
  color: var(--ink); max-width: 30ch; text-wrap: balance;
}
.cta-check strong { color: var(--ink); font-weight: 500; }
.pgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.pcard {
  padding: 30px 32px;
  background: var(--white);
  border: 1px solid var(--hairline); border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .12s ease, transform .12s ease;
}
.pcard:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.pcard .dcheck { width: 20px; height: 20px; }
.pcard-t { margin: 16px 0 8px; font-size: 17px; font-weight: 500; letter-spacing: -.015em; color: var(--ink); }
.pcard p { margin: 0; font-size: 14.5px; line-height: 1.65; color: var(--muted); }
.pcard-meta {
  display: flex; flex-direction: column; justify-content: center; gap: 10px;
  background: var(--surface); box-shadow: none;
}
.pcard-meta:hover { box-shadow: none; transform: none; }
.pcard-meta span { font-size: 14px; color: var(--muted); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .pv { grid-template-columns: 1fr; }
  .pgrid { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bcard { grid-column: span 1; min-height: 340px; }
  .bcard-lg { grid-column: span 2; min-height: 400px; }
  .bcard:last-child { grid-column: span 2; }
  /* Journey: pinning is desktop-only; below 1100 everything stacks, fully visible */
  .journey { height: auto; margin-top: 0; }
  .journey-sticky { position: static; height: auto; display: block; padding: 0 0 32px; }
  .journey-steps { margin-bottom: 44px; }
  .jstep { opacity: 1; }
  .jdot { background: var(--accent); }
  .journey-line-fill { transform: none; }
  .journey-panes { position: static; height: auto; display: flex; flex-direction: column; gap: 20px; }
  .jpane { position: static; opacity: 1; transform: none; pointer-events: auto; }
  .jpanel { height: auto; }
  .journey .memo-row, .journey .bp-tile2, .journey .feed-row, .journey .mod2 { opacity: 1; transform: none; }
}

@media (max-width: 860px) {
  .container { padding-left: 24px; padding-right: 24px; }
  .nav-link { display: none; }
  .hero { padding-top: 56px; padding-bottom: 80px; }
  .hero-title { margin-bottom: 36px; }
  .hero-row { grid-template-columns: 1fr; gap: 28px; margin-bottom: 48px; }
  .ha-kpis { grid-template-columns: 1fr 1fr; }
  .ha-kpi { border-bottom: 1px solid var(--hairline); }
  .ha-kpi:nth-child(even) { border-right: 0; }
  .ha-kpi:nth-last-child(-n+2) { border-bottom: 0; }
  .ha-grid { grid-template-columns: 1fr; }
  .ha-col { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .ha-col:last-child { border-bottom: 0; }
  .ticker-head { padding: 0 14px 0 24px; }
  .tick { height: 50px; font-size: 12.5px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; padding: 48px 0 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .duo { grid-template-columns: 1fr; gap: 20px; }
  .layers4 { grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 48px; }
  .fcards { grid-template-columns: 1fr; }
  .proof { margin-top: 64px; padding-top: 48px; }
  .statstrip { grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 40px; }
  .pgrid { grid-template-columns: 1fr; gap: 16px; }
  .site-footer { border-radius: 20px 20px 0 0; }
  .section { padding-top: 110px; padding-bottom: 110px; }
  .band-inner { padding-top: 100px; padding-bottom: 100px; }
  .band-inner-top { padding-top: 100px; }
  .band .h2 { margin-bottom: 56px; }
  .band .h2 + .section-lead { margin-top: -20px; margin-bottom: 56px; }
  .section-lead { margin-bottom: 56px; }
  .pv-panel { padding: 22px 20px 22px; }
  .pv-header { margin-bottom: 26px; }
  .slabel { font-size: 10.5px; max-width: 62px; }
  .pv-break { margin: 24px 0; }
  /* Flowboard stacks; connectors and loop are desktop-only */
  .flowboard { padding: 24px 20px 0; margin-bottom: 56px; }
  .flow-svg, .flow-loop-label { display: none; }
  .flow-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .flow-foot { margin: 0 -20px; padding: 16px 20px 18px; }
  .layers3 { grid-template-columns: 1fr; gap: 28px; }
  .memo-row { grid-template-columns: minmax(0, 1fr) 56px; row-gap: 3px; }
  .memo-note { grid-column: 1 / -1; grid-row: 2; }
  .wwb-rows { gap: 64px; margin-bottom: 64px; }
  .wwb-row { grid-template-columns: 1fr; gap: 26px; align-items: start; }
  .wwb-row-flip .wwb-copy, .wwb-row-flip .wwb-panel { grid-column: auto; grid-row: auto; }
  .wwb-copy { max-width: none; }
  .wwb-panel, .wwb-row-flip .wwb-panel { max-width: none; justify-self: stretch; }
  .wwb-closer {
    flex-direction: column; align-items: flex-start; gap: 22px;
    padding: 28px 24px; border-radius: 16px;
  }
  .wwb-closer-t { font-size: 22px; }
  .ha-chrome { flex-wrap: wrap; row-gap: 6px; }
  .ha-built { display: none; }
  .section-actions { margin-bottom: 48px; gap: 12px; }
  .section-actions .btn-lg, .section-actions .btn-ghost { height: 48px; padding: 0 20px; font-size: 15px; }
  .bento { grid-template-columns: 1fr; gap: 16px; }
  .bcard, .bcard-lg, .bcard:last-child { grid-column: span 1; min-height: 0; padding: 26px 24px 0; }
  .bh, .bcard-lg .bh { font-size: 15px; margin-bottom: 22px; }
  .bh span, .bcard-lg .bh span { font-size: 22px; margin-bottom: 8px; }
  .bviz { margin-top: 24px; }
  /* Duel: spine collapses, dimension labels move inside the cells */
  .duel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dspine { display: none; }
  .us-card { width: 50%; top: -12px; bottom: -12px; }
  .dvs { display: none; }
  .dcell { padding: 18px 16px; font-size: 14.5px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .dus { padding-left: 20px; padding-right: 16px; flex-direction: row; flex-wrap: wrap; gap: 8px; align-items: flex-start; }
  .dcell[data-dim]::before {
    content: attr(data-dim);
    display: block; width: 100%;
    font-size: 12.5px; color: var(--faint);
  }
  .dhead { min-height: 96px; }
  .duel-top { margin-bottom: 32px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .dhead-them { grid-column: auto; }
  .duel-punch { font-size: 17px; max-width: none; }
  .seg { flex: none; }
  .seg-btn { height: 38px; padding: 0 14px; font-size: 13px; }
  .brand .mark, .dname-us .mark { width: 24px; height: 24px; }
  .split-head { grid-template-columns: 1fr; gap: 24px; align-items: start; margin-bottom: 48px; }
  .split-lead { justify-self: start; margin-bottom: 0; }
  .marquees { gap: 12px; }
  .marquee {
    -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  }
  .mq-group { gap: 10px; padding-right: 10px; }
  .mq-chip { height: 52px; padding: 0 20px; gap: 10px; font-size: 14px; }
  .mq-chip img { height: 20px; max-width: 72px; }
  .mq-chip-wordmark img { height: 16px; max-width: 88px; }
  .integrations-note { margin-top: 40px; }
  .cta-close { padding: 56px 22px; border-radius: 20px; }
  .h2-cta { margin-bottom: 28px; }
  .cta-lead { margin-bottom: 36px; font-size: 17px; }

  /* Journey small-screen tweaks (stacking rules live in the 1100px block) */
  .jtitle { font-size: 22px; }
  .jpanel-body { padding: 18px 18px 18px; }
  .jbody { margin-left: 0; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .jstep { opacity: 1; }
  .jdot { background: var(--accent); }
  .journey-line-fill { transform: none; }
  .jpane { opacity: 1; transform: none; position: static; }
  .journey { height: auto; margin-top: 0; }
  .journey-sticky { position: static; height: auto; }
  .journey-panes { height: auto; display: flex; flex-direction: column; gap: 20px; }
  .jpanel { height: auto; }
  .journey .memo-row, .journey .bp-tile2, .journey .feed-row, .journey .mod2 { opacity: 1; transform: none; }
  .flow-svg path { animation: none !important; }
  .pv .station { opacity: 1 !important; transform: none !important; }
  .pv .track::before { transform: none !important; }
  .track-pulse { display: none; }
  /* Marquees become a static, centered logo wall */
  .mq-track { animation: none !important; width: auto !important; }
  .mq-group { flex-wrap: wrap; justify-content: center; padding: 0 24px; }
  .mq-group[aria-hidden="true"] { display: none; }
  .marquee { -webkit-mask-image: none; mask-image: none; }
  /* Ticker stays a single static strip */
  .ticker .mq-group { flex-wrap: nowrap; justify-content: flex-start; padding: 0 48px 0 0; }
}
