:root {
  color-scheme: light;
  --cream: #fff8ef;
  --cream-2: #fee8d7;
  --cream-3: #fffdf9;
  --ink: #1a1714;
  --ink-soft: #5c5148;
  --muted: #897b70;
  --line: rgba(26, 23, 20, 0.14);
  --line-strong: rgba(26, 23, 20, 0.22);
  --accent: #d97842;
  --accent-dark: #bd5d2d;
  --accent-soft: #f1c2a5;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(71, 47, 31, 0.14);
  --header-bg: rgba(250, 246, 240, 0.84);
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 50% 34rem, rgba(217, 120, 66, 0.24), transparent 24rem),
    linear-gradient(180deg, #fff 0%, #fff7eb 30%, #f9d5bd 74%, var(--cream) 100%),
    var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  transition: background-color 220ms ease, color 220ms ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px);
  background-size: 100% 52px;
  opacity: 0.34;
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  inset: -60%;
  pointer-events: none;
  z-index: 90;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='280' height='280'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='280' height='280' filter='url(%23n)'/></svg>");
  opacity: 0.035;
  mix-blend-mode: multiply;
  animation: grain-shift 9s steps(10) infinite;
}

@keyframes grain-shift {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-4%, -6%); }
  20% { transform: translate(6%, 2%); }
  30% { transform: translate(-3%, 5%); }
  40% { transform: translate(5%, -4%); }
  50% { transform: translate(-6%, 3%); }
  60% { transform: translate(3%, 6%); }
  70% { transform: translate(-5%, -2%); }
  80% { transform: translate(2%, -5%); }
  90% { transform: translate(-2%, 4%); }
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.section-shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

html.is-loading body {
  overflow: hidden;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 85;
}

.preloader-panel {
  position: absolute;
  inset: 0;
}

.panel-back {
  background: var(--cream-2);
}

.panel-front {
  background: var(--cream);
  display: grid;
  place-items: center;
}

.preloader-waves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.preloader-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
}

.preloader-num {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 13vw, 9rem);
  font-weight: 400;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.preloader-num span {
  display: inline-block;
  min-width: 2.2ch;
  text-align: right;
}

.preloader-num i {
  margin-left: 6px;
  color: var(--accent);
  font-style: italic;
  font-size: 0.4em;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  width: min(calc(100% - 24px), 1160px);
  min-height: 64px;
  margin: 12px auto 0;
  padding: 8px 8px 8px 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--header-bg);
  box-shadow: 0 12px 44px rgba(45, 31, 22, 0.08);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  min-height: 42px;
}

.brand-logo {
  display: block;
  width: 67px;
  height: auto;
  filter: drop-shadow(0 1px 0 rgba(255, 248, 239, 0.45));
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  justify-content: flex-start;
  gap: clamp(14px, 2vw, 26px);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-links a,
.signin-link {
  transition: color 180ms ease;
}

.nav-links a:hover,
.signin-link:hover {
  color: var(--accent);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 260ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.nav-actions {
  gap: 10px;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  justify-items: center;
  align-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream-3);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.6px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 240ms ease;
}

html.menu-open .nav-toggle span:first-child {
  transform: translateY(3.3px) rotate(45deg);
}

html.menu-open .nav-toggle span:last-child {
  transform: translateY(-3.3px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 15;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 130px 28px 40px;
  background: rgba(255, 248, 239, 0.96);
  backdrop-filter: blur(18px);
}

.mobile-menu[hidden] {
  display: none;
}

html.menu-open body {
  overflow: hidden;
}

.mobile-menu-links {
  display: grid;
}

.mobile-menu-links a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 7vw, 2.3rem);
  line-height: 1.1;
}

.mobile-menu-links a span {
  color: var(--accent);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
}

.mobile-menu-actions {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.mobile-menu .signin-link {
  display: inline-block;
  color: var(--ink-soft);
}

@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

.signin-link {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
}

.pill-button,
.typing-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.pill-button {
  min-height: 46px;
  gap: 10px;
  padding: 0 18px 0 20px;
  box-shadow: 0 12px 30px rgba(217, 120, 66, 0.24);
}

.pill-button:hover,
.typing-cta:hover .typing-arrow {
  background: var(--accent-dark);
}

.hero {
  position: relative;
  min-height: calc(94svh - 86px);
  padding: clamp(16px, 2.6vw, 36px) 0 36px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.hero > :not(.hero-field) {
  position: relative;
  z-index: 1;
}

.hero-field {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw !important;
  height: 100% !important;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(115% 95% at 50% 45%, #000 58%, transparent 98%);
  mask-image: radial-gradient(115% 95% at 50% 45%, #000 58%, transparent 98%);
}

.hero-copy {
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: clamp(0.64rem, 0.82vw, 0.74rem);
}

h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 span {
  display: inline-block;
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}

.hero-subline {
  max-width: 560px;
  margin: 16px auto 0;
  color: var(--ink-soft);
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  text-wrap: pretty;
}

.typing-cta {
  position: relative;
  width: min(100%, 480px);
  min-height: 52px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  padding: 8px 8px 8px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
  cursor: pointer;
  text-align: left;
}

.hero-typing {
  margin-top: clamp(22px, 3vw, 34px);
}

.spark {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(217, 120, 66, 0.12);
  color: var(--accent);
  font-size: 0.9rem;
}

.typing-text {
  min-width: 0;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: clamp(0.9rem, 1.1vw, 0.98rem);
  font-weight: 400;
  white-space: nowrap;
  text-overflow: clip;
}

.typing-cursor {
  width: 2px;
  height: 20px;
  margin-left: -8px;
  background: var(--accent);
  animation: blink 0.85s steps(1) infinite;
}

.typing-arrow {
  width: 38px;
  height: 38px;
  border: 0;
  font-size: 0.96rem;
}

.hero-visual-stage {
  position: relative;
  width: min(100%, 640px);
  height: clamp(200px, 23.5vw, 292px);
  margin-top: clamp(22px, 3.4vw, 38px);
  perspective: 1200px;
  transform-style: preserve-3d;
  isolation: isolate;
}

.hero-scene-glow {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(78%, 760px);
  height: 36%;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(217, 120, 66, 0.24), transparent 68%),
    radial-gradient(circle at 45% 46%, rgba(255, 255, 255, 0.72), transparent 58%);
  filter: blur(16px);
  opacity: 0.9;
  transform: translateX(-50%);
  z-index: 0;
}

.hero-cards,
.laptop-motion {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.hero-card {
  position: absolute;
  left: 50%;
  top: 49%;
  width: clamp(90px, 10vw, 146px);
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 20px rgba(66, 38, 21, 0.13));
  opacity: 0.98;
  transform:
    translate(-50%, -50%)
    translate3d(var(--x), var(--y), var(--z))
    rotateY(var(--ry))
    rotateZ(var(--rz))
    scale(var(--s));
  transform-origin: center;
  will-change: transform, opacity;
  z-index: var(--zi);
}

.card-lead {
  --x: -214px;
  --y: -4px;
  --z: -72px;
  --ry: 20deg;
  --rz: -9deg;
  --s: 0.82;
  --zi: 2;
}

.card-email {
  --x: -135px;
  --y: -36px;
  --z: -44px;
  --ry: 14deg;
  --rz: -5deg;
  --s: 0.78;
  --zi: 3;
}

.card-agent {
  --x: 0px;
  --y: -48px;
  --z: -86px;
  --ry: 0deg;
  --rz: 1deg;
  --s: 0.78;
  --zi: 1;
  width: clamp(129px, 15.75vw, 219px);
}

.card-dashboard {
  --x: 146px;
  --y: -35px;
  --z: -48px;
  --ry: -14deg;
  --rz: 5deg;
  --s: 0.78;
  --zi: 3;
}

.card-recommendation {
  --x: 227px;
  --y: -2px;
  --z: -76px;
  --ry: -21deg;
  --rz: 9deg;
  --s: 0.82;
  --zi: 2;
}

.card-receipt {
  --x: 65px;
  --y: 42px;
  --z: -28px;
  --ry: -6deg;
  --rz: 4deg;
  --s: 0.68;
  --zi: 4;
}

.laptop-motion {
  --laptop-y: 0px;
  --laptop-scale: 1;
  width: min(57%, 428px);
  aspect-ratio: 16 / 9;
  left: 50%;
  top: auto;
  bottom: 0;
  inset-inline-start: 50%;
  pointer-events: none;
  transform: translateX(-50%) translateZ(52px) translateY(var(--laptop-y)) scale(var(--laptop-scale));
  z-index: 6;
}

.laptop-cutout {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(70, 42, 26, 0.18));
  user-select: none;
  z-index: 1;
}

.stat-strip {
  width: 100%;
  margin-top: clamp(28px, 4.8vw, 54px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-strip article {
  min-height: 80px;
  padding: 24px 18px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 2px;
  border-left: 1px solid var(--line);
}

.stat-strip article:first-child {
  border-left: 0;
}

.stat-strip strong,
.stat-strip span {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.1vw, 2.6rem);
  font-weight: 400;
  line-height: 0.94;
}

.stat-strip span {
  color: var(--accent);
}

.stat-strip p {
  flex-basis: 100%;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.floating-typing {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 30;
  width: min(calc(100% - 28px), 560px);
  min-height: 60px;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 10px;
  padding: 8px 8px 8px 14px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 22px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.floating-typing.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.floating-typing .spark {
  width: 32px;
  height: 32px;
}

.floating-typing .typing-text {
  font-size: 0.96rem;
}

.floating-typing .typing-cursor {
  height: 20px;
}

.floating-typing .typing-arrow {
  width: 44px;
  height: 44px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

main > section {
  scroll-margin-top: 92px;
}

.section-head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h2 span {
  display: inline-block;
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}

.section-subline {
  max-width: 520px;
  margin: 14px auto 0;
  color: var(--ink-soft);
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  text-wrap: pretty;
}

.avatar {
  flex: none;
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.results {
  padding: clamp(44px, 6vw, 76px) 0 clamp(96px, 13vw, 170px);
}

.ticker {
  overflow: hidden;
  margin-bottom: clamp(52px, 7.5vw, 92px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fceee6;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 36s linear infinite;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 14px 0;
  list-style: none;
}

.ticker-list li {
  position: relative;
  padding: 0 44px 0 18px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 500;
  white-space: nowrap;
}

.ticker-list li::after {
  content: "✦";
  position: absolute;
  right: 14px;
  color: var(--accent);
  font-size: 0.7rem;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.results-layout {
  display: grid;
  grid-template-columns: clamp(240px, 25vw, 320px) 1fr;
  gap: 20px;
  align-items: start;
  margin-top: clamp(34px, 5vw, 54px);
}

.story-video {
  margin: 0;
}

.story-video-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 86%, rgba(217, 120, 66, 0.18), transparent 62%),
    var(--cream-3);
  box-shadow: 0 14px 44px rgba(71, 47, 31, 0.07);
}

.story-video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-video-frame video {
  transition: opacity 320ms ease;
}

.story-label {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(16, 14, 12, 0.55);
  color: #fff8ef;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  backdrop-filter: blur(10px);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 14px 44px rgba(71, 47, 31, 0.07);
  text-align: left;
  cursor: pointer;
  transition: border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.testimonial-card:hover {
  border-color: var(--line-strong);
}

.testimonial-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.testimonial-card.is-playing {
  border-color: rgba(217, 120, 66, 0.5);
  box-shadow:
    inset 3px 0 0 var(--accent),
    0 18px 50px rgba(217, 120, 66, 0.16);
}

.playing-tag {
  display: none;
  margin-left: auto;
  align-self: center;
  padding: 4px 10px 4px 20px;
  position: relative;
  border-radius: 999px;
  background: rgba(217, 120, 66, 0.12);
  color: var(--accent-dark);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.playing-tag::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 999px;
  background: var(--accent);
  animation: playing-pulse 1.4s ease-in-out infinite;
}

@keyframes playing-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.testimonial-card.is-playing .playing-tag {
  display: inline-block;
}

.testimonial-quote {
  margin: 0;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.testimonial-quote::before {
  content: "“";
  display: block;
  margin-bottom: 2px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 0.7;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-meta strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
}

.testimonial-meta p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 400;
}

.how {
  padding-bottom: clamp(96px, 13vw, 170px);
}

.steps-frame {
  position: relative;
  margin-top: clamp(34px, 5vw, 54px);
}

.steps-progress {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 1;
  pointer-events: none;
}

.steps-progress i {
  display: block;
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.step {
  padding: 34px 24px 38px;
  border-left: 1px solid var(--line);
  text-align: left;
}

.step:first-child {
  border-left: 0;
}

.step-num {
  display: block;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.step h3 {
  margin: 13px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 400;
}

.step p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.5;
  text-wrap: pretty;
}

.paths {
  padding-bottom: clamp(72px, 10vw, 140px);
}

.paths-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(32px, 5vw, 88px);
  align-items: start;
  margin-top: clamp(20px, 3vw, 36px);
}

.path-item {
  position: relative;
  padding: clamp(44px, 6.5vw, 76px) 0 clamp(44px, 6.5vw, 76px) clamp(70px, 8vw, 120px);
}

.path-item::before {
  content: attr(data-num);
  position: absolute;
  left: 0;
  top: clamp(38px, 5.5vw, 64px);
  color: rgba(217, 120, 66, 0.24);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.6rem, 4.4vw, 4.2rem);
  line-height: 1;
  transition: color 420ms ease;
}

.path-item.is-active::before {
  color: rgba(217, 120, 66, 0.55);
}

.path-rule {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}

.path-item:first-child .path-rule {
  display: none;
}

.path-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.path-item h3 {
  margin: 0;
  max-width: 560px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.9rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.path-item h3 span {
  display: block;
  color: var(--accent);
  font-style: italic;
}

.path-desc {
  max-width: 460px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.path-media-stage {
  position: sticky;
  top: clamp(90px, 13vh, 150px);
  aspect-ratio: 4 / 5;
}

.path-media-stage .path-video {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.path-media-stage .path-video:first-child {
  opacity: 1;
}

.path-video {
  position: relative;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 82%, rgba(217, 120, 66, 0.14), transparent 60%),
    var(--cream-3);
  box-shadow: 0 18px 50px rgba(71, 47, 31, 0.09);
}

.path-video-inline {
  display: none;
  aspect-ratio: 16 / 10;
  margin-top: 24px;
}

@media (min-width: 901px) {
  .path-item {
    opacity: 0.35;
    transition: opacity 420ms ease;
  }

  .path-item.is-active {
    opacity: 1;
  }
}

.path-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.path-play {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  padding-left: 4px;
  box-shadow: 0 12px 30px rgba(217, 120, 66, 0.3);
}

.path-video p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.community {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
  padding-bottom: clamp(52px, 7vw, 96px);
}

.spiral-stage {
  display: flex;
  flex-direction: column;
  gap: clamp(34px, 5vw, 54px);
}

.community-head {
  order: -1;
}

.spiral-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card-tilt {
  height: 100%;
  padding: 20px 20px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(71, 47, 31, 0.06);
  text-align: left;
  transition: box-shadow 220ms ease;
}

.card-tilt:hover {
  box-shadow: 0 18px 44px rgba(71, 47, 31, 0.1);
}

.feed-card:nth-child(odd) {
  rotate: -0.6deg;
}

.feed-card:nth-child(even) {
  rotate: 0.6deg;
  translate: 0 12px;
}

/* Spiral mode — applied by JS on desktop, pinned + scrubbed by ScrollTrigger */
.community.is-spiral {
  width: 100%;
  max-width: none;
  padding-bottom: 0;
}

.is-spiral .spiral-stage {
  position: relative;
  height: 100svh;
  display: block;
  overflow: hidden;
}

.is-spiral .spiral-cards {
  position: absolute;
  inset: 0;
  display: block;
  perspective: 1200px;
}

.is-spiral .feed-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(320px, 30vw, 430px);
  rotate: 0deg;
  translate: 0 0;
  will-change: transform, opacity;
}

.is-spiral .community-head {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 300;
  width: min(92%, 860px);
  will-change: transform, opacity;
}

.is-spiral .community-head .eyebrow {
  margin-bottom: 16px;
  font-size: clamp(0.72rem, 0.95vw, 0.88rem);
}

.is-spiral .community-head h2 {
  font-size: clamp(2.8rem, 5.8vw, 5.8rem);
  line-height: 0.98;
}

.is-spiral .community-head .section-subline {
  max-width: 680px;
  margin-top: 20px;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.45;
}

.is-spiral .card-tilt {
  padding: clamp(24px, 2.3vw, 32px);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(71, 47, 31, 0.14);
}

.is-spiral .feed-meta .avatar {
  width: 38px;
  height: 38px;
  font-size: 0.76rem;
}

.is-spiral .feed-meta strong {
  font-size: 1rem;
}

.is-spiral .feed-time {
  font-size: 0.84rem;
}

.is-spiral .feed-tag {
  padding: 5px 10px;
  font-size: 0.66rem;
}

.is-spiral .card-tilt > p {
  margin-top: 18px;
  font-size: 1.02rem;
  line-height: 1.55;
}

.feed-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feed-meta .avatar {
  width: 30px;
  height: 30px;
  font-size: 0.66rem;
}

.feed-meta strong {
  font-size: 0.86rem;
  font-weight: 600;
}

.feed-time {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 400;
}

.feed-tag {
  margin-left: auto;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tag-win {
  background: var(--accent);
  color: #fff;
}

.tag-resource {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.tag-question,
.tag-event {
  border: 1px solid var(--line-strong);
  color: var(--ink-soft);
}

.card-tilt > p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
  text-wrap: pretty;
}

.outcomes {
  margin-top: clamp(50px, 7vw, 110px);
  margin-bottom: clamp(90px, 12vw, 160px);
  padding: clamp(34px, 5vw, 64px);
  border-radius: clamp(24px, 4vw, 44px);
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 120, 66, 0.28), transparent 54%),
    radial-gradient(circle at 12% 92%, rgba(241, 194, 165, 0.14), transparent 36%),
    #1a1714;
  color: #fff8ef;
  box-shadow: 0 30px 90px rgba(56, 33, 20, 0.18);
}

.outcome-head {
  max-width: 760px;
}

.outcome-head h2,
.outcome-tile h3 {
  color: #fff8ef;
}

.outcome-head h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.outcome-head .section-subline {
  color: rgba(255, 248, 239, 0.68);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(30px, 5vw, 54px);
}

.outcome-tile {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 248, 239, 0.13);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.1), rgba(255, 248, 239, 0.04)),
    rgba(255, 248, 239, 0.055);
}

.outcome-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 42%, rgba(26, 23, 20, 0.44) 100%);
  opacity: 0.86;
}

.outcome-photo {
  position: relative;
  min-height: 330px;
  margin: 12px;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 45% 25%, rgba(255, 255, 255, 0.34), transparent 32%),
    linear-gradient(150deg, rgba(255, 248, 239, 0.3), rgba(217, 120, 66, 0.28) 48%, rgba(26, 23, 20, 0.22));
  box-shadow: inset 0 0 0 1px rgba(255, 248, 239, 0.16);
}

.outcome-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 248, 239, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 248, 239, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.6;
}

.outcome-photo.has-image {
  aspect-ratio: 1 / 1;
  min-height: auto;
  background: #1a1714;
  box-shadow:
    inset 0 0 0 1px rgba(255, 248, 239, 0.14),
    0 18px 42px rgba(0, 0, 0, 0.18);
}

.outcome-photo.has-image::before {
  display: none;
}

.outcome-photo.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.08), transparent 34%),
    linear-gradient(0deg, rgba(26, 23, 20, 0.1), transparent 46%);
}

.outcome-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.placeholder-work {
  background:
    radial-gradient(circle at 68% 30%, rgba(255, 255, 255, 0.3), transparent 30%),
    linear-gradient(145deg, rgba(255, 248, 239, 0.28), rgba(92, 81, 72, 0.28) 42%, rgba(217, 120, 66, 0.34));
}

.placeholder-earn {
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.32), transparent 31%),
    linear-gradient(155deg, rgba(217, 120, 66, 0.34), rgba(255, 248, 239, 0.22) 44%, rgba(26, 23, 20, 0.32));
}

.outcome-ui {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 248, 239, 0.36);
  border-radius: 16px;
  background: rgba(255, 253, 249, 0.9);
  color: var(--ink);
  box-shadow: 0 18px 36px rgba(26, 23, 20, 0.16);
  backdrop-filter: blur(12px);
}

.outcome-ui i,
.outcome-ui span,
.outcome-ui strong,
.outcome-ui b {
  display: block;
}

.outcome-ui i {
  height: 7px;
  border-radius: 999px;
  background: rgba(92, 81, 72, 0.18);
}

.outcome-ui strong {
  font-size: 0.74rem;
  font-weight: 600;
}

.outcome-ui b {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--accent);
}

.ui-sales-page,
.ui-summary,
.ui-client {
  left: 18px;
  top: 22px;
  width: 58%;
  padding: 16px;
}

.ui-sales-page span {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: rgba(217, 120, 66, 0.18);
}

.ui-sales-page i + i,
.ui-summary i + i {
  width: 68%;
  margin-top: 8px;
}

.ui-payment {
  right: 18px;
  top: 132px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
}

.ui-payment strong {
  font-size: 0.8rem;
}

.ui-order,
.ui-task,
.ui-paid {
  right: 16px;
  bottom: 18px;
  min-width: 132px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ui-order span,
.ui-task span,
.ui-paid span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
}

.ui-summary strong,
.ui-client strong {
  margin-bottom: 12px;
  color: var(--accent-dark);
}

.ui-email {
  right: 18px;
  top: 118px;
  width: 52%;
  padding: 14px;
}

.ui-email span {
  width: 34px;
  height: 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--accent);
}

.ui-email i + i {
  width: 78%;
  margin-top: 8px;
}

.ui-task {
  left: 18px;
  right: auto;
}

.ui-task b,
.ui-paid b {
  position: relative;
}

.ui-task b::after,
.ui-paid b::after,
.ui-order b::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.ui-dashboard {
  left: 18px;
  bottom: 18px;
  width: 58%;
  padding: 14px;
}

.ui-dashboard span {
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: conic-gradient(var(--accent) 0 68%, rgba(217, 120, 66, 0.18) 68% 100%);
}

.ui-dashboard i {
  display: inline-block;
  width: 24%;
  height: 38px;
  margin-right: 6px;
  vertical-align: bottom;
  background: rgba(217, 120, 66, 0.24);
}

.ui-dashboard i:nth-of-type(2) {
  height: 54px;
}

.ui-dashboard i:nth-of-type(3) {
  height: 28px;
}

.ui-client {
  width: 56%;
}

.ui-paid {
  top: 116px;
  bottom: auto;
  background: rgba(255, 253, 249, 0.94);
}

.outcome-copy {
  position: relative;
  z-index: 2;
  padding: 8px 24px 26px;
}

.outcome-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  font-weight: 400;
  line-height: 1;
  text-wrap: balance;
}

.outcome-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.outcome-tags li {
  padding: 6px 10px;
  border: 1px solid rgba(255, 248, 239, 0.14);
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.08);
  color: rgba(255, 248, 239, 0.76);
  font-size: 0.72rem;
  font-weight: 500;
}

.outcome-copy p {
  margin: 18px 0 0;
  color: rgba(255, 248, 239, 0.72);
  font-size: 0.98rem;
  line-height: 1.52;
  text-wrap: pretty;
}

.final-cta {
  margin-top: clamp(8px, 2vw, 28px);
}

.cta-band {
  background:
    radial-gradient(circle at 50% -8%, rgba(217, 120, 66, 0.32), transparent 58%),
    #1a1714;
  border-radius: clamp(28px, 4vw, 48px) clamp(28px, 4vw, 48px) 0 0;
  color: #fff8ef;
  padding-top: clamp(70px, 9vw, 128px);
}

.cta-panel {
  text-align: center;
}

.cta-panel .eyebrow {
  color: var(--accent);
}

.cta-panel h2 {
  color: #fff8ef;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
}

.cta-subline {
  max-width: 460px;
  margin: 14px auto 0;
  color: rgba(255, 248, 239, 0.72);
  font-size: clamp(0.98rem, 1.15vw, 1.1rem);
  text-wrap: pretty;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.cta-signin {
  color: rgba(255, 248, 239, 0.78);
  font-size: 0.94rem;
  font-weight: 500;
  transition: color 180ms ease;
}

.cta-signin:hover {
  color: var(--accent);
}

.site-footer {
  margin-top: clamp(80px, 11vw, 150px);
  border-top: 1px solid rgba(255, 247, 236, 0.14);
  padding: clamp(40px, 6vw, 64px) 0 0;
}

.footer-logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 999px;
  background: var(--cream);
  padding: 9px 13px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.footer-logo {
  display: block;
  width: 67px;
  height: auto;
}

.cta-band .footer-brand p {
  color: rgba(255, 248, 239, 0.55);
}

.cta-band .footer-cols h4 {
  color: rgba(255, 248, 239, 0.45);
}

.cta-band .footer-cols a {
  color: rgba(255, 248, 239, 0.72);
}

.cta-band .footer-cols a:hover {
  color: #f09a66;
}

.cta-band .footer-base {
  border-top: 1px solid rgba(255, 247, 236, 0.12);
}

.cta-band .footer-base p {
  color: rgba(255, 248, 239, 0.45);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-cols {
  display: flex;
  gap: clamp(36px, 6vw, 84px);
}

.footer-cols h4 {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-cols a {
  display: block;
  margin-top: 9px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 180ms ease;
}

.footer-cols a:hover {
  color: var(--accent);
}

.footer-base {
  margin-top: clamp(32px, 5vw, 48px);
  padding: 18px 0 22px;
  border-top: 1px solid var(--line);
}

.footer-base p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 400;
}

.legal-document-page {
  background:
    radial-gradient(circle at 78% 14rem, rgba(217, 120, 66, 0.18), transparent 24rem),
    linear-gradient(180deg, #fff 0%, #fff7eb 42%, var(--cream) 100%),
    var(--cream);
}

.legal-header {
  position: sticky;
}

.legal-main {
  padding: clamp(54px, 8vw, 96px) 0 clamp(64px, 9vw, 110px);
}

.legal-hero {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: clamp(34px, 6vw, 76px) 0 clamp(28px, 5vw, 58px);
}

.legal-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.legal-hero h1 span {
  color: var(--accent);
  font-style: italic;
}

.legal-summary {
  max-width: 720px;
  margin: 22px auto 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 30px 0 0;
}

.legal-meta div {
  min-width: 150px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
}

.legal-meta dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-meta dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
}

.legal-meta a,
.terms-document a,
.legal-footer a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.legal-outline {
  position: sticky;
  top: 100px;
}

.legal-outline-card {
  max-height: calc(100svh - 130px);
  overflow: auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow: 0 12px 28px rgba(71, 47, 31, 0.06);
  backdrop-filter: blur(16px);
}

.legal-outline-card h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
}

.legal-outline-card a {
  display: grid;
  grid-template-columns: 2ch minmax(0, 1fr);
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid rgba(26, 23, 20, 0.08);
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.35;
}

.legal-outline-card a:hover {
  color: var(--accent-dark);
}

.legal-outline-card span {
  color: var(--accent);
  font-weight: 600;
}

.terms-document {
  min-width: 0;
  display: grid;
  gap: 18px;
}

.terms-document-head,
.terms-section {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.84);
  box-shadow: 0 14px 36px rgba(71, 47, 31, 0.06);
}

.terms-document-head {
  padding: clamp(22px, 4vw, 38px);
}

.terms-document-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1;
}

.terms-document-head p:not(.eyebrow) {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}

.terms-section {
  position: relative;
  padding: clamp(22px, 4vw, 38px);
  scroll-margin-top: 110px;
}

.terms-section-number {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
}

.terms-section h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 400;
  line-height: 1.08;
}

.terms-section h3 {
  margin: 28px 0 10px;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.35;
  scroll-margin-top: 110px;
}

.terms-section p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: clamp(0.94rem, 1.15vw, 1.02rem);
  line-height: 1.72;
  text-wrap: pretty;
}

.legal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.legal-footer p {
  margin: 0;
  font-size: 0.86rem;
}

@keyframes blink {
  0%,
  48% {
    opacity: 1;
  }
  49%,
  100% {
    opacity: 0;
  }
}


@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .hero-visual-stage {
    height: clamp(170px, 29vw, 225px);
  }

  .hero-card {
    width: clamp(72px, 12vw, 99px);
  }

  .card-lead {
    --x: clamp(-160px, -20vw, -120px);
    --y: -2px;
    --z: -66px;
    --ry: 18deg;
    --rz: -8deg;
    --s: 0.8;
  }

  .card-email {
    --x: clamp(-99px, -12.4vw, -70px);
    --y: -34px;
    --z: -42px;
    --ry: 12deg;
    --rz: -4deg;
    --s: 0.76;
  }

  .card-agent {
    --x: 0px;
    --y: -45px;
    --z: -82px;
    --s: 0.74;
    width: clamp(124px, 20vw, 169px);
  }

  .card-dashboard {
    --x: clamp(70px, 12.4vw, 99px);
    --y: -33px;
    --z: -42px;
    --ry: -12deg;
    --rz: 4deg;
    --s: 0.76;
  }

  .card-recommendation {
    --x: clamp(120px, 20vw, 160px);
    --y: -2px;
    --z: -66px;
    --ry: -18deg;
    --rz: 8deg;
    --s: 0.8;
  }

  .card-receipt {
    --x: 43px;
    --y: 39px;
    --z: -30px;
    --s: 0.62;
  }

  .laptop-motion {
    width: min(63%, 349px);
    bottom: -1%;
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-strip article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .stat-strip article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .results-layout {
    grid-template-columns: 1fr;
  }

  .story-video {
    width: min(100%, 280px);
    margin-inline: auto;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step:nth-child(odd) {
    border-left: 0;
  }

  .step:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .spiral-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .paths-layout {
    grid-template-columns: 1fr;
  }

  .path-media-stage {
    display: none;
  }

  .path-video-inline {
    display: grid;
  }

  .path-item {
    padding: clamp(36px, 7vw, 52px) 0;
  }

  .path-item::before {
    position: static;
    display: block;
    margin-bottom: 10px;
    font-size: 2rem;
  }

  .outcomes {
    padding: clamp(28px, 5vw, 44px);
  }

  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .outcome-tile {
    min-height: auto;
  }

  .outcome-photo {
    min-height: 310px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-outline {
    position: static;
  }

  .legal-outline-card {
    max-height: 280px;
  }
}

@media (max-width: 620px) {
  .section-shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    top: 8px;
    width: min(calc(100% - 16px), 1160px);
    margin-top: 8px;
    padding: 8px;
  }

  .brand {
    min-width: 74px;
  }

  .brand-logo {
    width: 67px;
  }

  .signin-link {
    display: none;
  }

  .pill-button {
    min-height: 42px;
    padding-inline: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  h1 {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
  }

  .typing-cta {
    min-height: 62px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    padding-left: 12px;
  }

  .typing-text {
    white-space: normal;
    font-size: 0.9rem;
    line-height: 1.14;
  }

  .typing-cursor {
    display: none;
  }

  .typing-arrow {
    width: 44px;
    height: 44px;
  }

  .hero-visual-stage {
    width: min(100%, 340px);
    height: clamp(118px, 38vw, 169px);
    margin-top: 28px;
  }

  .hero-card {
    width: clamp(58px, 18vw, 80px);
  }

  .card-email,
  .card-recommendation,
  .card-receipt {
    display: none;
  }

  .card-lead {
    --x: -63px;
    --y: -12px;
    --z: -42px;
    --ry: 15deg;
    --rz: -8deg;
    --s: 0.82;
  }

  .card-agent {
    --x: 0px;
    --y: -28px;
    --z: -62px;
    --ry: 0deg;
    --rz: 0deg;
    --s: 0.72;
    width: clamp(86px, 27vw, 118px);
  }

  .card-dashboard {
    --x: 63px;
    --y: -12px;
    --z: -42px;
    --ry: -15deg;
    --rz: 8deg;
    --s: 0.82;
  }

  .laptop-motion {
    width: min(72%, 236px);
    bottom: 0;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .stat-strip article,
  .stat-strip article:nth-child(4) {
    min-height: 98px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .stat-strip article:first-child {
    border-top: 0;
  }

  .floating-typing {
    bottom: 12px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step {
    border-left: 0;
  }

  .step:nth-child(n + 2) {
    border-top: 1px solid var(--line);
  }

  .spiral-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .outcomes {
    width: min(calc(100% - 28px), var(--max));
    margin-top: 44px;
    margin-bottom: 76px;
    padding: 24px 14px;
    border-radius: 28px;
  }

  .outcome-head h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .outcome-grid {
    gap: 14px;
  }

  .outcome-tile {
    border-radius: 22px;
  }

  .outcome-photo {
    min-height: 258px;
    margin: 10px;
    border-radius: 16px;
  }

  .outcome-copy {
    padding: 8px 18px 22px;
  }

  .outcome-copy h3 {
    font-size: clamp(1.55rem, 8vw, 2.05rem);
  }

  .outcome-tags {
    gap: 6px;
  }

  .outcome-tags li {
    font-size: 0.68rem;
    padding: 5px 9px;
  }

  .ui-sales-page,
  .ui-summary,
  .ui-client,
  .ui-dashboard {
    left: 12px;
    width: 60%;
    padding: 12px;
  }

  .ui-payment,
  .ui-email,
  .ui-order,
  .ui-paid {
    right: 12px;
  }

  .ui-payment {
    top: 104px;
    padding: 10px 14px;
  }

  .ui-email,
  .ui-paid {
    top: 96px;
  }

  .ui-order,
  .ui-task {
    bottom: 12px;
    min-width: 116px;
  }

  .feed-card:nth-child(odd),
  .feed-card:nth-child(even) {
    rotate: 0deg;
    translate: 0 0;
  }

  .footer-cols {
    flex-wrap: wrap;
    gap: 28px 44px;
  }

  .cta-actions {
    flex-direction: column;
    gap: 14px;
  }

  .legal-main {
    padding-top: 34px;
  }

  .legal-meta {
    display: grid;
    width: 100%;
  }

  .legal-meta div {
    min-width: 0;
  }

  .terms-section,
  .terms-document-head {
    border-radius: 16px;
  }

  .legal-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
