:root {
  --ink: #0b0b0a;
  --ink-soft: #151514;
  --ink-card: #1b1a18;
  --cream: #f4efe5;
  --paper: #fffaf0;
  --white: #fffdf8;
  --muted: #b8b2a8;
  --muted-dark: #746f66;
  --line: rgba(255, 255, 255, 0.13);
  --line-dark: rgba(14, 14, 13, 0.15);
  --yellow: #ffc718;
  --yellow-soft: #ffdb62;
  --red: #ca3b32;
  --radius: 28px;
  --radius-sm: 18px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  --heading: "Unbounded", "Arial Black", sans-serif;
  --body: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 20% -10% auto auto;
  width: min(820px, 76vw);
  aspect-ratio: 800 / 247;
  background: url("img/logo.png") center / contain no-repeat;
  content: "";
  opacity: 0.018;
  pointer-events: none;
  z-index: 0;
}

body.modal-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

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

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

strong {
  color: inherit;
  font-weight: 800;
}

mark {
  background: none;
  color: var(--yellow);
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 200;
  padding: 12px 18px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  border-radius: 12px;
}

.skip-link:focus {
  top: 12px;
}

.container {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.container--narrow {
  width: min(1080px, calc(100% - 64px));
}

.container--faq {
  width: min(920px, calc(100% - 64px));
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 10, 9, 0.88);
  border-color: var(--line);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1320px, calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 168px;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.availability,
.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e9e3d9;
  font-size: 13px;
  font-weight: 700;
}

.availability i,
.hero-note i {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 199, 24, 0.55);
  animation: pulse 2.2s infinite;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 24px;
  background: var(--yellow);
  color: var(--ink);
  border: 1px solid var(--yellow);
  border-radius: 999px;
  box-shadow: 0 10px 34px rgba(255, 199, 24, 0.14);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.button:hover {
  background: var(--yellow-soft);
  border-color: var(--yellow-soft);
  box-shadow: 0 16px 42px rgba(255, 199, 24, 0.25);
  color: var(--ink);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.button--compact {
  min-height: 44px;
  padding: 11px 19px;
  font-size: 12px;
}

.button--large {
  min-height: 62px;
  padding: 18px 28px;
  font-size: 14px;
}

.button--wide {
  width: 100%;
}

.button--outline {
  background: transparent;
  color: var(--yellow);
}

.button--outline:hover {
  background: var(--yellow);
  color: var(--ink);
}

.button--dark,
.button--dark-outline {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.button--dark:hover {
  background: #25231f;
  border-color: #25231f;
  color: var(--white);
}

.button--dark-outline {
  background: transparent;
  color: var(--ink);
}

.button--dark-outline:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 126px 0 92px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.99) 0%, rgba(7, 7, 6, 0.9) 35%, rgba(7, 7, 6, 0.28) 60%, rgba(7, 7, 6, 0.08) 100%),
    linear-gradient(0deg, var(--ink) 0%, transparent 24%);
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 0.6px, transparent 0.6px);
  background-size: 6px 6px;
  content: "";
  opacity: 0.16;
  pointer-events: none;
}

.hero-media,
.image-statement-media,
.final-media {
  position: absolute;
  inset: -8% -2%;
  z-index: -2;
  overflow: hidden;
}

.hero-media img,
.image-statement-media img,
.final-media img {
  width: 100%;
  height: 116%;
  object-fit: cover;
  will-change: transform;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.06);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero-glow--one {
  width: 420px;
  height: 420px;
  right: -120px;
  top: -120px;
  background: rgba(255, 199, 24, 0.18);
  animation: float 10s ease-in-out infinite;
}

.hero-glow--two {
  width: 340px;
  height: 340px;
  left: 34%;
  bottom: -180px;
  background: rgba(202, 59, 50, 0.22);
  animation: float 13s ease-in-out infinite reverse;
}

.hero-layout {
  display: block;
}

.hero-copy {
  width: min(820px, 64vw);
  max-width: 100%;
}

.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 34px;
  height: 2px;
  background: currentColor;
}

.eyebrow--dark {
  color: #554e43;
}

.hero-title {
  margin: 0;
  color: var(--white);
  font-family: var(--heading);
  font-size: clamp(40px, 4.4vw, 68px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.04;
  text-transform: uppercase;
}

.hero-title > span {
  display: block;
}

.hero-main-line {
  white-space: nowrap;
}

.hero-title.reveal,
.hero-cta.reveal,
.final-copy.reveal {
  clip-path: none;
}

.hero-title .hero-profit {
  margin-bottom: 16px;
  color: var(--yellow);
  font-size: 0.79em;
  letter-spacing: -0.04em;
}

.hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: #d7d1c7;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.load-card {
  width: min(520px, 100%);
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: rgba(16, 16, 14, 0.68);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(14px);
}

.load-row + .load-row {
  margin-top: 15px;
}

.load-label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
  color: #a9a398;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.load-label--accent {
  color: var(--yellow);
}

.load-track {
  height: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.load-fill {
  width: 0;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-soft));
  border-radius: inherit;
  transition: width 1.2s cubic-bezier(0.2, 0.8, 0.25, 1);
}

.load-fill--muted {
  background: #716b62;
}

.hero-cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.hero-note {
  max-width: 230px;
  color: #d7d1c7;
  line-height: 1.45;
}

.hero-proof {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(14, 14, 12, 0.66);
  border-radius: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-proof::before {
  position: absolute;
  inset: -120px -110px auto auto;
  width: 260px;
  height: 260px;
  background: var(--yellow);
  border-radius: 50%;
  content: "";
  filter: blur(60px);
  opacity: 0.18;
}

.proof-topline {
  display: flex;
  justify-content: space-between;
  color: #a7a196;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.proof-mark {
  width: 84px;
  height: 84px;
  margin: 50px 0 44px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 28px 28px 28px 6px;
  font-family: var(--heading);
  font-size: 24px;
  font-weight: 800;
  transform: rotate(-6deg);
}

.proof-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-grid > div {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  align-items: center;
  gap: 14px;
  padding: 17px 0;
}

.proof-grid > div + div {
  border-top: 1px solid var(--line);
}

.proof-grid strong {
  color: var(--yellow);
  font-family: var(--heading);
  font-size: 22px;
  line-height: 1;
}

.proof-grid span {
  color: #bbb5ab;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-proof > p {
  margin: 20px 0 0;
  color: var(--white);
  font-family: var(--heading);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #9f998f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-hint i {
  width: 1px;
  height: 28px;
  background: linear-gradient(var(--yellow), transparent);
  animation: scroll 1.8s ease-in-out infinite;
}

.marquee {
  position: relative;
  z-index: 4;
  overflow: hidden;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 10px 40px rgba(255, 199, 24, 0.2);
  transform: none;
}

.marquee-track {
  width: max-content;
  display: flex;
  padding: 15px 0;
  animation: marquee 30s linear infinite;
}

.marquee span {
  white-space: nowrap;
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-metrics {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 50%, rgba(255, 199, 24, 0.1), transparent 28%),
    #10100e;
}

.hero-metrics-grid {
  min-height: 132px;
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 0.78fr) 1.08fr;
  align-items: stretch;
}

.hero-metrics-grid > * {
  min-width: 0;
  margin: 0;
  padding: 26px clamp(18px, 2.2vw, 34px);
  display: flex;
  align-items: center;
  border-left: 1px solid var(--line);
}

.hero-metrics-grid > *:last-child {
  border-right: 1px solid var(--line);
}

.metrics-brand {
  justify-content: space-between;
  gap: 22px;
  color: #918b81;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.metrics-brand-meta {
  display: grid;
  align-self: stretch;
  align-content: space-between;
  gap: 16px;
}

.metrics-brand img {
  width: clamp(118px, 9.5vw, 154px);
  height: auto;
  flex: 0 0 auto;
}

.metrics-item {
  justify-content: space-between;
  gap: 15px;
}

.metrics-item strong {
  flex: 0 0 auto;
  color: var(--yellow);
  font-family: var(--heading);
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: -0.045em;
  line-height: 1;
  white-space: nowrap;
}

.metrics-item > span {
  color: #aaa49a;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-metrics-grid > p {
  color: var(--white);
  font-family: var(--heading);
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  text-transform: uppercase;
}

.section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: clamp(86px, 9vw, 138px) 0;
}

.section--light,
.section--cream {
  color: var(--ink);
}

.section--light {
  background: var(--paper);
}

.section--cream {
  background: var(--cream);
}

.section--ink,
.proof-section,
.calculator-section {
  background:
    radial-gradient(circle at 90% 5%, rgba(255, 199, 24, 0.08), transparent 24%),
    var(--ink);
}

.brand-watermark::after {
  position: absolute;
  right: -130px;
  bottom: -20px;
  width: min(760px, 70vw);
  aspect-ratio: 800 / 247;
  background: url("img/logo.png") center / contain no-repeat;
  content: "";
  opacity: 0.025;
  pointer-events: none;
}

.section--light.brand-watermark::after,
.section--cream.brand-watermark::after {
  filter: invert(1);
  opacity: 0.035;
}

.section-heading {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: start;
  gap: 22px;
  margin-bottom: 48px;
}

.section-heading h2 {
  max-width: 1010px;
  margin: 0;
  color: var(--ink);
  font-family: var(--heading);
  font-size: clamp(30px, 4.2vw, 56px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.12;
  text-wrap: balance;
  text-transform: uppercase;
}

.heading-copy,
.heading-accent {
  display: block;
}

.heading-line {
  display: block;
  white-space: nowrap;
}

.heading-copy .heading-line {
  display: inline;
  white-space: normal;
}

.heading-accent {
  margin-top: 0.08em;
}

.section-heading--light h2 {
  color: var(--white);
}

.section-number {
  margin: 8px 0 0;
  color: #8c8579;
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.section-heading--light .section-number {
  color: #756f66;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.story-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(160deg, transparent 30%, rgba(0, 0, 0, 0.04)),
    rgba(255, 255, 255, 0.46);
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
  box-shadow: 0 20px 60px rgba(47, 39, 25, 0.11);
  transform: translateY(-5px);
}

.story-card--accent {
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 199, 24, 0.35), transparent 32%),
    var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.story-time {
  margin: 0 0 auto;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.story-card--accent .story-time {
  color: var(--yellow);
}

.story-card h3 {
  margin: 34px 0 10px;
  font-family: var(--heading);
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.story-card > p:last-child {
  max-width: 520px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 16px;
}

.story-card--accent > p:last-child {
  color: #c9c3b9;
}

.section-close {
  margin-top: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.section-close > p,
.compare-lead {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(23px, 3vw, 36px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.25;
  text-transform: uppercase;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 38px;
}

.capability-card {
  position: relative;
  min-height: 238px;
  grid-column: span 3;
  padding: 28px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 199, 24, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.035);
  border-radius: var(--radius-sm);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.capability-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.07), transparent 34%);
  content: "";
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.capability-card::after {
  position: absolute;
  right: 28px;
  top: 31px;
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), transparent);
  content: "";
  opacity: 0.62;
}

.capability-card:hover {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 199, 24, 0.16), transparent 46%),
    rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 199, 24, 0.45);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
  transform: translateY(-7px);
}

.capability-card:hover::before {
  opacity: 1;
}

.capability-card > span {
  color: #8c867c;
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.capability-card h3 {
  align-self: end;
  margin: 42px 0 10px;
  color: var(--yellow);
  font-family: var(--heading);
  font-size: clamp(19px, 1.55vw, 23px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  text-transform: uppercase;
}

.capability-card p {
  margin: 0;
  color: #c0bab0;
  font-size: 16px;
  line-height: 1.55;
}

.capability-card:nth-child(5),
.capability-card:nth-child(6),
.capability-card:nth-child(7) {
  grid-column: span 4;
}

.capability-card:nth-child(7) {
  background:
    linear-gradient(90deg, rgba(16, 10, 8, 0.92), rgba(16, 10, 8, 0.64)),
    linear-gradient(135deg, rgba(202, 59, 50, 0.2), rgba(255, 199, 24, 0.07));
}

.capability-card:nth-child(7)::before {
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.07), transparent 34%),
    url("img/logo.png") right -70px center / 310px auto no-repeat;
  opacity: 0.1;
}

.capability-card:nth-child(7):hover::before {
  opacity: 0.18;
}

.visual-break {
  position: relative;
  z-index: 0;
  height: 118svh;
  background-color: #050504;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  isolation: isolate;
}

.visual-break-pin {
  position: fixed;
  inset: 0;
  z-index: 0;
  height: 100svh;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0s linear 0.22s;
}

.visual-break.is-active .visual-break-pin {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.visual-break-pin img {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100svh;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.04) brightness(0.92);
  transform: none;
}

.visual-break--kitchen .visual-break-pin img {
  object-position: center 46%;
}

.visual-break--sushi .visual-break-pin img {
  object-position: center 58%;
}

.visual-break-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0.34) 0%, transparent 15%, transparent 78%, rgba(7, 7, 6, 0.48) 100%),
    radial-gradient(circle at 50% 46%, transparent 44%, rgba(7, 7, 6, 0.16) 100%);
  pointer-events: none;
}

.visual-break + .image-statement,
.visual-break + .section {
  position: relative;
  z-index: 3;
  margin-top: -12svh;
  overflow: hidden;
  border-radius: clamp(30px, 4vw, 56px) clamp(30px, 4vw, 56px) 0 0;
  box-shadow: 0 -42px 100px rgba(0, 0, 0, 0.38);
}

.image-statement {
  position: relative;
  z-index: 1;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.image-statement::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 7, 6, 0.96) 0%, rgba(7, 7, 6, 0.74) 45%, rgba(7, 7, 6, 0.15) 75%);
  content: "";
}

.image-statement-media picture,
.final-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.image-statement-inner {
  padding: 96px 0;
}

.statement-card {
  max-width: 760px;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(10, 10, 9, 0.68);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px);
}

.statement-card h2 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(38px, 4.25vw, 60px);
  letter-spacing: -0.055em;
  line-height: 1.12;
  text-wrap: balance;
  text-transform: uppercase;
}

.statement-line {
  display: block;
  white-space: nowrap;
}

.statement-card > p:not(.eyebrow) {
  max-width: 490px;
  margin: 24px 0 30px;
  color: #cbc5bb;
  font-size: 17px;
}

.compare-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.44);
  border-radius: var(--radius);
  box-shadow: 0 24px 75px rgba(54, 43, 25, 0.09);
}

.compare-column {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
}

.compare-column--new {
  background: var(--ink);
  color: var(--white);
}

.compare-column h3 {
  margin: 0 0 28px;
  font-family: var(--heading);
  font-size: clamp(22px, 2.7vw, 32px);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.compare-column--old h3 {
  color: #777167;
}

.compare-column--new h3 {
  color: var(--yellow);
}

.compare-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-column li {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid currentColor;
  color: #777167;
  font-size: 15px;
  font-weight: 600;
  border-color: rgba(0, 0, 0, 0.11);
}

.compare-column--new li {
  color: #e7e1d7;
  border-color: var(--line);
}

.compare-column li span {
  width: 26px;
  height: 26px;
  display: grid;
  flex: 0 0 26px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: #aaa49a;
  font-size: 13px;
}

.compare-column--new li span {
  color: var(--yellow);
}

.compare-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 7px 10px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compare-summary {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 36px;
}

.why-card {
  max-width: 820px;
  margin-top: 26px;
  padding: 22px 24px;
  border-left: 4px solid var(--red);
  background: rgba(255, 255, 255, 0.55);
}

.why-card strong {
  color: var(--red);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.why-card p {
  margin: 8px 0 0;
  color: #59544b;
  font-size: 14px;
  line-height: 1.7;
}

.legal-note {
  margin: 18px 0 0;
  color: #817b71;
  font-size: 12px;
  line-height: 1.55;
}

.legal-note--dark {
  color: #777168;
}

.calculator-section {
  color: var(--white);
}

.calculator {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-card);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.calculator-controls,
.calculator-results {
  padding: clamp(26px, 4.3vw, 48px);
}

.calculator-controls {
  border-right: 1px solid var(--line);
}

.calculator-results {
  position: relative;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 199, 24, 0.22), transparent 38%),
    linear-gradient(145deg, #171614, #0c0c0b);
}

.panel-label {
  margin: 0 0 28px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.range-field + .range-field {
  margin-top: 23px;
}

.range-field > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.range-field label {
  color: #b5afa5;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.range-field output {
  color: var(--white);
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.range-field input[type="range"] {
  width: 100%;
  height: 22px;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.range-field input[type="range"]::-webkit-slider-runnable-track {
  height: 5px;
  background: linear-gradient(90deg, var(--yellow) 0 var(--range-progress, 50%), rgba(255, 255, 255, 0.12) var(--range-progress, 50%));
  border-radius: 999px;
}

.range-field input[type="range"]::-webkit-slider-thumb {
  width: 19px;
  height: 19px;
  margin-top: -7px;
  appearance: none;
  background: var(--yellow);
  border: 4px solid var(--ink-card);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--yellow);
}

.range-field input[type="range"]::-moz-range-track {
  height: 5px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.range-field input[type="range"]::-moz-range-progress {
  height: 5px;
  background: var(--yellow);
  border-radius: 999px;
}

.range-field input[type="range"]::-moz-range-thumb {
  width: 13px;
  height: 13px;
  background: var(--yellow);
  border: 4px solid var(--ink-card);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--yellow);
}

.sushi-forecast {
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.sushi-forecast > p {
  margin: 0 0 15px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.sushi-forecast > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #aaa49a;
  font-size: 12px;
}

.sushi-forecast > div + div {
  margin-top: 8px;
}

.sushi-forecast strong {
  color: var(--white);
  white-space: nowrap;
}

.result-group + .result-group {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.result-comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.result-comparison > div {
  min-width: 0;
}

.result-comparison span,
.result-comparison small {
  display: block;
  color: #8f897f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.result-comparison strong {
  min-height: 70px;
  display: flex;
  align-items: center;
  margin: 5px 0;
  color: #918b82;
  font-family: var(--heading);
  font-size: clamp(20px, 2.8vw, 32px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.result-comparison > div:last-child strong {
  color: var(--yellow);
}

.result-delta {
  margin: 18px 0 0;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 800;
}

.result-action {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.result-action > p {
  margin: 0 0 16px;
  color: #c4beb4;
  font-size: 14px;
  text-align: center;
}

.result-action strong {
  color: var(--yellow);
}

.steps-list {
  margin: 0 0 38px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
}

.steps-list li {
  position: relative;
  min-height: 238px;
  grid-column: span 4;
  padding: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(14, 14, 13, 0.13);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 199, 24, 0.16), transparent 37%),
    rgba(255, 255, 255, 0.62);
  border-radius: 24px;
  box-shadow: 0 20px 55px rgba(61, 46, 23, 0.07);
}

.steps-list li::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(var(--yellow), var(--red));
  content: "";
}

.steps-list li::after {
  position: absolute;
  right: -28px;
  top: -32px;
  color: rgba(202, 59, 50, 0.055);
  content: counter(list-item, decimal-leading-zero);
  font-family: var(--heading);
  font-size: 112px;
  font-weight: 800;
  line-height: 1;
}

.steps-list li:nth-child(4),
.steps-list li:nth-child(5) {
  grid-column: span 6;
}

.steps-list li > span {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border: 1px solid rgba(202, 59, 50, 0.25);
  background: var(--paper);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 800;
}

.steps-list h3 {
  position: relative;
  z-index: 1;
  margin: 38px 0 10px;
  font-family: var(--heading);
  font-size: clamp(18px, 1.65vw, 22px);
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-transform: uppercase;
}

.steps-list p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #5f594f;
  font-size: 16px;
  line-height: 1.6;
}

.proof-intro {
  max-width: 790px;
  margin: -22px 0 44px 94px;
  color: #bcb6ac;
  font-size: 17px;
}

.proof-intro strong {
  color: var(--white);
}

.proof-section {
  min-height: 920px;
  overflow: hidden;
  background: #0b0b0a;
  isolation: isolate;
}

.proof-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0.68) 0%, rgba(7, 7, 6, 0.2) 48%, rgba(7, 7, 6, 0.66) 100%),
    linear-gradient(90deg, rgba(7, 7, 6, 0.4) 0%, transparent 64%);
  content: "";
  pointer-events: none;
}

.proof-map-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.proof-map-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.12) contrast(1.08) brightness(1.03);
}

.proof-map-mobile {
  display: none;
}

.proof-section .section-heading {
  max-width: 930px;
  margin-bottom: 30px;
}

.proof-section .section-heading h2,
.proof-section .proof-intro {
  text-shadow: 0 3px 26px rgba(0, 0, 0, 0.82);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.proof-section .media-grid {
  min-height: 300px;
  grid-template-columns: 1fr;
  align-items: start;
}

.map-caption {
  align-self: start;
  justify-self: end;
  margin: 0;
  padding: 10px 14px;
  background: rgba(9, 9, 8, 0.76);
  color: var(--white);
  border: 1px solid rgba(255, 199, 24, 0.36);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.network-stats {
  margin: 22px 0 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.proof-section .network-stats {
  background: rgba(9, 9, 8, 0.78);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.network-stats > div {
  padding: 30px 20px;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.network-stats > div + div {
  border-left: 1px solid var(--line);
}

.network-stats strong {
  color: var(--yellow);
  font-family: var(--heading);
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.network-stats > div > span {
  color: #979188;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faq-list {
  margin-bottom: 32px;
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: var(--heading);
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.35;
  list-style: none;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  left: 9px;
  top: 16px;
  width: 14px;
  height: 2px;
  background: var(--red);
  content: "";
  transition: transform 0.25s ease;
}

.faq-list summary i::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: rotate(0);
}

.faq-list details > p {
  max-width: 760px;
  margin: -4px 0 26px;
  color: #5e5950;
  font-size: 16px;
}

.final-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.final-section::before {
  position: absolute;
  inset: 0 0 auto;
  height: 820px;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 7, 6, 0.46) 0%, rgba(7, 7, 6, 0.2) 52%, rgba(7, 7, 6, 0.08) 100%),
    linear-gradient(0deg, var(--ink) 0%, transparent 34%);
  content: "";
}

.final-media {
  bottom: auto;
  height: 820px;
}

.final-media img {
  object-position: center 48%;
  filter: saturate(1.08) contrast(1.03) brightness(1.08);
}

.final-inner {
  min-height: 940px;
  padding: 360px 0 84px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

.final-copy h2 {
  max-width: 720px;
  margin: 24px 0;
  font-family: var(--heading);
  font-size: clamp(34px, 4.5vw, 60px);
  letter-spacing: -0.05em;
  line-height: 1.12;
  text-wrap: balance;
  text-transform: uppercase;
}

.final-copy {
  padding: clamp(26px, 3.2vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(8, 8, 7, 0.56);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.final-copy .hero-note {
  max-width: 100%;
  overflow: visible;
}

.final-copy h2 mark {
  white-space: nowrap;
}

.final-copy > p:last-child {
  max-width: 640px;
  margin: 0;
  color: #c7c1b7;
  font-size: 17px;
}

.lead-form {
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(12, 12, 11, 0.78);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.field + .field {
  margin-top: 18px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: #aaa49a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input::placeholder {
  color: #747068;
}

.field input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 199, 24, 0.12);
}

.lead-form .button {
  margin-top: 22px;
}

.form-message {
  min-height: 0;
  margin: 12px 0 0;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.form-message:empty {
  display: none;
}

.form-message.is-error {
  color: #ffaaa3;
}

.consent {
  margin: 13px 0 0;
  color: #7f7a72;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  text-align: left;
}

.consent-check input {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin: 1px 0 0;
  accent-color: var(--yellow);
}

.consent-check a {
  color: #aaa49a;
  text-decoration: underline;
  text-decoration-color: rgba(255, 199, 24, 0.45);
  text-underline-offset: 3px;
}

.form-trap {
  position: fixed;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  background: rgba(8, 8, 7, 0.96);
}

.footer-inner {
  padding: 54px 0 48px;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px 58px;
}

.footer-brand img {
  width: 190px;
  height: auto;
}

.footer-brand p {
  margin: 14px 0 0;
  color: #a7a198;
  font-size: 12px;
  font-weight: 700;
}

.site-footer address {
  margin: 0;
  color: #958f86;
  font-size: 12px;
  font-style: normal;
  line-height: 1.75;
}

.site-footer address p {
  margin: 0;
}

.site-footer a:hover {
  color: var(--yellow);
}

.legal-links {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.seo-links {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  color: #a7a198;
  font-size: 11px;
}

.seo-links a {
  text-decoration: underline;
  text-decoration-color: rgba(255, 199, 24, 0.2);
  text-underline-offset: 4px;
}

.legal-links a {
  color: #958f86;
  font-size: 11px;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.22);
  text-underline-offset: 4px;
}

.footer-disclaimer {
  grid-column: 2;
  max-width: 860px;
  margin: 0;
  color: #666159;
  font-size: 10px;
  line-height: 1.6;
}

.modal {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 20px;
  overflow: auto;
  background: transparent;
  border: 0;
  color: var(--white);
}

.modal::backdrop {
  background: transparent;
}

.modal[open] {
  display: grid;
  place-items: center;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
  cursor: default;
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  padding: clamp(28px, 5vw, 44px);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 199, 24, 0.13), transparent 30%),
    var(--ink-card);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.62);
  animation: modal-in 0.28s ease both;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  background: transparent;
  color: #9b958c;
  border-radius: 50%;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.modal-card h2 {
  margin: 0 44px 12px 0;
  font-family: var(--heading);
  font-size: clamp(24px, 5vw, 34px);
  letter-spacing: -0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.modal-card > p:not(.eyebrow) {
  margin: 0 0 24px;
  color: #aaa49a;
  font-size: 15px;
}

.lead-form--modal {
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.reveal {
  opacity: 0;
  clip-path: inset(0 var(--reveal-clip-right, 0) 0 0);
  transform: translate3d(var(--reveal-x, 0), var(--reveal-y, 34px), 0) scale(var(--reveal-scale, 0.985)) rotate(var(--reveal-rotate, 0deg));
  transition:
    opacity 0.72s cubic-bezier(0.2, 0.75, 0.25, 1) var(--reveal-delay, 0ms),
    transform 0.82s cubic-bezier(0.16, 0.84, 0.22, 1) var(--reveal-delay, 0ms),
    clip-path 0.86s cubic-bezier(0.16, 0.84, 0.22, 1) var(--reveal-delay, 0ms);
  transform-origin: var(--reveal-origin, center);
  will-change: opacity, transform, clip-path;
}

.reveal.is-visible {
  opacity: 1;
  clip-path: inset(0);
  transform: none;
  will-change: auto;
}

.hero-title.reveal,
.hero-title.reveal.is-visible,
.hero-cta.reveal,
.hero-cta.reveal.is-visible,
.final-copy.reveal,
.final-copy.reveal.is-visible {
  clip-path: none;
}

.section-heading.reveal {
  --reveal-clip-right: 68%;
  --reveal-x: -26px;
  --reveal-y: 0;
}

.eyebrow.reveal {
  --reveal-x: -20px;
  --reveal-y: 0;
}

.story-card:nth-child(odd).reveal {
  --reveal-x: -24px;
}

.story-card:nth-child(even).reveal {
  --reveal-x: 24px;
}

.capability-card.reveal {
  --reveal-scale: 0.96;
}

.capability-card:nth-child(4n + 1).reveal {
  --reveal-x: -34px;
  --reveal-rotate: -1.4deg;
  --reveal-origin: left bottom;
}

.capability-card:nth-child(4n + 2).reveal {
  --reveal-x: -12px;
  --reveal-y: 46px;
  --reveal-rotate: -0.7deg;
}

.capability-card:nth-child(4n + 3).reveal {
  --reveal-x: 12px;
  --reveal-y: 46px;
  --reveal-rotate: 0.7deg;
}

.capability-card:nth-child(4n).reveal {
  --reveal-x: 34px;
  --reveal-rotate: 1.4deg;
  --reveal-origin: right bottom;
}

.steps-list li.reveal {
  --reveal-clip-right: 68%;
  --reveal-x: -22px;
  --reveal-y: 0;
}

.media-grid > .reveal:nth-child(odd) {
  --reveal-x: -30px;
  --reveal-y: 12px;
  --reveal-rotate: -1deg;
}

.media-grid > .reveal:nth-child(even) {
  --reveal-x: 30px;
  --reveal-y: 12px;
  --reveal-rotate: 1deg;
}

.network-stats.reveal,
.calculator.reveal,
.compare-table.reveal {
  --reveal-scale: 0.955;
  --reveal-y: 18px;
}

.capability-card.reveal.is-visible:hover,
.story-card.reveal.is-visible:hover {
  transform: translateY(-7px);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 199, 24, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(255, 199, 24, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 199, 24, 0); }
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-22px, 28px, 0); }
}

@keyframes scroll {
  0%, 100% { opacity: 0.35; transform: scaleY(0.55); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .availability {
    display: none;
  }

  .hero-layout {
    display: block;
  }

  .hero-copy {
    width: min(760px, 72vw);
  }

  .hero-title {
    font-size: clamp(38px, 5.45vw, 60px);
  }

  .capability-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .capability-card,
  .capability-card:nth-child(5),
  .capability-card:nth-child(6) {
    grid-column: span 6;
  }

  .capability-card:nth-child(7) {
    grid-column: span 12;
  }

  .steps-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .steps-list li,
  .steps-list li:nth-child(4) {
    grid-column: span 1;
  }

  .steps-list li:nth-child(5) {
    grid-column: span 2;
  }
}

@media (max-width: 880px) {
  .container,
  .container--narrow,
  .container--faq {
    width: min(100% - 40px, 760px);
  }

  .header-inner {
    width: calc(100% - 32px);
  }

  .brand img {
    width: 142px;
  }

  .marquee {
    transform: none;
  }

  .hero {
    align-items: flex-end;
    min-height: 880px;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(7, 7, 6, 0.96), rgba(7, 7, 6, 0.64)), linear-gradient(0deg, var(--ink) 0%, transparent 30%);
  }

  .hero-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-copy {
    width: 100%;
    max-width: 720px;
  }

  .hero-proof {
    display: none;
  }

  .hero-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics-brand,
  .hero-metrics-grid > p {
    grid-column: span 2;
  }

  .hero-metrics-grid > * {
    min-height: 96px;
    border-bottom: 1px solid var(--line);
  }

  .hero-metrics-grid > p {
    border-bottom: 0;
  }

  .section-heading {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
  }

  .pain-grid,
  .compare-table,
  .calculator,
  .media-grid,
  .final-inner {
    grid-template-columns: 1fr;
  }

  .capability-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .compare-column--old {
    order: 2;
  }

  .compare-column--new {
    order: 1;
  }

  .compare-summary {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .calculator-controls {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-intro {
    margin-left: 60px;
  }

  .proof-section .media-grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .proof-map-media img {
    object-fit: cover;
  }

  .map-caption {
    justify-self: start;
  }

  .final-inner {
    gap: 34px;
    padding-top: 330px;
  }

  .final-section::before {
    background:
      linear-gradient(180deg, rgba(7, 7, 6, 0.18) 0%, rgba(7, 7, 6, 0.46) 50%, rgba(7, 7, 6, 0.88) 100%),
      linear-gradient(90deg, rgba(7, 7, 6, 0.28), transparent 76%);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .legal-links,
  .seo-links,
  .footer-disclaimer {
    grid-column: 1;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .container,
  .container--narrow,
  .container--faq {
    width: calc(100% - 32px);
  }

  .site-header.is-scrolled {
    background: rgba(10, 10, 9, 0.94);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .header-inner {
    min-height: 66px;
  }

  .brand img {
    width: 124px;
  }

  .button--compact {
    min-height: 40px;
    padding: 9px 13px;
    font-size: 10px;
  }

  .hero {
    min-height: 900px;
    align-items: flex-start;
    padding: 348px 0 68px;
  }

  .marquee {
    transform: none;
  }

  .hero-media {
    inset: 0 0 auto;
    height: 430px;
    background: #070706;
  }

  .hero-media img {
    position: absolute;
    inset: 0 0 auto auto;
    width: 175vw;
    max-width: none;
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: right top;
    transform: none !important;
    will-change: auto;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(7, 7, 6, 0.08) 0%, rgba(7, 7, 6, 0.02) 31%, rgba(7, 7, 6, 0.74) 44%, #070706 53%),
      linear-gradient(90deg, rgba(7, 7, 6, 0.32), transparent 72%);
  }

  .hero-glow {
    display: none;
  }

  .hero-title {
    font-size: clamp(28px, 7.55vw, 37px);
    letter-spacing: -0.06em;
  }

  .hero-title .hero-profit {
    font-size: 0.72em;
    white-space: nowrap;
  }

  .hero-lead {
    font-size: 16px;
  }

  .load-card {
    padding: 16px;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .hero-cta,
  .hero-cta .button {
    width: 100%;
  }

  .hero-cta {
    align-items: flex-start;
  }

  .hero-note {
    max-width: none;
  }

  .hero-metrics-grid > * {
    padding: 20px 18px;
  }

  .metrics-brand img {
    width: 132px;
  }

  .metrics-item {
    min-height: 112px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .metrics-item strong {
    font-size: 28px;
  }

  .visual-break {
    height: 155svh;
    background-image: none;
  }

  .visual-break-pin {
    position: sticky;
    top: 0;
    height: 100svh;
    opacity: 1;
    visibility: visible;
    transition: none;
    transform: translateZ(0);
    backface-visibility: hidden;
  }

  .visual-break-pin img {
    inset: 0;
    width: 100vw;
    height: 100svh;
    filter: saturate(1.05) contrast(1.05) brightness(0.94);
    transform: scale(1.065);
    transition: transform 0.9s cubic-bezier(0.18, 0.8, 0.22, 1);
    will-change: transform;
  }

  .visual-break.is-active .visual-break-pin img {
    transform: scale(1);
  }

  .visual-break--kitchen .visual-break-pin img {
    object-position: 58% center;
  }

  .visual-break--sushi .visual-break-pin img {
    object-position: 54% center;
  }

  .visual-break + .image-statement,
  .visual-break + .section {
    margin-top: -22svh;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 -28px 70px rgba(0, 0, 0, 0.38);
  }

  .reveal {
    opacity: 0;
    clip-path: none;
    transform: translate3d(0, 16px, 0);
    transition:
      opacity 0.42s ease-out var(--reveal-delay, 0ms),
      transform 0.5s cubic-bezier(0.2, 0.75, 0.25, 1) var(--reveal-delay, 0ms);
    will-change: auto;
  }

  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .scroll-hint {
    display: none;
  }

  .section {
    padding: 76px 0;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .section-heading {
    display: block;
    margin-bottom: 32px;
  }

  .section-number {
    margin: 0 0 12px;
  }

  .section-heading h2 {
    font-size: clamp(27px, 8vw, 38px);
  }

  #solution .section-heading h2 {
    font-size: clamp(20px, 5.25vw, 24px);
    letter-spacing: -0.055em;
  }

  #solution .heading-copy .heading-line {
    display: block;
    white-space: nowrap;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .capability-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .story-card {
    min-height: 260px;
  }

  .section-close {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-close .button,
  .compare-summary .button {
    width: 100%;
  }

  .capability-card {
    min-height: 212px;
    grid-column: span 12;
    padding: 24px;
  }

  .capability-card:nth-child(5),
  .capability-card:nth-child(6),
  .capability-card:nth-child(7) {
    grid-column: span 12;
  }

  .capability-card h3 {
    font-size: 21px;
  }

  .capability-card p {
    font-size: 16px;
  }

  .image-statement {
    min-height: 780px;
    align-items: flex-end;
  }

  .image-statement-media {
    inset: 0;
  }

  .image-statement-media img {
    width: 100%;
    height: 100%;
    object-position: center 24%;
    transform: none !important;
  }

  .image-statement::before {
    background:
      linear-gradient(0deg, rgba(7, 7, 6, 0.98) 7%, rgba(7, 7, 6, 0.72) 51%, rgba(7, 7, 6, 0.05) 80%),
      linear-gradient(90deg, rgba(7, 7, 6, 0.28), transparent 70%);
  }

  .image-statement-inner {
    padding: 360px 0 42px;
  }

  .statement-card {
    padding: 28px 24px;
  }

  .statement-card h2 {
    font-size: clamp(29px, 8.3vw, 39px);
    letter-spacing: -0.06em;
  }

  .compare-column {
    padding: 28px 22px;
  }

  .compare-badge {
    top: 15px;
    right: 15px;
  }

  .calculator {
    border-radius: 22px;
  }

  .calculator-controls,
  .calculator-results {
    padding: 26px 20px;
  }

  .result-comparison {
    gap: 10px;
  }

  .result-comparison strong {
    min-height: 58px;
    font-size: clamp(17px, 5.2vw, 24px);
  }

  .steps-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .steps-list li {
    min-height: 190px;
    grid-column: span 1;
    padding: 24px;
  }

  .steps-list li:nth-child(4),
  .steps-list li:nth-child(5) {
    grid-column: span 1;
  }

  .steps-list h3 {
    margin-top: 30px;
    font-size: 20px;
  }

  .steps-list p {
    font-size: 16px;
  }

  .proof-intro {
    margin: -8px 0 28px;
    font-size: 16px;
  }

  .proof-section {
    min-height: auto;
  }

  .proof-section::before {
    background: radial-gradient(circle at 70% 22%, rgba(255, 199, 24, 0.08), transparent 38%), #0b0b0a;
  }

  .proof-map-media {
    display: none;
  }

  .media-grid {
    gap: 14px;
  }

  .proof-section .media-grid {
    display: flex;
    flex-direction: column;
  }

  .map-caption {
    order: 1;
    align-self: flex-start;
  }

  .proof-map-mobile {
    order: 2;
    width: 100%;
    display: block;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-color: var(--yellow) rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 199, 24, 0.34);
    background: #171816;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    -webkit-overflow-scrolling: touch;
  }

  .proof-map-mobile img {
    width: 760px;
    max-width: none;
    height: auto;
  }

  .network-stats {
    grid-template-columns: 1fr;
  }

  .network-stats > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .faq-list summary {
    min-height: 78px;
  }

  .final-section::before,
  .final-media {
    height: 330px;
  }

  .final-media {
    inset: 0 0 auto;
  }

  .final-media img {
    height: 100%;
    object-position: center 40%;
    transform: none !important;
  }

  .final-inner {
    min-height: auto;
    padding: 286px 0 60px;
  }

  .final-copy {
    padding: 24px;
    background: rgba(8, 8, 7, 0.86);
  }

  .final-copy h2 {
    font-size: clamp(31px, 9vw, 43px);
  }

  .final-copy h2 mark {
    white-space: normal;
  }

  .lead-form {
    padding: 24px 18px;
  }

  .footer-inner {
    padding: 42px 0;
  }

  .legal-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .seo-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .modal {
    padding: 10px;
  }

  .modal-card {
    padding: 30px 20px 24px;
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    clip-path: none;
    transform: none;
  }

  [data-parallax] {
    transform: none !important;
  }
}
