/* processrun — landing page
   Dark, clean, Sanny-inspired.
   Solid backgrounds. Rounded-square buttons. Strong image vignettes.
   All-Montserrat. */

:root {
  --bg-top:    #0A0A0C;
  --bg:        #141518;
  --bg-elev:   rgba(255,255,255,0.04);
  --bg-rule:   rgba(255,255,255,0.08);
  --bg-rule-strong: rgba(255,255,255,0.18);
  --ink:       #ECEAE5;
  --ink-soft:  #9B9893;
  --ink-mute:  #6A6864;
  --ink-faint: #2B2A28;
  --accent:    #E63950;
  --accent-deep: #B8253D;
  --font-sans: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, monospace;
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(.2,.7,.2,1);
  --radius: 14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: #0A0A0C; }

.container { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
section { position: relative; }
.section-spacing { padding-block: clamp(88px, 11vw, 160px); }

/* ---------------- Typography ---------------- */
h1, h2, h3, h4 { margin: 0; color: var(--ink); font-family: var(--font-sans); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow .num { color: var(--accent); }
.eyebrow .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; display: inline-block; }

.h-display {
  font-weight: 800;
  font-size: clamp(44px, 7vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
  max-width: 16ch;
}
.h-section {
  font-weight: 700;
  font-size: clamp(34px, 4.8vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.h-sub {
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.022em;
  color: var(--ink);
}

.lede {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 48ch;
  font-weight: 400;
}

p { margin: 0 0 1em; color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
p strong { color: var(--ink); font-weight: 600; }

/* Gray-to-ink word reveal */
.gray-reveal { color: var(--ink-faint); transition: color .9s var(--ease); display: inline; }
.gray-reveal.lit { color: var(--ink); }

/* ---------------- Buttons (rounded square, Sanny-style) ---------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 22px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn-primary .arrow { transition: transform .25s var(--ease); }
.btn-primary:hover .arrow { transform: translateX(3px); }

/* Shiny button — magicui port: a diagonal shine sweeps across, pauses, repeats. */
@property --shine-x {
  syntax: '<percentage>';
  initial-value: 100%;
  inherits: false;
}
.btn-shiny {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-shiny > * { position: relative; z-index: 1; }
.btn-shiny::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    -75deg,
    transparent 0%,
    transparent calc(var(--shine-x) + 20%),
    rgba(255, 255, 255, 0.55) calc(var(--shine-x) + 30%),
    rgba(255, 255, 255, 0) calc(var(--shine-x) + 45%),
    transparent calc(var(--shine-x) + 100%)
  );
  animation: btn-shine 5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes btn-shine {
  0%   { --shine-x: 100%; }
  25%  { --shine-x: -100%; }
  100% { --shine-x: -100%; }
}
@media (prefers-reduced-motion: reduce) {
  .btn-shiny::after { animation: none; }
}
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--bg-rule-strong); }
.btn-ghost:hover { border-color: var(--ink); }

.text-link {
  font-weight: 500; font-size: 14px;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--bg-rule);
  padding-bottom: 2px;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.text-link:hover { border-color: var(--accent); color: var(--accent); }
.text-link .arrow { display: inline-block; margin-left: 4px; transition: transform .2s var(--ease); }
.text-link:hover .arrow { transform: translateX(3px); }

/* ---------------- Nav ---------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  padding: 14px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: rgba(10,10,12,0.7);
  border: 1px solid var(--bg-rule);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border-radius: var(--radius);
  padding: 10px 14px 10px 20px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; letter-spacing: -0.015em;
  color: var(--ink); text-decoration: none; font-size: 16px;
}
.nav-glyph { color: var(--ink); }
.nav-glyph circle:last-child { transition: transform .35s var(--ease); transform-origin: 18.5px 11px; }
.nav-brand:hover .nav-glyph circle:last-child { transform: scale(1.25); }

.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--ink-soft); text-decoration: none; transition: color .2s var(--ease); }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: var(--accent); color: #fff;
  border-radius: var(--radius); font-size: 13px; font-weight: 600; text-decoration: none;
  transition: background-color .25s var(--ease);
}
.nav-cta:hover { background: var(--accent-deep); }
@media (max-width: 880px) { .nav-links { display: none; } }

/* ---------------- Hero (solid black at top, fading into the page gray) ---------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 160px;
  padding-bottom: clamp(72px, 9vw, 140px);
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-top) 35%, var(--bg) 100%);
}
.hero-content { width: 100%; position: relative; z-index: 1; }

/* Animated grid pattern — subtle backdrop for the hero.
   Static grid lines + random squares that pulse in and out.
   Radial mask reveals the upper-right area; 12deg skewY for a Sanny-style tilt. */
.hero-grid {
  position: absolute;
  inset: -30% 0 -30% 0;
  width: 100%;
  height: 200%;
  z-index: 0;
  pointer-events: none;
  transform: skewY(-12deg);
  -webkit-mask-image: radial-gradient(circle 820px at 72% 32%, rgba(255,255,255,1) 0%, rgba(255,255,255,0.75) 40%, rgba(255,255,255,0.3) 80%, transparent 100%);
          mask-image: radial-gradient(circle 820px at 72% 32%, rgba(255,255,255,1) 0%, rgba(255,255,255,0.75) 40%, rgba(255,255,255,0.3) 80%, transparent 100%);
}
.hero-grid rect.grid-square {
  fill: rgba(255, 255, 255, 1);
  opacity: 0;
  animation: grid-pulse 4s ease-in-out infinite;
}
@keyframes grid-pulse {
  0%, 75%, 100% { opacity: 0; }
  37.5%        { opacity: 0.14; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-grid rect.grid-square { animation: none; opacity: 0; }
}

/* Rotating word in H1 — spring slide up/in, up/out */
.h-line { display: block; }
.h-rotate {
  position: relative;
  display: block;
  height: 1em;
  overflow: hidden;
  color: var(--accent);
}
.h-rotate-word {
  position: absolute;
  left: 0; right: 0; top: 0;
  display: block;
  opacity: 0;
  transform: translateY(150%);
  transition:
    transform 1.1s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.6s ease-out;
  will-change: transform, opacity;
}
.h-rotate-word.is-active { opacity: 1; transform: translateY(0); }
.h-rotate-word.is-past   { opacity: 0; transform: translateY(-150%); }
@media (prefers-reduced-motion: reduce) {
  .h-rotate-word { transition: none; }
}
.hero-eyebrow { margin-bottom: 28px; }

.hero-sub {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-top: 24px;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

.hero-actions {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-top: 32px;
}
.cta-reassure {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 16px;
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.cta-reassure .dot { width: 3px; height: 3px; background: var(--ink-mute); border-radius: 50%; }

.hero-meta {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--bg-rule);
}
@media (max-width: 820px) { .hero-meta { grid-template-columns: 1fr; } }
.hero-meta-cell {
  padding: 28px 28px 28px 0;
  border-right: 1px solid var(--bg-rule);
}
.hero-meta-cell:last-child { border-right: none; }
.hero-meta-cell:not(:first-child) { padding-left: 28px; }
@media (max-width: 820px) {
  .hero-meta-cell { border-right: none; border-bottom: 1px solid var(--bg-rule); padding: 24px 0; }
  .hero-meta-cell:not(:first-child) { padding-left: 0; }
  .hero-meta-cell:last-child { border-bottom: none; }
}
.hero-meta-value {
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.hero-meta-label { color: var(--ink-soft); font-size: 13px; margin-top: 10px; max-width: 24ch; line-height: 1.4; }

/* ---------------- Logo marquee ---------------- */
.marquee {
  padding: 40px 0 44px;
  position: relative;
}
.marquee-head {
  text-align: center;
  margin-bottom: 24px;
}
.marquee-window {
  position: relative;
  overflow: hidden;
  /* ~2 inches each side: cap visible track at 900px on a wide viewport */
  max-width: 900px;
  margin: 0 auto;
  /* Strong, soft vignettes at both ends so logos fade in/out smoothly */
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.45) 8%, #000 22%, #000 78%, rgba(0,0,0,0.45) 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.45) 8%, #000 22%, #000 78%, rgba(0,0,0,0.45) 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 56px;
  align-items: center;
  animation: marquee 38s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-logo {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.8);
  transition: filter .25s var(--ease);
  flex-shrink: 0;
  object-fit: contain;
}
.marquee-logo:hover { filter: brightness(0) invert(1) opacity(1); }

/* ---------------- Stats band ---------------- */
.stats-band { padding-block: clamp(88px, 11vw, 144px); }
.stats-head { margin-bottom: 56px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--bg-rule);
  border-bottom: 1px solid var(--bg-rule);
}
@media (max-width: 820px) { .stats-grid { grid-template-columns: 1fr; } }
.stat-card {
  padding: 44px 0;
  border-right: 1px solid var(--bg-rule);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}
@media (max-width: 1100px) {
  .stat-card { grid-template-columns: 1fr; padding: 36px 24px; align-items: start; }
}
.stat-card:last-child { border-right: none; }
@media (max-width: 820px) {
  .stat-card { border-right: none; border-bottom: 1px solid var(--bg-rule); }
  .stat-card:last-child { border-bottom: none; }
}
.stat-num {
  font-weight: 700;
  font-size: clamp(64px, 7.5vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
  word-break: keep-all;
  white-space: nowrap;
  text-align: right;
  font-variant-numeric: tabular-nums;
  /* Container 1: vertical divider creates a clear column boundary */
  padding: 8px 40px 8px 36px;
  border-right: 1px solid var(--bg-rule);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.stat-body {
  /* Container 2 */
  padding: 8px 36px 8px 40px;
}
@media (max-width: 1100px) {
  .stat-num { border-right: none; padding: 0 0 12px; text-align: left; justify-content: flex-start; }
  .stat-body { padding: 0; }
}
.stat-num .pct { color: var(--accent); }
.stat-body .h-sub { margin-bottom: 12px; }
.stat-body p { font-size: 14px; line-height: 1.55; }
.stat-source { font-family: var(--font-mono); font-size: 10px; color: var(--ink-mute); letter-spacing: 0.06em; margin-top: 12px; text-transform: uppercase; }

/* ---------------- Pains ---------------- */
.pains-head {
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 56px; align-items: end; margin-bottom: 56px;
}
@media (max-width: 820px) { .pains-head { grid-template-columns: 1fr; gap: 24px; } }
.section-head-title { display: flex; flex-direction: column; gap: 22px; }

.pains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 820px) { .pains-grid { grid-template-columns: 1fr; } }
.pain {
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 300px;
  background: var(--bg-elev);
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.pain:hover { border-color: rgba(255, 255, 255, 0.10); }
.pain-num {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.1em;
  color: var(--ink-mute); font-weight: 500;
  text-transform: uppercase;
}
.pain-quote {
  font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.pain-body { color: var(--ink-soft); font-size: 14px; line-height: 1.5; margin: 0; }
.pain-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  color: var(--accent);
}
.pain-icon svg { width: 40px; height: 40px; stroke-width: 1.25; stroke: currentColor; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* ---------------- Differentiator ---------------- */
.diff-wrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 64px; align-items: start; }
@media (max-width: 980px) { .diff-wrap { grid-template-columns: 1fr; gap: 32px; } }
.diff-body { padding-top: calc(1em + 22px); }
@media (max-width: 980px) { .diff-body { padding-top: 0; } }
.diff-body p { font-size: clamp(17px, 1.5vw, 22px); line-height: 1.45; max-width: 50ch; letter-spacing: -0.015em; font-weight: 400; color: var(--ink-soft); }
.diff-body p .gray-reveal { color: color-mix(in oklab, var(--ink-faint) 60%, transparent); transition: color .6s var(--ease); }
.diff-body p .gray-reveal.lit { color: var(--accent); }
.diff-body p.reveal-to-white .gray-reveal { color: rgba(255,255,255,0.32); transition: color .6s var(--ease); }
.diff-body p.reveal-to-white .gray-reveal.lit { color: #fff; }

/* ---------------- Path ---------------- */
.path-head { margin-bottom: 64px; }
.path-stages {
  position: relative;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding-top: 32px;
}
@media (max-width: 820px) { .path-stages { grid-template-columns: 1fr; } }
.path-line { position: absolute; top: 22px; left: 8%; right: 8%; height: 2px; z-index: 0; }
.path-line svg { width: 100%; height: 100%; overflow: visible; display: block; }
.path-line path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  /* solid line; stroke-dashoffset is set in JS for scroll-tied progressive fill */
}
@media (max-width: 820px) { .path-line { display: none; } }

.stage { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; padding: 24px; }
.stage-marker {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--accent);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 13px; color: var(--accent); font-weight: 500;
}
.stage-day { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--accent); text-transform: uppercase; font-weight: 500; }
.stage-title { font-weight: 600; font-size: clamp(22px, 2vw, 28px); line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); }
.stage-body { color: var(--ink-soft); font-size: 14px; line-height: 1.5; max-width: 30ch; margin: 0; }

/* ---------------- Included ---------------- */
.included-wrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 64px; align-items: start; }
@media (max-width: 980px) { .included-wrap { grid-template-columns: 1fr; gap: 32px; } }
.included-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--bg-rule); }
.included-list li {
  display: grid; grid-template-columns: 24px 1fr;
  gap: 14px; padding: 18px 0;
  border-bottom: 1px solid var(--bg-rule);
  align-items: baseline; font-size: 15px; color: var(--ink); font-weight: 500;
  letter-spacing: -0.01em;
}
.included-list .check { color: var(--accent); font-size: 18px; line-height: 1; font-weight: 700; }

/* ---------------- Guarantees (deeper black band) ---------------- */
.guarantees { background: var(--bg-top); padding-block: clamp(88px, 11vw, 144px); }
.guarantee-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 56px;
}
@media (max-width: 820px) { .guarantee-grid { grid-template-columns: 1fr; } }
.guarantee {
  padding: 32px 28px;
  background: rgba(255,255,255,0.025);
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 12px;
}
.guarantee-num { font-family: var(--font-mono); font-size: 10px; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; }
.guarantee-title {
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.guarantee-body { color: var(--ink-soft); font-size: 14px; line-height: 1.55; margin: 0; }

/* ---------------- Mid CTA ---------------- */
.mid-cta { text-align: center; display: grid; justify-items: center; gap: 24px; }
.mid-cta .h-section { max-width: 18ch; }
.mid-cta-actions { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; justify-content: center; }

/* ---------------- Before / After ---------------- */
.ba-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--bg-rule);
  margin-top: 48px;
}
@media (max-width: 820px) { .ba-grid { grid-template-columns: 1fr; } }
.ba-col { padding: 32px 32px; }
.ba-col-now { border-right: 1px solid var(--bg-rule); }
@media (max-width: 820px) { .ba-col-now { border-right: none; border-bottom: 1px solid var(--bg-rule); } }
.ba-col-after { background: var(--bg-top); }
.ba-col-after .ba-header { color: var(--accent); }
.ba-header { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 24px; font-weight: 500; }
.ba-row { padding: 18px 0; border-top: 1px solid var(--bg-rule); font-size: 15px; line-height: 1.4; color: var(--ink); font-weight: 500; letter-spacing: -0.01em; }
.ba-row:first-of-type { border-top: none; padding-top: 4px; }

/* ---------------- Offers ---------------- */
.offers-head { margin-bottom: 56px; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 980px) { .offer-grid { grid-template-columns: 1fr; } }
.offer {
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 380px;
  position: relative;
  background: var(--bg-elev);
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.offer:hover { transform: translateY(-3px); border-color: rgba(255, 255, 255, 0.10); }
.offer-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }
.offer-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.offer-title { font-weight: 700; font-size: clamp(24px, 2.2vw, 30px); line-height: 1.05; letter-spacing: -0.025em; color: var(--ink); }
.offer-duration { font-family: var(--font-mono); font-size: 12px; color: var(--accent); letter-spacing: 0.06em; }
.offer-body { color: var(--ink-soft); font-size: 14px; line-height: 1.55; flex: 1; margin: 0; }
.offer-guarantee {
  font-size: 12px; color: var(--ink-mute);
  border-top: 1px solid var(--bg-rule);
  padding-top: 16px; margin-top: auto;
  display: flex; align-items: center; gap: 10px;
}
.offer-guarantee::before { content: ''; width: 16px; height: 1px; background: var(--accent); display: inline-block; }
.offer-most {
  position: absolute; top: 20px; right: 22px;
  font-family: var(--font-mono); font-size: 10px; color: var(--accent);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.offer-cta-row { margin-top: 40px; text-align: center; font-size: 14px; color: var(--ink-soft); }

/* ---------------- Proof / Cases ---------------- */
/* Strong vignette, no border, image blends into background */
.cases-head { margin-bottom: 48px; }
.case {
  display: grid; grid-template-columns: 320px minmax(0, 1fr);
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid var(--bg-rule);
  align-items: center;
}
.case:last-child { border-bottom: 1px solid var(--bg-rule); }
@media (max-width: 820px) { .case { grid-template-columns: 1fr; gap: 20px; padding: 32px 0; } }
.case-media {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.05) brightness(0.85);
  border-radius: 0;
}
.case-media::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 70% at center, transparent 5%, rgba(20,21,24,0.55) 55%, rgba(20,21,24,1) 100%);
}
.case-name { font-weight: 700; font-size: clamp(24px, 2.2vw, 32px); line-height: 1.05; letter-spacing: -0.025em; color: var(--ink); }
.case-vert { font-family: var(--font-mono); font-size: 11px; color: var(--ink-mute); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 6px; }
.case-status { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; color: var(--accent); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 12px; font-family: var(--font-mono); }
.case-status .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 2.2s var(--ease) infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(230,57,80,0.5); } 70% { box-shadow: 0 0 0 12px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }
.case-body { font-size: 15px; line-height: 1.55; color: var(--ink-soft); max-width: 56ch; margin-top: 14px; }
.case-body strong { color: var(--ink); font-weight: 600; }
.case-stats { display: flex; gap: 28px; margin-top: 20px; flex-wrap: wrap; }
.case-stat-label { font-family: var(--font-mono); font-size: 10px; color: var(--ink-mute); letter-spacing: 0.08em; text-transform: uppercase; }
.case-stat-value { font-weight: 700; font-size: 28px; color: var(--ink); line-height: 1; margin-top: 6px; letter-spacing: -0.022em; }

/* ---------------- Border beam ----------------
   A steady thin outline around each card, with a brighter section
   rotating smoothly around the perimeter. */
@property --beam-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.pain,
.guarantee,
.offer,
.lead-form { position: relative; }

.pain::before,
.guarantee::before,
.offer::before,
.lead-form::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--beam-angle),
    rgba(255, 255, 255, 0.09) 0deg,
    rgba(255, 255, 255, 0.09) 270deg,
    rgba(220, 228, 245, 0.45) 320deg,
    rgba(255, 255, 255, 0.85) 350deg,
    rgba(220, 228, 245, 0.45) 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  animation: beam-rotate 18s linear infinite;
  z-index: 1;
}

@keyframes beam-rotate {
  to { --beam-angle: 360deg; }
}

/* Middle card in any 3-card row spins the opposite direction */
.pain:nth-child(2)::before,
.guarantee:nth-child(2)::before,
.offer:nth-child(2)::before {
  animation-direction: reverse;
}

@media (prefers-reduced-motion: reduce) {
  .pain::before,
  .guarantee::before,
  .offer::before,
  .lead-form::before { animation: none; }
}

/* ---------------- Orbit: what we operationalize ---------------- */
.orbit-section { padding-block: clamp(80px, 10vw, 144px); }
.orbit-head {
  text-align: center;
  margin-bottom: 56px;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.orbit-head .eyebrow { justify-content: center; }
.orbit-head .h-section { max-width: 18ch; }
.orbit-hint {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}

.orbit-stage {
  position: relative;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.07);
  pointer-events: none;
}
.orbit-ring--outer { inset: 0; }
.orbit-ring--inner {
  top: 50%; left: 50%;
  width: 56%; height: 56%;
  transform: translate(-50%, -50%);
}
.orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orbit-spin {
  position: relative;
  width: 100%; height: 100%;
  animation: orbit-cw var(--duration, 40s) linear infinite;
}
.orbit-inner .orbit-spin { animation-direction: reverse; }

.orbit-item {
  position: absolute;
  left: calc(50% + sin(var(--angle)) * var(--radius));
  top: calc(50% - cos(var(--angle)) * var(--radius));
  transform: translate(-50%, -50%);
  pointer-events: auto;
}
.orbit-icon-wrap {
  display: inline-block;
  animation: orbit-ccw var(--duration, 40s) linear infinite;
}
.orbit-inner .orbit-icon-wrap { animation-direction: reverse; }

@keyframes orbit-cw  { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes orbit-ccw { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

.orbit-icon {
  display: grid; place-items: center;
  width: 60px; height: 60px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #F4F2EC;
  cursor: pointer;
  transition:
    transform .3s var(--ease),
    background-color .25s var(--ease),
    border-color .25s var(--ease),
    box-shadow .35s var(--ease);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 0 1px rgba(255,255,255,0.02);
}
.orbit-icon svg {
  width: 26px; height: 26px;
  pointer-events: none;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.18));
  transition: filter .35s var(--ease);
}
.orbit-icon:hover,
.orbit-icon[aria-pressed="true"] {
  border-color: var(--accent);
  background: rgba(230, 57, 80, 0.10);
  color: var(--accent);
  transform: scale(1.14);
  box-shadow: 0 0 28px rgba(230, 57, 80, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.orbit-icon:hover svg,
.orbit-icon[aria-pressed="true"] svg {
  filter: drop-shadow(0 0 9px rgba(230, 57, 80, 0.55));
}
.orbit-inner .orbit-icon { width: 46px; height: 46px; }
.orbit-inner .orbit-icon svg { width: 20px; height: 20px; }

/* Per-icon popover that travels with each icon (sibling of the button,
   inside the counter-rotating .orbit-icon-wrap, so it stays upright). */
.orbit-popover {
  position: absolute;
  left: 50%;
  top: 50%;
  /* Offset away from the icon in the direction of its initial angle —
     sin/cos of --angle gives a radially-outward offset at t=0, and the
     popover then travels with the icon as the orbit spins. */
  --pop-offset: 120px;
  transform:
    translate(
      calc(-50% + sin(var(--angle)) * var(--pop-offset)),
      calc(-50% - cos(var(--angle)) * var(--pop-offset))
    );
  width: 280px;
  padding: 20px 22px 18px;
  background: rgba(10,10,12,0.94);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s var(--ease), visibility 0s linear .25s;
  z-index: 5;
  /* Wrap long words and let height grow with content */
  overflow-wrap: anywhere;
  hyphens: auto;
  text-align: left;
  box-sizing: border-box;
}
.orbit-icon:hover ~ .orbit-popover,
.orbit-icon:focus-visible ~ .orbit-popover,
.orbit-icon[aria-pressed="true"] ~ .orbit-popover {
  opacity: 1;
  visibility: visible;
  transition: opacity .25s var(--ease);
}
.orbit-inner .orbit-popover { --pop-offset: 100px; width: 260px; }

.orbit-popover-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.orbit-popover-title {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 14px;
  line-height: 1.2;
}
.orbit-popover-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.orbit-popover-list li {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-soft);
  position: relative;
  padding-left: 16px;
  margin: 0;
  word-break: normal;
}
.orbit-popover-list li::before {
  content: '+';
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
  font-weight: 700;
  line-height: 1.45;
}

/* Pause both rotations whenever any icon is being hovered, focused, or pressed.
   Both spins stop together so the icons stay upright while the user reads. */
.orbit-stage:has(.orbit-icon:hover) .orbit-spin,
.orbit-stage:has(.orbit-icon:hover) .orbit-icon-wrap,
.orbit-stage:has(.orbit-icon:focus-visible) .orbit-spin,
.orbit-stage:has(.orbit-icon:focus-visible) .orbit-icon-wrap,
.orbit-stage:has(.orbit-icon[aria-pressed="true"]) .orbit-spin,
.orbit-stage:has(.orbit-icon[aria-pressed="true"]) .orbit-icon-wrap {
  animation-play-state: paused;
}

@media (max-width: 720px) {
  .orbit-stage { max-width: 420px; }
  .orbit-icon { width: 44px; height: 44px; }
  .orbit-icon svg { width: 20px; height: 20px; }
  .orbit-inner .orbit-icon { width: 36px; height: 36px; }
  .orbit-inner .orbit-icon svg { width: 16px; height: 16px; }
  .orbit-card { width: 60%; padding: 16px 16px 14px; }
  .orbit-card-title { font-size: 15px; margin-bottom: 10px; }
  .orbit-card-list li { font-size: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .orbit-spin, .orbit-icon-wrap { animation: none; }
}

/* ---------------- Capabilities rows ---------------- */
.cap-band { padding-block: clamp(56px, 7vw, 96px); }
.cap-rows { display: grid; gap: 14px; }
.cap-row {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.cap-track { display: flex; gap: 14px; width: max-content; animation: marquee 42s linear infinite; }
.cap-row.rev .cap-track { animation-direction: reverse; animation-duration: 48s; }
.cap-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  background: var(--bg-elev);
  border: 1px solid var(--bg-rule);
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.cap-pill svg { width: 16px; height: 16px; stroke-width: 1.5; stroke: var(--accent); fill: none; }

/* ---------------- About (strong vignette on Sheryl portrait, readable caption) ---------------- */
.about-wrap { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr); gap: 56px; align-items: start; }
@media (max-width: 980px) { .about-wrap { grid-template-columns: 1fr; gap: 32px; } }
.about-portrait {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center top;
  position: relative;
  overflow: hidden;
  filter: grayscale(1) contrast(1.05) brightness(0.9);
}
.about-portrait::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 80% at center, transparent 10%, rgba(20,21,24,0.5) 55%, rgba(20,21,24,1) 100%);
}
.about-portrait-cap {
  position: absolute; left: 20px; bottom: 20px; right: 20px;
  z-index: 2;
  background: var(--accent);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.92);
}
.about-portrait-cap b {
  font-family: var(--font-sans);
  font-weight: 600;
  display: block;
  font-size: 14px;
  letter-spacing: -0.005em;
  margin-bottom: 4px;
  color: #fff;
}
.about-body p { font-size: 16px; line-height: 1.6; color: var(--ink-soft); }
.about-body p strong { color: var(--ink); font-weight: 600; }
.about-creds {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--bg-rule);
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.about-cred .label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 6px; }
.about-cred .value { font-weight: 600; font-size: 20px; color: var(--ink); letter-spacing: -0.02em; line-height: 1.1; }
.about-cred .sub { color: var(--ink-soft); font-size: 12px; margin-top: 4px; }

/* ---------------- FAQ ---------------- */
.faq-wrap { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 56px; align-items: start; }
@media (max-width: 820px) { .faq-wrap { grid-template-columns: 1fr; gap: 24px; } }
.faq-list { border-top: 1px solid var(--bg-rule); }
.faq-item { border-bottom: 1px solid var(--bg-rule); }
.faq-q {
  background: transparent; border: none; text-align: left;
  padding: 22px 0;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.015em;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  cursor: pointer;
  transition: color .2s var(--ease);
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--accent); }
.faq-toggle { width: 26px; height: 26px; display: grid; place-items: center; position: relative; flex-shrink: 0; }
.faq-toggle::before, .faq-toggle::after { content: ''; position: absolute; background: currentColor; transition: transform .3s var(--ease); }
.faq-toggle::before { width: 12px; height: 1.5px; }
.faq-toggle::after  { width: 1.5px; height: 12px; }
.faq-item[open] .faq-toggle::after { transform: scaleY(0); }
.faq-a { padding: 0 0 24px; color: var(--ink-soft); font-size: 14px; line-height: 1.6; max-width: 60ch; }
.faq-a p { margin: 0; color: var(--ink-soft); font-size: 14px; }

/* ---------------- Final CTA (solid black, no waves) ---------------- */
.final { background: var(--bg-top); padding-block: clamp(112px, 13vw, 184px); text-align: center; }
.final-inner { display: grid; justify-items: center; gap: 28px; }
.final-headline { font-weight: 800; font-size: clamp(44px, 7vw, 108px); line-height: 0.98; letter-spacing: -0.04em; color: var(--ink); max-width: 16ch; }
.final .lede { text-align: center; max-width: 50ch; }

/* ---------------- Lead form ---------------- */
.form-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
  margin-top: 56px;
  text-align: left;
  width: 100%;
  max-width: 1100px;
}
@media (max-width: 980px) { .form-wrap { grid-template-columns: 1fr; gap: 32px; } }

.form-side h3 { font-weight: 600; font-size: 16px; color: var(--ink); margin: 0 0 20px; letter-spacing: -0.015em; }
.form-steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.form-step { display: grid; grid-template-columns: 64px 1fr; gap: 16px; align-items: start; padding: 16px 0; border-top: 1px solid var(--bg-rule); }
.form-step:last-child { border-bottom: 1px solid var(--bg-rule); }
.form-step-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.06em;
  font-weight: 500;
  padding-top: 2px;
}
.form-step-body { color: var(--ink-soft); font-size: 14px; line-height: 1.5; }
.form-step-body b { color: var(--ink); font-weight: 600; display: block; margin-bottom: 4px; letter-spacing: -0.01em; }

.lead-form {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.025);
  border: 1px solid transparent;
}
.lead-form-head { margin-bottom: 20px; }
.lead-form-title { font-weight: 600; font-size: 20px; letter-spacing: -0.02em; color: var(--ink); margin: 0 0 6px; }
.lead-form-sub { color: var(--ink-soft); font-size: 13px; margin: 0; }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
.field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.field input,
.field select {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 13px 14px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--bg-rule);
  border-radius: 10px;
  color: var(--ink);
  width: 100%;
  transition: border-color .2s var(--ease);
}
.field input:focus,
.field select:focus { outline: none; border-color: var(--accent); }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%239B9893' stroke-width='1.5'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.form-submit {
  width: 100%;
  margin-top: 6px;
  padding: 16px 22px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.form-submit:hover { background: var(--accent-deep); transform: translateY(-1px); }
.form-foot { margin-top: 14px; font-family: var(--font-mono); font-size: 10px; color: var(--ink-mute); letter-spacing: 0.06em; text-align: center; text-transform: uppercase; }
.form-alt {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--bg-rule);
  font-size: 12px;
  color: var(--ink-soft);
  text-align: center;
}
.form-alt a { color: var(--ink); border-bottom: 1px solid var(--bg-rule); padding-bottom: 1px; text-decoration: none; }
.form-alt a:hover { color: var(--accent); border-color: var(--accent); }

.form-success { text-align: center; padding: 24px 0; }
.form-success-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--accent);
  display: grid; place-items: center;
  margin: 0 auto 16px;
  color: #fff;
  font-size: 24px;
}
.form-success h4 { font-weight: 600; font-size: 20px; color: var(--ink); letter-spacing: -0.02em; margin: 0 0 8px; }
.form-success p { color: var(--ink-soft); font-size: 14px; margin: 0; line-height: 1.5; }

/* ---------------- Sticky CTA ---------------- */
.sticky-cta {
  position: fixed; left: 50%; bottom: 20px; transform: translate(-50%, 140%);
  z-index: 70;
  display: flex; align-items: center; gap: 16px;
  padding: 8px 8px 8px 18px;
  background: rgba(10,10,12,0.85);
  border: 1px solid var(--bg-rule);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border-radius: var(--radius);
  transition: transform .5s var(--ease);
  max-width: calc(100vw - 32px);
}
.sticky-cta.show { transform: translate(-50%, 0); }
.sticky-cta-msg {
  font-weight: 500;
  font-size: 13px;
  color: var(--ink);
  white-space: nowrap;
}
.sticky-cta-msg b { font-weight: 600; }
.sticky-cta-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--accent); color: #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 12px;
  text-decoration: none;
  transition: background-color .25s var(--ease);
  white-space: nowrap;
}
.sticky-cta-cta:hover { background: var(--accent-deep); }
@media (max-width: 640px) {
  .sticky-cta { gap: 8px; padding: 6px 6px 6px 14px; }
  .sticky-cta-msg { font-size: 12px; white-space: normal; }
  .sticky-cta-msg .desktop-only { display: none; }
}

/* ---------------- Footer ---------------- */
.foot { border-top: 1px solid var(--bg-rule); padding: 48px 0 28px; background: var(--bg-top); }
.foot-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 48px; }
@media (max-width: 820px) { .foot-top { grid-template-columns: 1fr 1fr; gap: 28px; } }
.foot-mark { display: flex; align-items: center; gap: 10px; }
.foot-tag { font-weight: 500; font-size: 15px; line-height: 1.4; color: var(--ink); margin-top: 14px; max-width: 28ch; letter-spacing: -0.015em; }
.foot-col h4 { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 14px; font-weight: 500; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { color: var(--ink); text-decoration: none; font-size: 14px; transition: color .2s var(--ease); }
.foot-col a:hover { color: var(--accent); }
.foot-bottom { border-top: 1px solid var(--bg-rule); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 12px; color: var(--ink-mute); font-family: var(--font-mono); letter-spacing: 0.04em; }

/* ---------------- Scroll reveal ---------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .marquee-track, .cap-track { animation: none; }
  .twall-col--up .twall-track, .twall-col--down .twall-track { animation: none; transform: none; }
}

/* ---------------- Testimonials wall (3-column scrolling, vignette) ---------------- */
.testimonials-wall-section {
  position: relative;
  background: var(--bg-top);
  color: var(--ink);
  padding: 120px 0 140px;
  overflow: hidden;
  isolation: isolate;
}
.testimonials-wall-section .vignette {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255,255,255,0.025) 0%, transparent 60%),
    radial-gradient(ellipse 100% 90% at 50% 50%, transparent 30%, rgba(0,0,0,0.85) 100%);
}
.testimonials-wall-section .container { position: relative; z-index: 1; }
.testimonials-head { margin-bottom: 56px; }
.testimonials-wall-section .h-section { color: var(--ink); }
.testimonials-wall-section .lede { color: var(--ink-soft); }

.twall {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 680px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
}
@media (max-width: 960px) {
  .twall { grid-template-columns: repeat(2, minmax(0, 1fr)); height: 620px; }
  .twall-col:nth-child(3) { display: none; }
}
@media (max-width: 640px) {
  .twall { grid-template-columns: 1fr; height: 540px; }
  .twall-col:nth-child(2), .twall-col:nth-child(3) { display: none; }
}

.twall-col { overflow: hidden; height: 100%; position: relative; }
.twall-track { display: flex; flex-direction: column; gap: 20px; will-change: transform; }
.twall-col--up   .twall-track { animation: twallUp 64s linear infinite; }
.twall-col--down .twall-track { animation: twallDown 64s linear infinite; }
.twall-col:hover .twall-track { animation-play-state: paused; }
@keyframes twallUp   { 0% { transform: translateY(0); }    100% { transform: translateY(-50%); } }
@keyframes twallDown { 0% { transform: translateY(-50%); } 100% { transform: translateY(0); } }

.twall-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 24px 24px 20px;
  transition: border-color .35s var(--ease), background-color .35s var(--ease);
}
.twall-card:hover {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.035);
}
.twall-card p {
  color: rgba(236,234,229,0.86);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 20px;
}
.twall-card--feature p { font-size: 15px; color: rgba(236,234,229,0.95); }
.twall-attr { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); }
.twall-avatar {
  width: 34px; height: 34px; flex: 0 0 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  color: rgba(236,234,229,0.92);
  letter-spacing: 0.04em;
}
.twall-name { color: rgba(236,234,229,0.96); font-weight: 500; font-size: 13px; letter-spacing: -0.005em; line-height: 1.2; }
.twall-role {
  color: rgba(236,234,229,0.46);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  margin-top: 4px;
  text-transform: uppercase;
}

/* Testimonials tabs */
.testimonials-head { display: flex; flex-direction: column; gap: 28px; }
.twall-tabs {
  display: inline-flex;
  align-self: flex-start;
  gap: 4px;
  padding: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
}
.twall-tab {
  appearance: none;
  background: transparent;
  border: 0;
  color: rgba(236,234,229,0.62);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: color .25s ease, background .25s ease;
}
.twall-tab:hover { color: rgba(236,234,229,0.9); }
.twall-tab.is-active {
  background: var(--accent, #ECEAE5);
  color: #0b0b0b;
}
.twall[data-twall-panel] { display: none; }
.twall[data-twall-panel].is-active { display: grid; }

/* Video testimonial cards */
.twall-card--video { padding: 0; overflow: hidden; }
.twall-card--video video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 12;
  object-fit: cover;
  background: #000;
  border-radius: 12px 12px 0 0;
}
.twall-card--video .twall-attr {
  padding: 14px 18px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.twall-card--video .twall-avatar img {
  width: 100%; height: 100%; object-fit: cover; border-radius: inherit;
}
.twall-card--video .twall-avatar { padding: 0; overflow: hidden; }

.twall-col.is-paused .twall-track { animation-play-state: paused !important; }
.twall-card--video { position: relative; }
.twall-card--video video { cursor: pointer; }

.twall-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.35));
  cursor: pointer;
  padding: 0;
  transition: opacity .2s ease;
  z-index: 2;
}
.twall-video-play[hidden] { display: none; }
.twall-video-play::before {
  content: "";
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  transition: transform .2s ease, background .2s ease;
}
.twall-video-play::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #0b0b0b;
  transform: translateX(2px);
}
.twall-video-play:hover::before { transform: scale(1.06); background: #fff; }
.twall-card--video .twall-attr { position: relative; z-index: 3; }
