/* ==========================================================================
   HyperOrbit marketing site
   Tokens follow the HyperOrbit design system (warm neutrals, one hot gradient).
   ========================================================================== */

:root {
  --ho-orange: #F4622A;
  --ho-orange-deep: #D14E1C;
  --ho-orange-ink: #C1481B;
  --ho-pink: #E8336A;
  --ho-gold: #E8B44A;
  --ho-violet: #7C4DD6;
  --ho-green: #2E8A6D;
  --gradient-brand: linear-gradient(140deg, #F4622A, #E8336A);
  --gradient-dark: radial-gradient(130% 120% at 22% -20%, #3A2529, #140C0E);

  --canvas: #FAF8F7;
  --white: #FFFFFF;
  --wash: #F6F1EF;
  --hover: #FBF7F5;
  --hairline: #E6DFDD;
  --hairline-soft: #EFE9E7;
  --tick: #D9CFCC;
  --border-strong: #C9BEC0;
  --ink: #1A1113;
  --ink-2: #2A1F1D;
  --body: #5F5350;
  --dim: #8C7F7C;
  --faint: #B8AAA7;

  --dark-bg: #140C0E;
  --dark-fg: #FAF8F7;
  --dark-fg-68: rgba(250,248,247,.68);
  --dark-fg-62: rgba(250,248,247,.62);
  --dark-line: rgba(250,248,247,.12);

  --font-display: 'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'Geist Mono', 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
  --font: var(--font-sans);
  --ease: cubic-bezier(.22,.61,.36,1);
  --shadow-card: 0 10px 30px -24px rgba(26,17,19,.55);
  --shadow-cta: 0 8px 20px -8px rgba(232,51,106,.7);

  --page-max: 1200px;
  --pad-x: 40px;
  --box-pad-x: 44px;
}

/* ---- base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  font-feature-settings: 'cv11', 'ss01';
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, p, ul, figure, blockquote { margin: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; text-wrap: pretty; }
ul { padding: 0; list-style: none; }
a { color: var(--ho-orange); text-decoration: none; }
a:hover { color: var(--ho-orange-deep); }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
input { font: inherit; }
::selection { background: #F9D7C6; }
:focus-visible { outline: 2px solid var(--ho-orange); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ---- keyframes ---- */
@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes orbitSpinBack { to { transform: rotate(-360deg); } }
@keyframes beaconPing { 0% { transform: scale(1); opacity: .55; } 100% { transform: scale(2.6); opacity: 0; } }
@keyframes scanSweep { 0% { transform: translateY(-14px); opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { transform: translateY(150px); opacity: 0; } }
@keyframes rowWake { 0%, 72%, 100% { background: #EFE9E7; } 26%, 46% { background: #F4622A; } }
@keyframes clusterDrift { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(var(--dx,3px), var(--dy,-3px)); } }
@keyframes barFill { 0% { width: 0; } 100% { width: var(--w, 68%); } }
@keyframes valueRise { 0% { opacity: 0; transform: translateY(6px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes shotSwap { 0% { opacity: .55; } 100% { opacity: 1; } }

/* ---- layout primitives ---- */
.container { max-width: var(--page-max); margin: 0 auto; padding: 0 var(--pad-x); position: relative; }

.box { border: 1px solid var(--hairline); }
.box--open { border-top: none; }
.box--no-bottom { border-bottom: none; }
.box--white { background: var(--white); }

.frame { position: relative; border: 1px solid var(--hairline); }
.frame { --tick-color: var(--tick); }
.frame--dark { border-color: rgba(250,248,247,.10); --tick-color: rgba(250,248,247,.32); }
.frame--center { text-align: center; }
.frame--center .h2, .frame--center .lede { margin-left: auto; margin-right: auto; }
.frame--open { border-top: none; }
/* four corner ticks via two pseudo-elements + a gradient trick */
.frame::before, .frame::after {
  content: ""; position: absolute; width: 11px; height: 11px; pointer-events: none;
}
.frame::before { left: 12px; top: 12px; border-left: 1px solid var(--tick-color); border-top: 1px solid var(--tick-color); }
.frame::after { right: 12px; bottom: 12px; border-right: 1px solid var(--tick-color); border-bottom: 1px solid var(--tick-color); }
.frame {
  background-image:
    linear-gradient(var(--tick-color), var(--tick-color)),
    linear-gradient(var(--tick-color), var(--tick-color)),
    linear-gradient(var(--tick-color), var(--tick-color)),
    linear-gradient(var(--tick-color), var(--tick-color));
  background-repeat: no-repeat;
  background-size: 11px 1px, 1px 11px, 11px 1px, 1px 11px;
  background-position: right 12px top 12px, right 12px top 12px, left 12px bottom 12px, left 12px bottom 12px;
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); }
.card { padding: 26px 26px 30px; background: var(--white); border-right: 1px solid var(--hairline-soft); }
.grid-3 > .card:last-child { border-right: none; }

/* ---- type ---- */
.kicker { font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--ho-orange); margin-bottom: 16px; }
.kicker--gold { font-size: 10.5px; color: var(--ho-gold); margin-bottom: 22px; }
.label { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); }
.h2 { font-size: 36px; line-height: 1.12; letter-spacing: -0.03em; margin-bottom: 12px; }
.h2--lg { font-size: 40px; line-height: 1.1; letter-spacing: -0.032em; margin-bottom: 14px; }
.h2--sm { font-size: 30px; letter-spacing: -0.025em; margin-bottom: 0; }
.lede { font-size: 14px; line-height: 1.65; color: var(--body); max-width: 520px; }
.lede--center { margin-left: auto; margin-right: auto; max-width: 560px; font-size: 13.5px; line-height: 1.7; }
.section-head { padding: 56px var(--box-pad-x) 40px; }
.section-head--center { text-align: center; }
.section-head--center .h2 { margin-left: auto; margin-right: auto; }
.section-head--tall { padding-top: 60px; padding-bottom: 44px; border-bottom: none; }
.section-head--tight { padding-top: 54px; padding-bottom: 34px; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-weight: 500; font-size: 13.5px; padding: 13px 20px; border-radius: 9px;
  white-space: nowrap; transition: filter .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.btn--primary { background: var(--gradient-brand); color: #FFF; box-shadow: var(--shadow-cta); }
.btn--primary:hover { color: #FFF; filter: brightness(1.06); }
.btn--ghost { background: rgba(250,248,247,.07); border: 1px solid rgba(250,248,247,.18); color: var(--dark-fg); }
.btn--ghost:hover { background: rgba(250,248,247,.12); color: var(--dark-fg); }
.btn--secondary { background: var(--canvas); border: 1px solid var(--hairline); color: var(--ink); gap: 9px; }
.btn--secondary:hover { background: var(--wash); border-color: var(--border-strong); color: var(--ink); }
.btn--dark { background: var(--ink); color: var(--dark-fg); gap: 9px; }
.btn--dark:hover { background: #2A1D20; color: var(--dark-fg); }
.btn--sm { font-size: 12.5px; padding: 9px 16px; border-radius: 8px; }
.btn--secondary.btn--sm { padding: 9px 15px; }
.btn--dark.btn--sm { padding: 10px 18px; }
.btn--md { font-size: 13px; padding: 11px 18px; gap: 9px; }
.btn--lg { padding: 13px 22px; }
.btn__arrow { flex: none; }

.iconbtn {
  width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--hairline); background: var(--canvas);
  display: inline-flex; align-items: center; justify-content: center; color: var(--body);
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.iconbtn:hover { background: var(--wash); border-color: var(--border-strong); }

.chip {
  display: inline-flex; align-items: center; gap: 6px; font-weight: 500; font-size: 11px; padding: 3px 9px; border-radius: 999px;
  color: var(--tint); background: color-mix(in srgb, var(--tint) 8%, transparent);
}

/* ---- beacons ---- */
.beta {
  display: inline-block; vertical-align: 2px; margin-left: 4px; padding: 2px 6px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 8px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; line-height: 1.2;
  color: #8A6A1F; background: #FBF5E9; border: 1px solid #F0E2C2;
}
.scene .beta, .nav .beta, .tab .beta { color: var(--ho-gold); background: rgba(232,180,74,.12); border-color: rgba(232,180,74,.35); }
.agtab__btn .beta { vertical-align: 1px; }

.beacon { position: relative; width: 6px; height: 6px; flex: none; display: inline-block; }
.beacon::before, .beacon::after { content: ""; position: absolute; inset: 0; border-radius: 999px; background: currentColor; }
.beacon::after { animation: beaconPing 2.6s ease-out infinite; }
.beacon--white { color: #FFF; }
.beacon--green { color: var(--ho-green); width: 5px; height: 5px; }

/* ==========================================================================
   Banner
   ========================================================================== */
.banner {
  background: var(--gradient-brand); color: #FFF;
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
  padding: 10px 48px; position: relative; font-size: 12.5px;
}
.banner[hidden] { display: none; }
.banner__tag { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .16em; }
.banner__text { opacity: .92; }
.banner__link { font-weight: 500; color: #FFF; text-decoration: underline; text-decoration-color: rgba(255,255,255,.45); text-underline-offset: 3px; }
.banner__link:hover { color: #FFF; text-decoration-color: #FFF; }
.banner__close {
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  color: var(--dark-fg); padding: 4px; display: flex; opacity: .5; transition: opacity .2s;
}
.banner__close:hover { opacity: 1; }

/* ==========================================================================
   Dark scenes + orbit motif
   ========================================================================== */
.scene { background: var(--gradient-dark); color: var(--dark-fg); position: relative; overflow: hidden; }

.orbit { position: absolute; pointer-events: none; }
.orbit--hero { right: -160px; top: 40px; width: 620px; height: 620px; opacity: .5; }
.orbit--cta { left: 50%; top: 50%; width: 520px; height: 520px; margin: -260px 0 0 -260px; opacity: .35; }
.orbit__ring { position: absolute; border-radius: 999px; border: 1px dashed; }
.orbit__ring--outer { inset: 0; border-color: rgba(232,180,74,.35); animation: orbitSpin 70s linear infinite; }
.orbit__ring--mid { inset: 80px; border-color: rgba(232,51,106,.32); animation: orbitSpinBack 44s linear infinite; }
.orbit__ring--mid2 { inset: 90px; border-color: rgba(232,51,106,.34); animation: orbitSpinBack 40s linear infinite; }
.orbit__ring--inner { inset: 170px; border-color: rgba(244,98,42,.28); animation: orbitSpin 26s linear infinite; }
.orbit__core {
  position: absolute; left: 50%; top: 50%; width: 74px; height: 74px; margin: -37px 0 0 -37px;
  border-radius: 999px; background: var(--gradient-brand); filter: blur(1px); opacity: .85;
}
.orbit__track { position: absolute; }
.orbit__track--outer { inset: 0; animation: orbitSpin 18s linear infinite; }
.orbit__track--outer2 { inset: 0; animation: orbitSpin 16s linear infinite; }
.orbit__track--mid { inset: 80px; animation: orbitSpinBack 14s linear infinite; }
.orbit__moon { position: absolute; border-radius: 999px; }
.orbit__moon--gold { left: 50%; top: -3px; width: 6px; height: 6px; background: var(--ho-gold); }
.orbit__moon--pink { left: -3px; top: 50%; width: 5px; height: 5px; background: var(--ho-pink); }

/* ==========================================================================
   Nav
   ========================================================================== */
.nav { display: flex; align-items: center; gap: 34px; height: 66px; color: var(--dark-fg); position: relative; z-index: 5; }
.nav__brand img { height: 19px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 34px; flex: 1; }
.nav__links { display: flex; align-items: center; gap: 22px; font-size: 13px; font-weight: 500; }
.nav__links a { color: var(--dark-fg-68); transition: color .2s; }
.nav__links a:hover { color: var(--dark-fg); }
.nav__actions { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.nav__signin { font-size: 13px; font-weight: 500; color: var(--dark-fg-68); }
.nav__signin:hover { color: var(--dark-fg); }
.nav__toggle { display: none; margin-left: auto; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav__toggle span { display: block; width: 18px; height: 1.5px; background: var(--dark-fg); transition: transform .2s var(--ease), opacity .2s; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { padding: 64px var(--box-pad-x) 48px; }
.hero__title { font-size: 58px; line-height: 1.05; letter-spacing: -0.035em; color: var(--dark-fg); margin-bottom: 24px; max-width: 860px; }
.hero__lede { font-size: 14.5px; line-height: 1.65; color: var(--dark-fg-62); max-width: 560px; margin-bottom: 32px; }
.hero__cta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.hero__modes { font-family: var(--font-mono); font-size: 10px; color: rgba(250,248,247,.42); letter-spacing: .08em; }

.tabs { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line); }
.tab {
  display: flex; align-items: center; justify-content: center; gap: 10px; padding: 17px 10px; font-size: 14px;
  border-right: 1px solid var(--dark-line); color: rgba(250,248,247,.78); transition: background .22s var(--ease), color .22s var(--ease);
}
.tab:first-child { border-left: 1px solid var(--dark-line); }
.tab:hover { background: rgba(250,248,247,.05); }
.tab.is-active { background: rgba(250,248,247,.09); color: #FFF; }
.tab__dot { width: 7px; height: 7px; border-radius: 999px; flex: none; }
.tab__name { font-weight: 500; }
.tab__surface { font-size: 12.5px; opacity: .72; }
.tab { position: relative; }
.tab__bar { position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--gradient-bar, linear-gradient(90deg, #F4622A, #E8336A)); transform: scaleX(0); transform-origin: left; opacity: 0; }
.tab.is-active .tab__bar { opacity: 1; animation: tabProgress var(--tab-dur, 6s) linear forwards; }
.tabs:hover .tab__bar, .tabs.is-paused .tab__bar { animation-play-state: paused; }
.tabs.is-still .tab.is-active .tab__bar { animation: none; transform: scaleX(1); }
@keyframes tabProgress { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.shot-well { padding: 36px 36px 0; position: relative; border: 1px solid rgba(250,248,247,.14); border-bottom: none; overflow: hidden; }
.shot-well__glow {
  position: absolute; left: -22%; right: -22%; top: -150px; height: 520px; pointer-events: none;
  background: radial-gradient(65% 100% at 50% 58%, rgba(244,98,42,.62), rgba(232,51,106,.34) 42%, rgba(232,51,106,.12) 66%, transparent 82%);
  filter: blur(64px);
}
.shot-well__grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .16; background-size: 200px 200px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='4' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}
.shot {
  position: relative; aspect-ratio: 16 / 7; border: 1px solid rgba(250,248,247,.32); border-radius: 16px 16px 0 0; border-bottom: none;
  box-shadow: 0 -24px 60px -30px rgba(0,0,0,.7); background: var(--canvas) center top / 100% auto no-repeat;
}
.shot.is-swapping { animation: shotSwap .35s var(--ease); }

/* ==========================================================================
   Trusted by
   ========================================================================== */
.trusted { padding: 48px var(--box-pad-x) 40px; }
.logos { position: relative; border-bottom: none; }
.logos__pill {
  font-weight: 500;
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -50%); z-index: 1;
  background: var(--wash); border: 1px solid var(--hairline); border-radius: 8px; padding: 6px 14px; font-size: 12px; color: var(--ink-2);
}
.logos__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.logos__cell {
  display: flex; align-items: center; justify-content: center; gap: 9px; padding: 22px 16px;
  font-family: var(--font-display); font-weight: 400; font-size: 19px; letter-spacing: -0.015em; color: #000; transition: background .18s var(--ease);
  border-right: 1px solid var(--hairline-soft); border-top: 1px solid var(--hairline-soft);
}
.logos__cell:nth-child(3n) { border-right: none; }
.logos__cell:nth-child(-n+3) { border-top: none; }
.logos__cell:hover { background: var(--hover); }
.logos__mark { width: 28px; height: 28px; object-fit: contain; border-radius: 6px; flex: none; }
.logos__mark--wide { width: auto; height: 18px; border-radius: 0; }

/* ==========================================================================
   The problem
   ========================================================================== */
.problem__scene { position: relative; height: 380px; overflow: hidden; }
.problem__radar { position: absolute; inset: 0; width: 100%; height: 100%; }
.problem__rings { transform-box: fill-box; transform-origin: center; animation: orbitSpin 120s linear infinite; }
.src { position: absolute; left: var(--x); top: var(--y); transform: translate(-50%, -50%); z-index: 2; }
.src__tile { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: var(--white); border: 1px solid var(--hairline); box-shadow: var(--shadow-card); opacity: .42; filter: grayscale(.6); transition: opacity .35s var(--ease), filter .35s var(--ease), border-color .35s, box-shadow .35s, transform .35s var(--ease); }
.src__tile img { width: 22px; height: 22px; object-fit: contain; display: block; }
.src__pop { position: absolute; width: max-content; max-width: 210px; padding: 8px 11px 9px; border-radius: 10px; background: var(--white); border: 1px solid #F3CBD8; box-shadow: 0 10px 26px -14px rgba(232,51,106,.45), var(--shadow-card); display: flex; flex-direction: column; gap: 3px; opacity: 0; transform: translateY(4px) scale(.96); transition: opacity .3s var(--ease), transform .3s var(--ease); pointer-events: none; z-index: 3; }
.src__pop::before { content: ""; position: absolute; width: 8px; height: 8px; background: var(--white); border-left: 1px solid #F3CBD8; border-top: 1px solid #F3CBD8; transform: rotate(-45deg); }
.src__pop { left: 50%; transform: translate(-50%, 4px) scale(.96); }
.src--below .src__pop { top: 54px; } .src--below .src__pop::before { top: -5px; left: 50%; margin-left: -4px; transform: rotate(45deg); }
.src--above .src__pop { bottom: 54px; } .src--above .src__pop::before { bottom: -5px; left: 50%; margin-left: -4px; transform: rotate(-135deg); }
.src--hot .src__tile { opacity: 1; filter: none; border-color: #F3CBD8; box-shadow: 0 0 0 4px rgba(232,51,106,.10), var(--shadow-card); transform: scale(1.06); }
.src--pop .src__pop { opacity: 1; transform: translate(-50%, 0) scale(1); }
.src__kind { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .12em; color: #B01C4F; }
.src__sig { font-size: 12px; line-height: 1.4; color: var(--ink); }
.pmark { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; }
.pmark__icon { position: relative; width: 44px; height: 44px; border-radius: 999px; background: var(--white); border: 1px solid var(--hairline); color: #B01C4F; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-card); }
.pmark__logo { position: relative; width: 66px; height: 66px; max-width: none; display: block; flex: none; }
.pmark__icon .beacon::after { opacity: .35; }
.pmark__icon .beacon { position: absolute; inset: 0; width: auto; height: auto; }
.pmark__icon .beacon::before { display: none; }
.pmark__icon .beacon::after { background: #E8336A; }
.beacon--pink { color: var(--ho-pink); }
.pmark__title { transition: opacity .25s; font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: -0.02em; color: var(--ink); margin-top: 4px; }
.pmark__meta { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .12em; color: var(--dim); }
.problem__strip { display: flex; justify-content: space-between; gap: 24px; padding: 14px var(--box-pad-x); font-size: 12.5px; color: var(--body); background: var(--canvas); }
.problem__strip b { font-family: var(--font-mono); font-weight: 500; font-size: 10px; letter-spacing: .14em; color: var(--ink); }
@media (max-width: 900px) {
  .problem__scene { height: auto; padding: 24px var(--box-pad-x) 26px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
  .problem__radar { height: 100%; opacity: .6; }
  .problem__sweep { display: none; }
  .src { position: static; transform: none; }
  .src__tile { opacity: 1; filter: none; }
  .src__pop { display: none; }
  .pmark { position: static; transform: none; width: 100%; padding-bottom: 10px; }
  .problem__strip { flex-direction: column; gap: 8px; }
}

/* ==========================================================================
   Steps (01)
   ========================================================================== */
.step__meta { display: flex; align-items: center; gap: 9px; margin-bottom: 16px; }
.step__num { font-family: var(--font-mono); font-size: 10px; color: var(--dim); }
.step__title { font-size: 20px; line-height: 1.2; letter-spacing: -0.025em; margin-bottom: 8px; min-height: 50px; }
.step__body { font-size: 13.5px; line-height: 1.6; color: var(--body); margin-bottom: 24px; min-height: 62px; }
.art { position: relative; height: 170px; border-radius: 13px; border: 1px solid var(--hairline-soft); background: var(--canvas); overflow: hidden; }

/* chorus art */
.art__halo { position: absolute; width: 52px; height: 52px; margin: -26px 0 0 -26px; border-radius: 999px; }
.art__dot { position: absolute; width: 6px; height: 6px; margin: -3px 0 0 -3px; border-radius: 999px; opacity: .85; animation: clusterDrift var(--dur, 6s) ease-in-out infinite; }
.art__tag { position: absolute; transform: translateX(-50%); white-space: nowrap; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .06em; color: #000; }
/* recon art */
.art__rows { position: absolute; left: 20px; right: 20px; top: 22px; display: flex; flex-direction: column; gap: 12px; }
.art__row { display: flex; align-items: center; gap: 8px; }
.art__row i { width: 5px; height: 5px; border-radius: 999px; background: var(--hairline-soft); flex: none; animation: rowWake 4.6s linear infinite; }
.art__row b { height: 4px; border-radius: 999px; background: #EDE6E3; }
.art__scan {
  position: absolute; left: 0; right: 0; top: 14px; height: 26px;
  background: linear-gradient(180deg, rgba(244,98,42,0), rgba(244,98,42,.16)); border-bottom: 1px solid rgba(244,98,42,.5);
  animation: scanSweep 4.6s linear infinite;
}
.art__stamp { position: absolute; right: 14px; bottom: 10px; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .08em; color: #000; }
/* atlas art */
.art__bars { position: absolute; inset: 0; padding: 20px 20px 16px; display: flex; flex-direction: column; gap: 12px; }
.art__bar { display: flex; flex-direction: column; gap: 5px; }
.art__bar-head { display: flex; justify-content: space-between; align-items: baseline; font-size: 11.5px; font-weight: 500; color: #000; }
.art__bar-val { font-family: var(--font-mono); font-size: 11.5px; animation: valueRise .5s ease-out both; }
.art__track { position: relative; height: 5px; border-radius: 999px; background: var(--hairline-soft); overflow: hidden; }
.art__fill { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 999px; animation: barFill 1.1s var(--ease) both; }
.art__conf { margin-top: auto; display: flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .08em; color: #000; }
.art__conf .beacon { color: var(--ho-violet); width: 5px; height: 5px; }

/* ==========================================================================
   How it works (02)
   ========================================================================== */
.hiw { position: relative; }
.hiw__num { font-family: var(--font-mono); font-size: 12px; font-weight: 500; color: var(--tint); letter-spacing: .04em; }
.hiw-art { display: flex; align-items: center; justify-content: center; }
.hiw-art__svg { width: 100%; height: 100%; display: block; }
.hiw__arrow {
  position: absolute; top: 50%; width: 26px; height: 26px; margin: -13px 0 0 -13px; border-radius: 999px; z-index: 1;
  background: var(--canvas); border: 1px solid var(--hairline); color: var(--body);
  display: flex; align-items: center; justify-content: center;
}
.hiw__arrow--1 { left: 33.333%; }
.hiw__arrow--2 { left: 66.667%; }
.hiw__layer {
  display: flex; align-items: center; gap: 22px; padding: 16px var(--box-pad-x);
  background: repeating-linear-gradient(90deg, transparent 0 6px, var(--hairline-soft) 6px 7px) top / 100% 1px no-repeat, var(--white);
  border-top: none;
}
.hiw__layer-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; color: var(--ink); white-space: nowrap; }
.hiw__layer-text { font-size: 13px; color: var(--body); }
@media (max-width: 900px) {
  .hiw__arrow { display: none; }
  .hiw__layer { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ==========================================================================
   The agents (03) — tabbed surfaces
   ========================================================================== */
.agtabs { position: relative; }
.agtabs__bar { display: grid; grid-template-columns: repeat(5, 1fr); border-bottom: 1px solid var(--hairline); background: var(--canvas); }
.agtab__btn {
  display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 10px; min-height: 52px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--dim);
  border-right: 1px solid var(--hairline-soft); transition: background .18s var(--ease), color .18s var(--ease);
}
.agtab__btn:last-child { border-right: none; }
.agtab__btn:hover { background: var(--hover); color: var(--ink); }
.agtab__btn.is-active { background: #F1EBE9; color: var(--ink); }
.agtab__btn:focus-visible { outline: 2px solid var(--ho-orange); outline-offset: -2px; border-radius: 0; }
.agtab__dot { width: 7px; height: 7px; border-radius: 999px; background: var(--tint); flex: none; opacity: .55; }
.agtab__btn.is-active .agtab__dot { opacity: 1; }
.agtab__sub, .agtab__chev { display: none; }
.agtab__panel { animation: agfade .18s var(--ease); }
@keyframes agfade { from { opacity: 0; } to { opacity: 1; } }
.agpanel__intro { padding: 40px var(--box-pad-x) 30px; }
.agpanel__title { font-size: 26px; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 10px; }
.agpanel__lede { font-size: 14px; line-height: 1.65; color: var(--body); max-width: 600px; }
.agpanel__caption { font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; color: var(--ho-gold-ink, #8A6A1F); margin-top: 14px; }
.agpanel__steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--hairline-soft); }
.agpanel__steps > .card:last-child { border-right: none; }
.agstep .step__title { font-size: 18px; min-height: 0; margin-bottom: 8px; }
.agstep .step__body { min-height: 62px; }

@media (min-width: 641px) and (max-width: 900px) {
  .agtabs__bar { display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .agtabs__bar::-webkit-scrollbar { display: none; }
  .agtab__btn { flex: none; white-space: nowrap; padding: 15px 18px; }
  .agpanel__steps { grid-template-columns: 1fr 1fr; }
  .agpanel__steps > .card { border-right: 1px solid var(--hairline-soft); border-bottom: 1px solid var(--hairline-soft); }
  .agpanel__steps > .card:nth-child(2) { border-right: none; }
  .agpanel__steps > .card:nth-child(3) { grid-column: 1 / -1; border-right: none; border-bottom: none; }
  .agstep .step__body { min-height: 0; }
}
@media (max-width: 640px) {
  /* accordion: interleave each header with its panel via grid order */
  .agtabs { display: grid; grid-template-columns: 1fr; }
  .agtabs__bar { display: contents; }
  .agtab__btn:nth-child(1) { order: 1; } .agtab__panel:nth-child(2) { order: 2; }
  .agtab__btn:nth-child(2) { order: 3; } .agtab__panel:nth-child(3) { order: 4; }
  .agtab__btn:nth-child(3) { order: 5; } .agtab__panel:nth-child(4) { order: 6; }
  .agtab__btn:nth-child(4) { order: 7; } .agtab__panel:nth-child(5) { order: 8; }
  .agtab__btn:nth-child(5) { order: 9; } .agtab__panel:nth-child(6) { order: 10; }
  .agtab__panel { border-top: 1px solid var(--hairline-soft); border-bottom: 1px solid var(--hairline-soft); }
  .agtab__btn { border-top: 1px solid var(--hairline-soft); }
  .agtab__btn:first-child { border-top: none; }
  .agtab__btn {
    width: 100%; justify-content: flex-start; padding: 16px var(--box-pad-x); border-right: none; border-top: 1px solid var(--hairline-soft);
    text-transform: none; letter-spacing: 0; font-family: var(--font-sans); font-size: 15px; font-weight: 500; color: var(--ink);
  }
  .agtab__sub { display: inline; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); margin-left: 2px; }
  .agtab__chev { display: block; margin-left: auto; color: var(--dim); transition: transform .18s var(--ease); }
  .agtab__btn.is-active { background: var(--wash); }
  .agtab__btn.is-active .agtab__chev { transform: rotate(180deg); }
  .agpanel__intro { padding-top: 24px; padding-bottom: 20px; }
  .agpanel__title { font-size: 22px; }
  .agpanel__steps { grid-template-columns: 1fr; }
  .agstep .step__body { min-height: 0; }
}

/* ==========================================================================
   Why teams run it (04) — 3 × 2 grid, one emphasised cell
   ========================================================================== */
.why { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--white); }
.why__cell { display: flex; flex-direction: column; padding: 26px 26px 28px; border-right: 1px solid var(--hairline-soft); border-bottom: 1px solid var(--hairline-soft); }
.why__cell:nth-child(3n) { border-right: none; }
.why__cell:nth-last-child(-n+3) { border-bottom: none; }
.why__cell--hot { background: rgba(244,98,42,.04); }
.why__icon {
  width: 36px; height: 36px; border-radius: 12px; background: #FDF1EC; border: 1px solid #F3D9CE;
  display: flex; align-items: center; justify-content: center; color: var(--ho-orange-ink); margin-bottom: 22px; flex: none;
}
.why__title { font-size: 18px; letter-spacing: -0.02em; margin-bottom: 8px; }
.why__body { font-size: 13.5px; line-height: 1.6; color: var(--body); }
.evidence {
  margin-top: auto; padding-top: 18px; display: flex; flex-direction: column; gap: 4px;
}
.evidence__label, .evidence__value { font-family: var(--font-mono); font-size: 10px; letter-spacing: .06em; line-height: 1.5; }
.evidence__label { color: var(--body); }
.evidence__value { display: inline-block; align-self: flex-start; color: var(--ho-orange-ink); background: var(--white); border: 1px solid #F3D9CE; border-radius: 6px; padding: 4px 8px; margin-top: 4px; }

/* ==========================================================================
   Integrations (04)
   ========================================================================== */
.connectors { padding: 28px var(--box-pad-x) 34px; }
.connectors__bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.search {
  display: flex; align-items: center; gap: 8px; border: 1px solid var(--hairline); border-radius: 8px; padding: 7px 12px;
  font-size: 11.5px; color: var(--dim); width: 220px; background: var(--canvas); transition: border-color .2s;
}
.search:focus-within { border-color: var(--ho-orange); box-shadow: 0 0 0 3px rgba(244,98,42,.15); }
.search input { font-family: var(--font-sans); border: 0; background: none; outline: 0; width: 100%; color: var(--ink); font-size: 11.5px; }
.search input::placeholder { color: var(--dim); }
.connectors__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.tile {
  display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 13px 14px; border-radius: 13px;
  background: var(--canvas); border: 1px solid var(--hairline); cursor: default; transition: background .22s var(--ease);
}
.tile:hover { background: var(--wash); }
.tile.is-on { border-color: #F3D9CE; }
.tile__id { display: flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 500; }
.tile__mark { width: 18px; height: 18px; border-radius: 4px; object-fit: contain; }
.tile__status { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }
.tile.is-on .tile__status { color: var(--ho-orange-ink); }
.connectors__empty { font-size: 13px; color: var(--body); padding: 14px 2px; }
.connectors__foot { display: flex; justify-content: flex-end; margin-top: 18px; }

/* ==========================================================================
   Numbers (05)
   ========================================================================== */
.trend { position: relative; height: 210px; overflow: hidden; }
.trend__chart { position: absolute; inset: 0; width: 100%; height: 100%; }
.trend__overlay { position: relative; padding: 22px var(--box-pad-x); display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.trend__legend { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .12em; color: var(--dim); text-align: right; }
.trend__legend-dim { margin-top: 5px; color: var(--faint); }
.stat { padding: 24px 26px 28px; border-right: 1px solid var(--hairline-soft); background: var(--white); }
.stats > .stat:last-child { border-right: none; }
.stat__row { display: flex; align-items: flex-start; gap: 7px; }
.stat__value { font-family: var(--font-display); font-weight: 600; font-size: 31px; line-height: 1; letter-spacing: -0.03em; }
.stat__value--lg { font-size: 35px; }
.stat__unit { font-family: var(--font-mono); font-size: 10px; color: var(--dim); margin-top: 5px; }
.stat__label { font-size: 12px; color: var(--body); margin-top: 7px; }

/* ==========================================================================
   Quotes (06)
   ========================================================================== */
.quotes { padding: 26px 30px 30px; display: grid; grid-template-columns: 1.45fr 1fr; gap: 14px; align-items: stretch; }
.quote { flex: 1; min-width: 0; border: 1px solid var(--hairline); border-radius: 16px; background: var(--canvas); overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column; }
.quote__body { padding: 22px 26px 26px; flex: 1; position: relative; }
.quote__mark { position: absolute; right: 22px; top: 6px; font-family: var(--font-display); font-weight: 600; font-size: 96px; line-height: 1; color: #F3D9CE; pointer-events: none; }
.quote__who { display: flex; align-items: center; gap: 11px; margin-bottom: 20px; }
.quote__avatar {
  width: 36px; height: 36px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; color: var(--body); flex: none; border: 1px solid var(--hairline); background: var(--q-tint, #FDF1EC);
}
.quote__role { display: block; font-size: 12.5px; font-weight: 500; }
.quote__meta { display: block; font-family: var(--font-mono); font-size: 10px; color: var(--dim); letter-spacing: .08em; }
.quote__text { font-family: var(--font-display); font-weight: 500; font-size: 22px; line-height: 1.38; letter-spacing: -0.025em; max-width: 560px; min-height: 92px; }
.quote__foot { border-top: 1px solid var(--hairline-soft); background: var(--white); padding: 15px 26px; display: flex; align-items: center; gap: 11px; }
.quote__metric { font-family: var(--font-display); font-weight: 600; font-size: 28px; letter-spacing: -0.035em; line-height: 1; background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.quote__metric-label { font-size: 11.5px; color: var(--body); line-height: 1.4; max-width: 180px; }
.quote__nav { margin-left: auto; display: flex; gap: 8px; }
.quote.is-swapping .quote__body, .quote.is-swapping .quote__metric, .quote.is-swapping .quote__metric-label { animation: valueRise .3s var(--ease) both; }

.qlist { display: flex; flex-direction: column; gap: 8px; }
.qrow {
  position: relative; display: flex; align-items: center; gap: 12px; width: 100%; text-align: left; padding: 13px 16px; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--hairline); background: var(--canvas); color: var(--ink); transition: background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.qrow:hover { background: var(--white); }
.qrow.is-active { background: var(--white); border-color: var(--border-strong); box-shadow: var(--shadow-card); }
.qrow__avatar { width: 32px; height: 32px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 10px; color: var(--body); border: 1px solid var(--hairline); background: var(--q-tint, #FDF1EC); flex: none; }
.qrow__who { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.qrow__role { font-size: 13px; font-weight: 500; }
.qrow__meta { font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em; color: var(--dim); }
.qrow__metric { margin-left: auto; font-family: var(--font-display); font-weight: 600; font-size: 16px; letter-spacing: -0.02em; color: var(--ink); white-space: nowrap; }
.qrow__bar { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: linear-gradient(90deg, #F4622A, #E8336A); transform: scaleX(0); transform-origin: left; opacity: 0; }
.qrow.is-active .qrow__bar { opacity: 1; animation: tabProgress var(--q-dur, 7s) linear forwards; }
.quotes:hover .qrow__bar, .quotes.is-paused .qrow__bar { animation-play-state: paused; }
.quotes.is-still .qrow.is-active .qrow__bar { animation: none; transform: scaleX(1); }

/* ==========================================================================
   Pricing (07)
   ========================================================================== */
.pricing { padding: 54px var(--box-pad-x) 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.pricing .h2 { margin-bottom: 14px; }
.pricing__note { font-size: 13.5px; line-height: 1.65; color: var(--body); max-width: 400px; }
.plan { border: 1px solid var(--hairline); border-radius: 16px; background: var(--white); padding: 24px 26px 26px; box-shadow: var(--shadow-card); }
.plan .label { margin-bottom: 14px; }
.plan__list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 22px; }
.plan__list li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink-2); }
.plan__list li::before {
  content: ""; flex: none; width: 14px; height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E8A6D' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>") center / contain no-repeat;
}
.plan__foot { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--hairline-soft); padding-top: 20px; }
.plan__hint { font-size: 11.5px; color: var(--dim); line-height: 1.5; }

/* ==========================================================================
   CTA + footer
   ========================================================================== */
.scene--cta { padding: 70px var(--box-pad-x); text-align: center; }
.cta__inner { position: relative; }
.cta__title { font-size: 44px; letter-spacing: -0.035em; color: var(--dark-fg); margin-bottom: 14px; }
.cta__lede { font-size: 13.5px; line-height: 1.7; color: var(--dark-fg-62); max-width: 440px; margin: 0 auto 28px; }

.footer { padding-bottom: 70px; }
.footer__main { padding: 40px var(--box-pad-x) 34px; display: flex; gap: 60px; }
.footer__brand { max-width: 250px; }
.footer__brand img { height: 18px; width: auto; margin-bottom: 14px; }
.footer__brand p { font-size: 12px; line-height: 1.7; color: var(--body); }
.footer__cols { margin-left: auto; display: grid; grid-template-columns: repeat(4, minmax(110px, auto)); gap: 40px; }
.footer__cols .label { margin-bottom: 14px; }
.footer__cols ul { display: flex; flex-direction: column; gap: 9px; }
.footer__cols a { font-size: 12px; font-weight: 500; color: var(--ink-2); }
.footer__cols a:hover { color: var(--ho-orange); }
.footer__bar { padding: 14px var(--box-pad-x); display: flex; align-items: center; justify-content: space-between; gap: 12px; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .1em; color: var(--dim); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .why__body { font-size: 13px; }
  .hero__title { font-size: 52px; }
  .connectors__grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  :root { --pad-x: 24px; --box-pad-x: 28px; }
  .banner { padding: 10px 44px; font-size: 12px; text-align: center; }
  .banner__link { display: none; }

  .nav__toggle { display: flex; }
  .nav__menu {
    display: none; position: absolute; left: 0; right: 0; top: 66px; flex-direction: column; align-items: stretch; gap: 0;
    background: #1B1114; border: 1px solid var(--dark-line); border-radius: 12px; padding: 10px; z-index: 20;
  }
  .nav.is-open .nav__menu { display: flex; }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .nav__links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__links a { display: block; padding: 12px 14px; font-size: 15px; border-radius: 8px; }
  .nav__links a:hover { background: rgba(250,248,247,.06); }
  .nav__actions { margin: 6px 0 0; padding: 12px 14px 6px; border-top: 1px solid var(--dark-line); justify-content: space-between; }

  .hero { padding-top: 48px; padding-bottom: 40px; }
  .hero__title { font-size: 42px; }
  .h2 { font-size: 30px; }
  .h2--lg { font-size: 33px; }
  .h2--sm { font-size: 26px; }

  .tabs { grid-template-columns: repeat(2, 1fr); }
  .tab { border-left: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line); font-size: 15px; padding: 14px 8px; }
  .tab:nth-child(2n) { border-left: none; }
  .tab:nth-child(n+3) { border-bottom: none; }
  .tab__surface { display: none; }
  .shot-well { padding: 24px 20px 0; }

  .grid-3 { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr 1fr; }
  .why__cell:nth-child(3n) { border-right: 1px solid var(--hairline-soft); }
  .why__cell:nth-child(2n) { border-right: none; }
  .why__cell:nth-last-child(-n+3) { border-bottom: 1px solid var(--hairline-soft); }
  .why__cell:nth-last-child(-n+2) { border-bottom: none; }
  .card { border-right: none; border-bottom: 1px solid var(--hairline-soft); }
  .grid-3 > .card:last-child { border-bottom: none; }
  .step__title, .step__body { min-height: 0; }

  .logos__grid { grid-template-columns: repeat(2, 1fr); }
  .logos__cell { font-size: 19px; }
  .logos__cell:nth-child(3n) { border-right: 1px solid var(--hairline-soft); }
  .logos__cell:nth-child(2n) { border-right: none; }
  .logos__cell:nth-child(-n+3) { border-top: 1px solid var(--hairline-soft); }
  .logos__cell:nth-child(-n+2) { border-top: none; }

  .connectors__grid { grid-template-columns: repeat(3, 1fr); }
  .connectors__bar { flex-direction: column; align-items: stretch; }
  .search { width: 100%; }

  .stats.grid-3 .stat { border-right: none; border-bottom: 1px solid var(--hairline-soft); }
  .stats.grid-3 .stat:last-child { border-bottom: none; }

  .quotes { grid-template-columns: 1fr; padding: 20px; }
  .quote__text { font-size: 19px; min-height: 0; }
  .quote__mark { font-size: 64px; }

  .pricing { grid-template-columns: 1fr; gap: 28px; }
  .cta__title { font-size: 32px; }

  .footer__main { flex-direction: column; gap: 32px; }
  .footer__cols { margin-left: 0; grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

@media (max-width: 560px) {
  .why { grid-template-columns: 1fr; }
  .why__cell { border-right: none !important; border-bottom: 1px solid var(--hairline-soft) !important; }
  .why__cell:last-child { border-bottom: none !important; }
  .why__cell--hot { background: rgba(244,98,42,.02); }
  :root { --pad-x: 16px; --box-pad-x: 20px; }
  .banner__tag { display: none; }
  .hero__title { font-size: 36px; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .connectors__grid { grid-template-columns: repeat(2, 1fr); }
  .tile { flex-wrap: wrap; row-gap: 4px; padding: 11px 12px; }
  .tile__id { white-space: nowrap; }
  .trend__overlay { flex-direction: column; }
  .trend__legend { text-align: left; }
  .quote__foot { flex-wrap: wrap; }
  .quote__nav { margin-left: 0; width: 100%; justify-content: flex-end; }
  .plan__foot { flex-direction: column; align-items: flex-start; }
  .footer__bar { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Nav: mega menus (Platform, Solutions, Resources)
   ========================================================================== */
.nav__item--menu { position: relative; }
.nav__submenu-btn { display: inline-flex; align-items: center; gap: 5px; font: inherit; font-weight: 500; color: var(--dark-fg-68); padding: 0; transition: color .2s; }
.nav__submenu-btn svg { transition: transform .2s var(--ease); }
.nav__item--menu:hover .nav__submenu-btn, .nav__item--menu.is-open .nav__submenu-btn, .nav__item--menu.is-current .nav__submenu-btn { color: var(--dark-fg); }
.nav__item--menu:hover .nav__submenu-btn svg, .nav__item--menu.is-open .nav__submenu-btn svg { transform: rotate(180deg); }
.nav__submenu {
  position: absolute; left: -14px; top: 100%; padding-top: 14px; z-index: 30;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.nav__submenu--wide { width: 740px; }
.nav__submenu--mid { width: 560px; }
.nav__item--menu:hover .nav__submenu, .nav__item--menu:focus-within .nav__submenu, .nav__item--menu.is-open .nav__submenu { opacity: 1; visibility: visible; transform: none; transition-delay: .08s; }
.mm {
  display: grid; gap: 1px; background: #2C1E22; border: 1px solid #332327; border-radius: 12px; overflow: hidden;
  box-shadow: 0 24px 60px -24px rgba(0,0,0,.85);
}
.mm--platform { grid-template-columns: repeat(3, 1fr); }
.mm--solutions { grid-template-columns: 236px 1fr; }
.mm--resources { grid-template-columns: repeat(3, 1fr); }
.mm--customers { grid-template-columns: 1fr 252px; }
.mm__poster {
  position: relative; overflow: hidden; padding: 16px 16px 16px; gap: 0; justify-content: flex-end; color: var(--dark-fg);
  background: radial-gradient(120% 110% at 85% -10%, #4A2A30 0%, #2B191E 45%, #1E1216 100%);
}
.mm__poster:hover { color: var(--dark-fg); }
.mm__poster::before, .mm__poster::after { content: ""; position: absolute; border-radius: 999px; border: 1px dashed; pointer-events: none; }
.mm__poster::before { width: 260px; height: 260px; right: -90px; top: -110px; border-color: rgba(232,180,74,.34); animation: orbitSpin 70s linear infinite; }
.mm__poster::after { width: 150px; height: 150px; right: -35px; top: -55px; border-color: rgba(232,51,106,.36); animation: orbitSpinBack 44s linear infinite; }
.mm__poster .mm__kicker { margin-bottom: auto; position: relative; }
.mm__poster-logo { position: absolute; right: 24px; top: 4px; width: 32px; height: 32px; filter: drop-shadow(0 6px 14px rgba(232,51,106,.45)); }
.mm__stack { position: relative; display: block; margin-top: 34px; }
.mm__stack::before, .mm__stack::after { content: ""; position: absolute; left: 0; right: 0; height: 100%; border-radius: 10px; border: 1px solid rgba(250,248,247,.10); }
.mm__stack::before { top: -16px; left: 16px; right: 16px; background: #2A1C21; }
.mm__stack::after { top: -8px; left: 8px; right: 8px; background: #31222A; }
.mm__stack-card {
  position: relative; z-index: 1; display: flex; flex-direction: column; gap: 6px; padding: 14px 14px 12px; border-radius: 10px;
  background: #1A1114; border: 1px solid rgba(250,248,247,.16); box-shadow: 0 14px 30px -18px rgba(0,0,0,.9);
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.mm__poster:hover .mm__stack-card { transform: translateY(-2px); border-color: rgba(250,248,247,.28); }
.mm__poster-stat { font-family: var(--font-display); font-weight: 600; font-size: 40px; line-height: 1; letter-spacing: -0.04em; background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mm__poster-label { font-size: 12px; line-height: 1.45; color: rgba(250,248,247,.82); }
.mm__poster .mm__byline { margin-top: 4px; }
.mm__poster .mm__more { margin-top: 6px; }
.mm__quote { padding-left: 10px; }
.mm__quote b { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; }
.mm__more--row { padding: 10px 0 2px; margin-top: auto; }
.nav__submenu--cust { width: 600px; }
.nav__item--static { position: static; }
.nav__submenu--right { left: 50%; right: auto; margin-left: -370px; }
.mm__cell { background: #1B1114; padding: 16px 16px 14px; display: flex; flex-direction: column; gap: 2px; }
.mm__cell--feature { gap: 8px; }
.mm__cell--feature .mm__more { margin-top: 14px; }
.mm__kicker { font-family: var(--font-mono); font-size: 9px; letter-spacing: .16em; color: rgba(250,248,247,.42); margin-bottom: 8px; }
.mm__h { font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: -0.02em; line-height: 1.25; color: var(--dark-fg); }
.mm__desc { font-size: 11.5px; line-height: 1.45; color: var(--dark-fg-62); }
.mm__desc--lead { margin: -4px 0 6px; }
.mm__art { width: 100%; height: auto; display: block; margin: 6px 0 4px; }
.mm__card { color: var(--dark-fg); transition: background .15s; }
.mm__card:hover { background: #20151A; color: var(--dark-fg); }
.mm__img { display: block; aspect-ratio: 16 / 10; border-radius: 8px; overflow: hidden; border: 1px solid rgba(250,248,247,.14); background: var(--canvas); margin-bottom: 12px; transition: border-color .15s; }
.mm__img img { width: 230%; max-width: none; height: auto; margin: -6% 0 0 -65%; display: block; }
.mm__card:hover .mm__img { border-color: rgba(250,248,247,.3); }
.mm__card .mm__more { margin-top: 8px; }
.mm__more { font-size: 12px; font-weight: 500; color: var(--ho-gold); margin-top: auto; }
.mm__more:hover { color: #FFD27A; }
.mm__item { display: flex; align-items: flex-start; gap: 10px; padding: 8px 10px; margin: 0 -10px; border-radius: 8px; color: var(--dark-fg); transition: background .15s; }
.mm__item:hover, .mm__item:focus-visible { background: rgba(250,248,247,.06); color: var(--dark-fg); }
.mm__item.is-current { background: rgba(250,248,247,.04); }
.mm__ic { flex: none; margin-top: 3px; color: rgba(250,248,247,.55); }
.mm__dot { flex: none; width: 7px; height: 7px; border-radius: 999px; margin: 6px 3px 0 4px; }
.mm__mark { flex: none; width: 18px; height: 18px; border-radius: 4px; object-fit: contain; margin-top: 1px; margin-left: -2px; }
.mm__tbc { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .12em; color: rgba(250,248,247,.32); }
.mm__byline { font-family: var(--font-mono); font-size: 9px; letter-spacing: .12em; color: rgba(250,248,247,.42); }
.mm__cell--stat { gap: 6px; }
.mm__stat { display: flex; align-items: flex-start; gap: 6px; font-family: var(--font-display); font-weight: 600; font-size: 38px; line-height: 1; letter-spacing: -0.035em; color: var(--dark-fg); margin: 6px 0 2px; }
.mm__stat-unit { font-family: var(--font-mono); font-weight: 400; font-size: 9.5px; letter-spacing: .08em; color: rgba(250,248,247,.42); margin-top: 5px; }
.mm__stat-label { font-size: 12.5px; line-height: 1.45; color: var(--dark-fg); }
.mm__cell--stat .mm__byline { margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(250,248,247,.10); }
.mm__text { display: flex; flex-direction: column; gap: 1px; }
.mm__title { font-size: 13px; font-weight: 500; }
.mm__usecases { display: flex; flex-direction: column; }
.mm__usecases a { display: flex; align-items: center; justify-content: space-between; font-size: 13px; font-weight: 500; color: var(--dark-fg); padding: 8px 0; border-bottom: 1px solid rgba(250,248,247,.08); transition: color .15s; }
.mm__usecases a::after { content: "›"; color: rgba(250,248,247,.35); }
.mm__usecases a:hover { color: var(--ho-gold); }
.mm__usecases a:last-child { border-bottom: none; }
.mm__strip { grid-column: 1 / -1; background: #221619; padding: 11px 16px; display: flex; gap: 22px; }
.mm__strip a { font-size: 12.5px; font-weight: 500; color: var(--dark-fg); }
.mm__strip a:first-child { color: var(--ho-gold); }
.mm__strip a:hover { color: #FFD27A; }

/* ==========================================================================
   Integrations page
   ========================================================================== */
.scene--sub .hero--sub { padding: 56px var(--box-pad-x) 44px; margin-bottom: 40px; }
.hero__title--sub { font-size: 48px; max-width: 820px; }
.ifilter { padding: 22px var(--box-pad-x) 18px; position: sticky; top: 0; z-index: 20; }
.ifilter__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.search--wide { width: 280px; }
.ifilter__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-filter {
  display: inline-flex; align-items: center; gap: 7px; padding: 6px 11px; border-radius: 999px; border: 1px solid var(--hairline); background: var(--canvas);
  font-size: 12px; font-weight: 500; color: var(--body); transition: background .18s, border-color .18s, color .18s;
}
.chip-filter:hover { background: var(--wash); border-color: var(--border-strong); }
.chip-filter.is-active { background: var(--ink); border-color: var(--ink); color: var(--dark-fg); }
.chip-filter__n { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .04em; opacity: .7; }
.igrid-wrap { padding: 1px; background: var(--hairline-soft); }
.igrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hairline-soft); }
.icard { display: flex; flex-direction: column; gap: 6px; padding: 22px 22px 20px; background: var(--white); min-height: 168px; }
.icard[hidden] { display: none; }
.icard__mark { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--hairline); background: var(--white); display: flex; align-items: center; justify-content: center; margin-bottom: 8px; overflow: hidden; }
.icard__mark img { width: 26px; height: 26px; object-fit: contain; }
.icard__name { font-size: 14px; font-weight: 500; color: var(--ink); }
.icard__desc { font-size: 12.5px; line-height: 1.55; color: var(--body); }
.icard__cat { margin-top: auto; padding-top: 10px; font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .12em; color: var(--dim); }
.igrid-wrap .connectors__empty { background: var(--white); padding: 24px var(--box-pad-x); margin: 0; }
.request { padding: 48px var(--box-pad-x) 44px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; }
.request .lede { max-width: 560px; }
.request__cta { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; justify-self: end; }
.faq { display: grid; grid-template-columns: 1fr 1fr; }
.faq__item { padding: 26px var(--box-pad-x) 28px; border-right: 1px solid var(--hairline-soft); border-bottom: 1px solid var(--hairline-soft); }
.faq__item:nth-child(2n) { border-right: none; }
.faq__item:nth-last-child(-n+2) { border-bottom: none; }
.faq__q { font-size: 16px; letter-spacing: -0.015em; margin-bottom: 8px; }
.faq__a { font-size: 13.5px; line-height: 1.6; color: var(--body); }
.page-integrations .footer { margin-top: 0; }
@media (max-width: 1080px) { .igrid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) {
  .nav__item--menu { display: flex; flex-direction: column; }
  .nav__submenu-btn { display: flex; width: 100%; justify-content: space-between; padding: 12px 14px; font-size: 15px; }
  .nav__submenu { display: none; position: static; opacity: 1; visibility: visible; transform: none; padding: 0 0 6px 8px; width: auto; margin-left: 0; }
  .nav__item--menu.is-open .nav__submenu { display: block; }
  .nav__links .mm__item { display: flex; padding: 9px 8px; font-size: 14px; border-radius: 8px; }
  .nav__links .mm__usecases a { display: block; padding: 9px 8px; font-size: 14px; border: 0; }
  .mm { display: block; background: none; border: 0; box-shadow: none; border-radius: 0; }
  .mm__cell { background: none; padding: 4px 6px 8px; }
  .mm__cell--feature, .mm__strip, .mm__art, .mm__desc--lead { display: none; }
  .mm__card, .mm__poster { display: none; }
  .mm__kicker { margin: 6px 0 4px; }
  .mm__item { margin: 0; }
  .mm__usecases { grid-template-columns: 1fr; }
  .hero__title--sub { font-size: 36px; }
  .ifilter { position: static; }
  .ifilter__row { flex-direction: column; align-items: stretch; }
  .search--wide { width: 100%; }
  .igrid { grid-template-columns: repeat(2, 1fr); }
  .request { grid-template-columns: 1fr; }
  .request__cta { justify-self: start; }
  .faq { grid-template-columns: 1fr; }
  .faq__item { border-right: none !important; border-bottom: 1px solid var(--hairline-soft) !important; }
  .faq__item:last-child { border-bottom: none !important; }
}
@media (max-width: 480px) { .igrid { grid-template-columns: 1fr; } .icard { min-height: 0; } }

/* ==========================================================================
   Platform pages
   ========================================================================== */
.shot--tall { aspect-ratio: 16 / 9; }
.why--3 { grid-template-columns: repeat(3, 1fr); }
.why--3 .why__cell { border-bottom: none; }
.pshot { padding: 28px var(--box-pad-x) 0; overflow: hidden; }
.pshot img { display: block; width: 100%; border: 1px solid var(--hairline); border-bottom: none; border-radius: 13px 13px 0 0; box-shadow: var(--shadow-card); }
.connectors__grid--6 { grid-template-columns: repeat(3, 1fr); }
.agpanel__more { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 500; color: var(--ho-orange); }
.agpanel__more:hover { color: var(--ho-orange-deep); }
.hero__title .beta { vertical-align: middle; font-size: 10px; padding: 4px 9px; margin-left: 10px; }
@media (max-width: 1080px) { .connectors__grid--6 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .why--3 { grid-template-columns: 1fr; } .why--3 .why__cell { border-right: none; border-bottom: 1px solid var(--hairline-soft); } .why--3 .why__cell:last-child { border-bottom: none; } .pshot { padding: 20px 16px 0; } }
@media (max-width: 560px) { .connectors__grid--6 { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Solutions pages: light editorial hero with a brief / chain card
   ========================================================================== */
.scene--bar { padding-bottom: 0; overflow: visible; position: relative; z-index: 40; }
.scene--bar .nav { height: 66px; }
.shero { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; padding: 56px var(--box-pad-x) 52px; margin-top: 28px; background: var(--white); }
.shero__title { font-size: 46px; line-height: 1.06; letter-spacing: -0.035em; margin: 0 0 18px; }
.shero__lede { font-size: 15px; line-height: 1.65; color: var(--body); max-width: 520px; margin-bottom: 26px; }
.shero .hero__cta { margin-bottom: 0; }
.brief { background: #1B1114; color: var(--dark-fg); border: 1px solid #332327; border-radius: 16px; box-shadow: 0 24px 60px -30px rgba(26,17,19,.6); overflow: hidden; }
.brief__head { display: flex; align-items: center; gap: 8px; padding: 12px 16px; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .14em; color: rgba(250,248,247,.55); border-bottom: 1px solid rgba(250,248,247,.10); }
.brief__head-r { margin-left: auto; color: var(--ho-gold); }
.brief__row { display: grid; grid-template-columns: 7px auto 1fr auto; align-items: start; gap: 10px; padding: 14px 16px; border-bottom: 1px solid rgba(250,248,247,.08); }
.brief__row:last-of-type { border-bottom: none; }
.brief__dot { width: 7px; height: 7px; border-radius: 999px; margin-top: 6px; }
.brief__agent { font-size: 13px; font-weight: 500; }
.brief__text { font-size: 13px; line-height: 1.5; color: rgba(250,248,247,.78); }
.brief__metric { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .1em; color: var(--ho-gold); white-space: nowrap; margin-top: 3px; }
.brief__foot { padding: 10px 16px 12px; font-size: 11.5px; color: rgba(250,248,247,.5); background: rgba(250,248,247,.03); }
.chain { display: flex; flex-direction: column; gap: 0; background: #1B1114; color: var(--dark-fg); border: 1px solid #332327; border-radius: 16px; box-shadow: 0 24px 60px -30px rgba(26,17,19,.6); overflow: hidden; }
.chain__step { position: relative; padding: 16px 18px 16px 90px; border-bottom: 1px solid rgba(250,248,247,.08); }
.chain__step:last-child { border-bottom: none; }
.chain__step::before { content: ""; position: absolute; left: 66px; top: 0; bottom: 0; width: 1px; background: rgba(250,248,247,.10); }
.chain__step::after { content: ""; position: absolute; left: 63px; top: 22px; width: 7px; height: 7px; border-radius: 999px; background: var(--ho-orange); }
.chain__step:nth-child(2)::after { background: var(--ho-pink); }
.chain__step:nth-child(3)::after { background: var(--ho-violet); }
.chain__label { position: absolute; left: 16px; top: 19px; font-family: var(--font-mono); font-size: 9px; letter-spacing: .14em; color: rgba(250,248,247,.5); }
.chain__text { display: block; font-size: 13.5px; font-weight: 500; line-height: 1.4; }
.chain__meta { display: block; font-size: 11.5px; color: rgba(250,248,247,.55); margin-top: 3px; }
.acells { display: grid; background: var(--white); }
.acells--3 { grid-template-columns: repeat(3, 1fr); }
.acell { padding: 26px 26px 28px; border-right: 1px solid var(--hairline-soft); display: flex; flex-direction: column; }
.acell:last-child { border-right: none; }
.acell__head { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.acell__name { font-family: var(--font-display); font-weight: 600; font-size: 20px; letter-spacing: -0.02em; }
.acell__role { font-family: var(--font-mono); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); margin-left: 4px; }
.acell__list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.acell__list li { position: relative; padding-left: 16px; font-size: 13.5px; line-height: 1.55; color: var(--body); }
.acell__list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 999px; background: var(--ho-orange); opacity: .7; }
.acell__more { margin-top: auto; font-size: 13px; font-weight: 500; color: var(--ho-orange); }
@media (max-width: 900px) {
  .shero { grid-template-columns: 1fr; gap: 28px; padding: 36px 20px 32px; }
  .shero__title { font-size: 34px; }
  .acells--3 { grid-template-columns: 1fr; }
  .acell { border-right: none; border-bottom: 1px solid var(--hairline-soft); }
  .acell:last-child { border-bottom: none; }
}

/* Solutions hero, option A: dark scene with a fan of product shots */
.scene--sol { padding-bottom: 44px; }
.shero--dark { background: none; margin-top: 0; padding: 52px var(--box-pad-x) 48px; grid-template-columns: 1fr 1fr; gap: 32px; overflow: visible; }
.shero--dark .shero__title { color: var(--dark-fg); font-size: 48px; }
.shero--dark .shero__lede { color: var(--dark-fg-62); }
.shero--dark .hero__cta { margin-bottom: 18px; }
.fan { position: relative; height: 400px; }
.fan__glow { position: absolute; inset: -20% -10%; background: radial-gradient(60% 60% at 70% 30%, rgba(244,98,42,.28), transparent 70%), radial-gradient(50% 50% at 30% 90%, rgba(124,77,214,.22), transparent 70%); filter: blur(30px); pointer-events: none; }
.fan__card { position: absolute; border-radius: 12px; overflow: hidden; border: 1px solid rgba(250,248,247,.16); background: #FAF8F7; box-shadow: 0 30px 60px -18px rgba(0,0,0,.75); transition: transform .9s var(--ease), left .9s var(--ease), top .9s var(--ease), width .9s var(--ease), height .9s var(--ease), opacity .9s var(--ease), filter .9s var(--ease); }
.fan__card img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 0 0; }
.fan__card--top { left: 10%; top: -2%; width: 80%; height: 50%; transform: rotate(-2deg) scale(.96); opacity: .5; filter: saturate(.7); z-index: 1; }
.fan__card--center { left: 2%; top: 20%; width: 96%; height: 62%; transform: rotate(0deg); opacity: 1; z-index: 3; box-shadow: 0 34px 70px -18px rgba(0,0,0,.85); }
.fan__card--bottom { left: 14%; top: 58%; width: 80%; height: 50%; transform: rotate(2deg) scale(.96); opacity: .5; filter: saturate(.7); z-index: 1; }
.shero--dark:hover .fan__card--top { transform: rotate(-2deg) scale(.96) translateY(-4px); }
.shero--dark:hover .fan__card--bottom { transform: rotate(2deg) scale(.96) translateY(4px); }
@media (max-width: 900px) {
  .shero--dark { grid-template-columns: 1fr; padding: 36px 20px 32px; }
  .shero--dark .shero__title { font-size: 34px; }
  .fan { height: 260px; margin-top: 8px; }
}

/* ==========================================================================
   Connectors on orbit
   ========================================================================== */
.corb { position: relative; width: 520px; height: 520px; flex: none; }
.corb__glow { position: absolute; inset: 20%; border-radius: 999px; background: radial-gradient(circle, rgba(244,98,42,.28), rgba(232,51,106,.10) 55%, transparent 72%); filter: blur(24px); }
.corb__track { position: absolute; inset: 0; animation: orbitSpin linear infinite; }
.corb__track:nth-of-type(2) { animation-name: orbitSpinBack; }
.corb__lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.corb__ring-lines path { fill: none; stroke: rgba(250,248,247,.16); stroke-width: 1; }
.corb__dot { fill: #F4622A; }
.corb__ring { position: absolute; border-radius: 999px; border: 1px dashed rgba(232,180,74,.32); }
.corb__track:nth-of-type(2) .corb__ring { border-color: rgba(232,51,106,.32); }
.corb__track:nth-of-type(3) .corb__ring { border-color: rgba(244,98,42,.26); }
.corb__tile { position: absolute; width: 42px; height: 42px; margin: -21px 0 0 -21px; }
.corb__up { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; border-radius: 11px; background: var(--white); border: 1px solid rgba(250,248,247,.35); box-shadow: 0 12px 28px -12px rgba(0,0,0,.85), 0 0 0 1px rgba(0,0,0,.25); animation: orbitSpinBack linear infinite; }
.corb__track:nth-of-type(2) .corb__up { animation-name: orbitSpin; }
.corb__up img { width: 24px; height: 24px; object-fit: contain; border-radius: 4px; }
.corb__core { position: absolute; left: 50%; top: 50%; width: 72px; height: 72px; margin: -36px 0 0 -36px; border-radius: 999px; background: #1B1114; border: 1px solid rgba(250,248,247,.18); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 10px rgba(244,98,42,.10), 0 20px 40px -16px rgba(0,0,0,.8); }
.corb__core img { width: 104px; height: 104px; max-width: none; }
/* light variant */
.corb--light .corb__ring-lines path { stroke: #E6DFDD; }
.corb--light .corb__ring { border-color: #D9CFCC; }
.corb--light .corb__track:nth-of-type(2) .corb__ring { border-color: #F3CBD8; }
.corb--light .corb__track:nth-of-type(3) .corb__ring { border-color: #F3D9CE; }
.corb--light .corb__up { background: var(--white); border-color: var(--hairline); box-shadow: var(--shadow-card); }
.corb--light .corb__core { background: var(--white); border-color: var(--hairline); box-shadow: 0 0 0 10px rgba(244,98,42,.08), var(--shadow-card); }
.corb--light .corb__glow { opacity: .5; }
/* placements */
.hero--split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: center; }
.hero__art { display: flex; justify-content: center; align-items: center; min-height: 460px; }
.hero__art .corb { transform: scale(.88); }
.corb-band { display: flex; flex-direction: column; align-items: center; padding: 24px var(--box-pad-x) 22px; overflow: hidden; }
.corb-band .corb { transform: scale(.72); margin: -70px 0; }
.corb-band__caption { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .16em; color: var(--dim); margin-top: 6px; }
@media (max-width: 1080px) { .hero__art .corb { transform: scale(.75); } }
@media (max-width: 900px) {
  .hero--split { grid-template-columns: 1fr; }
  .hero__art { min-height: 0; margin-top: -40px; margin-bottom: -60px; }
  .hero__art .corb, .corb-band .corb { transform: scale(.6); }
  .corb-band .corb { margin: -100px 0; }
}
@media (max-width: 560px) { .hero__art .corb, .corb-band .corb { transform: scale(.5); } .hero__art { margin-top: -80px; margin-bottom: -100px; } .corb-band .corb { margin: -130px 0; } }

/* ==========================================================================
   Our numbers (07): before / after
   ========================================================================== */
.baft { display: grid; grid-template-columns: 1fr 220px; gap: 40px; align-items: center; padding: 30px var(--box-pad-x) 32px; }
.baft__rows { display: flex; flex-direction: column; gap: 22px; }
.baft__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 8px; }
.baft__label { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .16em; color: var(--dim); }
.baft__label--on { color: var(--ho-orange-ink); }
.baft__value { font-family: var(--font-display); font-weight: 600; font-size: 20px; letter-spacing: -0.03em; color: var(--body); }
.baft__value--on { color: var(--ink); }
.baft__track { height: 10px; border-radius: 999px; background: var(--hairline-soft); overflow: hidden; }
.baft__bar { display: block; height: 100%; border-radius: 999px; width: var(--w); transform-origin: left; animation: barFill 1.1s var(--ease) both; }
.baft__bar--hand { background: #D9CFCC; }
.baft__bar--on { background: var(--gradient-bar, linear-gradient(90deg, #F4622A, #E8336A)); animation-delay: .25s; }
.baft__note { font-size: 12px; color: var(--body); margin-top: 8px; }
.baft__delta { border-left: 1px solid var(--hairline-soft); padding-left: 32px; display: flex; flex-direction: column; gap: 6px; }
.baft__big { font-size: 56px; letter-spacing: -0.04em; background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
@media (max-width: 900px) {
  .baft { grid-template-columns: 1fr; gap: 24px; }
  .baft__delta { border-left: none; padding-left: 0; border-top: 1px solid var(--hairline-soft); padding-top: 20px; }
}

/* ==========================================================================
   Resource: VoC open jobs
   ========================================================================== */
.why--4 { grid-template-columns: repeat(4, 1fr); }
.why--4 .why__cell { border-bottom: none; }
.why--4 .why__cell:nth-child(3n) { border-right: 1px solid var(--hairline-soft); }
.why--4 .why__cell:nth-child(4n) { border-right: none; }
.jguide__flag { font-size: 22px; line-height: 1; margin-bottom: 18px; display: block; }
.jlist-wrap { padding: 0; }
.jlist { display: flex; flex-direction: column; }
.jrow { border-bottom: 1px solid var(--hairline-soft); }
.jrow:last-child { border-bottom: none; }
.jrow[hidden] { display: none; }
.jrow__link { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px var(--box-pad-x); color: var(--ink); transition: background .18s var(--ease); }
.jrow__link:hover { background: var(--hover); color: var(--ink); }
.jrow__main { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.jrow__title { font-size: 15px; font-weight: 500; }
.jrow__meta { font-size: 12.5px; color: var(--body); }
.jrow__side { display: flex; align-items: center; gap: 16px; flex: none; }
.jrow__pay { font-family: var(--font-mono); font-size: 11px; color: var(--ink); }
.jrow__region { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .12em; color: var(--dim); padding: 4px 8px; border: 1px solid var(--hairline); border-radius: 999px; }
.jrow__go { font-size: 12.5px; font-weight: 500; color: var(--ho-orange); white-space: nowrap; }
.jtip { background: var(--canvas); }
@media (max-width: 900px) {
  .why--4 { grid-template-columns: 1fr 1fr; }
  .why--4 .why__cell { border-bottom: 1px solid var(--hairline-soft); }
  .why--4 .why__cell:nth-child(2n) { border-right: none; }
  .why--4 .why__cell:nth-last-child(-n+2) { border-bottom: none; }
  .jrow__link { flex-direction: column; align-items: flex-start; gap: 10px; }
  .jrow__side { flex-wrap: wrap; gap: 10px; }
}
@media (max-width: 560px) { .why--4 { grid-template-columns: 1fr; } .why--4 .why__cell { border-right: none !important; border-bottom: 1px solid var(--hairline-soft) !important; } .why--4 .why__cell:last-child { border-bottom: none !important; } }

/* editions timeline */
.editions { display: flex; align-items: center; gap: 18px; padding: 26px var(--box-pad-x) 14px; }
.editions__label { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .16em; color: var(--dim); flex: none; }
.editions__track { display: flex; align-items: center; gap: 0; overflow-x: auto; scrollbar-width: none; flex: 1; }
.editions__track::-webkit-scrollbar { display: none; }
.edition { position: relative; display: inline-flex; flex-direction: column; align-items: center; gap: 6px; padding: 4px 18px 0; flex: none; color: var(--dim); font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; }
.edition::before { content: ""; position: absolute; left: 0; right: 0; top: 9px; border-top: 1px dashed var(--tick); }
.edition:first-child::before { left: 50%; } .edition:last-child::before { right: 50%; }
.edition:only-child::before { display: none; }
.edition__dot { position: relative; width: 11px; height: 11px; border-radius: 999px; background: var(--white); border: 1px solid var(--border-strong); transition: background .18s, border-color .18s; }
.edition:hover .edition__dot { border-color: var(--ho-orange); }
.edition.is-active { color: var(--ink); }
.edition.is-active .edition__dot { background: var(--ho-orange); border-color: var(--ho-orange); box-shadow: 0 0 0 4px rgba(244,98,42,.15); }
.edition__latest { position: absolute; top: -13px; font-size: 7.5px; letter-spacing: .14em; color: var(--ho-orange-ink); white-space: nowrap; }
.editions__hint { font-size: 11.5px; color: var(--dim); flex: none; max-width: 220px; text-align: right; }
.jarchive { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .12em; color: #8A6A1F; background: #FBF5E9; padding: 10px var(--box-pad-x); border-bottom: 1px solid var(--hairline-soft); }
@media (max-width: 900px) { .editions { flex-wrap: wrap; } .editions__hint { text-align: left; max-width: none; } }

/* ==========================================================================
   Resource: HyperOrbit alternatives
   ========================================================================== */
.altgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hairline-soft); }
.altcard { display: flex; flex-direction: column; gap: 8px; padding: 26px 26px 24px; background: var(--white); color: var(--ink); transition: background .18s var(--ease); }
.altcard:hover { background: var(--hover); color: var(--ink); }
.altcard__lockup { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.cmark { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--hairline); background: var(--white); display: inline-flex; align-items: center; justify-content: center; overflow: hidden; flex: none; }
.cmark img { width: 24px; height: 24px; object-fit: contain; border-radius: 5px; }
.cmark--ho img { width: 48px; height: 48px; max-width: none; }
.cmark--text { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink); }
.altcard__vs { font-family: var(--font-mono); font-size: 9px; letter-spacing: .14em; color: var(--dim); }
.altcard__title { font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -0.02em; }
.altcard--ask { background: var(--canvas); }
@media (max-width: 560px) { .altgrid { grid-template-columns: 1fr; } }
.altcard__tag { font-size: 14px; font-weight: 500; color: var(--ink); }
.altcard__line { font-size: 13px; line-height: 1.55; color: var(--body); }
.altcard__more { margin-top: auto; padding-top: 12px; font-size: 13px; font-weight: 500; color: var(--ho-orange); }
.cmp-wrap { padding: 0; overflow-x: auto; }
.cmp { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.cmp th, .cmp td { text-align: left; vertical-align: top; padding: 14px 22px; border-bottom: 1px solid var(--hairline-soft); border-right: 1px solid var(--hairline-soft); line-height: 1.5; }
.cmp th:last-child, .cmp td:last-child { border-right: none; }
.cmp tbody tr:last-child th, .cmp tbody tr:last-child td { border-bottom: none; }
.cmp thead th { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); background: var(--canvas); font-weight: 500; }
.cmp tbody th { font-weight: 500; color: var(--ink); width: 22%; background: var(--canvas); }
.cmp td { color: var(--body); }
.cmp td.cmp__ho { color: var(--ink); background: #FFFBF9; }
.cmp thead th.cmp__ho { color: var(--ho-orange-ink); background: #FDF1EC; }
.cmp--matrix { min-width: 1180px; font-size: 12.5px; }
.cmp--matrix th, .cmp--matrix td { padding: 12px 14px; }
.cmp--matrix tbody th { width: 16%; }
.prose2 { display: grid; grid-template-columns: 1fr 1fr; background: var(--white); }
.prose2__col { padding: 28px var(--box-pad-x) 30px; border-right: 1px solid var(--hairline-soft); display: flex; flex-direction: column; }
.prose2__col:last-child { border-right: none; }
.prose2__col--ho { background: #FFFBF9; }
.prose2__h { font-size: 20px; letter-spacing: -0.02em; margin-bottom: 12px; }
.prose__p { font-size: 14.5px; line-height: 1.65; color: var(--body); margin-bottom: 12px; }
.why--2 { grid-template-columns: 1fr 1fr; }
.why--2 .why__cell { border-bottom: none; }
.why--2 .why__cell:nth-child(2n) { border-right: none; }
.verdict { padding: 34px var(--box-pad-x) 36px; background: var(--white); display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.verdict__p { font-family: var(--font-display); font-weight: 500; font-size: 22px; line-height: 1.35; letter-spacing: -0.02em; max-width: 820px; }
.vslock { display: flex; align-items: center; gap: 18px; }
.vslock__tile { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 150px; padding: 22px 12px 16px; border-radius: 16px; background: rgba(250,248,247,.06); border: 1px solid rgba(250,248,247,.14); font-size: 13px; font-weight: 500; color: var(--dark-fg); }
.vslock__tile > img { width: 96px; height: 96px; max-width: none; margin: -20px 0 -14px; }
.vslock__mark { width: 56px; height: 56px; border-radius: 14px; background: var(--white); display: inline-flex; align-items: center; justify-content: center; overflow: hidden; }
.vslock__mark img { width: 34px; height: 34px; object-fit: contain; border-radius: 7px; }
.vslock__mark--text { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--ink); }
.vslock__vs { font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em; color: var(--ho-gold); }
@media (max-width: 900px) {
  .altgrid { grid-template-columns: 1fr 1fr; }
  .prose2, .why--2 { grid-template-columns: 1fr; } .prose2__col { border-right: none; border-bottom: 1px solid var(--hairline-soft); } .why--2 .why__cell { border-right: none; border-bottom: 1px solid var(--hairline-soft); } .why--2 .why__cell:last-child { border-bottom: none; }
  .vslock { justify-content: center; margin-top: 8px; } .vslock__tile { width: 130px; }
}

/* ==========================================================================
   Resource: templates & guides
   ========================================================================== */
.gcover { position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; gap: 8px; aspect-ratio: 4 / 3; padding: 24px; border-radius: 14px; background: radial-gradient(120% 110% at 85% -10%, color-mix(in srgb, var(--tint) 45%, #2B191E) 0%, #2B191E 45%, #1E1216 100%); color: var(--dark-fg); border: 1px solid rgba(250,248,247,.12); box-shadow: 0 24px 60px -30px rgba(26,17,19,.6); }
.gcover__rings { position: absolute; right: -60px; top: -70px; width: 220px; height: 220px; border-radius: 999px; border: 1px dashed rgba(232,180,74,.35); box-shadow: inset 0 0 0 40px transparent; }
.gcover__rings::after { content: ""; position: absolute; inset: 50px; border-radius: 999px; border: 1px dashed rgba(232,51,106,.35); }
.gcover__kicker { font-family: var(--font-mono); font-size: 9px; letter-spacing: .16em; color: var(--ho-gold); margin-bottom: auto; }
.gcover__title { font-family: var(--font-display); font-weight: 600; font-size: 19px; line-height: 1.15; letter-spacing: -0.025em; max-width: 90%; }
.gcover__meta { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .12em; color: rgba(250,248,247,.55); }
.gcover__mark { position: absolute; right: 18px; bottom: 18px; width: 34px; height: 34px; }
.gcover--big { width: 380px; aspect-ratio: 3 / 4; padding: 28px; }
.gcover--big .gcover__title { font-size: 26px; }
.gcards { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--hairline-soft); }
.gcard { display: grid; grid-template-columns: 220px 1fr; gap: 24px; padding: 26px; background: var(--white); color: var(--ink); align-items: stretch; transition: background .18s var(--ease); }
.gcard .gcover { height: 100%; min-height: 260px; aspect-ratio: auto; }
.gcard:hover { background: var(--hover); color: var(--ink); }
.gcard__body { display: flex; flex-direction: column; gap: 8px; }
.gcard__title { font-family: var(--font-display); font-weight: 600; font-size: 20px; letter-spacing: -0.02em; line-height: 1.2; }
.gcard__lede { font-size: 13px; line-height: 1.55; color: var(--body); }
.gcard__meta { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .12em; color: var(--dim); }
.tcard { color: var(--ink); border-top: 3px solid var(--tint); }
.tcard:hover { background: var(--hover); color: var(--ink); }
.tcard__tag { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .14em; color: var(--tint); display: block; margin-bottom: 14px; }
.tcard .acell__more { margin-top: 12px; display: inline-block; }
.guide__grid { display: grid; grid-template-columns: 240px 1fr; }
.toc { position: sticky; top: 0; align-self: start; padding: 26px 22px; border-right: 1px solid var(--hairline-soft); display: flex; flex-direction: column; gap: 2px; max-height: 100vh; overflow: auto; }
.toc .label { margin-bottom: 10px; }
.toc__item { display: flex; gap: 10px; align-items: baseline; padding: 7px 8px; margin: 0 -8px; border-radius: 8px; font-size: 12.5px; color: var(--body); line-height: 1.35; }
.toc__item:hover { background: var(--wash); color: var(--ink); }
.toc__n { font-family: var(--font-mono); font-size: 9.5px; color: var(--dim); flex: none; }
.toc__back { margin-top: 14px; font-size: 12.5px; font-weight: 500; color: var(--ho-orange); }
.article { padding: 30px 48px 40px; max-width: 820px; }
.art__chapter { padding: 26px 0 30px; border-bottom: 1px solid var(--hairline-soft); scroll-margin-top: 20px; }
.art__chapter:last-of-type { border-bottom: none; }
.art__kicker { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .16em; color: var(--ho-orange); display: block; margin-bottom: 8px; }
.art__h2 { font-size: 28px; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 16px; }
.article p { font-size: 15px; line-height: 1.7; color: var(--body); margin-bottom: 14px; }
.article p b, .article li b { color: var(--ink); font-weight: 500; }
.art__list { margin: 0 0 16px; display: flex; flex-direction: column; gap: 8px; }
.art__list li { position: relative; padding-left: 18px; font-size: 14.5px; line-height: 1.6; color: var(--body); }
.art__list li::before { content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 999px; background: var(--ho-orange); opacity: .7; }
.art__steps { margin: 0 0 16px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.art__steps li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; font-size: 14.5px; line-height: 1.6; color: var(--body); }
.art__step-n { font-family: var(--font-mono); font-size: 10px; color: var(--ho-orange); padding-top: 5px; }
.callout { margin: 18px 0 20px; padding: 16px 18px; border-radius: 12px; background: #FDF1EC; border: 1px solid #F3D9CE; }
.callout__label { font-family: var(--font-mono); font-size: 9px; letter-spacing: .14em; color: var(--ho-orange-ink); display: block; margin-bottom: 6px; }
.callout p { margin: 0; color: var(--ink); font-size: 14.5px; }
.art__table-wrap { overflow-x: auto; margin: 6px 0 18px; border: 1px solid var(--hairline); border-radius: 10px; }
.cmp--art { font-size: 13px; }
.cmp--art th, .cmp--art td { padding: 11px 14px; }
.cmp--art tbody th { width: auto; }
.tpl { margin: 10px 0 18px; border: 1px solid var(--hairline); border-radius: 12px; overflow: hidden; background: var(--white); }
.tpl__head { display: flex; align-items: center; gap: 12px; padding: 10px 16px; border-bottom: 1px solid var(--hairline-soft); background: var(--canvas); }
.tpl__title { font-size: 13.5px; font-weight: 500; }
.tpl__body { margin: 0; padding: 16px 18px; font-family: var(--font-mono); font-size: 11.5px; line-height: 1.7; color: var(--ink); white-space: pre-wrap; overflow-x: auto; }
.art__end { padding-top: 26px; display: flex; flex-direction: column; gap: 6px; }
@media (max-width: 1080px) { .gcard { grid-template-columns: 1fr; } }
@media (max-width: 900px) {
  .gcards { grid-template-columns: 1fr; }
  .guide__grid { grid-template-columns: 1fr; }
  .toc { position: static; max-height: none; border-right: none; border-bottom: 1px solid var(--hairline-soft); }
  .article { padding: 22px 20px 30px; }
  .gcover--big { width: 100%; max-width: 360px; aspect-ratio: 4 / 3; }
  .hero--split .hero__art { margin: 0; min-height: 0; }
}

/* guide cover flip */
.gcover--flip { background: none; border: 0; box-shadow: none; padding: 0; overflow: visible; perspective: 1400px; }
.gcover__inner { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform .75s var(--ease); }
.gcard:hover .gcover__inner { transform: rotateY(180deg); }
.gcover__face { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; gap: 8px; padding: 24px; border-radius: 14px; overflow: hidden; backface-visibility: hidden; -webkit-backface-visibility: hidden; border: 1px solid rgba(250,248,247,.12); box-shadow: 0 24px 60px -30px rgba(26,17,19,.6); color: var(--dark-fg); }
.gcover__face--front { background: radial-gradient(120% 110% at 85% -10%, color-mix(in srgb, var(--tint) 45%, #2B191E) 0%, #2B191E 45%, #1E1216 100%); }
.gcover__face--back { transform: rotateY(180deg); justify-content: flex-start; background: #1E1216; }
.gcover__face--back .gcover__kicker { margin-bottom: 8px; }
.gcover__face--back { padding: 18px 20px; }
.gcover__toc { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 3px; }
.gcover__toc li { display: flex; gap: 8px; font-size: 11px; line-height: 1.3; color: rgba(250,248,247,.85); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.gcover__toc li span + * { overflow: hidden; text-overflow: ellipsis; }
.gcover__toc li span { font-family: var(--font-mono); font-size: 9px; color: var(--ho-gold); padding-top: 2px; flex: none; }
.gcover__more { display: none; }
@media (prefers-reduced-motion: reduce) { .gcard:hover .gcover__inner { transform: none; } }

/* hero cover: periodic page turn */
.gcover--big { perspective: 1200px; }
.gcover--big::after { content: ""; position: absolute; inset: 0; border-radius: 14px; transform-origin: left center; transform: rotateY(0deg); opacity: 0; pointer-events: none;
  background: linear-gradient(100deg, #F1EBE9 0%, #FAF8F7 60%, #FFFFFF 100%); border-right: 1px solid rgba(26,17,19,.12); box-shadow: -22px 0 36px -14px rgba(0,0,0,.75); backface-visibility: hidden; -webkit-backface-visibility: hidden;
  animation: pageTurn 7s cubic-bezier(.4,.05,.2,1) infinite; animation-delay: 1.6s; }
@keyframes pageTurn { 0% { transform: rotateY(0deg); opacity: 0; } 2% { opacity: .96; } 26% { transform: rotateY(-150deg); opacity: .96; } 32% { transform: rotateY(-180deg); opacity: 0; } 100% { transform: rotateY(-180deg); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .gcover--big::after { animation: none; } }

/* ---- lead gate (guides + templates) ---- */
.lead { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; }
.lead[hidden] { display: none; }
.lead__backdrop { position: absolute; inset: 0; background: rgba(20,12,14,.72); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); animation: leadFade .2s var(--ease); }
.lead__card { position: relative; width: 100%; max-width: 440px; background: var(--white); padding: 36px 36px 30px; display: flex; flex-direction: column; gap: 14px; box-shadow: 0 30px 80px -20px rgba(0,0,0,.6); animation: leadUp .28s var(--ease); }
.lead__x { position: absolute; top: 10px; right: 12px; width: 32px; height: 32px; border: 0; background: none; font-size: 22px; line-height: 1; color: var(--dim); cursor: pointer; border-radius: 6px; }
.lead__x:hover { background: var(--hover); color: var(--ink); }
.lead__kicker { font-size: 10.5px; }
.lead__title { font-family: var(--font-heading); font-weight: 600; font-size: 24px; line-height: 1.15; letter-spacing: -.01em; color: var(--ink); margin: 0; }
.lead__res { margin: -6px 0 0; font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--ho-orange); line-height: 1.5; }
.lead__lede { font-size: 14px; line-height: 1.5; color: var(--muted); margin: 0 0 4px; }
.lead__field { display: flex; flex-direction: column; gap: 6px; font-size: 12px; font-weight: 500; color: var(--ink); }
.lead__field input { font-family: var(--font-sans); font-size: 14px; color: var(--ink); background: var(--canvas); border: 1px solid var(--line); border-radius: 8px; padding: 11px 12px; outline: 0; transition: border-color .15s var(--ease), box-shadow .15s var(--ease); }
.lead__field input::placeholder { color: var(--dim); }
.lead__field input:focus { border-color: var(--ho-orange); box-shadow: 0 0 0 3px rgba(244,98,42,.15); background: var(--white); }
.lead.is-invalid .lead__field input:invalid { border-color: var(--ho-pink); }
.lead__error { margin: -4px 0 0; font-size: 12.5px; color: var(--ho-pink); }
.lead__submit { margin-top: 6px; justify-content: center; }
.lead__submit[disabled] { opacity: .7; cursor: progress; }
.lead__fine { margin: 0; font-size: 11.5px; color: var(--dim); text-align: center; }
@keyframes leadFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes leadUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .lead__backdrop, .lead__card { animation: none; } }
@media (max-width: 480px) { .lead__card { padding: 30px 22px 24px; } }

/* template card art */
.tcard__art { display: block; height: 128px; margin: -6px 0 18px; border-radius: 10px; background: linear-gradient(160deg, #FFFFFF 0%, var(--canvas) 100%); border: 1px solid var(--hairline-soft); color: var(--tint); overflow: hidden; position: relative; }
.tcard__art::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 78% 18%, var(--tint) 0%, transparent 46%); opacity: .10; }
.tcard__art svg { position: absolute; left: 50%; top: 50%; width: 240px; height: 120px; transform: translate(-50%, -50%); transition: transform .35s var(--ease); }
.tcard:hover .tcard__art svg { transform: translate(-50%, -50%) translateY(-3px); }
@media (prefers-reduced-motion: reduce) { .tcard:hover .tcard__art svg { transform: translate(-50%, -50%); } }

/* ---- company pages ---- */
.nav__submenu--company { left: 50%; right: auto; margin-left: -150px; width: 300px; }
.mm--company { grid-template-columns: 1fr; }
.nav__submenu--company .mm__item { padding: 9px 10px; }
.why__num { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; color: var(--dim); margin-bottom: 14px; display: block; }
.manif__grid .why__title { font-size: 19px; }
.loops { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.loop { padding: 30px 30px 28px; border-right: 1px solid var(--hairline-soft); }
.loop:last-child { border-right: none; }
.loop--new { background: #FFFBF9; }
.loop__tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; color: var(--dim); display: block; margin-bottom: 18px; }
.loop--new .loop__tag { color: var(--ho-orange-ink); }
.loop__steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.loop__steps li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--ink); }
.loop__n { width: 26px; height: 26px; border-radius: 999px; border: 1px solid var(--hairline); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 11px; color: var(--dim); flex: none; background: var(--white); }
.loop--new .loop__n { background: var(--gradient-brand); border-color: transparent; color: #FFF; }
.manif__note { margin: 0; padding: 22px 30px 26px; border: 1px solid var(--hairline); border-top: none; background: var(--canvas); font-size: 14px; line-height: 1.65; color: var(--body); }
.manif__note .label { margin-right: 10px; }
.waves { display: grid; grid-template-columns: repeat(3, 1fr); }
.wave { padding: 30px 30px 32px; border-right: 1px solid var(--hairline-soft); display: flex; flex-direction: column; }
.wave:last-child { border-right: none; }
.wave--now { background: #FFFBF9; box-shadow: inset 4px 0 0 var(--ho-orange); }
.wave__n { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; color: var(--dim); }
.wave__era { font-family: var(--font-mono); font-size: 12px; color: var(--ho-orange-ink); margin: 14px 0 8px; }
.wave__title { font-family: var(--font-heading); font-weight: 600; font-size: 20px; letter-spacing: -.015em; margin: 0 0 10px; color: var(--ink); }
.wave__body { margin: 0; font-size: 14px; line-height: 1.6; color: var(--body); }
.about__story { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 36px 40px 40px; }
.about__col p { margin: 0 0 16px; font-size: 16px; line-height: 1.7; color: var(--body); }
.about__col p:last-child { margin-bottom: 0; }
.about__links a { color: var(--ho-orange-ink); font-weight: 500; margin-right: 18px; }
.roles { display: flex; flex-direction: column; }
.role { display: grid; grid-template-columns: 1fr auto auto; gap: 24px; align-items: center; padding: 24px 30px; border-bottom: 1px solid var(--hairline-soft); }
.role:last-child { border-bottom: none; }
.role__team { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; color: var(--dim); display: block; margin-bottom: 6px; }
.role__title { font-family: var(--font-heading); font-weight: 600; font-size: 19px; letter-spacing: -.015em; margin: 0 0 6px; color: var(--ink); }
.role__desc { margin: 0; font-size: 14px; line-height: 1.6; color: var(--body); max-width: 640px; }
.role__meta { display: flex; gap: 8px; }
.role__pill { font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; color: var(--body); padding: 5px 10px; border: 1px solid var(--hairline); border-radius: 999px; background: var(--canvas); white-space: nowrap; }
.roles__note { margin: 0; padding: 20px 30px 24px; border: 1px solid var(--hairline); border-top: none; background: var(--canvas); font-size: 14px; color: var(--body); }
.roles__note .label { margin-right: 10px; }
.roles__note a { color: var(--ho-orange-ink); font-weight: 500; }
.kit { padding: 0; }
.kit__tiles { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px; background: var(--hairline-soft); border-bottom: 1px solid var(--hairline-soft); }
.kit__tile { position: relative; display: flex; align-items: center; justify-content: center; min-height: 220px; padding: 40px; }
.kit__tile--light { background: var(--canvas); }
.kit__tile--dark { background: radial-gradient(130% 120% at 22% -20%, #3A2529, #140C0E); }
.kit__tile img { width: 220px; height: auto; }
.kit__tile--mark img { width: 84px; }
.kit__cap { position: absolute; left: 18px; bottom: 14px; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); }
.kit__tile--dark .kit__cap { color: rgba(250,248,247,.55); }
.kit__list { display: grid; grid-template-columns: 1fr 1fr; }
.kit__row { display: grid; grid-template-columns: 1fr auto auto; gap: 16px; align-items: center; padding: 14px 24px; border-bottom: 1px solid var(--hairline-soft); border-right: 1px solid var(--hairline-soft); color: var(--ink); font-size: 14px; transition: background .15s var(--ease); }
.kit__row:nth-child(2n) { border-right: none; }
.kit__row:nth-last-child(-n+2) { border-bottom: none; }
.kit__row:hover { background: var(--hover); color: var(--ink); }
.kit__fmt { font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; color: var(--dim); }
.kit__dl { font-size: 13px; font-weight: 500; color: var(--ho-orange-ink); }
.swatches { display: grid; grid-template-columns: repeat(4, 1fr); }
.sw { display: flex; flex-direction: column; gap: 4px; padding: 20px 22px 22px; border-right: 1px solid var(--hairline-soft); border-bottom: 1px solid var(--hairline-soft); }
.sw:nth-child(4n) { border-right: none; }
.sw:nth-last-child(-n+4) { border-bottom: none; }
.sw--grad { grid-column: span 1; }
.sw__chip { display: block; height: 64px; border-radius: 10px; margin-bottom: 10px; }
.sw__name { font-weight: 500; color: var(--ink); font-size: 14px; }
.sw__hex { font-family: var(--font-mono); font-size: 11px; color: var(--body); letter-spacing: .04em; }
.sw__use { font-size: 12.5px; color: var(--dim); line-height: 1.5; }
.donts { display: grid; grid-template-columns: repeat(3, 1fr); }
.dont { display: flex; gap: 12px; align-items: flex-start; padding: 20px 24px; font-size: 14px; color: var(--ink); border-right: 1px solid var(--hairline-soft); border-bottom: 1px solid var(--hairline-soft); line-height: 1.5; }
.dont:nth-child(3n) { border-right: none; }
.dont:nth-last-child(-n+3) { border-bottom: none; }
.dont__x { color: #B01C4F; font-family: var(--font-mono); flex: none; }
.contact { display: grid; grid-template-columns: 1fr 280px; }
.contact__form { padding: 32px 36px 36px; border-right: 1px solid var(--hairline-soft); position: relative; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.contact__wide { grid-column: 1 / -1; }
.lead__field select, .lead__field textarea { font-family: var(--font-sans); font-size: 14px; color: var(--ink); background: var(--canvas); border: 1px solid var(--line); border-radius: 8px; padding: 11px 12px; outline: 0; transition: border-color .15s var(--ease), box-shadow .15s var(--ease); }
.lead__field textarea { resize: vertical; min-height: 120px; }
.lead__field select:focus, .lead__field textarea:focus { border-color: var(--ho-orange); box-shadow: 0 0 0 3px rgba(244,98,42,.15); background: var(--white); }
.contact__actions { display: flex; align-items: center; gap: 18px; margin-top: 20px; flex-wrap: wrap; }
.contact__actions a { color: var(--ho-orange-ink); }
.contact__form.is-sent .contact__grid, .contact__form.is-sent .contact__actions, .contact__form.is-sent .lead__error { display: none; }
.contact__done { padding: 20px 0 4px; }
.contact__done .kicker { margin-bottom: 14px; }
.contact__done a { color: var(--ho-orange-ink); }
.contact__side { padding: 32px 30px; display: flex; flex-direction: column; gap: 22px; background: var(--canvas); }
.contact__block { display: flex; flex-direction: column; gap: 4px; font-size: 14px; color: var(--ink); }
.contact__block .label { margin-bottom: 4px; }
.contact__block a { color: var(--ho-orange-ink); font-weight: 500; }
.contact__dim { font-size: 12.5px; color: var(--dim); }
.why--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1080px) { .loops, .about__story, .kit__list { grid-template-columns: 1fr; } .loop { border-right: none; border-bottom: 1px solid var(--hairline-soft); } .kit__row { border-right: none !important; } .kit__row:nth-last-child(2) { border-bottom: 1px solid var(--hairline-soft); } .swatches { grid-template-columns: repeat(3, 1fr); } .sw:nth-child(4n) { border-right: 1px solid var(--hairline-soft); } .sw:nth-child(3n) { border-right: none; } .contact { grid-template-columns: 1fr; } .contact__form { border-right: none; border-bottom: 1px solid var(--hairline-soft); } .role { grid-template-columns: 1fr; gap: 12px; align-items: start; } .role__apply { justify-self: start; } }
@media (max-width: 800px) { .waves, .kit__tiles, .donts { grid-template-columns: 1fr; } .wave { border-right: none; border-bottom: 1px solid var(--hairline-soft); } .dont { border-right: none !important; } .swatches { grid-template-columns: 1fr 1fr; } .sw:nth-child(3n) { border-right: 1px solid var(--hairline-soft); } .sw:nth-child(2n) { border-right: none; } .contact__grid { grid-template-columns: 1fr; } .nav__submenu--company { left: 0; margin-left: 0; width: auto; } }

/* ---- pricing page ---- */
.plans { display: grid; grid-template-columns: 1fr 1fr; padding: 0; }
.pl { position: relative; padding: 36px 36px 34px; display: flex; flex-direction: column; border-right: 1px solid var(--hairline-soft); }
.pl:last-child { border-right: none; }
.pl--hot { background: #FFFBF9; box-shadow: inset 0 4px 0 var(--ho-orange); }
.pl__badge { position: absolute; top: 18px; right: 22px; font-family: var(--font-mono); font-size: 9px; letter-spacing: .14em; color: var(--ho-orange-ink); background: var(--white); border: 1px solid #F3D9CE; border-radius: 999px; padding: 5px 10px; }
.pl__name { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); margin-bottom: 14px; }
.pl__price { font-family: var(--font-heading); font-weight: 600; font-size: 44px; letter-spacing: -.03em; line-height: 1; color: var(--ink); margin-bottom: 14px; }
.pl__per { font-family: var(--font-sans); font-weight: 400; font-size: 15px; letter-spacing: 0; color: var(--body); }
.pl__for { margin: 0 0 20px; font-size: 14.5px; line-height: 1.6; color: var(--body); min-height: 70px; }
.pl__cta { align-self: flex-start; }
.pl__hint { display: block; margin: 10px 0 26px; font-size: 12px; color: var(--dim); }
.pl__group { border-top: 1px solid var(--hairline-soft); padding: 18px 0 16px; }
.pl__group:last-child { padding-bottom: 0; }
.pl__group--muted { opacity: .55; }
.pl__agent { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); margin-bottom: 12px; }
.pl__dot { width: 7px; height: 7px; border-radius: 999px; display: inline-block; }
.pl__group ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.pl__group li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; line-height: 1.5; color: var(--ink); }
.pl__chk { flex: none; margin-top: 3px; color: var(--ho-orange); }
.pl__dash { flex: none; width: 14px; text-align: center; color: var(--dim); }
.pl__off { color: var(--dim); }
.cmp--plans { font-size: 13.5px; }
.cmp--plans tbody th { width: 30%; }
.cmp--plans td { width: 35%; }
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; } .pl { border-right: none; border-bottom: 1px solid var(--hairline-soft); } .pl:last-child { border-bottom: none; } .pl__for { min-height: 0; } }

@media (prefers-reduced-motion: reduce) { .src__tile { opacity: 1; filter: none; } .src[data-still] .src__pop { opacity: 1; transform: translate(-50%, 0) scale(1); } }

/* ---- ROI calculator ---- */
.roi { display: grid; grid-template-columns: 420px 1fr; padding: 0; }
.roi__inputs { padding: 30px 32px 32px; border-right: 1px solid var(--hairline-soft); background: var(--canvas); display: flex; flex-direction: column; gap: 22px; }
.roi__inputs > .label { margin-bottom: -6px; }
.roi__assume { margin-top: 6px; color: var(--ho-orange-ink); }
.roi__field { display: flex; flex-direction: column; gap: 10px; }
.roi__label { display: flex; flex-direction: column; gap: 3px; }
.roi__label label { font-size: 14px; font-weight: 500; color: var(--ink); }
.roi__hint { font-size: 12px; line-height: 1.5; color: var(--dim); }
.roi__control { display: grid; grid-template-columns: 1fr 132px; gap: 14px; align-items: center; }
.roi__num { display: inline-flex; align-items: center; gap: 4px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 0 10px; height: 38px; font-family: var(--font-mono); font-size: 13px; color: var(--ink); transition: border-color .15s var(--ease), box-shadow .15s var(--ease); }
.roi__num:focus-within { border-color: var(--ho-orange); box-shadow: 0 0 0 3px rgba(244,98,42,.15); }
.roi__num input { width: 100%; min-width: 0; border: 0; outline: 0; background: none; font: inherit; color: inherit; text-align: right; -moz-appearance: textfield; }
.roi__num input::-webkit-outer-spin-button, .roi__num input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.roi__affix { color: var(--dim); font-size: 12px; }
.roi__affix:empty { display: none; }
input[type=range][data-roi-range] { -webkit-appearance: none; appearance: none; width: 100%; height: 22px; background: none; margin: 0; cursor: pointer; }
input[type=range][data-roi-range]::-webkit-slider-runnable-track { height: 4px; border-radius: 999px; background: linear-gradient(90deg, var(--ho-orange) 0, var(--ho-pink) var(--fill, 0%), #E6DFDD var(--fill, 0%)); }
input[type=range][data-roi-range]::-moz-range-track { height: 4px; border-radius: 999px; background: #E6DFDD; }
input[type=range][data-roi-range]::-moz-range-progress { height: 4px; border-radius: 999px; background: linear-gradient(90deg, var(--ho-orange), var(--ho-pink)); }
input[type=range][data-roi-range]::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; margin-top: -7px; border-radius: 999px; background: var(--white); border: 1px solid #C9BEC0; box-shadow: 0 2px 6px rgba(26,17,19,.18); }
input[type=range][data-roi-range]::-moz-range-thumb { width: 18px; height: 18px; border-radius: 999px; background: var(--white); border: 1px solid #C9BEC0; box-shadow: 0 2px 6px rgba(26,17,19,.18); }
input[type=range][data-roi-range]:focus-visible { outline: 0; } input[type=range][data-roi-range]:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 3px rgba(244,98,42,.25); }
.roi__foot { margin: 4px 0 0; font-size: 12px; line-height: 1.55; color: var(--dim); }
.roi__outputs { display: flex; flex-direction: column; }
.roi__grid { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--hairline-soft); }
.roi__stat { padding: 26px 24px 24px; border-right: 1px solid var(--hairline-soft); display: flex; flex-direction: column; gap: 6px; }
.roi__stat:last-child { border-right: none; }
.roi__stat--hot { background: #FFFBF9; box-shadow: inset 0 3px 0 var(--ho-orange); }
.roi__k { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .14em; color: var(--dim); }
.roi__v { font-family: var(--font-heading); font-weight: 600; font-size: 34px; letter-spacing: -.03em; line-height: 1.05; color: var(--ink); font-variant-numeric: tabular-nums; transition: color .2s; }
.roi__v--keep { color: #2E8A6D; }
.roi__s { font-size: 12px; line-height: 1.45; color: var(--body); }
.roi__keep { padding: 24px 28px 26px; border-bottom: 1px solid var(--hairline-soft); }
.roi__keep-head .label { color: #2E8A6D; }
.roi__keep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 16px 0 20px; }
.roi__keep-grid > div { display: flex; flex-direction: column; gap: 6px; }
.roi__keep-grid .roi__v { font-size: 28px; }
.roi__chart svg { display: block; width: 100%; height: 170px; }
.roi__legend { display: flex; gap: 18px; margin-top: 10px; font-size: 12px; color: var(--body); }
.roi__legend span { display: inline-flex; align-items: center; gap: 7px; }
.roi__sw { width: 12px; height: 12px; border-radius: 3px; display: inline-block; }
.roi__sw--lost { background: #F3CBD8; } .roi__sw--kept { background: #2E8A6D; }
.roi__send { padding: 22px 28px 24px; background: var(--canvas); display: flex; flex-direction: column; gap: 12px; }
.roi__send-head { display: flex; flex-direction: column; gap: 4px; }
.roi__send-lede { font-size: 13px; color: var(--body); }
.roi__send-row { display: grid; grid-template-columns: 1fr 1.3fr auto; gap: 10px; }
.roi__send-row input { font-family: var(--font-sans); font-size: 14px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 10px 12px; outline: 0; min-width: 0; }
.roi__send-row input:focus { border-color: var(--ho-orange); box-shadow: 0 0 0 3px rgba(244,98,42,.15); }
.roi__send.is-sent .roi__send-row, .roi__send.is-sent .lead__fine { display: none; }
.roi__send-done { margin: 0; font-size: 14px; color: #2E8A6D; font-weight: 500; }
.method { padding: 8px 32px 26px; }
.method__row { display: grid; grid-template-columns: 220px 1fr 1.2fr; gap: 22px; padding: 18px 0; border-bottom: 1px solid var(--hairline-soft); align-items: baseline; }
.method__row:last-of-type { border-bottom: none; }
.method__k { font-weight: 500; color: var(--ink); font-size: 14px; }
.method__f { font-family: var(--font-mono); font-size: 12px; color: var(--ho-orange-ink); background: #FDF1EC; border: 1px solid #F3D9CE; border-radius: 6px; padding: 5px 9px; display: inline-block; }
.method__n { font-size: 13px; line-height: 1.55; color: var(--body); }
.method__note { margin: 8px 0 0; padding: 18px 20px; background: var(--canvas); border: 1px solid var(--hairline-soft); border-radius: 10px; font-size: 13.5px; line-height: 1.6; color: var(--body); }
.method__note .label { margin-right: 10px; }
@media (max-width: 1080px) { .roi { grid-template-columns: 1fr; } .roi__inputs { border-right: none; border-bottom: 1px solid var(--hairline-soft); } .roi__grid { grid-template-columns: 1fr 1fr; } .roi__stat:nth-child(2) { border-right: none; } .roi__stat:nth-child(-n+2) { border-bottom: 1px solid var(--hairline-soft); } .method__row { grid-template-columns: 1fr; gap: 8px; } }
@media (max-width: 640px) { .roi__control { grid-template-columns: 1fr; } .roi__num { width: 100%; } .roi__grid { grid-template-columns: 1fr; } .roi__stat { border-right: none !important; border-bottom: 1px solid var(--hairline-soft); } .roi__keep-grid { grid-template-columns: 1fr; } .roi__send-row { grid-template-columns: 1fr; } }

/* ---- VoC maturity assessment ---- */
.why--5 { grid-template-columns: repeat(5, 1fr); }
.why--5 .why__cell { border-bottom: none; }
.why--5 .why__cell:nth-child(3n) { border-right: 1px solid var(--hairline-soft); }
.why--5 .why__cell:nth-child(5n) { border-right: none; }
.asmt { display: grid; grid-template-columns: 260px 1fr; padding: 0; }
.asmt__rail { border-right: 1px solid var(--hairline-soft); background: var(--canvas); display: flex; flex-direction: column; }
.asmt__dim { display: grid; grid-template-columns: 30px 1fr; grid-template-rows: auto auto; column-gap: 8px; text-align: left; padding: 18px 22px; border-bottom: 1px solid var(--hairline-soft); color: var(--body); transition: background .15s var(--ease); }
.asmt__dim:hover { background: var(--hover); }
.asmt__dim.is-active { background: var(--white); box-shadow: inset 3px 0 0 var(--ho-orange); color: var(--ink); }
.asmt__dim.is-done .asmt__dim-n { color: #2E8A6D; }
.asmt__dim-n { grid-row: 1 / 3; font-family: var(--font-mono); font-size: 11px; color: var(--dim); padding-top: 2px; }
.asmt__dim-t { font-weight: 500; font-size: 14px; color: inherit; }
.asmt__dim-s { font-size: 12px; color: var(--dim); }
.asmt__main { display: flex; flex-direction: column; }
.asmt__panel { padding: 30px 34px 10px; }
.asmt__head { margin-bottom: 22px; }
.asmt__head .kicker { margin-bottom: 10px; }
.asmt__title { font-family: var(--font-heading); font-weight: 600; font-size: 24px; letter-spacing: -.02em; margin: 0 0 8px; color: var(--ink); }
.asmt__lede { margin: 0; font-size: 14px; line-height: 1.6; color: var(--body); max-width: 640px; }
.asmt__q { border: 0; padding: 0; margin: 0 0 22px; }
.asmt__q-t { display: flex; gap: 10px; align-items: baseline; font-weight: 500; font-size: 15px; color: var(--ink); margin-bottom: 10px; padding: 0; }
.asmt__q-n { font-family: var(--font-mono); font-size: 11px; color: var(--dim); }
.asmt__opts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.opt { display: flex; flex-direction: column; gap: 6px; text-align: left; padding: 12px 12px 13px; border: 1px solid var(--hairline); border-radius: 10px; background: var(--white); color: var(--body); font-size: 12.5px; line-height: 1.45; transition: border-color .15s, background .15s, box-shadow .15s; cursor: pointer; }
.opt:hover { background: var(--hover); border-color: #C9BEC0; }
.opt.is-on { border-color: var(--ho-orange); background: #FFFBF9; color: var(--ink); box-shadow: 0 0 0 3px rgba(244,98,42,.12); }
.opt__n { font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; color: var(--dim); }
.opt.is-on .opt__n { color: var(--ho-orange-ink); }
.asmt__foot { margin-top: auto; padding: 18px 34px 22px; border-top: 1px solid var(--hairline-soft); display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.asmt__progress { display: flex; align-items: center; gap: 12px; }
.asmt__bar { width: 180px; height: 4px; border-radius: 999px; background: var(--hairline); overflow: hidden; display: block; }
.asmt__bar i { display: block; height: 100%; width: 0; background: var(--gradient-brand); transition: width .3s var(--ease); }
.asmt__count { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em; color: var(--dim); }
.asmt__nav { display: flex; gap: 10px; }
.asmt__nav .btn[disabled] { opacity: .55; cursor: not-allowed; }
.res { padding: 0; }
.res__top { display: grid; grid-template-columns: 1fr 320px 1fr; gap: 0; border-bottom: 1px solid var(--hairline-soft); }
.res__score { padding: 32px 34px; display: flex; flex-direction: column; gap: 8px; border-right: 1px solid var(--hairline-soft); }
.res__v { font-family: var(--font-heading); font-weight: 600; font-size: 72px; letter-spacing: -.04em; line-height: 1; color: var(--ink); }
.res__v small { font-size: 20px; color: var(--dim); font-weight: 500; letter-spacing: 0; margin-left: 4px; }
.res__lvl { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ho-orange-ink); }
.res__sum { margin: 8px 0 0; font-size: 14px; line-height: 1.6; color: var(--body); }
.res__radar { display: flex; align-items: center; justify-content: center; padding: 20px; border-right: 1px solid var(--hairline-soft); background: var(--canvas); }
.res__focus { padding: 32px 34px; display: flex; flex-direction: column; gap: 8px; background: #FFFBF9; }
.res__focus-t { font-family: var(--font-heading); font-weight: 600; font-size: 22px; letter-spacing: -.02em; margin: 2px 0 0; color: var(--ink); }
.res__focus-p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--body); }
.res__focus-ho { margin: 10px 0 0; display: flex; flex-direction: column; gap: 6px; font-size: 13.5px; line-height: 1.55; color: var(--ink); padding-top: 12px; border-top: 1px solid #F3D9CE; }
.res__dims { display: grid; grid-template-columns: repeat(5, 1fr); }
.rdim { padding: 22px 22px 24px; border-right: 1px solid var(--hairline-soft); display: flex; flex-direction: column; gap: 6px; }
.rdim:last-child { border-right: none; }
.rdim--focus { background: #FFFBF9; box-shadow: inset 0 3px 0 var(--ho-orange); }
.rdim__k { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .14em; color: var(--dim); }
.rdim--focus .rdim__k { color: var(--ho-orange-ink); }
.rdim__v { font-family: var(--font-heading); font-weight: 600; font-size: 32px; letter-spacing: -.03em; line-height: 1; color: var(--ink); }
.rdim__pct { font-size: 14px; color: var(--dim); font-weight: 500; }
.rdim__lvl { font-size: 12px; font-weight: 500; color: var(--body); }
.rdim__bar { display: block; height: 4px; border-radius: 999px; background: var(--hairline); overflow: hidden; margin: 4px 0 6px; }
.rdim__bar i { display: block; height: 100%; background: var(--gradient-brand); }
.rdim__p { margin: 0; font-size: 12.5px; line-height: 1.55; color: var(--body); }
.res__actions { display: flex; gap: 12px; padding: 20px 34px 24px; border-top: 1px solid var(--hairline-soft); background: var(--canvas); flex-wrap: wrap; }
.prop { padding: 0; }
.prop__form { padding: 30px 34px 30px; }
.prop__form .lead__field em { font-style: normal; font-weight: 400; color: var(--dim); margin-left: 4px; }
.prop__share { display: flex; gap: 10px; align-items: flex-start; margin: 18px 0 0; font-size: 13px; line-height: 1.5; color: var(--body); }
.prop__share input { margin-top: 3px; accent-color: var(--ho-orange); }
.prop__actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; padding: 18px 34px; border-top: 1px solid var(--hairline-soft); background: var(--canvas); position: sticky; top: 0; z-index: 5; }
.prop__preview { padding: 40px 48px 48px; border-top: 1px solid var(--hairline-soft); max-width: 820px; }
.prop__cover { padding-bottom: 24px; border-bottom: 1px solid var(--hairline); margin-bottom: 28px; }
.prop__cover .kicker { margin-bottom: 12px; }
.prop__title { font-family: var(--font-heading); font-weight: 600; font-size: 30px; letter-spacing: -.025em; margin: 0 0 8px; color: var(--ink); }
.prop__meta { margin: 0 0 18px; font-size: 13.5px; color: var(--body); }
.prop__score { display: flex; align-items: baseline; gap: 12px; }
.prop__score-v { font-family: var(--font-heading); font-weight: 600; font-size: 44px; letter-spacing: -.04em; color: var(--ink); line-height: 1; }
.prop__score-v small { font-size: 16px; color: var(--dim); margin-left: 3px; }
.prop__score-l { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ho-orange-ink); }
.prop__sec { margin-bottom: 26px; }
.prop__sec h3 { font-family: var(--font-heading); font-weight: 600; font-size: 19px; letter-spacing: -.015em; margin: 0 0 10px; color: var(--ink); padding-top: 12px; border-top: 2px solid var(--ho-orange); display: inline-block; }
.prop__sec h4 { font-size: 14.5px; font-weight: 500; margin: 14px 0 6px; color: var(--ink); }
.prop__sec p, .prop__sec li { font-size: 14px; line-height: 1.65; color: var(--body); margin: 0 0 10px; }
.prop__sec ul { padding-left: 18px; margin: 0; }
.prop__sec table { width: 100%; border-collapse: collapse; font-size: 13px; }
.prop__sec th, .prop__sec td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--hairline-soft); vertical-align: top; color: var(--body); }
.prop__sec th { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); background: var(--canvas); }
.prop__sec td:first-child { color: var(--ink); font-weight: 500; }
@media (max-width: 1080px) { .why--5 { grid-template-columns: repeat(3, 1fr); } .why--5 .why__cell { border-bottom: 1px solid var(--hairline-soft); } .asmt { grid-template-columns: 1fr; } .asmt__rail { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--hairline-soft); } .asmt__dim { min-width: 170px; border-bottom: none; border-right: 1px solid var(--hairline-soft); } .asmt__dim.is-active { box-shadow: inset 0 -3px 0 var(--ho-orange); } .asmt__opts { grid-template-columns: 1fr 1fr; } .res__top { grid-template-columns: 1fr; } .res__score, .res__radar { border-right: none; border-bottom: 1px solid var(--hairline-soft); } .res__dims { grid-template-columns: 1fr 1fr; } .rdim { border-bottom: 1px solid var(--hairline-soft); } }
@media (max-width: 640px) { .why--5 { grid-template-columns: 1fr; } .asmt__opts { grid-template-columns: 1fr; } .res__dims { grid-template-columns: 1fr; } .rdim { border-right: none; } .prop__preview { padding: 28px 22px; } .asmt__panel, .asmt__foot, .prop__form, .res__score, .res__focus { padding-left: 20px; padding-right: 20px; } }
@media print { body.is-printing header, body.is-printing main > section:not(#proposal), body.is-printing footer, body.is-printing .prop__form, body.is-printing .prop__actions, body.is-printing .section-head { display: none !important; } body.is-printing .prop { border: 0; } body.is-printing .prop__preview { max-width: none; padding: 0; border: 0; } }

/* ---- assessment v2: one question at a time ---- */
.dimcell { position: relative; }
.dimcell__ic { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 12px; color: var(--tint); background: color-mix(in srgb, var(--tint) 12%, white); margin-bottom: 14px; }
.asmt__dim { grid-template-columns: 28px 1fr; grid-template-rows: auto auto auto; column-gap: 10px; }
.asmt__dim-ic { grid-row: 1 / 4; display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 8px; color: var(--tint); background: color-mix(in srgb, var(--tint) 12%, white); }
.asmt__dim.is-active { box-shadow: inset 3px 0 0 var(--tint); }
.asmt__dim-dots { display: flex; gap: 4px; margin-top: 6px; }
.asmt__dim-dots i { width: 14px; height: 4px; border-radius: 999px; background: var(--hairline); }
.asmt__dim-dots i.is-on { background: var(--tint); }
.asmt__dim.is-done .asmt__dim-s { color: #2E8A6D; }
.asmt__panel { padding: 34px 40px 14px; }
.asmt__panel.is-in .qcard { animation: qIn .28s var(--ease); }
@keyframes qIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.qcard__top { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 18px; }
.qcard__dim { display: inline-flex; align-items: center; gap: 10px; font-weight: 500; font-size: 14px; color: var(--ink); }
.qcard__dim em { font-style: normal; font-weight: 400; color: var(--dim); }
.qcard__ic { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 11px; color: var(--tint); background: color-mix(in srgb, var(--tint) 12%, white); }
.qcard__n { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; color: var(--dim); }
.qcard__lede { margin: 0 0 14px; font-size: 14px; line-height: 1.6; color: var(--body); max-width: 640px; }
.qcard__q { font-family: var(--font-heading); font-weight: 600; font-size: 26px; letter-spacing: -.02em; line-height: 1.2; margin: 0 0 22px; color: var(--ink); max-width: 720px; }
.qopts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.qopt { position: relative; display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto; column-gap: 12px; row-gap: 8px; text-align: left; padding: 18px 18px 18px; border: 1px solid var(--hairline); border-radius: 14px; background: var(--white); color: var(--ink); cursor: pointer; transition: border-color .15s, background .15s, box-shadow .15s, transform .15s var(--ease); }
.qopt:hover { background: var(--hover); border-color: #C9BEC0; transform: translateY(-1px); }
.qopt.is-on { border-color: var(--tint); background: color-mix(in srgb, var(--tint) 7%, white); box-shadow: 0 0 0 3px color-mix(in srgb, var(--tint) 18%, transparent); }
.qopt__meter { display: inline-flex; gap: 3px; align-items: flex-end; height: 14px; grid-column: 1; grid-row: 1; }
.qopt__meter i { width: 6px; border-radius: 2px; background: var(--hairline); }
.qopt__meter i:nth-child(1) { height: 5px; } .qopt__meter i:nth-child(2) { height: 8px; } .qopt__meter i:nth-child(3) { height: 11px; } .qopt__meter i:nth-child(4) { height: 14px; }
.qopt__meter i.is-on { background: var(--tint); }
.qopt__lvl { grid-column: 2; grid-row: 1; font-family: var(--font-mono); font-size: 9px; letter-spacing: .14em; color: var(--dim); }
.qopt.is-on .qopt__lvl { color: var(--tint); }
.qopt__t { grid-column: 1 / 3; grid-row: 2; font-size: 15px; line-height: 1.45; color: var(--ink); padding-right: 26px; }
.qopt__key { position: absolute; right: 12px; bottom: 12px; width: 20px; height: 20px; border-radius: 6px; border: 1px solid var(--hairline); font-family: var(--font-mono); font-size: 10px; color: var(--dim); display: inline-flex; align-items: center; justify-content: center; background: var(--canvas); }
.qopt.is-on .qopt__key { background: var(--tint); border-color: var(--tint); color: #FFF; }
.qcard__hint { margin: 16px 0 0; font-size: 12px; color: var(--dim); }
.asmt__bar--seg { display: flex; gap: 3px; width: 260px; height: 6px; background: none; overflow: visible; }
.asmt__bar--seg i { flex: 1; height: 100%; border-radius: 999px; background: var(--hairline); transition: background .2s; }
.asmt__bar--seg i.is-on { background: var(--tint); }
.asmt__bar--seg i[data-cur] { box-shadow: 0 0 0 2px color-mix(in srgb, var(--tint) 35%, transparent); }
.rdim__ic { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 10px; color: var(--tint); background: color-mix(in srgb, var(--tint) 12%, white); margin-bottom: 8px; }
@media (max-width: 1080px) { .asmt__dim { grid-template-rows: auto auto; } .asmt__dim-dots { display: none; } .asmt__dim-ic { grid-row: 1 / 3; } }
@media (max-width: 640px) { .qopts { grid-template-columns: 1fr; } .qcard__q { font-size: 21px; } .asmt__panel { padding: 24px 20px 10px; } .asmt__bar--seg { width: 100%; } }

/* ---- book a demo modal ---- */
.demo .lead__card { max-width: 460px; transition: max-width .25s var(--ease); }
.demo.demo--wide .lead__card { max-width: 900px; }
.demo__step { display: flex; flex-direction: column; gap: 14px; }
.demo__step[hidden] { display: none; }
.demo__cal { min-height: 120px; }
.demo__cal iframe { display: block; width: 100%; height: min(680px, 78vh); border: 0; border-radius: 12px; background: var(--canvas); }
.demo__done { padding: 18px 20px; border-radius: 12px; background: var(--canvas); border: 1px solid var(--hairline-soft); }
.demo__done .label { display: block; margin-bottom: 8px; }
.demo__done p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--body); }
.demo__done a { color: var(--ho-orange-ink); font-weight: 500; }
@media (max-width: 640px) { .demo__cal iframe { height: 70vh; } }

/* ---- consent checkbox + cookie card ---- */
.lead__check { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; line-height: 1.5; color: var(--body); margin-top: 2px; }
.lead__check input { margin-top: 3px; accent-color: var(--ho-orange); flex: none; }
.lead__check a { color: var(--ho-orange-ink); text-decoration: underline; text-underline-offset: 2px; }
.cookie { position: fixed; left: 20px; bottom: 20px; z-index: 190; width: min(380px, calc(100vw - 40px)); padding: 20px 20px 18px; border-radius: 14px; background: #1B1114; color: var(--dark-fg); border: 1px solid rgba(250,248,247,.14); box-shadow: 0 24px 60px -24px rgba(0,0,0,.7); opacity: 0; transform: translateY(10px); transition: opacity .26s var(--ease), transform .26s var(--ease); }
.cookie.is-in { opacity: 1; transform: none; }
.cookie.is-leaving { opacity: 0; transform: translateY(8px); }
.cookie__title { font-family: var(--font-heading); font-weight: 600; font-size: 16px; letter-spacing: -.01em; margin: 0 0 6px; color: var(--dark-fg); }
.cookie__text { margin: 0 0 14px; font-size: 12.5px; line-height: 1.55; color: rgba(250,248,247,.72); }
.cookie__text a { color: #E8B44A; }
.cookie__actions { display: flex; gap: 8px; justify-content: flex-end; }
.cookie .btn--secondary { background: rgba(250,248,247,.06); border-color: rgba(250,248,247,.18); color: var(--dark-fg); }
@media (prefers-reduced-motion: reduce) { .cookie { transition: none; } }
.legal { padding: 10px 0 20px; }
.legal__article { max-width: 820px; padding: 24px 48px 36px; }
.legal__article .art__h2 { font-size: 22px; margin-top: 8px; }
.footer__bar a { color: inherit; }
@media (max-width: 640px) { .legal__article { padding: 16px 20px 28px; } }
