:root {
  /* Minimal neutral palette */
  --cream: #f6f6f4;
  --cream-2: #efefec;
  --paper: #ffffff;
  --ink: #161616;
  --ink-2: #2a2a2a;
  --muted: #646464;
  --line: rgba(22, 22, 22, 0.1);
  --line-strong: rgba(22, 22, 22, 0.2);

  /* Restrained accent */
  --accent: #3a6b5f;
  --accent-2: #4f8376;
  --accent-soft: #dfe9e6;

  /* Secondary tones */
  --olive: #6f7b75;
  --saffron: #90a79f;

  /* Type */
  --serif:
    var(--font-body), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  --font-body: "Satoshi", sans-serif;
  --sans:
    var(--font-body), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;

  /* Sizing */
  --container: 1300px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 18px;
  --radius-lg: 28px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ───────────────────────────  RESET  ──────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}
em {
  font-style: italic;
  color: var(--accent);
  font-family: var(--serif);
}

/* ───────────────────────  SHARED ELEMENTS  ────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 18px;
}
.eyebrow--dark {
  color: rgba(255, 255, 255, 0.7);
}
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(218, 74, 31, 0.55);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(218, 74, 31, 0.55);
  }
  100% {
    box-shadow: 0 0 0 14px rgba(218, 74, 31, 0);
  }
}

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.display--md {
  font-size: clamp(34px, 4.4vw, 60px);
}

.center-text {
  text-align: center;
}

.explanation-text {
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--muted);
}

.explanation-text--dark {
  color: rgba(255, 255, 255, 0.78);
}

.lede {
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--muted);
  max-width: 56ch;
  margin: 0 0 32px;
}
.lede--dark {
  color: rgba(255, 255, 255, 0.78);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.btn--lg {
  padding: 16px 26px;
  font-size: 15px;
}
.btn--primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 6px 20px -8px rgba(24, 20, 16, 0.45);
}
.btn--primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}
.btn--primary svg {
  width: 16px;
  height: 16px;
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(24, 20, 16, 0.06);
  color: var(--ink);
}
.chip--solid {
  background: var(--ink);
  color: var(--cream);
}

/* ─────────────────────────────  NAV  ──────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--gutter);
  background: var(--cream);
  box-shadow: none;
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
}

.nav-hover-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--ink-2);
  transition:
    color 0.42s var(--ease),
    transform 0.42s var(--ease);
  will-change: color, transform;
}

.nav-hover-btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.42s var(--ease);
}

.nav-hover-btn:hover,
.nav-hover-btn:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-hover-btn:hover::after,
.nav-hover-btn:focus-visible::after {
  transform: scaleX(1);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.02em;
}
.logo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.15);
}

.nav__links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
}
.nav__links a {
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover::after {
  transform: scaleX(1);
}

.nav__cta {
  display: flex;
  gap: 10px;
}
.nav__menu {
  display: none;
}

@media (max-width: 900px) {
  .nav__links,
  .nav__cta {
    display: none;
  }
  .nav__menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
  }
  .nav__menu span {
    width: 16px;
    height: 1.5px;
    background: var(--ink);
  }
}

/* ───────────────────  HERO  ─────────────────────── */
.hero {
  position: relative;
  background: var(--cream);
  padding: calc(72px + var(--gutter)) var(--gutter) 72px;
  padding-bottom: 20px;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

/* ── Edge food images ── */
.hero__edge-img {
  position: absolute;
  top: 46%;
  width: clamp(340px, 36vw, 560px);
  height: auto;
  border-radius: 22px;
  --edge-radial: 50% 50%;
  -webkit-mask-image: radial-gradient(
    ellipse 66% 58% at var(--edge-radial),
    rgba(0, 0, 0, 1) 52%,
    rgba(0, 0, 0, 0.95) 68%,
    rgba(0, 0, 0, 0.7) 80%,
    rgba(0, 0, 0, 0) 92%
  );
  mask-image: radial-gradient(
    ellipse 66% 58% at var(--edge-radial),
    rgba(0, 0, 0, 1) 52%,
    rgba(0, 0, 0, 0.95) 68%,
    rgba(0, 0, 0, 0.7) 80%,
    rgba(0, 0, 0, 0) 92%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  mix-blend-mode: normal;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
.hero__edge-img--left {
  left: 0;
  --edge-radial: 70% 50%;
  width: clamp(480px, 52vw, 820px);
  transform: translate(-52%, -50%) rotate(calc(-6deg + var(--scroll-rot, 0deg)));
}
.hero__edge-img--right {
  right: 0;
  --edge-radial: 30% 50%;
  width: clamp(380px, 42vw, 720px);
  transform: translate(52%, -50%) rotate(calc(6deg - var(--scroll-rot, 0deg)));
}
@media (max-width: 900px) {
  .hero__edge-img {
    display: none;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__blob {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  display: none;
}
.grain {
  display: none;
}

.highlight {
  color: var(--accent);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  align-content: center;
  gap: 60px;
  align-items: center;
}
.hero__copy {
  max-width: 760px;
  margin: 0 auto;
}
.hero .eyebrow {
  font-weight: 700;
}
.hero .display {
  font-weight: 800;
}
.hero .lede {
  font-weight: 500;
}

/* ── Hero Typography And Trust ── */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 12px;
  border-radius: 999px;
  background: rgba(24, 20, 16, 0.05);
  border: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-2);
  margin: 0 0 22px;
}
.hero__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  color: var(--ink);
}
.hero__title-accent {
  display: inline;
  background: linear-gradient(120deg, var(--accent), var(--saffron));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 700;
  padding-right: 6px;
  /* border: 2px solid white; */
}
.hero__lede {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto 30px;
  font-weight: 500;
}
.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}
.hero__avatars {
  display: inline-flex;
}
.hero__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--cream);
  background: linear-gradient(135deg, var(--accent), var(--saffron));
  box-shadow: 0 4px 10px -4px rgba(24, 20, 16, 0.25);
}
.hero__avatar + .hero__avatar {
  margin-left: -10px;
}
.hero__avatar:nth-child(2) {
  background: linear-gradient(135deg, var(--olive), #b6c47a);
}
.hero__avatar:nth-child(3) {
  background: linear-gradient(135deg, #6f4a2b, #d08a4f);
}
.hero__avatar:nth-child(4) {
  background: linear-gradient(135deg, var(--ink-2), #5b4a3d);
}
.hero__trust-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}
.hero__trust-text strong {
  display: block;
  color: var(--ink);
  font-weight: 700;
}

/* ── Legacy Spotlight Card  ── */
.hero__spotlight {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}
.spotlight {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 30px 60px -28px rgba(24, 20, 16, 0.28),
    0 10px 25px -12px rgba(24, 20, 16, 0.1);
}
.spotlight__media {
  position: relative;
  height: 200px;
  background:
    radial-gradient(
      120% 90% at 20% 20%,
      rgba(255, 255, 255, 0.35),
      transparent 60%
    ),
    linear-gradient(135deg, #e9c99a 0%, #d08a4f 55%, var(--accent) 100%);
}
.spotlight__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(24, 20, 16, 0.78);
  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.spotlight__price {
  position: absolute;
  bottom: 14px;
  right: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 20px -8px rgba(24, 20, 16, 0.25);
}
.spotlight__price em {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  color: var(--muted);
  margin-left: 2px;
}
.spotlight__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.spotlight__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.spotlight__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.spotlight__meta {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.spotlight__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.spotlight__list li {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px dashed var(--line);
  font-size: 14px;
}
.spotlight__list li:first-child {
  border-top: 0;
  padding-top: 4px;
}
.spotlight__day {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.spotlight__meal {
  color: var(--ink);
  font-weight: 600;
}
.spotlight__tag {
  font-size: 11px;
  color: var(--muted);
  background: rgba(24, 20, 16, 0.05);
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 600;
}
.spotlight__footer {
  display: flex;
  gap: 8px;
  padding-top: 4px;
}
.spotlight__note {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 10px 24px -10px rgba(24, 20, 16, 0.5);
}
.spotlight__note-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(218, 74, 31, 0.18);
}

@media (max-width: 900px) {
  .hero__spotlight {
    margin-top: 12px;
  }
  .spotlight__media {
    height: 160px;
  }
}

.hero__ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.hero__pills {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 13px;
  color: var(--muted);
}
.hero__pills li {
  display: inline-flex;
  align-items: center;
}
.hero__pills li + li::before {
  content: "·";
  margin-right: 20px;
  color: var(--line-strong);
}

/* ── Hero visual / mockups ── */
.hero__visual {
  position: relative;
  aspect-ratio: 0.9 / 1;
  perspective: 1200px;
}
.mock {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow:
    0 30px 60px -25px rgba(24, 20, 16, 0.25),
    0 10px 25px -10px rgba(24, 20, 16, 0.1);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.8s var(--ease);
}
.mock--phone {
  width: 48%;
  aspect-ratio: 9 / 17;
  top: 10%;
  left: 8%;
  border-radius: 38px;
  padding: 14px;
  transform: rotate(-6deg);
}
.mock--phone .mock__notch {
  width: 68px;
  height: 20px;
  border-radius: 0 0 14px 14px;
  background: var(--ink);
  margin: -14px auto 12px;
}
.mock__screen {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mock__row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--saffron));
}
.lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.line {
  height: 6px;
  border-radius: 4px;
  background: rgba(24, 20, 16, 0.1);
  display: block;
}
.w-50 {
  width: 50%;
}
.w-30 {
  width: 30%;
}

.meal-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding: 10px;
  border-radius: 14px;
  background: var(--cream);
}
.meal-card--sm {
  grid-template-columns: 60px 1fr;
  padding: 8px;
}
.meal-card__img {
  background: linear-gradient(135deg, #e9c99a, #d08a4f);
  border-radius: 10px;
  position: relative;
  min-height: 64px;
}
.meal-card__img--2 {
  background: linear-gradient(135deg, #c8c99a, #6f8b4a);
  min-height: 50px;
}
.meal-card__img .tag {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(24, 20, 16, 0.7);
  color: white;
  padding: 3px 6px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 600;
}
.meal-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meal-card__body strong {
  font-size: 13px;
}
.meal-card__body small {
  font-size: 11px;
  color: var(--muted);
}
.progress {
  height: 4px;
  background: rgba(24, 20, 16, 0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 4px;
}
.progress span {
  display: block;
  height: 100%;
  width: var(--p, 50%);
  background: var(--accent);
  border-radius: 4px;
}
.cta-row {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}
.cta-row .chip {
  font-size: 10px;
  padding: 4px 8px;
}

.mock--panel {
  width: 48%;
  bottom: 0;
  right: 0;
  padding: 14px;
  transform: rotate(4deg);
}
.panel__head {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
}
.dot--g {
  background: #58c068;
}
.dot--y {
  background: #f0c14b;
}
.dot--r {
  background: #e35a4a;
}
.panel__title {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.panel__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.stat {
  padding: 10px;
  border-radius: 10px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat--accent {
  background: var(--accent);
  color: white;
  grid-column: span 2;
}
.stat__num {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
}
.stat__lbl {
  font-size: 11px;
  opacity: 0.75;
}
.schedule {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  color: var(--muted);
  border-top: 1px dashed var(--line);
  padding-top: 10px;
  margin-top: 4px;
}
.schedule .now {
  color: var(--accent);
  font-weight: 600;
}

.float {
  position: absolute;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 10px 30px -8px rgba(24, 20, 16, 0.4);
  white-space: nowrap;
  animation: floatY 5s ease-in-out infinite;
}
.float--1 {
  top: 8%;
  right: 0%;
  animation-delay: -1s;
}
.float--2 {
  bottom: 18%;
  left: -2%;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ── Hero marquee ── */
.hero__marquee {
  margin: 0;
  width: calc(100% + (var(--gutter) * 2));
  margin-left: calc(-1 * var(--gutter));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.marquee__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  color: var(--muted);
  animation: marquee 36s linear infinite;
  width: max-content;
}
.marquee__track span:nth-child(2n) {
  color: var(--accent);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ────────────────  HORIZONTAL SCROLL SECTION  ─────────────── */
.hscroll {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  /* Height drives the scroll distance — set by JS to match track width.
     Default = 500vh as fallback (5 viewport heights). */
  height: 500vh;
}
.hscroll__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hscroll__progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 5;
}
.hscroll__progress span {
  display: block;
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.08s linear;
}
.hscroll__track {
  display: flex;
  gap: 48px;
  padding: 0 var(--gutter);
  height: 100%;
  align-items: center;
  will-change: transform;
}
.panel {
  flex: 0 0 auto;
  width: min(720px, 78vw);
  height: 76vh;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(28px, 3.5vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.panel--intro,
.panel--outro {
  width: min(820px, 88vw);
  background: transparent;
  border: 0;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.panel--intro .display em,
.panel--outro .display em {
  color: var(--accent-2);
}
.panel--intro .lede,
.panel--outro .lede {
  color: rgba(255, 255, 255, 0.7);
}
.panel--intro .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.panel__num {
  font-family: var(--serif);
  font-size: 80px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.85;
}
.panel__copy h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  max-width: 22ch;
}
.panel__copy p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 48ch;
  margin: 0;
}
.panel__visual {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  flex-wrap: wrap;
  align-items: stretch;
}

.card {
  grid-column: span 6;
  background:
    radial-gradient(
      120% 150% at 0% 0%,
      rgba(79, 131, 118, 0.18),
      rgba(79, 131, 118, 0) 55%
    ),
    var(--paper);
  color: var(--ink);
  padding: 16px;
  border-radius: 18px;
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgba(22, 22, 22, 0.1);
  box-shadow:
    0 14px 34px -24px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.card__pill {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1f5a4b;
  background: rgba(79, 131, 118, 0.16);
  padding: 5px 9px;
  border-radius: 999px;
}
.card strong {
  font-size: 15px;
  letter-spacing: -0.01em;
}
.card small {
  color: var(--muted);
  font-size: 12px;
}
.card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  font-weight: 600;
  font-size: 14px;
}
.card--browse-2 {
  transform: translateY(-14px) rotate(1.5deg);
}

.ctrl {
  grid-column: span 8;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96),
      rgba(247, 247, 244, 0.92)
    ),
    var(--paper);
  color: var(--ink);
  border-radius: 18px;
  padding: 10px 16px;
  width: auto;
  border: 1px solid rgba(22, 22, 22, 0.1);
  box-shadow: 0 16px 38px -24px rgba(0, 0, 0, 0.48);
}
.ctrl__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.ctrl__row:last-child {
  border-bottom: 0;
}
.mono {
  font-family:
    ui-monospace,
    SF Mono,
    Menlo,
    monospace;
  font-size: 13px;
  color: var(--muted);
}
.toggle {
  width: 34px;
  height: 20px;
  border-radius: 999px;
  background: rgba(24, 20, 16, 0.15);
  position: relative;
}
.toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  transition: left 0.3s var(--ease);
}
.toggle--on {
  background: var(--accent);
}
.toggle--on::after {
  left: 16px;
}

.kanban {
  grid-column: span 12;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.kanban__col {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 12px;
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.kanban__col > span:first-child {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
}
.task {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  border-radius: 8px;
  padding: 10px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.task--accent {
  background: var(--accent);
  color: white;
}

.note {
  grid-column: span 6;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.97),
      rgba(241, 245, 243, 0.96)
    ),
    var(--paper);
  color: var(--ink);
  padding: 16px;
  border-radius: 16px;
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(22, 22, 22, 0.1);
  box-shadow: 0 14px 34px -24px rgba(0, 0, 0, 0.45);
}
.note__tag {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  background: var(--accent);
  padding: 4px 8px;
  border-radius: 999px;
}
.note__tag--soft {
  background: var(--olive);
}
.note small {
  color: var(--muted);
  font-size: 12px;
}
.note--alt {
  transform: translateY(-12px) rotate(1deg);
}

.grid-mini {
  grid-column: span 8;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: auto;
}
.grid-mini span {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px 12px;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 1200px) {
  .card,
  .note,
  .ctrl,
  .grid-mini {
    grid-column: span 12;
  }
  .card--browse-2,
  .note--alt {
    transform: none;
  }
}

@media (max-width: 860px) {
  .kanban {
    grid-template-columns: 1fr;
  }
}

/* ──────────────────────  AUDIENCE SECTIONS  ───────────────── */
.audience {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
}
.audience__head {
  max-width: var(--container);
  margin: 0 auto 60px;
}

.audience--biz {
  background: var(--ink);
  color: var(--cream);
}
.audience--biz .display em {
  color: var(--accent-2);
}

.audience__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  position: relative;
}
.biz-card {
  background: rgba(255, 255, 255, 0.04);
  border: 0;
  border-radius: var(--radius);
  padding: 46px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 360px;
  transition: none;
}
.biz-card:hover {
  background: rgba(255, 255, 255, 0.04);
}
.biz-card__num {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}
.biz-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.15;
  margin: 0;
  max-width: 20ch;
}
.biz-card p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 44ch;
  font-size: 19px;
  line-height: 1.6;
}
.biz-card--right {
  text-align: right;
  align-items: flex-end;
}
.biz-grid__center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(280px, 24vw, 420px);
  height: clamp(280px, 24vw, 420px);
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  border: 4px solid var(--ink);
  z-index: 2;
  pointer-events: none;
}
.biz-grid__center img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  object-fit: contain;
}

/* ── For Customers ── */
.audience--cust {
  background: var(--cream);
}
.cust-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  position: relative;
}
.cust-card {
  background: var(--paper);
  border: 0;
  border-radius: var(--radius);
  padding: 46px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 360px;
  transition: none;
}
.cust-card:hover {
  border-color: transparent;
}
.cust-card .ico {
  font-size: 42px;
}
.cust-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.15;
  margin: 6px 0 0;
}
.cust-card p {
  color: var(--muted);
  margin: 0;
  font-size: 19px;
  line-height: 1.6;
}
.cust-card--right {
  text-align: right;
  align-items: flex-end;
}
.cust-grid__center {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(310px, 26vw, 460px);
  height: clamp(310px, 26vw, 460px);
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  border: 4px solid var(--cream);
  z-index: 2;
  pointer-events: none;
}
.cust-grid__center img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  object-fit: contain;
}

/* ──────────────────────────  HOW IT WORKS  ────────────────── */
.how {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--cream-2);
}
.how__head {
  max-width: var(--container);
  margin: 0 auto 60px;
  text-align: center;
}
.how__head .eyebrow {
  color: var(--ink-2);
}
.how__head .display {
  color: var(--ink);
}
.how__cols {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.how__col {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.how__col--alt {
  background: var(--ink);
  color: var(--cream);
  border-color: transparent;
}
.how__col-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  margin: 0 0 28px;
}
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  text-align: left;
}
.steps__n {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
  color: var(--accent);
}
.steps strong {
  display: block;
  font-size: 17px;
  margin-bottom: 4px;
}
.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.how__col--alt .steps p {
  color: rgba(255, 255, 255, 0.7);
}

.how__col .steps li > div {
  display: flex;
  flex-direction: column;
}
.how__col--alt .steps li,
.how__col--alt .steps li > div {
  color: inherit;
}

/* ───────────────────────────  FEATURES  ───────────────────── */
.features {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--cream);
}
.features__head {
  max-width: 860px;
  margin: 0 auto 60px;
  text-align: center;
}
.features__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.features__grid > .feat:nth-last-child(-n + 2) {
  grid-column: span 2;
}
.feat {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(58, 107, 95, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 244, 240, 0.92));
  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: 24px;
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  box-shadow:
    0 18px 38px -28px rgba(22, 22, 22, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition:
    transform 0.4s var(--ease),
    border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.feat::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(58, 107, 95, 0.06), transparent 28%),
    linear-gradient(180deg, transparent 0%, rgba(22, 22, 22, 0.03) 100%);
  pointer-events: none;
}
.feat:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: 0 28px 46px -28px rgba(22, 22, 22, 0.32);
}
.feat--wide {
  grid-column: span 2;
  min-height: 250px;
}
.feat--accent {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 32%),
    linear-gradient(145deg, #18211f 0%, #101715 100%);
  color: var(--cream);
  border-color: transparent;
  box-shadow: 0 24px 50px -26px rgba(16, 23, 21, 0.7);
}
.feat--accent:hover {
  border-color: var(--accent);
}
.feat__top,
.feat h3,
.feat p,
.feat__pills,
.feat__viz {
  position: relative;
  z-index: 1;
}
.feat__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.feat__index {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.feat__label {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(22, 22, 22, 0.05);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.feat h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(25px, 2vw, 32px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 14ch;
}
.feat p {
  color: color-mix(in srgb, var(--ink) 68%, var(--cream));
  margin: 0;
  max-width: 34ch;
}
.feat--accent p {
  color: rgba(246, 246, 244, 0.76);
}
.feat--accent .feat__index {
  color: rgba(255, 255, 255, 0.78);
}
.feat--accent .feat__label {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
}
.feat__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.feat__pills span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(22, 22, 22, 0.05);
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.feat--accent .feat__pills span {
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.82);
}

.feat__viz {
  margin-top: auto;
  display: flex;
  gap: 8px;
  padding-top: 18px;
}
.feat__viz--sub span {
  flex: 1;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  padding: 12px 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-soft) 72%, white);
  color: var(--accent);
  border: 1px solid rgba(58, 107, 95, 0.12);
}
.feat__viz--sub span.off {
  background: rgba(24, 20, 16, 0.05);
  color: var(--muted);
  text-decoration: line-through;
}
.feat__viz--route {
  align-items: center;
  padding-top: 26px;
}
.feat__viz--route .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.06);
}
.feat__viz--route .dot--mid {
  background: var(--saffron);
}
.feat__viz--route .dot--end {
  background: var(--olive);
}
.feat__viz--route .line {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 50%
  );
  background-size: 10px 3px;
}

/* ───────────────────────────  TRUST  ──────────────────────── */
.trust {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--cream-2);
}
.trust__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.trust__list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.trust__list li {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 14px;
  color: var(--muted);
}
.trust__list li span {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 4px;
}

/* ── Orbit Visualization ── */
.trust__viz {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  justify-self: center;
  width: 100%;
}
.orbit {
  position: absolute;
  inset: 0;
  border: 1px dashed var(--line-strong);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}
.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  border: 1px dashed var(--line);
  border-radius: 50%;
}
.orbit::before {
  inset: 14%;
}
.orbit::after {
  inset: 28%;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.orbit__core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--ink);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 28px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 40s linear infinite reverse;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.4);
}
.orbit__node {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  animation: spin 40s linear infinite reverse;
}
.orbit__node--1 {
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
}
.orbit__node--2 {
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  background: var(--accent);
  color: white;
  border-color: transparent;
}
.orbit__node--3 {
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
}
.orbit__node--4 {
  top: 50%;
  left: 2%;
  transform: translateY(-50%);
  background: var(--ink);
  color: var(--cream);
  border-color: transparent;
}
.orbit__node--5 {
  top: 18%;
  right: 14%;
}

/* ─────────────────────────────  CTA  ──────────────────────── */
.cta {
  position: relative;
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--cream);
  overflow: hidden;
}
.cta__bg {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft), transparent 65%);
  filter: blur(60px);
  top: -300px;
  right: -200px;
  opacity: 0.7;
  z-index: 0;
}
.cta__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.cta .display {
  max-width: 18ch;
  margin: 0 auto 60px;
}
.cta__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
}
.cta__card {
  padding: 36px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.4s var(--ease);
}
.cta__card:hover {
  transform: translateY(-4px);
}
.cta__card--biz {
  background: var(--ink);
  color: var(--cream);
}
.cta__card--cust {
  background: var(--paper);
  border: 1px solid var(--line);
}
.cta__card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  margin: 0;
}
.cta__card p {
  margin: 0;
  opacity: 0.75;
}
.cta__arrow {
  margin-top: 20px;
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
}
.cta__card--biz .cta__arrow {
  color: var(--accent-2);
}

/* ───────────────────────────  FOOTER  ─────────────────────── */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  padding: 28px var(--gutter) 20px;
  transform-origin: center bottom;
  transition: transform 0.4s var(--ease);
}
.footer::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: min(460px, 62vw);
  height: 84px;
  transform: translateX(-50%) scale(0.6);
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(79, 131, 118, 0.52) 0%,
    rgba(111, 123, 117, 0.2) 38%,
    rgba(79, 131, 118, 0) 72%
  );
  opacity: 0;
  filter: blur(8px);
  pointer-events: none;
}
.footer.is-bouncing {
  animation: footerBounce 0.9s cubic-bezier(0.18, 0.9, 0.22, 1);
}
.footer.is-bouncing::after {
  animation: footerGlow 0.9s cubic-bezier(0.18, 0.9, 0.22, 1);
}
.footer__top {
  max-width: var(--container);
  margin: 0 auto 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.footer__nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  padding: 2px 0;
}
.footer__nav a:hover {
  color: var(--accent-2);
}
.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 0;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 10px;
}

@keyframes footerBounce {
  0% {
    transform: translateY(0) scaleY(1);
  }
  18% {
    transform: translateY(-18px) scaleY(1.03);
  }
  42% {
    transform: translateY(7px) scaleY(0.985);
  }
  62% {
    transform: translateY(-8px) scaleY(1.01);
  }
  100% {
    transform: translateY(0) scaleY(1);
  }
}

@keyframes footerGlow {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.6);
  }
  28% {
    opacity: 1;
    transform: translateX(-50%) scale(1.18);
  }
  52% {
    opacity: 0.58;
    transform: translateX(-50%) scale(0.92);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) scale(1.34);
  }
}

/* ───────────────────  REVEAL ANIMATIONS  ──────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ───────────────────────  RESPONSIVE  ─────────────────────── */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    max-width: 520px;
    margin: 20px auto 0;
  }
  .hero__spotlight {
    max-width: 520px;
    margin: 20px auto 0;
    width: 100%;
  }
  .audience__grid,
  .cust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .biz-grid__center {
    width: clamp(220px, 25vw, 320px);
    height: clamp(220px, 25vw, 320px);
  }
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features__grid > .feat:nth-last-child(-n + 2) {
    grid-column: auto;
  }
  .feat--wide {
    grid-column: span 2;
  }
  .trust__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: calc(100px + var(--gutter));
  }
  .audience__grid,
  .cust-grid,
  .features__grid {
    grid-template-columns: 1fr;
  }
  .cust-grid__center {
    display: none;
  }
  .biz-card--lg,
  .feat--wide {
    grid-column: auto;
  }
  .biz-grid__center {
    display: none;
  }
  .how__cols {
    grid-template-columns: 1fr;
  }
  .cta__split {
    grid-template-columns: 1fr;
  }
  .trust__list {
    grid-template-columns: 1fr;
  }

  /* Disable horizontal scroll pin on small screens — stack vertically */
  .hscroll {
    height: auto !important;
    background: var(--ink);
  }
  .hscroll__sticky {
    position: static;
    height: auto;
    padding: 60px 0;
  }
  .hscroll__track {
    flex-direction: column;
    transform: none !important;
    gap: 24px;
    height: auto;
  }
  .panel {
    width: 100%;
    height: auto;
    min-height: 60vh;
  }
  .hscroll__progress {
    display: none;
  }
}

/* ───────────────────  REDUCED MOTION  ─────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hscroll {
    height: auto !important;
  }
  .hscroll__sticky {
    position: static;
    height: auto;
    padding: 60px 0;
  }
  .hscroll__track {
    flex-direction: column;
    transform: none !important;
    gap: 24px;
    height: auto;
  }
  .panel {
    width: min(720px, 90vw);
    height: auto;
    margin: 0 auto;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
