/* ============================================================
   TETHRON v4 — light editorial system
   Warm paper base · sans display with serif-italic accents ·
   acid lime chips · dark image-led services · bento benefits
   ============================================================ */

:root {
  --paper: #EFEEEA;
  --paper-2: #E7E6E1;
  --white: #FFFFFF;
  --ink: #121212;
  --ink-soft: #3A3A38;
  --muted: #71716B;
  --line: rgba(18, 18, 18, 0.10);
  --line-strong: rgba(18, 18, 18, 0.16);
  --dark: #0C0C0C;
  --dark-2: #141414;
  --dark-line: rgba(255, 255, 255, 0.10);
  --dark-muted: #9C9C96;
  --lime: #D6F252;
  --lime-ink: #232B06;
  --font-sans: "Instrument Sans", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --r-card: 20px;
  --r-img: 16px;
  --wrap: 1200px;
  --pad: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--lime); color: var(--lime-ink); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }

/* ---------- type ---------- */
.display {
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.04;
}
.h-xl { font-size: clamp(44px, 6.4vw, 82px); }
.h-lg { font-size: clamp(34px, 4.6vw, 58px); }
.h-md { font-size: clamp(26px, 3vw, 38px); }
.display em, .statement em, blockquote em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.lede {
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  max-width: 54ch;
  margin: 22px 0 30px;
}

/* eyebrow — "// label" convention */
.eyebrow {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::before { content: "//"; color: var(--ink); font-weight: 700; letter-spacing: 0; }
.on-dark .eyebrow { color: var(--dark-muted); }
.on-dark .eyebrow::before { color: var(--lime); }

/* lime counter chip — 01/4 */
.chip {
  display: inline-block;
  background: var(--lime);
  color: var(--lime-ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 999px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.btn .arr { transition: transform .25s ease; }
.btn:hover .arr { transform: translateX(4px); }
.btn.primary { background: var(--ink); color: var(--white); }
.btn.primary:hover { background: #2A2A28; }
.btn:not(.primary):hover { background: var(--ink); color: var(--white); }
.btn.sm { padding: 10px 20px; font-size: 14px; }
.on-dark .btn { border-color: rgba(255,255,255,.9); color: var(--white); }
.on-dark .btn.primary { background: var(--white); color: var(--ink); }
.on-dark .btn.primary:hover { background: var(--lime); color: var(--lime-ink); }
.btn.lime { background: var(--lime); color: var(--lime-ink); border-color: var(--lime); }
.btn.lime:hover { background: var(--white); border-color: var(--white); }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(239, 238, 234, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.logo {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.16em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 10px; height: 10px;
  background: var(--ink);
  border-radius: 2px;
  transform: rotate(45deg);
  display: inline-block;
}
.nav-links { display: flex; gap: 34px; }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
/* mobile hamburger + menu */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  cursor: pointer;
  padding: 0 11px;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  background: rgba(239, 238, 234, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 10px 24px 22px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border-bottom: none; }

.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 120px 0 0;
  background: var(--paper);
  overflow: hidden;
  min-height: min(96vh, 1000px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.28fr 0.74fr;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
}
.hero-copy { align-self: start; padding-top: 6vh; }
/* centered hero — giant headline with the android rising through it */
.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  flex: 1;
  padding-top: 3vh;
}
.hero-head { position: relative; width: 100%; margin-top: 26px; }
.hh-back, .hh-front {
  font-size: clamp(46px, 8vw, 116px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 500;
  white-space: nowrap;
}
.hh-back { position: relative; z-index: 1; }
.hh-front {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.24;
  pointer-events: none;
  user-select: none;
}
.hero-center .hero-visual.free {
  position: relative;
  z-index: 2;
  margin-top: clamp(-130px, -7.5vw, -46px);
}
.hero-copy .btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 420px;
}
.hero-stat b {
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-stat span { color: var(--muted); font-size: 15px; line-height: 1.4; }

.hero-visual { position: relative; }
.hero-visual .hero-img {
  border-radius: var(--r-card);
  width: 100%;
  aspect-ratio: 4/4.4;
  object-fit: cover;
  object-position: 60% 20%;
}
/* free-floating hero variant — white-studio image blends into the paper bg */
.hero-visual.free {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: stretch;
}
.hero-visual.free .hero-img {
  border-radius: 0;
  aspect-ratio: auto;
  height: min(82vh, 960px);
  width: auto;
  max-width: none;
  /* fade top and sides into the paper; stay SOLID at the bottom so the
     torso occludes the ghost word (the depth effect) */
  -webkit-mask-image:
    linear-gradient(180deg, transparent 0%, black 28%, black 100%),
    linear-gradient(90deg, transparent 0%, black 30%, black 70%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(180deg, transparent 0%, black 28%, black 100%),
    linear-gradient(90deg, transparent 0%, black 30%, black 70%, transparent 100%);
  mask-composite: intersect;
}
.hero-visual.free .float-chip { box-shadow: 0 14px 34px rgba(18,18,18,.18); }
.hero-visual.free .float-chip.a { top: 60%; left: -3%; }
.hero-visual.free .float-chip.c { bottom: 7%; left: 32%; }

/* floating task chips over the hero image */
.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 14px 34px rgba(18,18,18,.14);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  animation: floaty 5.5s ease-in-out infinite;
}
.float-chip .fc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); outline: 3px solid rgba(214,242,82,.35); flex: none; }
.float-chip .fc-sub { display: block; font-weight: 500; color: var(--muted); font-size: 12px; }
.float-chip.a { top: 8%; left: -34px; animation-delay: 0s; }
.float-chip.b { top: 42%; right: -26px; animation-delay: 1.6s; }
.float-chip.c { bottom: 10%; left: -20px; animation-delay: 3.1s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* giant solid ghost word pinned to hero base — occluded by the android for depth */
.ghost-word {
  position: absolute;
  left: 0; right: 0; bottom: -0.08em;
  z-index: 1;
  text-align: center;
  font-weight: 600;
  font-size: clamp(88px, 14.5vw, 218px);
  letter-spacing: 0.09em;
  line-height: 1;
  color: var(--ink);
  /* stacked extrusion = 3D block letters, lifted off the page */
  text-shadow:
    1px 1px 0 #B9BAB3, 2px 2px 0 #BCBDB6, 3px 3px 0 #BFC0B9,
    4px 4px 0 #C2C3BC, 5px 5px 0 #C5C6BF, 6px 6px 0 #C8C9C2,
    7px 7px 0 #CBCCC5, 8px 8px 0 #CED0C8,
    16px 22px 34px rgba(18,18,18,.28);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
}
/* faint echo layer in front of the android — keeps the hidden letters legible */
.ghost-word.front {
  z-index: 3;
  opacity: 0.16;
  filter: none;
  text-shadow: none;
}

/* ---------- sections ---------- */
section { padding: 110px 0; }
.sec-head { max-width: 760px; margin-bottom: 56px; }
.sec-head h2 { margin-top: 18px; }
.sec-head .lede { margin-bottom: 0; }
.sec-head.split {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.sec-head.split .lede { max-width: 40ch; margin: 0; }

/* statement (who we are) */
.statement {
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.22;
  max-width: 18em;
}
.statement .dim { color: rgba(18,18,18,.34); }

.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 64px;
}
.stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat-card {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 28px 26px;
  border: 1px solid var(--line);
}
.stat-card b { display: block; font-size: 40px; font-weight: 500; letter-spacing: -0.03em; line-height: 1.05; }
.stat-card span { color: var(--muted); font-size: 14px; margin-top: 8px; display: block; line-height: 1.45; }
.stat-card.limed { background: var(--lime); border-color: var(--lime); color: var(--lime-ink); }
.stat-card.limed span { color: rgba(35,43,6,.7); }

/* quote card */
.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 36px;
}
.quote-card blockquote {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.35;
}
.quote-card cite {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  font-style: normal;
  color: var(--muted);
  font-size: 14px;
}
.quote-card .avatar-img {
  width: 54px; height: 54px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}
.about-facts { display: flex; flex-direction: column; }
.fact-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-strong);
}
.fact-row:first-child { padding-top: 6px; }
.fact-row:last-child { border-bottom: none; }
.fact-row b {
  flex: none;
  min-width: 132px;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.fact-row span { color: var(--muted); font-size: 15px; line-height: 1.5; }
.quote-card .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex: none;
}

/* ---------- stat row (under hero) ---------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
}
.stat-item b {
  display: block;
  font-size: clamp(44px, 4.6vw, 66px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}
.stat-item h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line-strong);
}
.stat-item p { color: var(--muted); font-size: 14.5px; margin-top: 8px; line-height: 1.5; }
@media (max-width: 1020px) {
  .stat-row { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .stat-row { grid-template-columns: 1fr; }
}

/* ---------- Ask Hermes panel ---------- */
.ask-panel {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: var(--dark);
  color: var(--white);
  border-radius: 24px;
  overflow: hidden;
}
.ask-portrait { position: relative; min-height: 280px; }
.ask-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; position: absolute; inset: 0; }
.ask-live {
  position: absolute;
  top: 16px; left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--lime);
  background: rgba(12,12,12,.72);
  border: 1px solid rgba(214,242,82,.4);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.ask-live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px rgba(214,242,82,.9); animation: askpulse 1.8s ease-in-out infinite; }
@keyframes askpulse { 0%,100% { opacity: 1; } 50% { opacity: .45; } }
.ask-body { padding: 38px 40px; display: flex; flex-direction: column; gap: 16px; }
.ask-title { font-size: clamp(24px, 2.4vw, 32px); font-weight: 600; letter-spacing: -0.02em; }
.ask-title em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.ask-sub { color: var(--dark-muted); font-size: 14.5px; margin-top: -8px; }
.ask-row {
  display: flex;
  gap: 10px;
  background: var(--dark-2);
  border: 1px solid var(--dark-line);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.ask-row:focus-within { border-color: rgba(214,242,82,.5); box-shadow: 0 0 0 3px rgba(214,242,82,.12); }
.ask-row .ask-input,
.ask-row .ask-input:focus {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 0;
  padding: 12px 0;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 15.5px;
  transition: opacity .4s ease;
}
.ask-row .ask-input::placeholder { color: rgba(255,255,255,.38); }
.ask-btn {
  background: var(--lime);
  color: var(--lime-ink);
  border: none;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 700;
  padding: 12px 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .25s ease;
}
.ask-btn:hover { background: var(--white); }
.ask-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.ask-chip {
  background: none;
  border: 1px solid var(--dark-line);
  color: rgba(255,255,255,.78);
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color .25s ease, color .25s ease, background .25s ease;
}
.ask-chip:hover { border-color: rgba(214,242,82,.55); color: var(--lime); }
.ask-ticker {
  text-align: center;
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 18px;
  min-height: 20px;
  transition: opacity .5s ease;
}
@media (max-width: 860px) {
  .ask-panel { grid-template-columns: 1fr; }
  .ask-portrait { min-height: 220px; }
  .ask-body { padding: 26px 22px; }
  .ask-row { padding-left: 16px; }
}

/* ---------- enterprise customer wall ---------- */
.eyebrow-rule {
  display: flex;
  align-items: center;
  gap: 26px;
}
.eyebrow-rule::after { content: ""; flex: 1; height: 1px; background: var(--line-strong); }
.logo-wall {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: clamp(44px, 6vw, 90px);
  row-gap: 38px;
  margin-top: 52px;
}
.logo-wall .mark {
  color: #8A8D85;
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1.2;
  white-space: nowrap;
  cursor: default;
  transition: color .3s ease, transform .3s ease;
}
.logo-wall .mark:hover { color: var(--ink); transform: translateY(-4px); }
/* typographic "logo" variants — each customer gets its own voice */
.mark.m-serifcaps { font-family: var(--font-serif); text-transform: uppercase; letter-spacing: 0.2em; font-weight: 600; }
.mark.m-boldcond { font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.mark.m-serifb { font-family: var(--font-serif); font-weight: 600; font-size: clamp(18px, 1.8vw, 23px); }
.mark.m-spaced { font-weight: 700; letter-spacing: 0.38em; }
.mark.m-seriflight { font-family: var(--font-serif); font-weight: 600; letter-spacing: 0.12em; }
.mark.m-boldwide { font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; }
@media (max-width: 720px) {
  .logo-wall { column-gap: 30px; row-gap: 24px; }
}

/* ---------- dark services section ---------- */
.on-dark {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.on-dark .lede { color: var(--dark-muted); }
/* dotted radial glow, bottom-right */
.dot-glow {
  position: absolute;
  right: -180px;
  bottom: -180px;
  width: 640px;
  height: 640px;
  background-image: radial-gradient(rgba(214,242,82,.5) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 68%);
  mask-image: radial-gradient(circle at center, black 0%, transparent 68%);
  pointer-events: none;
}

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  position: relative;
  z-index: 2;
}
.svc-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-line);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease;
}
.svc-card:hover { transform: translateY(-6px); border-color: rgba(214,242,82,.45); }
.svc-card .svc-img {
  position: relative;
  aspect-ratio: 16/9.6;
  overflow: hidden;
}
.svc-card .svc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.svc-card:hover .svc-img img { transform: scale(1.04); }
.svc-card .chip { position: absolute; top: 16px; left: 16px; }
.svc-body { padding: 26px 28px 30px; }
.svc-body h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.svc-body p { color: var(--dark-muted); font-size: 15px; line-height: 1.6; margin-top: 10px; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--lime);
}
.svc-link .arr { transition: transform .25s ease; }
.svc-card:hover .svc-link .arr { transform: translateX(4px); }

/* ---------- bento benefits ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
  gap: 18px;
}
.bento-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.bento-card h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.02em; }
.bento-card p { color: var(--muted); font-size: 14.5px; line-height: 1.55; margin-top: 8px; }
.bento-card.tall { grid-row: span 2; }
.bento-card.img {
  color: var(--white);
  border: none;
  justify-content: flex-end;
}
.bento-card.img > img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.bento-card.img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.72) 100%);
  z-index: 1;
}
.bento-card.img h3, .bento-card.img p, .bento-card.img b { position: relative; z-index: 2; }
.bento-card.img p { color: rgba(255,255,255,.75); }
.bento-card.img b { font-size: 46px; font-weight: 500; letter-spacing: -0.03em; line-height: 1; }
.bento-card.limed { background: var(--lime); border-color: var(--lime); color: var(--lime-ink); }
.bento-card.limed p { color: rgba(35,43,6,.72); }
.bento-card.dark { background: var(--dark); border-color: var(--dark); color: var(--white); }
.bento-card.dark p { color: var(--dark-muted); }
.bento-card .big-num { font-size: 64px; font-weight: 500; letter-spacing: -0.04em; line-height: 1; }
.bento-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
}
.bento-card.limed .bento-icon { background: rgba(255,255,255,.5); }

/* ---------- integrations marquee ---------- */
.int-carousel {
  margin-top: 56px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
}
.int-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: int-scroll 52s linear infinite;
}
@keyframes int-scroll { to { transform: translateX(-50%); } }
.int-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 34px;
  opacity: .85;
  transition: opacity .25s ease;
  white-space: nowrap;
}
.int-item:hover { opacity: 1; }
.int-mark { width: 30px; height: 30px; flex: none; }
.int-word {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.92);
}
@media (prefers-reduced-motion: reduce) {
  .int-track { animation: none; }
}
@media (max-width: 720px) {
  .int-item { margin: 0 20px; gap: 9px; }
  .int-mark { width: 24px; height: 24px; }
  .int-word { font-size: 17px; }
}

/* ---------- transformations slider ---------- */
.tf-slider { margin-top: 24px; }
.tf-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  gap: 26px;
  cursor: grab;
}
.tf-track::-webkit-scrollbar { display: none; }
.tf-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
  background: var(--dark-2);
  border: 1px solid var(--dark-line);
  border-radius: var(--r-card);
  padding: clamp(24px, 3vw, 44px);
}
.tf-img img {
  border-radius: var(--r-img);
  width: 100%;
  aspect-ratio: 4/4.4;
  object-fit: cover;
}
.tf-brand {
  display: inline-block;
  color: rgba(255,255,255,.55);
  font-size: 15px;
  margin-bottom: 18px;
}
.tf-brand.m-serifcaps, .tf-brand.m-seriflight, .tf-brand.m-serifb { font-family: var(--font-serif); }
.tf-brand.m-serifcaps { text-transform: uppercase; letter-spacing: .2em; }
.tf-brand.m-boldcond { font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.tf-brand.m-spaced { font-weight: 700; letter-spacing: .38em; }
.tf-brand.m-seriflight { letter-spacing: .12em; }
.tf-body h3 {
  font-size: clamp(21px, 2.1vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.tf-body > p { color: var(--dark-muted); font-size: 15px; line-height: 1.6; margin-top: 14px; max-width: 52ch; }
.tf-impact {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 22px 0 12px;
}
.tf-body ul { display: grid; gap: 9px; }
.tf-body li {
  font-size: 14.5px;
  color: rgba(255,255,255,.82);
  padding-left: 18px;
  position: relative;
}
.tf-body li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
}
.tf-body li b { color: var(--white); font-weight: 700; }
.tf-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 28px;
}
.tf-arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  background: none;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.tf-arrow:hover { background: var(--lime); color: var(--lime-ink); border-color: var(--lime); }
.tf-hint {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark-muted);
}
@media (max-width: 860px) {
  .tf-slide {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 16px 16px 24px;
  }
  .tf-img { text-align: center; }
  .tf-img img {
    aspect-ratio: auto;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 380px;
    margin: 0 auto;
    object-fit: contain;
  }
  .tf-brand { margin-bottom: 10px; font-size: 13.5px; }
  .tf-body { padding: 0 6px; }
  .tf-body h3 { font-size: 19px; }
  .tf-body > p { font-size: 14px; margin-top: 10px; }
  .tf-impact { margin: 16px 0 10px; font-size: 11.5px; }
  .tf-body ul { gap: 7px; }
  .tf-body li { font-size: 13.5px; }
  .tf-nav { margin-top: 20px; }
  .tf-arrow { width: 40px; height: 40px; }
}

.tf-stack { display: grid; gap: 26px; position: relative; z-index: 2; }
.tf-stack .tf-slide { flex: none; }

/* ---------- partnerships ---------- */
.partners {
  margin-top: 76px;
  padding-top: 60px;
  border-top: 1px solid var(--dark-line);
  text-align: center;
}
.partners-title { font-size: 26px; font-weight: 600; letter-spacing: -0.02em; }
.partners-sub { color: var(--dark-muted); font-size: 15px; margin-top: 8px; }
.partner-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px clamp(40px, 5vw, 76px);
  margin-top: 40px;
}
.partner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.82);
  transition: color .25s ease;
}
.partner:hover { color: var(--white); }
.partner svg { width: 26px; height: 26px; flex: none; }
.partner img { height: 26px; width: auto; flex: none; }
.partner-word { letter-spacing: 0.02em; }

.tf-awards { display:flex; align-items:center; gap:22px; margin-top:22px; flex-wrap:wrap; }
.tf-awards img { height:52px; width:auto; opacity:.85; }

/* ---------- cost calculator ---------- */
.calc-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.calc-row { display: flex; flex-direction: column; gap: 14px; }
.calc-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  font-size: 16px;
  font-weight: 600;
}
.calc-label small { display: block; font-weight: 500; color: var(--muted); font-size: 13.5px; margin-top: 3px; }
.calc-label b {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  flex: none;
}
.calc-card input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: var(--paper-2);
  outline: none;
  cursor: pointer;
}
.calc-card input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--lime);
  border: 2px solid var(--lime-ink);
  box-shadow: 0 4px 12px rgba(18,18,18,.18);
  cursor: grab;
}
.calc-card input[type="range"]::-moz-range-thumb {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--lime);
  border: 2px solid var(--lime-ink);
  cursor: grab;
}
.calc-result {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.calc-big {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.calc-big em {
  font-style: normal;
  font-family: inherit;
  background: var(--lime);
  color: var(--lime-ink);
  padding: 0 10px;
  border-radius: 10px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.calc-sub { color: var(--muted); font-size: 15.5px; margin-top: 14px; }
.calc-sub b { color: var(--ink); font-weight: 700; }

/* ---------- what we automate ---------- */
.auto-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
}
.auto-lists {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.auto-group {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 26px 28px;
}
.auto-group h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.check-list { display: grid; gap: 12px; }
.check-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 1px;
  width: 19px; height: 19px;
  border-radius: 6px;
  background: var(--lime);
  color: var(--lime-ink);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-card {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--r-card);
  padding: 30px 30px 34px;
  position: sticky;
  top: 96px;
}
.flow-head {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 24px;
}
.flow-node {
  display: flex;
  gap: 16px;
  position: relative;
  padding-bottom: 26px;
}
.flow-node:last-child { padding-bottom: 0; }
/* connector line between nodes */
.flow-node:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 16px; top: 34px; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,.14);
}
.fn-num {
  flex: none;
  width: 33px; height: 33px;
  border-radius: 50%;
  border: 1px solid var(--dark-line);
  background: var(--dark-2);
  color: var(--dark-muted);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.flow-node b { display: block; font-size: 15.5px; font-weight: 600; letter-spacing: -0.01em; }
.flow-node span:not(.fn-num) { display: block; color: var(--dark-muted); font-size: 13.5px; margin-top: 3px; }
.flow-node.wait .fn-num { background: var(--lime); color: var(--lime-ink); border-color: var(--lime); }
.flow-node.wait b { color: var(--lime); }
.integrations {
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 30px;
  flex-wrap: wrap;
}
.int-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  flex: none;
}
.int-marks { display: flex; flex-wrap: wrap; gap: 12px 26px; }
.int-marks span {
  font-size: 15px;
  font-weight: 600;
  color: #9B9E96;
  transition: color .25s ease;
}
.int-marks span:hover { color: var(--ink); }
@media (max-width: 900px) {
  .auto-grid { grid-template-columns: 1fr; }
  .flow-card { position: static; }
}

/* ---------- process timeline ---------- */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.proc-top {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}
.proc-num {
  flex: none;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--lime-ink);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* connector line running to the next node */
.proc-step:not(:last-child) .proc-top::after {
  content: "";
  flex: 1;
  height: 2px;
  margin-left: 14px;
  background: linear-gradient(90deg, rgba(214,242,82,.9), var(--line-strong));
  border-radius: 2px;
}
.proc-week {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.proc-step h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.proc-step > p { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin-top: 10px; }
.proc-step .proc-get {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line-strong);
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.55;
}
.proc-step .proc-get b { color: var(--ink); font-weight: 700; }
@media (max-width: 1020px) {
  .proc-grid { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
  .proc-step:nth-child(2) .proc-top::after { display: none; }
}
@media (max-width: 640px) {
  .proc-grid { grid-template-columns: 1fr; }
  .proc-step .proc-top::after { display: none; }
}

/* ---------- process ---------- */
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 30px 28px;
}
.step-card .chip { margin-bottom: 40px; display: inline-block; }
.step-card h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.02em; }
.step-card p { color: var(--muted); font-size: 15px; line-height: 1.6; margin-top: 10px; }

/* ---------- case rows (work) ---------- */
.case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 40px;
}
.case + .case { margin-top: 22px; }
.case.flip .case-visual { order: -1; }
.case-tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.case-info h3 { font-size: clamp(22px, 2.2vw, 30px); font-weight: 600; letter-spacing: -0.025em; line-height: 1.2; }
.case-info p { color: var(--muted); margin-top: 14px; font-size: 15.5px; }
.case-stats { display: flex; gap: 34px; margin-top: 26px; }
.case-stats b { font-size: 28px; font-weight: 500; letter-spacing: -0.02em; display: block; }
.case-stats span { color: var(--muted); font-size: 13px; }
.case-visual img { border-radius: var(--r-img); aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* ---------- pricing ---------- */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tier-grid.two { grid-template-columns: 1fr 1fr; max-width: 960px; margin: 0 auto; }
.tier-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.tier.feature .tier-kicker {
  background: var(--lime);
  color: var(--lime-ink);
  padding: 6px 12px;
  border-radius: 999px;
}
.tier-price { display: flex; align-items: baseline; gap: 8px; }
.tier-price b {
  font-size: clamp(44px, 4.6vw, 60px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}
.tier-price span { color: var(--muted); font-size: 17px; font-weight: 500; }
.tier-setup {
  color: var(--muted);
  font-size: 14px;
  margin: 12px 0 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.tier-setup b { color: var(--ink); }

@media (max-width: 860px) {
  .tier-grid.two { grid-template-columns: 1fr; }
}
.tier {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}
.tier.feature { background: var(--white); border: 1.5px solid var(--lime); }
.tier.feature .tier-desc { color: var(--muted); }
.tier h3 { font-size: 23px; font-weight: 600; letter-spacing: -0.02em; }
.tier .tier-desc { color: var(--muted); font-size: 14.5px; margin: 10px 0 22px; line-height: 1.55; }
.tier ul { display: grid; gap: 12px; margin-bottom: 28px; }
.tier li { font-size: 14.5px; color: var(--ink-soft); padding-left: 24px; position: relative; line-height: 1.5; }
.tier li::before { content: "→"; position: absolute; left: 0; color: var(--muted); }
.tier.feature li::before { color: #9DB63B; }
.tier .btn { margin-top: auto; justify-content: center; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line-strong); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-align: left;
  padding: 24px 40px 24px 0;
  cursor: pointer;
  position: relative;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 400;
  color: var(--muted);
  transition: transform .3s ease;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { color: var(--muted); font-size: 15.5px; padding: 0 40px 24px 0; }

/* ---------- CTA panel ---------- */
.cta-panel {
  background: var(--dark);
  color: var(--white);
  border-radius: 28px;
  padding: clamp(50px, 7vw, 96px) clamp(28px, 6vw, 90px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-panel .lede { margin-left: auto; margin-right: auto; color: var(--dark-muted); }
.cta-panel > * { position: relative; z-index: 2; }
/* the glow must stay absolute — the > * rule above would otherwise pull it
   into normal flow and its 640px box shoves the panel content down */
.cta-panel > .dot-glow {
  position: absolute;
  right: auto;
  left: -180px;
  top: -180px;
  bottom: auto;
  z-index: 1;
}

/* ---------- forms (contact) ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
label.f-label { display: block; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15.5px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 15px 18px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, textarea:focus, select:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(214,242,82,.5); }
textarea { min-height: 140px; resize: vertical; }

/* ---------- service detail pages ---------- */
.svc-hero-img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  border-radius: 24px;
}
.own-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}
@media (max-width: 860px) {
  .own-grid { grid-template-columns: 1fr; }
  .svc-hero-img { aspect-ratio: 4/3; }
}

/* ---------- page hero (subpages) ---------- */
.page-hero { padding: 170px 0 70px; }
.page-hero h1 { margin-top: 18px; max-width: 15em; }
.page-hero .lede { margin-bottom: 0; }

/* ---------- footer ---------- */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 36px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 54px;
}
.foot-brand p { color: var(--dark-muted); font-size: 14.5px; margin-top: 16px; max-width: 34ch; line-height: 1.6; }
.foot-brand .logo-mark { background: var(--lime); }
footer h4 { font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--dark-muted); margin-bottom: 16px; }
footer ul { display: grid; gap: 10px; }
footer ul a { color: rgba(255,255,255,.82); font-size: 14.5px; transition: color .2s ease; }
footer ul a:hover { color: var(--lime); }
.foot-word {
  font-weight: 700;
  font-size: clamp(64px, 11vw, 168px);
  letter-spacing: 0.03em;
  line-height: 0.9;
  text-align: center;
  color: rgba(255,255,255,.96);
  user-select: none;
  padding: 20px 0 40px;
  white-space: nowrap;
  overflow: hidden;
}
.foot-base {
  border-top: 1px solid var(--dark-line);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--dark-muted);
  font-size: 13.5px;
}

/* ---------- reveals ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.on { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-chip { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .hero { min-height: 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-copy { padding-top: 0; }
  .hero-visual { max-width: 560px; }
  .hero-visual.free .hero-img { height: auto; width: 100%; }
  /* stacked hero can't do the occlusion composition — the word lands on content */
  .ghost-word { display: none; }
  /* full-bleed android on small screens */
  .hero-visual.free {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .hh-back, .hh-front { font-size: clamp(34px, 9.6vw, 46px); }
  .hero-center .hero-visual.free { margin-top: clamp(-40px, -6vw, -16px); }
  .float-chip.a { left: 8px; }
  .float-chip.c { left: 8px; }
  .float-chip.b { right: 8px; }
  .about-row { grid-template-columns: 1fr; gap: 32px; }
  .svc-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 210px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  section { padding: 74px 0; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .site-header {
    background: rgba(239, 238, 234, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  .hero { padding-top: 120px; }
  .case, .case.flip { grid-template-columns: 1fr; padding: 26px; }
  .case.flip .case-visual { order: 0; }
  .steps-row, .tier-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-card { min-height: 190px; }
  .bento-card.tall { grid-row: auto; }
  .stat-cards { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-stat b { font-size: 36px; }
}
