/* ── Sanity Software Solutions ─────────────────────────────────────────
   Design system modelled on the Arcflow reference: airy light sections,
   hairline eyebrows, numbered cards, one dark storytelling band, teal
   brand accent throughout. */

:root {
  --teal: #14c9bb;
  --teal-dark: #0ea89d;
  --teal-soft: rgba(20, 201, 187, 0.12);
  --gold: #c8a15e;
  --ink: #0d1117;
  --ink-soft: #39414d;
  --muted: #6b7280;
  --paper: #ffffff;
  --paper-warm: #f6f8f8;
  --line: rgba(13, 17, 23, 0.1);
  --line-strong: rgba(13, 17, 23, 0.18);
  --radius: 18px;
  --radius-sm: 12px;
  --font-display: "Baloo 2", "Inter", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --shadow-soft: 0 20px 60px -30px rgba(13, 17, 23, 0.35);
  --header-h: 76px;

  /* Fluid vertical rhythm. Desktop values are unchanged at the top end; the
     phone gets roughly half, because 110px of padding on an 812px screen
     reads as a gap where the page has ended, not as breathing room. */
  --section-y: clamp(56px, 8vw, 96px);
  --section-y-lg: clamp(64px, 9vw, 130px);
  --gutter: clamp(20px, 5vw, 24px);

  /* One easing for everything that moves, so the site feels of a piece. */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 { margin: 0; font-family: var(--font-display); line-height: 1.12; }

p { margin: 0; }

.container {
  width: min(1180px, 100% - (var(--gutter) * 2));
  margin-inline: auto;
}

.section { padding: var(--section-y) 0; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 10px 0;
  z-index: 200;
}
.skip-link:focus { left: 0; }

.page-frame {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 150;
  border: 6px solid var(--paper);
}

/* ── Eyebrow pattern ─────────────────────────────────────────────────── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.eyebrow__line {
  width: 34px;
  height: 3px;
  border-radius: 2px;
  background: var(--teal);
}
.eyebrow__text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.eyebrow__rule {
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* ── Buttons ─────────────────────────────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.button--lg { padding: 16px 30px; font-size: 16px; }
.button--light {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.45);
}
.button--light:hover { transform: translateY(-2px); }
.button--accent {
  background: var(--teal);
  color: #04302c;
}
.button--accent:hover { background: var(--teal-dark); color: #fff; }
.button__arrow, .button__icon { width: 20px; height: 20px; flex: none; }
.button:hover .button__arrow { transform: translateX(3px); }
.button__arrow { transition: transform 0.2s ease; }

/* ── Header ──────────────────────────────────────────────────────────── */
/* Island header that lives at the top of the page and scrolls away with it -
   it belongs to the hero, not to the viewport. */
.site-header {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 100;
  pointer-events: none;
}
.site-header__inner {
  pointer-events: auto;
  width: min(1080px, 100% - 28px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 9px 9px 20px;
  border-radius: 22px;
  border: 1px solid rgba(13, 17, 23, 0.08);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset, 0 12px 36px -20px rgba(13, 17, 23, 0.35);
  color: var(--ink);
}

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark { width: 34px; height: 34px; }
.brand__mark-teal { color: var(--teal); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.3em;
}
.brand__tag {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.66;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 13px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
.site-nav__link:hover { color: var(--ink); background: rgba(13, 17, 23, 0.05); }
.site-nav__link.is-active { color: var(--ink); font-weight: 600; background: rgba(20, 201, 187, 0.12); }
.site-nav__cta {
  margin-left: 10px;
  background: var(--ink);
  color: #fff;
  border: 0;
  padding: 10px 20px;
  font-size: 14px;
  box-shadow: 0 10px 26px -12px rgba(13, 17, 23, 0.55);
}
.site-nav__cta:hover {
  transform: translateY(-1px);
  background: #1b232e;
}

.site-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
  color: var(--ink);
}
.site-header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.site-header.is-open .site-header__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.is-open .site-header__burger span:nth-child(2) { opacity: 0; }
.site-header.is-open .site-header__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .site-header__burger { display: flex; }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px;
    border-radius: 20px;
    border: 1px solid rgba(13, 17, 23, 0.08);
    background: #ffffff;
    box-shadow: 0 30px 60px -20px rgba(13, 17, 23, 0.45);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .site-header.is-open .site-nav {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .site-header__inner { position: relative; }
  .site-nav__link { padding: 12px 16px; font-size: 15px; border-radius: 12px; }
  .site-nav__cta { margin: 10px 4px 2px; text-align: center; justify-content: center; }
}

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--ink);
  overflow: hidden;
  background: #fbfcfc;
}
/* Premium light hero. Layers, back to front: warm ivory paper base → a
   painterly three-colour mesh (teal, deep teal, brass) drifting slowly →
   a soft central halo that seats the headline → fine dot matrix →
   cursor spotlight → paper grain → four hairline register marks. The
   brass note is what lifts it out of "teal gradient" territory - a cool
   accent paired with one warm metallic is a classic luxury-print move,
   used here at a whisper of opacity so it reads as considered, not loud. */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(85% 55% at 50% 108%, rgba(20, 201, 187, 0.09), transparent 62%),
    linear-gradient(158deg, #fdfbf7 0%, #f9f8f4 28%, #f3f8f7 62%, #eef6f5 100%);
}
.hero__aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  filter: blur(68px);
}
.hero__aurora i {
  position: absolute;
  display: block;
  border-radius: 50%;
}
.hero__aurora i:nth-child(1) {
  width: 50vw;
  height: 30vw;
  right: -8%;
  top: -10%;
  background: radial-gradient(closest-side, rgba(20, 201, 187, 0.17), rgba(20, 201, 187, 0) 72%);
  animation: aurora-a 32s ease-in-out infinite alternate;
}
.hero__aurora i:nth-child(2) {
  width: 38vw;
  height: 25vw;
  left: -10%;
  top: 30%;
  background: radial-gradient(closest-side, rgba(13, 148, 136, 0.11), rgba(13, 148, 136, 0) 70%);
  animation: aurora-b 40s ease-in-out infinite alternate;
}
.hero__aurora i:nth-child(3) {
  width: 34vw;
  height: 22vw;
  left: 30%;
  bottom: -14%;
  background: radial-gradient(closest-side, rgba(200, 161, 94, 0.13), rgba(200, 161, 94, 0) 74%);
  animation: aurora-c 46s ease-in-out infinite alternate;
}
@keyframes aurora-a {
  from { transform: translate3d(0, 0, 0) rotate(-3deg); }
  to { transform: translate3d(-7vw, 5vh, 0) rotate(4deg); }
}
@keyframes aurora-b {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(7vw, -4vh, 0) scale(1.14); }
}
@keyframes aurora-c {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-5vw, -6vh, 0) scale(1.1); }
}
.hero__halo {
  position: absolute;
  left: 50%;
  top: 34%;
  width: min(1100px, 130vw);
  height: min(1100px, 130vw);
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(20, 201, 187, 0.12), rgba(200, 161, 94, 0.045) 58%, transparent 76%);
  filter: blur(10px);
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(13, 17, 23, 0.11) 1px, transparent 1.3px);
  background-size: 28px 28px;
  mask-image: radial-gradient(78% 64% at 50% 30%, #000 20%, transparent 100%);
  opacity: 0.45;
}
.hero__spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(620px circle at var(--spot-x, 50%) var(--spot-y, 32%), rgba(20, 201, 187, 0.09), transparent 65%);
  transition: opacity 0.6s ease;
  opacity: 0;
}
.hero.is-lit .hero__spotlight { opacity: 1; }
.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
  opacity: 0.045;
  mix-blend-mode: multiply;
}
/* Hairline register marks - four small crosshairs set in from the hero's
   edge, like a printer's registration mark. A quiet, "someone laid this
   out deliberately" detail that costs almost nothing to render. */
.hero__marks { position: absolute; inset: 22px; pointer-events: none; }
.hero__marks i { position: absolute; width: 13px; height: 13px; opacity: 0.5; }
.hero__marks i::before,
.hero__marks i::after { content: ""; position: absolute; background: rgba(13, 17, 23, 0.22); }
.hero__marks i::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.hero__marks i::after { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }
.hero__marks i:nth-child(1) { top: 0; left: 0; }
.hero__marks i:nth-child(2) { top: 0; right: 0; }
.hero__marks i:nth-child(3) { bottom: 0; left: 0; }
.hero__marks i:nth-child(4) { bottom: 0; right: 0; }
@media (max-width: 640px) { .hero__marks { display: none; } }
.hero__scrim { display: none; }
@media (prefers-reduced-motion: reduce) {
  .hero__aurora i { animation: none; }
}
.hero__inner {
  position: relative;
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
  padding: 150px 0 0;
}
.hero__content {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 20px -12px rgba(13, 17, 23, 0.25);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 28px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.hero__pill:hover { border-color: rgba(20, 201, 187, 0.5); box-shadow: 0 8px 24px -12px rgba(20, 201, 187, 0.4); }
.hero__pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(20, 201, 187, 0.5);
  animation: pill-pulse 2.2s ease-out infinite;
}
@keyframes pill-pulse {
  0% { box-shadow: 0 0 0 0 rgba(20, 201, 187, 0.5); }
  70% { box-shadow: 0 0 0 7px rgba(20, 201, 187, 0); }
  100% { box-shadow: 0 0 0 0 rgba(20, 201, 187, 0); }
}
.hero__pill-sep {
  width: 1px;
  height: 16px;
  background: var(--line);
}
.hero__pill-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--teal-dark);
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--teal-soft);
  transition: gap 0.2s ease;
}
.hero__pill:hover .hero__pill-cta { gap: 9px; }
/* On phones the pill's "Book a call" is redundant (two CTAs sit right
   below), and both halves wrap to an ugly two-line block. Collapse it to
   the single status line - the whole pill still links to #contact. */
@media (max-width: 560px) {
  .hero__pill { padding: 8px 16px; font-size: 13px; }
  .hero__pill-sep, .hero__pill-cta { display: none; }
}
.hero__title {
  font-size: clamp(40px, 6.4vw, 74px);
  font-weight: 700;
  letter-spacing: -0.01em;
}
/* The title is locked to exactly three lines: intro / rotating word / tail. */
.hero__title-line { display: block; }
.hero__rotator {
  position: relative;
  display: block;
  color: var(--teal);
}
.hero__rotator-word {
  display: none;
  white-space: nowrap;
}
/* Resting state must be visible on its own - the word only animates its
   slide, never its opacity. If the fade were on opacity and the animation
   stalled (background tab throttling), the word would vanish. */
.hero__rotator-word.is-active {
  display: inline-block;
  opacity: 1;
  animation: rotator-in 0.5s ease;
}
@keyframes rotator-in {
  from { transform: translateY(0.35em); }
  to { transform: translateY(0); }
}
.hero__lead {
  margin-top: 24px;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 620px;
}
.hero__actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.button--dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 34px -14px rgba(13, 17, 23, 0.55);
}
.button--dark:hover {
  transform: translateY(-2px);
  background: #1b232e;
  box-shadow: 0 18px 40px -14px rgba(13, 17, 23, 0.6);
}
.button--ghost {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}
.button--ghost:hover {
  border-color: var(--teal);
  background: #fff;
  transform: translateY(-2px);
}
.hero__trust {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}
.hero__trust-check {
  width: 15px;
  height: 15px;
  color: var(--teal-dark);
  flex: none;
}

/* Framed dashboard showcase */
.hero__showcase {
  position: relative;
  max-width: 980px;
  margin: 64px auto 0;
  perspective: 1300px;
}
.hero__showcase-glow {
  position: absolute;
  inset: 12% -3% -4%;
  background:
    radial-gradient(58% 52% at 42% 40%, rgba(20, 201, 187, 0.2), transparent 68%),
    radial-gradient(46% 40% at 68% 60%, rgba(200, 161, 94, 0.13), transparent 70%);
  filter: blur(34px);
  pointer-events: none;
}
.hero__browser {
  position: relative;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-bottom: 0;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.9) inset,
    0 30px 90px -35px rgba(13, 17, 23, 0.4);
  transform: rotateX(16deg) scale(0.94);
  transform-origin: center top;
  will-change: transform;
}
.hero__browser::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 161, 94, 0.55), rgba(20, 201, 187, 0.5), transparent);
}
.hero__mock { pointer-events: none; }
.hero__mock .platform__mock-navlabel { display: block; }
@media (max-width: 900px) {
  .hero__showcase { margin-top: 48px; }
  .hero__browser { transform: none; }
  /* Compound selector (.hero__mock.platform__mock) so these win over the
     later .platform__mock grid rules regardless of source order. */
  .hero__mock.platform__mock { grid-template-columns: 150px 1fr; }
}
@media (max-width: 640px) {
  .hero__mock.platform__mock { grid-template-columns: 1fr; }
  .hero__mock .platform__mock-side { display: none; }
  .hero__mock .platform__mock-main { min-width: 0; }
  .hero__mock .platform__mock-stats { grid-template-columns: repeat(2, 1fr); }
  .hero__mock .platform__mock-panels { grid-template-columns: 1fr; }
}

/* Compact the hero so the headline + CTAs fit the first screen on phones.
   The desktop values (150px top pad, 40px+ title, wide gaps) leave the
   hero ~2 screens tall on mobile; these tighten every axis. */
@media (max-width: 560px) {
  .hero { min-height: 0; }
  .hero__inner { padding: 108px 0 44px; }
  .hero__title { font-size: 33px; line-height: 1.1; }
  .hero__lead { margin-top: 18px; font-size: 16px; line-height: 1.55; }
  .hero__actions { margin-top: 26px; gap: 12px; width: 100%; }
  .hero__actions .button { width: 100%; justify-content: center; }
  .button--lg { padding: 14px 24px; font-size: 15px; }
  .hero__trust { margin-top: 24px; gap: 10px 20px; }
  .hero__trust-item { font-size: 13px; }
  .hero__showcase { margin-top: 36px; }
}

/* ── Services marquee ────────────────────────────────────────────────── */
.social-proof { padding: clamp(44px, 7vw, 72px) 0; }
.social-proof__label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.social-proof__line { flex: 1; height: 1px; background: var(--line); }
.social-proof__label-text {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}
.social-proof__marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.social-proof__track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.social-proof__marquee:hover .social-proof__track { animation-play-state: paused; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.social-proof__product {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-warm);
  white-space: nowrap;
}
.social-proof__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teal-soft);
  position: relative;
  flex: none;
}
.social-proof__icon::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 4px;
  background: var(--teal);
}
.social-proof__icon[data-art="crm"]::after { border-radius: 50%; }
.social-proof__icon[data-art="mobile"]::after { inset: 8px 12px; border-radius: 3px; }
.social-proof__icon[data-art="dash"]::after { clip-path: polygon(0 100%, 0 55%, 33% 55%, 33% 20%, 66% 20%, 66% 65%, 100% 65%, 100% 100%); border-radius: 0; }
.social-proof__icon[data-art="auto"]::after { clip-path: polygon(55% 0, 15% 60%, 45% 60%, 40% 100%, 85% 40%, 52% 40%); border-radius: 0; }
.social-proof__name { font-weight: 600; font-size: 15px; }

/* ── Why Sanity ──────────────────────────────────────────────────────── */
.why { background: var(--paper-warm); }
.why__inner { position: relative; padding-left: 34px; }
.why__accent {
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(var(--teal), rgba(20, 201, 187, 0.05));
}
.why__head { max-width: 760px; margin-bottom: 56px; }
.why__title { font-size: clamp(30px, 4vw, 46px); font-weight: 700; margin-bottom: 18px; }
.why__body { color: var(--ink-soft); font-size: 17px; }

.grid { display: grid; gap: 22px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1000px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .grid--3 { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .grid--4 { grid-template-columns: 1fr; } }

.why__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.why__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(20, 201, 187, 0.5);
}
.why__index {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: 8px;
  padding: 4px 10px;
  margin-bottom: 18px;
}
.why__name { font-size: 21px; font-weight: 700; margin-bottom: 10px; }
.why__desc { color: var(--muted); font-size: 15px; }

/* ── What we do ──────────────────────────────────────────────────────── */
.wwd { padding: var(--section-y-lg) 0; }
.wwd__head { max-width: 720px; margin-bottom: 60px; }
.wwd__title { font-size: clamp(30px, 4vw, 46px); font-weight: 700; margin-bottom: 16px; }
.wwd__sub { color: var(--ink-soft); font-size: 17px; }

.wwd__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  counter-reset: step;
}
@media (max-width: 860px) { .wwd__steps { grid-template-columns: 1fr; } }

.wwd__step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  background: linear-gradient(180deg, #fff, var(--paper-warm));
  overflow: hidden;
}
.wwd__step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), transparent 70%);
}
.wwd__step-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 14px;
}
.wwd__step-title { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.wwd__step-body { color: var(--ink-soft); margin-bottom: 20px; }
.wwd__step-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.wwd__step-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}
.wwd__diamond {
  width: 8px;
  height: 8px;
  background: var(--teal);
  transform: rotate(45deg);
  border-radius: 2px;
  flex: none;
}

/* ── How we work ─────────────────────────────────────────────────────── */
.how { background: var(--paper-warm); }
.how__head { max-width: 460px; }
.how__title { font-size: clamp(28px, 3.6vw, 42px); font-weight: 700; margin-bottom: 18px; }
.how__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--teal-dark);
}
.how__link-icon { width: 18px; height: 18px; transition: transform 0.2s ease; }
.how__link:hover .how__link-icon { transform: translateX(3px); }

.how__content {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .how__content { grid-template-columns: 1fr; gap: 40px; } }

.how__timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  position: relative;
}
@media (max-width: 640px) { .how__timeline { grid-template-columns: 1fr; } }
.how__phase { position: relative; padding-top: 22px; }
.how__phase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--line);
}
.how__phase::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 2px;
  background: var(--teal);
}
.how__marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 14px;
  background: #fff;
}
.how__name { font-size: 20px; font-weight: 700; }
.how__time {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin: 6px 0 10px;
}
.how__desc { color: var(--ink-soft); font-size: 15px; }

/* ── What we build (platform) ────────────────────────────────────────── */
.platform { padding: 110px 0; }
.platform__head { max-width: 720px; margin-bottom: 48px; }
.platform__title { font-size: clamp(30px, 4vw, 46px); font-weight: 700; margin-bottom: 16px; }
.platform__sub { color: var(--ink-soft); font-size: 17px; }

.platform__screen { position: relative; }
.platform__badge {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.platform__badge-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  flex: none;
}
.platform__badge-icon svg { width: 24px; height: 24px; }
.platform__badge-title { font-family: var(--font-display); font-weight: 700; font-size: 19px; }
.platform__badge-desc { color: var(--muted); font-size: 14.5px; }

.platform__frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.platform__chrome {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-warm);
}
.platform__dots { display: inline-flex; gap: 6px; }
.platform__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line-strong);
}
.platform__urlbar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--muted);
}
.platform__urlbar svg { width: 14px; height: 14px; }

.platform__shot-wrap { position: relative; }
.platform__fade {
  position: absolute;
  inset: auto 0 0 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.9));
  pointer-events: none;
}
.platform__progress { height: 3px; background: var(--line); }
.platform__progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: var(--teal);
  transition: width 0.1s linear;
}

/* Skeleton app mock */
.platform__mock {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 420px;
  transition: opacity 0.3s ease;
}
.platform__mock.is-switching { opacity: 0; }
@media (max-width: 720px) { .platform__mock { grid-template-columns: 64px 1fr; } }
.platform__mock-side {
  border-right: 1px solid var(--line);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--paper-warm);
}
.platform__mock-logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--teal);
  margin-bottom: 12px;
}
.platform__mock-nav { display: flex; flex-direction: column; gap: 6px; }
.platform__mock-navlabel {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  padding: 7px 10px;
  border-radius: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.platform__mock-navlabel.is-active {
  background: var(--teal-soft);
  color: var(--teal-dark);
}
@media (max-width: 720px) { .platform__mock-navlabel { display: none; } }
.platform__mock-main { padding: 22px 24px; display: flex; flex-direction: column; gap: 18px; }
.platform__mock-topbar { display: flex; align-items: center; justify-content: space-between; }
.platform__mock-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}
.platform__mock-pill {
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
}
.platform__mock-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 560px) { .platform__mock-stats { grid-template-columns: repeat(2, 1fr); } }
.platform__mock-stat {
  min-height: 62px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(120deg, rgba(20, 201, 187, 0.25), transparent 60%) border-box;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.platform__mock-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.platform__mock-stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  line-height: 1.15;
}
.platform__mock-stat-delta { font-size: 10.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.platform__mock-stat-delta.is-up { color: var(--teal-dark); }
.platform__mock-stat-delta.is-down { color: #d97706; }
.platform__mock-panels {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 12px;
  flex: 1;
}
@media (max-width: 560px) { .platform__mock-panels { grid-template-columns: 1fr; } }
.platform__mock-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.platform__mock-panel-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
}
.platform__mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  min-height: 150px;
  flex: 1;
}
.platform__mock-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  height: 100%;
  min-width: 0;
}
.platform__mock-bar {
  width: 100%;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--teal), rgba(20, 201, 187, 0.25));
  transition: height 0.45s ease;
}
.platform__mock-bar-label { font-size: 10px; font-weight: 600; color: var(--muted); }
.platform__mock-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.platform__mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  min-width: 0;
}
.platform__mock-row:last-child { border-bottom: 0; }
.platform__mock-row-text { display: flex; flex-direction: column; min-width: 0; }
.platform__mock-row-text strong {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.platform__mock-row-text em {
  font-style: normal;
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.platform__mock-badge {
  flex: none;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
}
.platform__mock-badge--teal { background: var(--teal-soft); color: var(--teal-dark); }
.platform__mock-badge--amber { background: rgba(217, 119, 6, 0.12); color: #b45309; }
.platform__mock-badge--red { background: rgba(220, 38, 38, 0.1); color: #dc2626; }
.platform__mock-badge--grey { background: var(--line); color: var(--ink-soft); }

.platform__modules {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
@media (max-width: 1000px) { .platform__modules { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .platform__modules { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 460px) { .platform__modules { grid-template-columns: repeat(2, 1fr); } }
.platform__module {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.platform__module:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.platform__module.is-active {
  border-color: var(--teal);
  background: var(--teal-soft);
}
.platform__module-icon { color: var(--ink-soft); }
.platform__module.is-active .platform__module-icon { color: var(--teal-dark); }
.platform__module-icon svg { width: 22px; height: 22px; }
.platform__module-name { font-size: 13px; font-weight: 600; }

.platform__cta { margin-top: 36px; text-align: center; }
.platform__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--teal-dark);
  font-size: 16px;
}
.platform__link svg { width: 18px; height: 18px; transition: transform 0.2s ease; }
.platform__link:hover svg { transform: translateX(3px); }

/* ── Mobile showcase ─────────────────────────────────────────────────── */
.mobile-section { background: var(--paper-warm); }
.mobile__grid {
  display: grid;
  grid-template-columns: 1fr 300px 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 1000px) {
  .mobile__grid { grid-template-columns: 1fr; }
  .mobile__phone { order: 2; justify-self: center; }
  .mobile__stack { order: 3; }
}
.mobile__title { font-size: clamp(28px, 3.6vw, 40px); font-weight: 700; margin-bottom: 16px; }
.mobile__sub { color: var(--ink-soft); }

.mobile__device {
  width: 280px;
  border-radius: 42px;
  border: 10px solid var(--ink);
  background: var(--ink);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.mobile__screen { background: #fff; border-radius: 32px; overflow: hidden; }
.mobile__mock {
  padding: 14px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 500px;
  position: relative;
  transition: opacity 0.3s ease;
}
.mobile__mock.is-switching { opacity: 0; }
.mobile__mock-notch {
  width: 90px;
  height: 18px;
  border-radius: 999px;
  background: var(--ink);
  align-self: center;
  margin-bottom: 4px;
}
.mobile__mock-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
  margin-top: -4px;
}
.mobile__mock-clock { font-size: 11px; font-weight: 700; color: var(--ink); }
.mobile__mock-signal { display: inline-flex; align-items: flex-end; gap: 2px; }
.mobile__mock-signal i {
  width: 3px;
  border-radius: 1px;
  background: var(--ink);
  display: block;
}
.mobile__mock-signal i:nth-child(1) { height: 4px; }
.mobile__mock-signal i:nth-child(2) { height: 6px; }
.mobile__mock-signal i:nth-child(3) { height: 8px; }
.mobile__mock-signal i:nth-child(4) { height: 10px; opacity: 0.35; }
.mobile__mock-header { display: flex; flex-direction: column; padding: 0 2px; }
.mobile__mock-head {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}
.mobile__mock-sub { font-size: 11.5px; color: var(--muted); font-weight: 500; }
.mobile__mock-body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.mobile__hero-card {
  border-radius: 16px;
  padding: 14px 16px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background:
    radial-gradient(120px 80px at 80% 20%, rgba(255, 255, 255, 0.35), transparent 60%),
    linear-gradient(135deg, var(--teal), var(--teal-dark));
}
.mobile__hero-hi { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.mobile__hero-line { font-size: 11.5px; opacity: 0.92; }
.mobile__job,
.mobile__approval {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--paper-warm);
  min-width: 0;
}
.mobile__approval { align-items: flex-start; flex-direction: column; gap: 8px; }
.mobile__approval.is-settled { opacity: 0.72; }
.mobile__job-time {
  flex: none;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: 8px;
  padding: 4px 7px;
}
.mobile__avatar {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 700;
}
.mobile__job-main { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.mobile__job-main strong {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile__job-main em {
  font-style: normal;
  font-size: 10.5px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile__chip {
  flex: none;
  font-size: 9.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.mobile__chip--teal { background: var(--teal-soft); color: var(--teal-dark); }
.mobile__chip--amber { background: rgba(217, 119, 6, 0.12); color: #b45309; }
.mobile__chip--red { background: rgba(220, 38, 38, 0.1); color: #dc2626; }
.mobile__chip--grey { background: var(--line); color: var(--ink-soft); }
.mobile__search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--paper-warm);
  color: var(--muted);
  font-size: 11.5px;
}
.mobile__search svg { width: 13px; height: 13px; }
.mobile__approve-actions { display: flex; gap: 8px; }
.mobile__btn {
  border: 0;
  border-radius: 999px;
  padding: 6px 14px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.mobile__btn:active { transform: scale(0.95); }
.mobile__btn--yes { background: var(--teal); color: #fff; }
.mobile__btn--no { background: var(--line); color: var(--ink-soft); }
.mobile__hint {
  font-size: 10.5px;
  color: var(--muted);
  text-align: center;
  margin-top: 2px;
}
.mobile__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mobile__tile {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-warm);
  padding: 9px 11px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.mobile__tile em { font-style: normal; font-size: 9.5px; font-weight: 600; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mobile__tile strong { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.mobile__tile i { font-style: normal; font-size: 9.5px; font-weight: 700; }
.mobile__tile i.is-up { color: var(--teal-dark); }
.mobile__tile i.is-down { color: #dc2626; }
.mobile__minichart {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-warm);
  padding: 11px 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-height: 90px;
}
.mobile__minichart-title { font-size: 10px; font-weight: 600; color: var(--ink-soft); }
.mobile__minichart-bars {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  flex: 1;
  min-height: 56px;
}
.mobile__minichart-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  height: 100%;
}
.mobile__minichart-col i {
  width: 100%;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--teal), rgba(20, 201, 187, 0.25));
}
.mobile__minichart-col em { font-style: normal; font-size: 8.5px; font-weight: 600; color: var(--muted); }
.mobile__mock-tabbar {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  padding: 10px 8px 16px;
  border-top: 1px solid var(--line);
}
.mobile__tab {
  border: 0;
  background: none;
  padding: 7px;
  border-radius: 10px;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}
.mobile__tab svg { width: 19px; height: 19px; }
.mobile__tab.is-on { color: var(--teal-dark); background: var(--teal-soft); }

.mobile__cards { display: flex; flex-direction: column; gap: 12px; }
.mobile__card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-align: left;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.mobile__card.is-active {
  border-color: var(--teal);
  box-shadow: 0 14px 34px -20px rgba(20, 201, 187, 0.7);
}
.mobile__card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  flex: none;
}
.mobile__card-icon svg { width: 20px; height: 20px; }
.mobile__card-title { font-size: 16.5px; font-weight: 700; margin-bottom: 4px; }
.mobile__card-desc { color: var(--muted); font-size: 14px; margin: 0; }

/* ── Who we are (dark) ───────────────────────────────────────────────── */
.who {
  position: relative;
  padding: var(--section-y-lg) 0;
  color: #fff;
  overflow: hidden;
  background: var(--ink);
}
.who__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 500px at 85% 15%, rgba(20, 201, 187, 0.22), transparent 60%),
    linear-gradient(150deg, #0b1220, #0a1512);
}
.who__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 70% at 50% 30%, #000 30%, transparent 100%);
}
.who__watermark {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 480px;
  height: 480px;
  fill: rgba(20, 201, 187, 0.07);
  pointer-events: none;
}
.who__inner { position: relative; max-width: 820px; }
.who__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.who__eyebrow-tick { width: 34px; height: 3px; border-radius: 2px; background: var(--teal); }
.who__eyebrow-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.who__eyebrow-line { flex: 1; height: 1px; background: rgba(255, 255, 255, 0.14); }
.who__title {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700;
  margin-bottom: 26px;
}
.who__body {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  margin-bottom: 18px;
}
.who__quote {
  margin: 34px 0 0;
  padding-left: 24px;
  border-left: 3px solid var(--teal);
  font-family: var(--font-display);
  font-size: clamp(19px, 2.4vw, 24px);
  font-weight: 600;
  color: #fff;
}

/* ── Testimonials ────────────────────────────────────────────────────── */
.testimonials__layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 960px) { .testimonials__layout { grid-template-columns: 1fr; } }
.testimonials__title { font-size: clamp(28px, 3.6vw, 40px); font-weight: 700; margin-bottom: 16px; }
.testimonials__body { color: var(--ink-soft); margin-bottom: 26px; }
.testimonials__nav { display: flex; gap: 10px; }
.testimonials__btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.testimonials__btn:hover { background: var(--teal-soft); border-color: var(--teal); }
.testimonials__btn svg { width: 20px; height: 20px; }

.testimonials__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, #000 88%, transparent);
}
.testimonials__viewport::-webkit-scrollbar { display: none; }
.testimonials__track {
  display: flex;
  gap: 22px;
  padding-bottom: 6px;
}
.testimonials__card {
  position: relative;
  flex: 0 0 min(440px, 86vw);
  scroll-snap-align: start;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, var(--paper-warm));
  padding: 30px 28px 26px;
  display: flex;
  flex-direction: column;
}
.testimonials__head { margin-bottom: 16px; }
.testimonials__company {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
}
.testimonials__quote {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 15px;
}
.testimonials__quote-lede { font-weight: 600; color: var(--ink); display: block; margin-bottom: 8px; }
.testimonials__person { display: flex; flex-direction: column; margin-top: auto; }
.testimonials__name { font-weight: 700; font-size: 15px; }
.testimonials__role { color: var(--muted); font-size: 13.5px; }
.testimonials__index {
  position: absolute;
  top: 24px;
  right: 26px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--teal);
  opacity: 0.55;
}

/* ── Comparison ──────────────────────────────────────────────────────── */
.comparison { background: var(--paper-warm); }
.comparison__layout {
  display: grid;
  grid-template-columns: 170px 1px 1fr;
  gap: 44px;
}
@media (max-width: 900px) {
  .comparison__layout { grid-template-columns: 1fr; gap: 24px; }
  .comparison__divider { display: none; }
}
.comparison__label { display: flex; align-items: center; gap: 12px; align-self: start; }
.comparison__label-tick { width: 26px; height: 3px; border-radius: 2px; background: var(--teal); flex: none; }
.comparison__label-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.comparison__label-hairline { flex: 1; height: 1px; background: var(--line); }
.comparison__divider { background: var(--line); }
.comparison__title { font-size: clamp(26px, 3.4vw, 38px); font-weight: 700; margin-bottom: 30px; }

.comparison__table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.comparison__row {
  display: grid;
  grid-template-columns: 150px 1fr 1fr;
  border-top: 1px solid var(--line);
}
.comparison__row:first-child { border-top: 0; }
@media (max-width: 700px) {
  .comparison__row { grid-template-columns: 90px 1fr 1fr; }
}
.comparison__row--head { background: var(--paper-warm); }
.comparison__cell {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
}
.comparison__cell--feature { font-weight: 600; color: var(--ink-soft); }
.comparison__cell--us { background: rgba(20, 201, 187, 0.06); }
.comparison__col-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}
.comparison__col-label--us { color: var(--teal-dark); }
.comparison__col-label--them { color: var(--muted); }
.comparison__mark { width: 20px; height: 20px; color: var(--teal-dark); flex: none; }
.comparison__dash { color: var(--muted); font-weight: 700; }
.comparison__cell--them { color: var(--muted); }

/* ── Insights ────────────────────────────────────────────────────────── */
.insights__head { margin-bottom: 44px; }
.insights__eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.insights__eyebrow-tick { width: 34px; height: 3px; border-radius: 2px; background: var(--teal); }
.insights__eyebrow-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.insights__eyebrow-line { flex: 1; height: 1px; background: var(--line); }
.insights__title { font-size: clamp(28px, 3.6vw, 42px); font-weight: 700; }

.insight {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.insight:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.insight__media {
  height: 190px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
}
.insight__media svg { width: 62px; height: 62px; }
.insight__media--1 { background: linear-gradient(135deg, #0d1a22, #14655e); }
.insight__media--2 { background: linear-gradient(135deg, #0ea89d, #14c9bb); }
.insight__media--3 { background: linear-gradient(135deg, #0b1220, #0d3a36); }
.insight__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 12px; }
.insight__meta { display: flex; align-items: center; gap: 12px; font-size: 13px; }
.insight__tag {
  color: var(--teal-dark);
  background: var(--teal-soft);
  font-weight: 600;
  border-radius: 999px;
  padding: 3px 12px;
}
.insight__date { color: var(--muted); }
.insight__title { font-size: 18.5px; font-weight: 700; line-height: 1.35; }

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.faq { background: var(--paper-warm); }
.faq__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .faq__layout { grid-template-columns: 1fr; gap: 36px; } }
.faq__title { font-size: clamp(28px, 3.6vw, 42px); font-weight: 700; margin-bottom: 16px; }
.faq__body { color: var(--ink-soft); max-width: 380px; }
.faq__link {
  color: var(--teal-dark);
  font-weight: 600;
  border-bottom: 1px solid rgba(14, 168, 157, 0.35);
  transition: border-color 0.2s ease;
}
.faq__link:hover { border-color: var(--teal-dark); }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq__item:hover { border-color: var(--line-strong); }
.faq__item[open] {
  border-color: rgba(20, 201, 187, 0.45);
  box-shadow: 0 12px 34px -22px rgba(13, 17, 23, 0.35);
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__icon {
  position: relative;
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--teal-soft);
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 2px;
  border-radius: 1px;
  background: var(--teal-dark);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__a {
  padding: 0 22px 20px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  max-width: 640px;
}

/* ── Final CTA ───────────────────────────────────────────────────────── */
.final-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 420px at 85% 0%, rgba(20, 201, 187, 0.3), transparent 60%),
    linear-gradient(150deg, #0b1220, #0a1512);
  color: #fff;
  padding: var(--section-y-lg) 0;
}
.final-cta__watermark {
  position: absolute;
  left: -70px;
  top: -70px;
  width: 380px;
  height: 380px;
  fill: rgba(20, 201, 187, 0.08);
  pointer-events: none;
}
.final-cta__inner {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}
.final-cta__title { font-size: clamp(32px, 4.6vw, 54px); font-weight: 700; margin-bottom: 18px; }
.final-cta__body { color: rgba(255, 255, 255, 0.8); font-size: 17px; margin-bottom: 36px; }
.final-cta__actions { display: flex; justify-content: center; }

/* ── Meeting scheduler ───────────────────────────────────────────────── */
.scheduler {
  position: relative;
  margin: 0;
  border: 0;
  padding: 0;
}
.scheduler__grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr;
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 1000px) { .scheduler__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .scheduler__grid { grid-template-columns: 1fr; } }
.scheduler__block {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}
.scheduler__legend {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  padding: 0;
  margin-bottom: 4px;
}
.scheduler__legend-num {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--teal);
  color: #06231f;
  font-size: 14px;
}
.scheduler__durations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (max-width: 460px) { .scheduler__durations { grid-template-columns: repeat(2, 1fr); } }
.scheduler__chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  padding: 10px 6px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  min-width: 0;
}
.scheduler__chip small {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}
.scheduler__chip:hover { border-color: rgba(255, 255, 255, 0.4); transform: translateY(-1px); }
.scheduler__chip.is-selected {
  border-color: var(--teal);
  background: rgba(20, 201, 187, 0.16);
  color: var(--teal);
}
.scheduler__chip.is-selected small { color: rgba(20, 201, 187, 0.85); }
.scheduler__chip:disabled {
  opacity: 0.28;
  cursor: not-allowed;
  text-decoration: line-through;
}
.scheduler__topic { display: flex; flex-direction: column; gap: 8px; }
.scheduler__topic-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: var(--font-body);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.scheduler__topic-card:hover { border-color: rgba(255, 255, 255, 0.4); }
.scheduler__topic-card.is-selected {
  border-color: var(--teal);
  background: rgba(20, 201, 187, 0.14);
}
.scheduler__topic-icon {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(20, 201, 187, 0.16);
  color: var(--teal);
}
.scheduler__topic-icon svg { width: 17px; height: 17px; }
.scheduler__topic-body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.scheduler__topic-body strong { font-size: 13.5px; font-weight: 700; }
.scheduler__topic-body span { font-size: 11.5px; color: rgba(255, 255, 255, 0.65); line-height: 1.45; }
.scheduler__days {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (max-width: 460px) { .scheduler__days { grid-template-columns: repeat(2, 1fr); } }
.scheduler__chip--day { padding: 9px 4px; font-size: 12px; }
.scheduler__times {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.scheduler__chip--time { padding: 8px 4px; font-size: 12.5px; font-weight: 600; }
.scheduler__times-hint {
  grid-column: 1 / -1;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  padding: 18px 0;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 12px;
}
.scheduler__tz { font-size: 11.5px; color: rgba(255, 255, 255, 0.5); margin-top: auto; }
.scheduler__fields { display: flex; flex-direction: column; gap: 12px; }
.scheduler__field { display: flex; flex-direction: column; gap: 5px; }
.scheduler__label { font-size: 12px; font-weight: 600; color: rgba(255, 255, 255, 0.75); }
.scheduler__label em { font-style: normal; font-weight: 400; color: rgba(255, 255, 255, 0.45); }
.scheduler__input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 13px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.scheduler__input::placeholder { color: rgba(255, 255, 255, 0.35); }
.scheduler__input:focus {
  outline: none;
  border-color: var(--teal);
  background: rgba(20, 201, 187, 0.08);
}
.scheduler__textarea { resize: vertical; min-height: 88px; }
.scheduler__summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(20, 201, 187, 0.4);
  background: rgba(20, 201, 187, 0.1);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}
.scheduler__summary:empty { display: none; }
.scheduler__summary svg { flex: none; width: 22px; height: 22px; color: var(--teal); }
.scheduler__summary strong { color: #fff; }
.scheduler__error {
  font-size: 13px;
  font-weight: 600;
  color: #fda4af;
  background: rgba(220, 38, 38, 0.14);
  border: 1px solid rgba(220, 38, 38, 0.35);
  border-radius: 10px;
  padding: 9px 13px;
}
.scheduler__submit { justify-content: center; margin-top: auto; }
.scheduler__note { font-size: 11.5px; color: rgba(255, 255, 255, 0.5); line-height: 1.5; }
.scheduler__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 56px 24px;
  border: 1px solid rgba(20, 201, 187, 0.4);
  border-radius: var(--radius);
  background: rgba(20, 201, 187, 0.08);
}
.scheduler__success-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--teal);
  color: #06231f;
}
.scheduler__success-icon svg { width: 28px; height: 28px; }
.scheduler__success h3 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}
.scheduler__success p {
  max-width: 480px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}
.scheduler__success strong { color: var(--teal); }
.scheduler__mail { color: var(--teal); font-weight: 600; }
.scheduler__mail:hover { text-decoration: underline; }

/* ── Footer ──────────────────────────────────────────────────────────── */
.footer {
  background: #090d13;
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 34px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.brand--footer { color: #fff; margin-bottom: 16px; }
.footer__blurb { font-size: 14.5px; max-width: 300px; }
.footer__heading {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 16px;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14.5px; opacity: 0.85; transition: opacity 0.2s ease, color 0.2s ease; }
.footer__col a:hover { opacity: 1; color: var(--teal); }
.footer__base { padding-top: 26px; font-size: 13.5px; color: rgba(255, 255, 255, 0.45); }

/* ── What we do: pinned 3D scroll experience (desktop, JS-built) ─────── */
/* main.js wraps a sticky stage in a tall scroller; scroll progress drives
   the 3D panel scene and the step card. Below 64em (or with reduced
   motion / no JS) the static .wwd__steps cards remain instead. */
.wwd__scroll { display: none; height: 380vh; }
@media (min-width: 64em) {
  .js .wwd.is-pinned .wwd__steps { display: none; }
  .js .wwd.is-pinned .wwd__scroll { display: block; }
  .js .wwd.is-pinned .wwd__head { margin-bottom: 0; }
}
.wwd__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.wwd__pin {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.wwd__stage {
  position: relative;
  height: min(600px, 78vh);
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(520px 360px at 75% 20%, rgba(20, 201, 187, 0.22), transparent 60%),
    linear-gradient(150deg, #0b1220, #0a1512);
  border: 1px solid rgba(20, 201, 187, 0.18);
  perspective: 1500px;
}
.wwd__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(75% 75% at 50% 45%, #000 30%, transparent 100%);
}
/* The assembling dashboard. All elements exist from the start;
   [data-step="N"] on .wwd__app decides what has "been built" yet:
   0 sketch+notes → 1 blueprint → 2 data lands → 3 live. */
.wwd__app {
  position: absolute;
  inset: 7% 8%;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 40px 90px -35px rgba(0, 0, 0, 0.75);
  animation: wwd-app-float 8s ease-in-out infinite alternate;
  transition: box-shadow 0.6s ease;
}
.wwd__app[data-step="3"] {
  box-shadow: 0 0 0 1px rgba(20, 201, 187, 0.5), 0 30px 80px -30px rgba(20, 201, 187, 0.45);
}
@keyframes wwd-app-float {
  from { transform: translateY(-5px); }
  to { transform: translateY(5px); }
}
@media (prefers-reduced-motion: reduce) { .wwd__app { animation: none; } }
.wwd__app-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-warm);
}
.wwd__app-chrome > i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
}
.wwd__app-url {
  margin-left: 10px;
  font-size: 11px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 12px;
}
.wwd__app-live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: 999px;
  padding: 3px 10px;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.wwd__app-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pill-pulse 2.2s ease-out infinite;
}
.wwd__app[data-step="3"] .wwd__app-live { opacity: 1; }
.wwd__app-body {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: 128px 1fr;
  min-height: 0;
}
.wwd__app-side {
  border-right: 1px solid var(--line);
  background: var(--paper-warm);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.wwd__app-logo {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--teal);
  margin-bottom: 10px;
}
.wwd__app-navlabel {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 8px;
  border-radius: 7px;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.wwd__app-navlabel.is-on { background: var(--teal-soft); color: var(--teal-dark); }
.wwd__app[data-step="0"] .wwd__app-navlabel { opacity: 0; transform: translateX(-8px); }
.wwd__app-main {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
}
.wwd__app-head { display: flex; align-items: center; justify-content: space-between; }
.wwd__app-head b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.wwd__app-pill {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: 999px;
  padding: 3px 11px;
  transition: opacity 0.45s ease;
}
.wwd__app[data-step="0"] .wwd__app-pill { opacity: 0; }
.wwd__app-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.wwd__app-stat {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: border-color 0.5s ease, border-style 0.5s ease;
}
.wwd__app[data-step="0"] .wwd__app-stat,
.wwd__app[data-step="1"] .wwd__app-stat { border-style: dashed; border-color: rgba(20, 201, 187, 0.45); }
.wwd__app-stat em {
  font-style: normal;
  font-size: 9px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wwd__app-stat strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.25;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.wwd__app-stat i {
  font-style: normal;
  font-size: 8.5px;
  font-weight: 700;
  color: var(--teal-dark);
  transition: opacity 0.5s ease;
}
.wwd__app[data-step="0"] .wwd__app-stat em { opacity: 0; }
.wwd__app[data-step="0"] .wwd__app-stat strong,
.wwd__app[data-step="1"] .wwd__app-stat strong { opacity: 0; transform: translateY(4px); }
.wwd__app[data-step="0"] .wwd__app-stat i,
.wwd__app[data-step="1"] .wwd__app-stat i,
.wwd__app[data-step="2"] .wwd__app-stat i { opacity: 0; }
.wwd__app-panels {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 8px;
  flex: 1;
  min-height: 0;
}
.wwd__app-panel {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  transition: border-color 0.5s ease, border-style 0.5s ease, opacity 0.45s ease;
}
.wwd__app[data-step="0"] .wwd__app-panel { opacity: 0; }
.wwd__app[data-step="1"] .wwd__app-panel { border-style: dashed; border-color: rgba(20, 201, 187, 0.45); }
.wwd__app-panel-title { font-size: 10px; font-weight: 600; color: var(--ink-soft); }
.wwd__app-chart {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  flex: 1;
  min-height: 74px;
}
.wwd__app-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  height: 100%;
  min-width: 0;
}
.wwd__app-col i {
  width: 100%;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--teal), rgba(20, 201, 187, 0.25));
  transform-origin: bottom;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.wwd__app[data-step="0"] .wwd__app-col i,
.wwd__app[data-step="1"] .wwd__app-col i { transform: scaleY(0); }
.wwd__app-col em { font-style: normal; font-size: 8px; font-weight: 600; color: var(--muted); }
.wwd__app-list { display: flex; flex-direction: column; gap: 0; }
.wwd__app-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.wwd__app-row:last-child { border-bottom: 0; }
.wwd__app[data-step="0"] .wwd__app-row,
.wwd__app[data-step="1"] .wwd__app-row { opacity: 0; transform: translateY(5px); }
.wwd__app-row-text { display: flex; flex-direction: column; min-width: 0; }
.wwd__app-row-text strong {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wwd__app-row-text em {
  font-style: normal;
  font-size: 9px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wwd__app-badge {
  flex: none;
  font-size: 8.5px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}
.wwd__app-badge--teal { background: var(--teal-soft); color: var(--teal-dark); }
.wwd__app-badge--amber { background: rgba(217, 119, 6, 0.12); color: #b45309; }

/* Discovery overlay - the "before" note that hangs over the empty shell */
.wwd__app-overlay {
  position: absolute;
  right: 6%;
  top: 14%;
  width: 218px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px -24px rgba(13, 17, 23, 0.45);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: rotate(2deg);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.wwd__app:not([data-step="0"]) .wwd__app-overlay {
  opacity: 0;
  transform: rotate(2deg) translateY(-14px);
  pointer-events: none;
}
.wwd__app-overlay-tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 2px;
}
.wwd__app-overlay-row {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-soft);
  padding-left: 16px;
  position: relative;
}
.wwd__app-overlay-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(217, 119, 6, 0.75);
}
.wwd__app-overlay-note {
  margin-top: 4px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--teal-dark);
}
.wwd__stage-label {
  position: absolute;
  left: 22px;
  bottom: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* Pinned step card */
.wwd__card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, var(--paper-warm));
  padding: 34px 32px 28px;
  position: relative;
  overflow: hidden;
}
.wwd__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), transparent 70%);
}
.wwd__card-eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.wwd__card-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-dark);
}
.wwd__card-step {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: 8px;
  padding: 2px 12px;
}
.wwd__card-head { transition: opacity 0.3s ease, transform 0.3s ease; }
.wwd__card-head.is-fade { animation: wwd-head-in 0.45s ease; }
@keyframes wwd-head-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.wwd__card-title { font-size: 26px; font-weight: 700; margin-bottom: 10px; }
.wwd__card-body { color: var(--ink-soft); margin-bottom: 22px; }

.wwd__checklist {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 6px;
}
.wwd__row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.25s ease;
}
.wwd__row.is-active { background: var(--teal-soft); }
.wwd__row-mark {
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 50%;
  border: 2px solid var(--line-strong);
  color: var(--muted);
  display: grid;
  place-items: center;
  font-size: 12.5px;
  font-weight: 700;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.wwd__row.is-active .wwd__row-mark,
.wwd__row.is-done .wwd__row-mark {
  border-color: var(--teal);
  background: var(--teal);
  color: #04302c;
}
.wwd__row-title { font-weight: 600; font-size: 15.5px; padding-top: 2px; }
.wwd__row.is-done .wwd__row-title { color: var(--muted); }
.wwd__row-points {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: none;
  gap: 8px;
}
.wwd__row.is-active .wwd__row-points { display: grid; }
.wwd__row-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}

.wwd__progress {
  display: flex;
  gap: 8px;
}
.wwd__progress-seg {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: var(--line);
  overflow: hidden;
}
.wwd__progress-fill {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 4px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
}

/* ── Scroll-activated timeline (How we work) ─────────────────────────── */
.js .how__phase::after { width: 0; transition: width 0.9s ease 0.15s; }
.js .how__phase.is-passed::after { width: 100%; }
.js .how__marker {
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease;
}
.js .how__phase.is-passed .how__marker {
  background: var(--teal);
  color: #04302c;
  border-color: var(--teal);
  transform: scale(1.08);
}

/* ── Hover tilt (JS sets inline transforms) ──────────────────────────── */
.platform__frame, .insight, .mobile__device {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

/* ── Reveal animations ───────────────────────────────────────────────── */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .social-proof__track { animation: none; }
  .hero__scroll { animation: none; }
}

/* Honeypot — visually hidden but still focusable-by-bots. Deliberately not
   display:none, which some bots detect and skip. */
.scheduler__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════════
   Mobile flow & premium polish
   Loaded last so it refines the rules above without fighting specificity.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Scroll progress ──────────────────────────────────────────────────
   A hairline of teal that fills as you read. Cheap, and it makes a long
   page feel navigable rather than endless. */
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  z-index: 200;
  background: transparent;
  pointer-events: none;
}
.scroll-progress__bar {
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  will-change: transform;
}

/* ── Reveal on scroll ─────────────────────────────────────────────────
   Distance and blur scale down on phones: a 26px slide that reads as
   elegant on a monitor reads as jerky on a small screen held close. */
.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, var(--reveal-y, 18px), 0) scale(var(--reveal-s, 1));
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

/* Variants — set with data-reveal="left" etc. */
.js [data-reveal="left"]  { transform: translate3d(-24px, 0, 0); }
.js [data-reveal="right"] { transform: translate3d(24px, 0, 0); }
.js [data-reveal="scale"] { --reveal-s: 0.97; --reveal-y: 12px; }
.js [data-reveal="fade"]  { --reveal-y: 0px; }

/* Guard: an element inside a staggering parent must not ALSO be hidden as
   its own [data-reveal]. Two independent gates would both have to open, and
   if either observer misses, the content stays invisible for good. The
   parent's stagger owns its descendants. */
.js [data-stagger] [data-reveal]:not(.is-visible) {
  opacity: 1;
  transform: none;
}

/* Children of a [data-stagger] parent arrive one after another. The JS
   sets --reveal-i; the delay is derived so markup stays declarative. */
.js [data-stagger] > * {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 0.6s var(--ease-out),
    transform 0.6s var(--ease-out);
  transition-delay: calc(var(--reveal-i, 0) * 70ms);
}
.js [data-stagger].is-visible > * {
  opacity: 1;
  transform: none;
}

@media (max-width: 640px) {
  .js [data-reveal] { --reveal-y: 14px; }
  .js [data-reveal="left"], .js [data-reveal="right"] {
    transform: translate3d(0, 14px, 0);
  }
  .js [data-stagger] > * { transition-delay: calc(var(--reveal-i, 0) * 50ms); }
}

/* ── Touch targets ────────────────────────────────────────────────────
   Anything tappable clears 44px on a phone. Below that, thumbs miss —
   and a mis-tap is the least premium thing a site can do. */
@media (max-width: 900px) {
  .scheduler__chip,
  .scheduler__input,
  .site-nav__link,
  .site-nav__cta,
  .footer__col a,
  .button {
    min-height: 44px;
  }
  .scheduler__chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .site-nav__toggle,
  .nav__toggle,
  [aria-label="Open menu"],
  [aria-label="Close menu"] {
    min-width: 44px;
    min-height: 44px;
  }
  .site-nav__link,
  .footer__col a,
  .site-nav__cta {
    display: inline-flex;
    align-items: center;
  }
  /* Footer columns get tighter gaps once each row is taller. */
  .footer__col { gap: 2px; }
}

/* ── Mobile flow ──────────────────────────────────────────────────────
   The hero was ~2 screens tall before anything else appeared. Tighten
   the type and the gaps so the fold does some work. */
@media (max-width: 640px) {
  /* The hero ran to ~1600px — two full screens before the page said
     anything else. Tighten every gap, then let the product shot be a
     glimpse rather than a full exhibit. */
  .hero__title { letter-spacing: -0.02em; }
  .hero__lead { font-size: 16.5px; line-height: 1.6; margin-top: 14px; }
  .hero__actions { gap: 10px; margin-top: 20px; }
  .hero__badge, .hero__pill { margin-bottom: 18px; }
  .hero__trust { margin-top: 18px; }

  /* Crop the mock and fade its lower edge. Truncation reads as a mistake;
     a fade reads as "there is more below", which is the job of a fold.
     It is aria-hidden decoration, so nothing is lost by cropping it. */
  .hero__showcase {
    margin-top: 24px;
    max-height: 46svh;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
  }

  /* Three centred lines of different lengths give a ragged left edge that
     reads as untidy. Left-align the items, but centre the block as a whole
     so it still sits under the heading. */
  .hero__trust {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
  }
  .hero__trust-item { justify-content: flex-start; }

  .section__head { margin-bottom: 28px; }
  .wwd__head { margin-bottom: 32px; }
}

/* The header is position:absolute and overlays the page, so the first
   section on every page must clear it. The old fixed 120px padding did
   this by accident; now that spacing is fluid and smaller on phones, say
   it explicitly instead. The hero opts out — it centres in 100svh and
   handles the header itself. */
main > section:first-child:not(.hero) {
  padding-top: max(var(--section-y-lg), calc(var(--header-h) + 40px));
}

/* ── Premium detail ───────────────────────────────────────────────────
   Small things, applied consistently. */

/* Sharper focus ring than the browser default, and only for keyboards. */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--teal-dark);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Stop iOS inflating text in landscape, and kill the tap flash. */
html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

/* Headings should never break awkwardly on a narrow screen. The hero title
   is excluded: its rotating word is a sized inline block, and balancing
   around it opens a visible gap between the lines. */
h2, h3, .section__title { text-wrap: balance; }
p, .hero__sub, .section__sub { text-wrap: pretty; }

/* Cards lift slightly on a real pointer only — hover on touch sticks. */
@media (hover: hover) and (pointer: fine) {
  .card:hover, .why__card:hover, .platform__module:hover {
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal],
  .js [data-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .scroll-progress { display: none; }
}

/* ── "We build around your business" on mobile ────────────────────────
   The desktop version pins a sticky 3D stage and drives it from scroll,
   which needs width and a steady frame budget — neither of which a phone
   reliably has. Rather than ship nothing below 64em, the static step list
   becomes its own scroll experience: a rail that fills as you descend,
   and whichever step is crossing the middle of the screen becomes active.
   Same story, told in a way a phone can actually carry. */
@media (max-width: 63.99em) {
  .wwd__steps {
    position: relative;
    padding-left: 30px;
  }

  /* The rail, and the teal portion that tracks your progress through it. */
  .wwd__steps::before,
  .wwd__steps::after {
    content: "";
    position: absolute;
    left: 9px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    border-radius: 2px;
  }
  .wwd__steps::before { background: var(--line); }
  .wwd__steps::after {
    background: linear-gradient(180deg, var(--teal), var(--teal-dark));
    transform: scaleY(var(--wwd-progress, 0));
    transform-origin: 50% 0;
    transition: transform 0.15s linear;
  }

  /* Node on the rail, filled once its step has been reached. */
  .wwd__step::after {
    content: "";
    position: absolute;
    left: -30px;
    top: 30px;
    width: 12px;
    height: 12px;
    margin-left: 4px;
    border-radius: 50%;
    background: var(--paper);
    border: 2px solid var(--line-strong);
    transition: background 0.35s var(--ease-out), border-color 0.35s var(--ease-out),
                transform 0.35s var(--ease-out);
  }
  .wwd__step {
    /* let the node sit outside the card */
    overflow: visible;
    transition: border-color 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out),
                transform 0.45s var(--ease-out);
  }
  .wwd__step.is-current {
    border-color: rgba(20, 201, 187, 0.45);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
  }
  .wwd__step.is-current::after,
  .wwd__step.is-passed::after {
    background: var(--teal);
    border-color: var(--teal);
  }
  .wwd__step.is-current::after { transform: scale(1.25); }
}

@media (prefers-reduced-motion: reduce) {
  .wwd__steps::after { transition: none; }
  .wwd__step, .wwd__step::after { transition: none; }
}
