:root {
  --bg: #f5f0e8;
  --bg-deep: #0d0d0d;
  --paper: rgba(255, 249, 241, 0.82);
  --paper-strong: #fffaf4;
  --ink: #131313;
  --ink-soft: #2c3137;
  --muted: #65625d;
  --line: rgba(19, 19, 19, 0.1);
  --line-strong: rgba(255, 255, 255, 0.12);
  --accent: #f17223;
  --accent-deep: #cf5a12;
  --accent-soft: #ffd6b6;
  --cream: #fff8f1;
  --shadow: 0 28px 90px rgba(20, 11, 5, 0.12);
  --shadow-deep: 0 40px 120px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(241, 114, 35, 0.16), transparent 24%),
    radial-gradient(circle at 78% 14%, rgba(255, 214, 182, 0.72), transparent 24%),
    linear-gradient(180deg, #fbf6ef 0%, var(--bg) 42%, #efe7dd 100%);
  font-family: "Manrope", sans-serif;
}

a {
  color: inherit;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 52px;
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity 760ms cubic-bezier(0.18, 0.86, 0.22, 1) var(--reveal-delay, 0ms),
    transform 760ms cubic-bezier(0.18, 0.86, 0.22, 1) var(--reveal-delay, 0ms);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes note-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -10px, 0) rotate(-1deg);
  }
}

@keyframes ring-pulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.35;
  }

  50% {
    transform: scale(1.04);
    opacity: 0.85;
  }
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  animation: rise-in 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: clamp(148px, 18vw, 192px);
  height: auto;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a,
.footer-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 180ms ease, transform 180ms ease;
}

.nav a:hover,
.footer-links a:hover,
.legal-page a:hover,
.micro-copy a:hover {
  color: var(--accent-deep);
}

.nav a:hover,
.footer-links a:hover {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

.hero-meta-compact strong {
  font-size: 0.94rem;
}

.hero-copy,
.hero-card,
.story-panel,
.feature-card,
.step-card,
.support-card,
.legal-page,
.closing-panel,
.metrics-band,
.micro-copy {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy,
.story-panel,
.feature-card,
.step-card,
.support-card,
.legal-page,
.closing-panel,
.metrics-band,
.micro-copy {
  backdrop-filter: blur(14px);
  background: var(--paper);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 247, 238, 0.72)),
    var(--paper);
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: auto -36px -36px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 114, 35, 0.18), rgba(241, 114, 35, 0));
  animation: glow-breathe 5.5s ease-in-out infinite;
}

@keyframes glow-breathe {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.55;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.eyebrow,
.panel-kicker,
.stat-label,
.meta-label,
.legal-date {
  display: block;
  margin: 0 0 12px;
  color: var(--accent-deep);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.05em;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.1rem, 7vw, 6.2rem);
  line-height: 0.93;
}

h2 {
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  line-height: 1;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.1;
}

.lede {
  margin: 20px 0 0;
  max-width: 54ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.lede.compact {
  max-width: 58ch;
}

.cta-row,
.cta-stack,
.hero-meta,
.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-row {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), #ff8d45);
  color: #fffaf5;
  box-shadow: 0 18px 36px rgba(241, 114, 35, 0.24);
}

.button.secondary,
.button.tertiary,
.button.ghost {
  border: 1px solid var(--line);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.55);
}

.button.tertiary {
  background: rgba(19, 19, 19, 0.06);
}

.button.ghost {
  background: transparent;
}

.hero-meta {
  margin-top: 30px;
}

.hero-meta div {
  min-width: 180px;
  flex: 1 1 180px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(19, 19, 19, 0.08);
}

.hero-meta strong,
.metrics-band strong {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
}

.meta-label,
.stat-label,
.legal-date {
  margin-bottom: 6px;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
  --pointer-x: 0px;
  --pointer-y: 0px;
  --scroll-shift: 0px;
}

.hero-card {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
}

.hero-card-dark {
  width: min(100%, 520px);
  min-height: 610px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, #0e0e10, #1a1a1c 42%, #111113 100%);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-deep);
  transform:
    translate3d(calc(var(--pointer-x) * 0.24), calc(var(--pointer-y) * 0.18 + var(--scroll-shift) * -0.18), 0)
    rotateX(calc(var(--pointer-y) * -0.08deg))
    rotateY(calc(var(--pointer-x) * 0.1deg));
  transform-style: preserve-3d;
  transition: transform 260ms ease-out;
  animation: float-drift 8s ease-in-out 1s infinite;
}

.hero-card-editorial {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-slab {
  position: absolute;
  inset: 42px 24px 42px auto;
  width: 76%;
  border-radius: 42px;
}

.hero-slab-back {
  background: linear-gradient(180deg, rgba(241, 114, 35, 0.18), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(241, 114, 35, 0.22);
  transform: rotate(-8deg);
}

.editorial-headline,
.editorial-percent {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 0.84;
}

.editorial-headline {
  font-size: clamp(5rem, 10vw, 7rem);
  color: #fff7ef;
  letter-spacing: -0.08em;
}

.editorial-percent {
  position: absolute;
  top: 34px;
  right: 26px;
  font-size: clamp(7rem, 14vw, 10rem);
  color: rgba(241, 114, 35, 0.96);
  letter-spacing: -0.12em;
}

.editorial-stack {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.editorial-chip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.editorial-chip span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.editorial-chip strong {
  color: #fff7ef;
  font-size: 0.96rem;
}

.chip-dark {
  background: rgba(255, 255, 255, 0.05);
}

.chip-light {
  background: rgba(255, 255, 255, 0.12);
}

.chip-accent {
  background: rgba(241, 114, 35, 0.16);
}

.editorial-note {
  margin-top: 28px;
  max-width: 20ch;
  color: rgba(255, 247, 239, 0.82);
  font-size: 1rem;
  line-height: 1.4;
}

.note-editorial p {
  font-size: 0.96rem;
}

.brand-ticker {
  overflow: hidden;
  margin-top: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(19, 19, 19, 0.08);
  border-bottom: 1px solid rgba(19, 19, 19, 0.08);
}

.brand-ticker-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: ticker-run 24s linear infinite;
}

.brand-ticker-track span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

@keyframes ticker-run {
  from {
    transform: translateX(0);
  }

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

.editorial-grid,
.proof-grid {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.editorial-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.editorial-panel,
.proof-card {
  backdrop-filter: blur(14px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.editorial-panel {
  padding: 30px;
}

.editorial-panel-dark {
  background:
    radial-gradient(circle at top right, rgba(241, 114, 35, 0.18), transparent 26%),
    linear-gradient(135deg, #111214, #1d2025 58%, #17181c 100%);
  color: #fff6ef;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-deep);
}

.editorial-panel-dark p,
.editorial-panel-dark h2,
.editorial-panel-dark .panel-kicker {
  color: inherit;
}

.editorial-panel-dark .panel-kicker {
  color: #ffb07b;
}

.editorial-points {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.editorial-points p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
}

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

.proof-card {
  padding: 24px;
}

.proof-card h2 {
  margin-top: 18px;
  font-size: 1.45rem;
}

.proof-card p {
  margin-top: 10px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.proof-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  border-radius: 50%;
  background: rgba(19, 19, 19, 0.06);
  color: var(--accent-deep);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.proof-card-accent {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.35), transparent 32%),
    linear-gradient(135deg, rgba(241, 114, 35, 0.95), rgba(206, 90, 18, 0.95));
  color: #fff7f0;
  border-color: rgba(255, 255, 255, 0.08);
}

.proof-card-accent h2,
.proof-card-accent p,
.proof-card-accent .proof-label {
  color: inherit;
}

.proof-card-accent .proof-label {
  background: rgba(255, 255, 255, 0.16);
}

.steps-grid-minimal .step-card-minimal {
  min-height: 180px;
}

.closing-panel-editorial {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 246, 236, 0.72)),
    var(--paper);
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.mini-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f5efe6;
  font-size: 0.84rem;
  font-weight: 700;
}

.mini-pill.muted {
  color: rgba(255, 255, 255, 0.72);
}

.phone-frame {
  margin: 0 auto;
  width: min(100%, 330px);
  padding: 14px;
  border-radius: 34px;
  background: linear-gradient(180deg, #232325, #0d0d0f);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.phone-status {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.phone-screen {
  padding: 16px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(241, 114, 35, 0.18), transparent 34%),
    linear-gradient(180deg, #fff8f1 0%, #f6eee6 100%);
  animation: screen-shimmer 7s linear infinite;
}

@keyframes screen-shimmer {
  0% {
    background-position: 0% 0%, 0% 0%;
  }

  100% {
    background-position: 100% 0%, 0% 0%;
  }
}

.phone-chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.phone-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(19, 19, 19, 0.06);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.phone-chip.active {
  background: var(--accent);
  color: #fff7f0;
}

.product-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(19, 19, 19, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card + .product-card {
  margin-top: 10px;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(19, 19, 19, 0.09);
  border-color: rgba(241, 114, 35, 0.28);
}

.product-card-featured {
  margin-bottom: 12px;
  padding: 16px;
  animation: featured-bob 4.8s ease-in-out infinite;
}

@keyframes featured-bob {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

.compact-card {
  grid-template-columns: auto 1fr auto;
}

.product-image {
  width: 56px;
  height: 68px;
  border-radius: 18px;
}

.image-orange {
  background: linear-gradient(180deg, #ff9a5b, #f17223);
}

.image-ink {
  background: linear-gradient(180deg, #383f46, #111315);
}

.image-sand {
  background: linear-gradient(180deg, #e8d4bc, #d6b491);
}

.product-brand,
.product-line,
.product-meta {
  margin: 0;
}

.product-brand {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-title {
  margin-top: 4px;
  font-size: 1.1rem;
}

.product-meta,
.product-line {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.discount-badge,
.product-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 66px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(241, 114, 35, 0.12);
  color: var(--accent-deep);
  font-size: 0.84rem;
  font-weight: 800;
}

.signal-ring,
.floating-note {
  position: absolute;
}

.signal-ring {
  border-radius: 50%;
  border: 1px solid rgba(241, 114, 35, 0.28);
  animation: ring-pulse 6s ease-in-out infinite;
  transform:
    translate3d(calc(var(--pointer-x) * var(--layer-depth, 0.08)), calc(var(--pointer-y) * var(--layer-depth, 0.08)), 0)
    translateY(calc(var(--scroll-shift) * var(--layer-scroll, 0.12)));
  transition: transform 240ms ease-out;
}

.signal-ring-large {
  inset: 30px auto auto 16px;
  width: 180px;
  height: 180px;
  --layer-depth: 0.2;
  --layer-scroll: -0.08;
}

.signal-ring-small {
  inset: auto 28px 60px auto;
  width: 120px;
  height: 120px;
  animation-delay: 1.4s;
  --layer-depth: -0.16;
  --layer-scroll: 0.1;
}

.floating-note {
  max-width: 190px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 248, 241, 0.9);
  border: 1px solid rgba(19, 19, 19, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  animation: note-drift 7s ease-in-out 1.2s infinite;
  transform:
    translate3d(calc(var(--pointer-x) * var(--layer-depth, 0.18)), calc(var(--pointer-y) * var(--layer-depth, 0.18)), 0)
    translateY(calc(var(--scroll-shift) * var(--layer-scroll, 0.18)));
  transition: transform 280ms ease-out;
}

.floating-note-top {
  top: 88px;
  right: 6px;
  --layer-depth: -0.24;
  --layer-scroll: -0.18;
}

.floating-note-bottom {
  left: -6px;
  bottom: 70px;
  animation-delay: 2s;
  --layer-depth: 0.22;
  --layer-scroll: 0.14;
}

.note-value,
.step-index {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-deep);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.floating-note p,
.story-panel p,
.feature-card p,
.step-card p,
.legal-page p,
.legal-page li,
.support-card p,
.micro-copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 28px;
}

.metrics-band div {
  padding: 12px 10px;
  transition: transform 220ms ease;
}

.metrics-band div:hover {
  transform: translateY(-3px);
}

.story-grid,
.feature-grid,
.steps-grid {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.story-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.story-panel,
.feature-card,
.step-card,
.support-card,
.closing-panel,
.micro-copy,
.legal-page {
  border-radius: 32px;
}

.story-panel,
.feature-card,
.step-card,
.closing-panel {
  padding: 28px;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.story-panel:hover,
.feature-card:hover,
.step-card:hover,
.support-card:hover,
.closing-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(20, 11, 5, 0.16);
  border-color: rgba(241, 114, 35, 0.22);
}

.story-panel-dark {
  background:
    radial-gradient(circle at top right, rgba(241, 114, 35, 0.18), transparent 24%),
    linear-gradient(135deg, #111214, #1d2025 58%, #17181c 100%);
  color: #fff6ef;
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-deep);
}

.story-panel-dark p,
.story-panel-dark h2,
.story-panel-dark .panel-kicker {
  color: inherit;
}

.story-panel-dark .panel-kicker {
  color: #ffb07b;
}

.feature-list {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.feature-list li + li {
  margin-top: 10px;
}

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

.feature-card-accent {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.35), transparent 30%),
    linear-gradient(135deg, rgba(241, 114, 35, 0.95), rgba(206, 90, 18, 0.95));
  color: #fff7f0;
  border-color: rgba(255, 255, 255, 0.08);
}

.feature-card-accent p,
.feature-card-accent h2,
.feature-card-accent .panel-kicker {
  color: inherit;
}

.feature-card-accent .panel-kicker {
  color: rgba(255, 248, 241, 0.8);
}

.how-section {
  margin-top: 22px;
}

.section-heading {
  padding: 8px 4px 0;
}

.section-heading h2 {
  margin-top: 4px;
}

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

.step-card {
  min-height: 220px;
}

.closing-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.cta-stack {
  justify-content: flex-end;
}

.micro-copy {
  margin-top: 18px;
  padding: 18px 22px;
}

.legal-shell {
  max-width: 920px;
}

.legal-page {
  padding: 36px;
  animation: rise-in 760ms cubic-bezier(0.2, 0.8, 0.2, 1) 120ms both;
}

.legal-page section + section {
  margin-top: 24px;
}

.legal-page ul {
  padding-left: 20px;
  margin: 12px 0 0;
}

.support-card {
  padding: 24px;
  margin: 28px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 214, 182, 0.38));
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 1040px) {
  .hero,
  .editorial-grid,
  .proof-grid,
  .story-grid,
  .feature-grid,
  .steps-grid,
  .metrics-band {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-slab {
    width: 88%;
  }

  .closing-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-stack {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 22px, 1180px);
    padding-top: 18px;
  }

  .topbar {
    margin-bottom: 24px;
  }

  .hero-copy,
  .story-panel,
  .feature-card,
  .step-card,
  .legal-page,
  .closing-panel {
    padding: 22px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .editorial-headline {
    font-size: 4.5rem;
  }

  .editorial-percent {
    font-size: 6rem;
  }

  .floating-note-top {
    top: 14px;
    right: 0;
  }

  .floating-note-bottom {
    left: 0;
    bottom: 18px;
  }

  h1 {
    max-width: 11ch;
  }
}

@media (max-width: 560px) {
  .topbar,
  .nav,
  .hero-meta,
  .footer,
  .footer-links {
    gap: 12px;
  }

  .topbar,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-slab,
  .floating-note {
    display: none;
  }

  .hero-card-dark {
    min-height: 500px;
    padding: 16px;
  }

  .editorial-headline {
    font-size: 3.7rem;
  }

  .editorial-percent {
    top: 20px;
    right: 14px;
    font-size: 5rem;
  }

  .phone-screen {
    padding: 12px;
  }

  .product-card,
  .compact-card {
    grid-template-columns: auto 1fr;
  }

  .discount-badge,
  .product-price {
    grid-column: 2;
    justify-self: start;
  }

  .legal-page {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .js-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}