:root {
  --bg: #0a1a10;
  --bg-elevated: #16161a;
  --bg-card: #1c1c22;
  --text: #e8e6e3;
  --text-muted: #8a8a8e;
  --text-dim: #5a5a5e;
  --accent: #4ade80;
  --accent-coral: #f27059;
  --red: #f87171;
  --amber: #fbbf24;
  --blue: #60a5fa;
  --border: rgba(255, 255, 255, 0.06);
  --surface-1: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.05);
  --shadow-soft: 0 24px 56px rgba(0, 0, 0, 0.36);
  --shadow-deep: 0 44px 96px rgba(0, 0, 0, 0.56);
  --blur-nav: 14px;
  --space-section: clamp(4.35rem, 8.4vw, 7.25rem);
  --space-block: clamp(2.75rem, 5.3vw, 4.55rem);
  --space-card: clamp(0.95rem, 1.6vw, 1.22rem);
  --radius-card: 16px;
  --radius-utility: 8px;
  --radius-badge: 7px;
  --ease-premium: cubic-bezier(0.2, 0.75, 0.3, 1);
  --dur-fast: 200ms;
  --dur-mid: 360ms;
  --dur-slow: 620ms;
  --story-progress: 0;
  --chapter-progress: 0;
  --story-layout-progress: 0;
  --story-phone-height: 760px;
  --story-phone-size-from: 460px;
  --story-phone-size-to: 432px;
  --story-phone-shift-x: 220px;
  --story-phone-scale-drop: 0.03;
  --story-stage-top-offset: 0px;
  --story-stage-height: 100vh;
  --story-rail-width: 420px;
  --story-rail-left: 4%;
  --story-rail-edge-pad: 14px;
  --story-indicator-y: 80px;
  --story-shift-x: 240px;
  --story-frame-scale: 1;
  --story-total-vh: 3.4;
  --story-phone-bottom-offset: 52px;
  --story-phone-right-offset: 120px;
  --story-card-scale-base: 1;
  --story-card-scale: 1;
  --story-messages-opacity: 0;
  --story-messages-translate-y: 15px;
  --story-lock-opacity: 1;
  --story-lock-notif-opacity: 0;
  --story-lock-notif-translate: 50px;
  --story-nudge-opacity: 0;
  --story-nudge-x: 50%;
  --story-nudge-y: 50%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 82% 52% at 20% 0%, rgba(52, 213, 116, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(52, 213, 116, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(52, 213, 116, 0.035) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--text);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
  scroll-snap-type: y proximity;
  scroll-padding-top: 88px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Ccircle cx='12' cy='18' r='1'/%3E%3Ccircle cx='62' cy='36' r='1'/%3E%3Ccircle cx='122' cy='14' r='1'/%3E%3Ccircle cx='156' cy='52' r='1'/%3E%3Ccircle cx='26' cy='84' r='1'/%3E%3Ccircle cx='82' cy='98' r='1'/%3E%3Ccircle cx='144' cy='92' r='1'/%3E%3Ccircle cx='46' cy='146' r='1'/%3E%3Ccircle cx='110' cy='154' r='1'/%3E%3Ccircle cx='168' cy='138' r='1'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.026;
  z-index: 2;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  background: #0a1a10;
  transition: opacity 280ms ease, visibility 280ms ease;
}

.site-loader.is-exiting .site-loader-mark {
  animation: loaderMarkExit 500ms ease-in forwards;
}

.site-loader.is-fast-exit .site-loader-mark {
  animation-duration: 240ms;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader-mark {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1;
}

.site-loader-word,
.site-loader-dot {
  display: inline-block;
}

.site-loader-word {
  position: relative;
  color: var(--accent);
  opacity: 0;
  filter: blur(8px);
  animation: loaderWordIn 800ms cubic-bezier(0.19, 0.82, 0.34, 1) forwards;
}

.site-loader-word::after {
  content: "noncents";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #34d574 0%,
    #34d574 35%,
    #8bfbb2 48%,
    #ffffff 50%,
    #8bfbb2 52%,
    #34d574 65%,
    #34d574 100%
  );
  background-size: 200% 100%;
  background-position: 200% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  animation: loaderShimmer 1000ms ease-in-out 1200ms forwards;
}

.site-loader-dot {
  color: var(--text);
  opacity: 0;
  filter: blur(8px);
  animation: loaderWordIn 800ms cubic-bezier(0.19, 0.82, 0.34, 1) forwards;
}

@keyframes loaderWordIn {
  from {
    opacity: 0;
    filter: blur(8px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes loaderShimmer {
  0% {
    opacity: 0;
    background-position: 200% 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    background-position: -200% 0;
  }
}

@keyframes loaderMarkExit {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(1.05);
  }
}

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

main {
  position: relative;
  z-index: 1;
}

main > section,
footer {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
}

.container {
  width: min(1180px, calc(100% - 2.6rem));
  margin: 0 auto;
}

.section-shell--hero {
  padding-top: clamp(4.5rem, 8vw, 6.5rem);
}

.section-shell--content {
  padding-top: var(--space-block);
  padding-bottom: var(--space-block);
}

.section-shell--cta {
  padding-top: clamp(3.2rem, 6vw, 4.4rem);
  padding-bottom: clamp(3.2rem, 6vw, 4.4rem);
}

.heading-measure {
  max-width: 15.3ch;
}

.body-measure {
  max-width: 58ch;
}

.card-grid--balanced {
  gap: clamp(0.88rem, 1.8vw, 1.15rem);
}

.top-nav {
  position: sticky;
  top: 1rem;
  z-index: 30;
  width: min(1160px, calc(100% - 2.5rem));
  margin: 1rem auto 0;
  padding: 0.75rem 0.95rem 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-utility);
  background: rgba(15, 15, 20, 0.62);
  backdrop-filter: blur(var(--blur-nav));
  -webkit-backdrop-filter: blur(var(--blur-nav));
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.logo {
  color: var(--accent);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}

.logo span {
  display: inline-block;
  color: var(--text);
  transform-origin: center;
}

.logo:hover span {
  animation: logoDotPulse 1.2s ease-in-out infinite;
}

@keyframes logoDotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.72;
  }
}

.nav-cta {
  color: #0f1112;
  background: rgba(247, 247, 248, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-utility);
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.62rem 1rem;
  transition: transform var(--dur-fast) var(--ease-premium), box-shadow var(--dur-fast) var(--ease-premium),
    filter var(--dur-fast) ease;
}

.nav-cta:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.16), 0 0 0 1px rgba(255, 255, 255, 0.4);
  filter: brightness(1.03);
}

.nav-cta:active {
  transform: scale(0.98);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.6rem, 7vw, 5rem) 0 clamp(2.8rem, 5vw, 3.6rem);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -12% 0;
  height: 46%;
  background: radial-gradient(ellipse 42% 58% at 20% 80%, rgba(242, 112, 89, 0.05) 0%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.hero-center {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-center .heading-measure {
  max-width: min(900px, 100%);
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(232, 230, 227, 0.9);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  background: var(--surface-1);
  border: 1px solid rgba(74, 222, 128, 0.22);
  border-radius: var(--radius-badge);
  padding: 0.42rem 0.72rem;
  margin-bottom: 1.2rem;
}

.coming-soon-badge::before {
  content: "";
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.42);
}

h1 {
  margin: 0;
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4.5rem, 7.2vw, 5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: balance;
  max-width: 900px;
}

h1 em {
  color: var(--accent);
  font-style: italic;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

h1 em::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 8%;
  bottom: 0.1em;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent-coral), rgba(242, 112, 89, 0.34));
  opacity: 0.56;
  pointer-events: none;
}

.subtitle {
  margin: 1.3rem 0 1.7rem;
  color: rgba(232, 230, 227, 0.7);
  font-size: clamp(1rem, 1.32vw, 1.16rem);
  line-height: 1.58;
  text-wrap: pretty;
}

.waitlist-form {
  display: flex;
  align-items: stretch;
  gap: 0.7rem;
  width: 100%;
  max-width: 540px;
}

.waitlist-form--center {
  justify-content: center;
}

.waitlist-input {
  flex: 1;
  min-width: 0;
  color: var(--text);
  background: rgba(18, 18, 24, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-utility);
  font-size: 1rem;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  padding: 0.78rem 1rem;
  transition: border-color 180ms ease, box-shadow 220ms ease, background-color 180ms ease;
}

.waitlist-input::placeholder {
  color: rgba(232, 230, 227, 0.52);
}

.waitlist-input:focus {
  outline: none;
  border-color: rgba(74, 222, 128, 0.62);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.15);
}

.waitlist-btn {
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-utility);
  background: #f4f4f5;
  color: #101113;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  padding: 0.8rem 1.2rem;
  white-space: nowrap;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-premium), box-shadow var(--dur-fast) var(--ease-premium),
    filter var(--dur-fast) ease;
}

.waitlist-btn:hover:not(:disabled) {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.16), 0 0 0 1px rgba(255, 255, 255, 0.4);
  filter: brightness(1.02);
}

.waitlist-btn:active:not(:disabled) {
  transform: scale(0.98);
}

.waitlist-btn:disabled {
  cursor: wait;
  opacity: 0.78;
}

.waitlist-note {
  margin-top: 0.7rem;
  margin-bottom: 0;
  color: rgba(138, 138, 142, 0.95);
  font-size: 0.85rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  margin-top: 0.86rem;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  border-radius: var(--radius-utility);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(232, 230, 227, 0.8);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  padding: 0.4rem 0.62rem;
}

.trust-chip::before {
  content: "";
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.88);
  box-shadow: 0 0 0 1px rgba(74, 222, 128, 0.22);
}

.waitlist-success,
.waitlist-error {
  margin: 0.6rem 0 0;
  font-size: 0.92rem;
  opacity: 0;
  transform: translate3d(0, 6px, 0);
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
}

.waitlist-success.is-visible,
.waitlist-error.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.waitlist-success {
  color: var(--accent);
}

.waitlist-error {
  color: var(--red);
}

.sms-spotlight {
  padding-top: 0.4rem;
}

.sms-spotlight-card {
  width: min(800px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px 24px 24px 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-soft);
  padding: clamp(1.3rem, 3vw, 2rem) clamp(1.2rem, 3vw, 2.2rem);
}

.sms-spotlight-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(232, 230, 227, 0.74);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sms-spotlight-avatar {
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #0d2116;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

.sms-spotlight-message {
  margin: 1rem 0 0;
  max-width: 58ch;
  font-size: clamp(1.12rem, 2vw, 1.24rem);
  line-height: 1.54;
  color: rgba(236, 234, 230, 0.96);
}

.sms-spotlight-message strong {
  color: #f2f0ed;
}

.sms-spotlight-message .accent {
  color: var(--accent-coral);
}

.sms-spotlight-replies {
  margin-top: 1.14rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.sms-spotlight-replies span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-utility);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(232, 230, 227, 0.92);
  font-size: 0.8rem;
}

.sms-spotlight-replies .sms-spotlight-reply-coral {
  border-color: rgba(242, 112, 89, 0.24);
  background: rgba(242, 112, 89, 0.08);
  color: rgba(242, 112, 89, 0.84);
}

.marquee-strip {
  margin-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.01);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2.8rem;
  padding: 0.74rem 0;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
  display: block;
  color: rgba(232, 230, 227, 0.42);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.69rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

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

.story-section {
  position: relative;
  padding-top: clamp(0.38rem, 0.9vw, 0.68rem);
  padding-bottom: clamp(0.38rem, 0.92vw, 0.72rem);
  scroll-snap-align: none;
}

.story-section.section-shell--content {
  padding-top: clamp(0.38rem, 0.9vw, 0.68rem);
  padding-bottom: clamp(0.38rem, 0.92vw, 0.72rem);
}

.story-head {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 0.45rem;
  margin-bottom: 0;
  padding-bottom: 0;
}

.story-head .section-title {
  margin-bottom: clamp(0.42rem, 0.95vw, 0.64rem);
}

.story-head .section-intro {
  max-width: 50ch;
  font-size: clamp(0.95rem, 1.05vw, 1.03rem);
  line-height: 1.5;
}

.story-scroll {
  position: relative;
  min-height: calc((var(--story-total-vh) + 1) * 100vh);
  margin-top: 0;
}

.story-grid {
  position: relative;
  display: block;
  min-height: inherit;
}

.story-rail {
  position: absolute;
  left: var(--story-rail-left);
  top: 50%;
  width: var(--story-rail-width);
  max-width: none;
  height: var(--story-phone-height);
  padding-block: var(--story-rail-edge-pad);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  padding-left: 0;
  visibility: hidden;
  opacity: calc(var(--story-layout-progress) * 1);
  transform: translate3d(calc((1 - var(--story-layout-progress)) * -30px), -50%, 0);
  pointer-events: none;
  will-change: transform, opacity;
  transition: opacity var(--dur-mid) var(--ease-premium), transform var(--dur-mid) var(--ease-premium),
    visibility 0s linear var(--dur-mid);
  z-index: 6;
}

.story-section.is-story-shifting .story-rail {
  visibility: visible;
  pointer-events: none;
  transition-delay: 0s;
}

.story-section.is-story-shifted .story-rail {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.story-rail-lead {
  display: none;
  height: 0;
}

.story-rail-tail {
  display: none;
  height: 0;
}

.story-rail-indicator {
  position: absolute;
  left: -16px;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #34d574;
  box-shadow: 0 0 0 4px rgba(52, 213, 116, 0.12), 0 0 16px rgba(52, 213, 116, 0.34);
  opacity: 0;
  transform: translateY(0);
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 260ms ease;
  z-index: 2;
}

.story-step {
  min-height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 400ms ease, border-color 400ms ease;
}

.story-step + .story-step {
  margin-top: 0;
}

.story-step-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(11px * var(--story-card-scale));
  background: rgba(255, 255, 255, 0.02);
  padding: calc(18px * var(--story-card-scale)) calc(22px * var(--story-card-scale));
  width: 100%;
  transition: border-color 400ms ease, box-shadow 400ms ease, opacity 400ms ease;
}

.story-step.is-active {
  opacity: 1;
}

.story-section.is-story-shifted .story-step:not(.is-active) {
  opacity: 0.45;
}

.story-step.is-active .story-step-card {
  border-color: rgba(52, 213, 116, 0.3);
  box-shadow: none;
  border-left: 2px solid #34d574;
  padding-left: calc(21px * var(--story-card-scale));
}

.story-step.is-inactive .story-step-card {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: calc(22px * var(--story-card-scale));
}

.story-step .day {
  color: rgba(232, 230, 227, 0.8);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: calc(11px * var(--story-card-scale));
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-step .time {
  margin-top: calc(0.2rem * var(--story-card-scale));
  color: rgba(232, 230, 227, 0.52);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: calc(11px * var(--story-card-scale));
  letter-spacing: 0.03em;
}

.story-step .label {
  margin-top: calc(0.78rem * var(--story-card-scale));
  color: #fff;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: calc(16px * var(--story-card-scale));
  font-weight: 700;
  line-height: 1.16;
}

.story-step .desc {
  margin-top: calc(0.58rem * var(--story-card-scale));
  color: rgba(255, 255, 255, 0.4);
  font-size: calc(13px * var(--story-card-scale));
  line-height: 1.5;
}

.story-stage {
  position: sticky;
  top: var(--story-stage-top-offset);
  height: var(--story-stage-height);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  pointer-events: auto;
  will-change: transform, opacity;
}

.story-float-note {
  display: none;
}

.story-float-time {
  margin: 0;
  color: rgba(232, 230, 227, 0.76);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story-float-title {
  margin: 0.42rem 0 0;
  color: rgba(242, 241, 238, 0.95);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.story-phone-wrap {
  position: relative;
  width: calc(
    var(--story-phone-size-from) + (var(--story-phone-size-to) - var(--story-phone-size-from)) * var(--story-layout-progress)
  );
  max-width: none;
  height: auto;
  aspect-ratio: 310 / 672;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate3d(calc(var(--story-layout-progress) * var(--story-phone-shift-x)), 0, 0)
    scale(calc(1 - var(--story-layout-progress) * var(--story-phone-scale-drop)));
  transform-origin: center center;
  will-change: transform;
  transition: transform 100ms linear, width 100ms linear;
}

.story-scroll-nudge {
  position: absolute;
  left: var(--story-nudge-x);
  top: var(--story-nudge-y);
  transform: translate3d(-50%, -50%, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: var(--story-nudge-opacity);
  pointer-events: none;
  z-index: 9;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.24);
  transition: opacity 220ms ease;
}

.story-scroll-nudge-arrow {
  color: rgba(255, 255, 255, 0.98);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  animation: nudgeBounce 1.6s ease-in-out infinite;
}

.story-chapter-indicator {
  display: none;
}

.story-chapter-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.story-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  transition: width 220ms ease, background-color 220ms ease;
}

.story-dot.is-active {
  width: 18px;
  background: #34d574;
}

.story-chapter-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-phone-frame {
  --story-frame-thickness: 4px;
  position: relative;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  min-height: 0;
  aspect-ratio: 310 / 672;
  border-radius: 46px;
  padding: 0;
  background: linear-gradient(145deg, #2a2a2c 0%, #1c1c1e 50%, #2a2a2c 100%);
  box-shadow:
    0 0 0 0.5px rgba(255, 255, 255, 0.1),
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 10px 30px rgba(0, 0, 0, 0.3);
  transform: none;
  transition: box-shadow var(--dur-mid) var(--ease-premium);
  will-change: transform, opacity;
  overflow: visible;
}

.story-phone-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 46px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 30%,
    transparent 70%,
    rgba(255, 255, 255, 0.05) 100%
  );
  pointer-events: none;
  z-index: 10;
}

.story-phone-frame::after {
  content: none;
}

.story-side-button {
  position: absolute;
  width: 3px;
  background: linear-gradient(#3a3a3c, #2c2c2e, #3a3a3c);
  z-index: 2;
}

.story-side-button--power {
  right: -2.5px;
  top: 148px;
  height: 56px;
  border-radius: 0 2px 2px 0;
}

.story-side-button--action {
  left: -2.5px;
  top: 82px;
  height: 22px;
  border-radius: 2px 0 0 2px;
}

.story-side-button--volume-up {
  left: -2.5px;
  top: 122px;
  height: 34px;
  border-radius: 2px 0 0 2px;
}

.story-side-button--volume-down {
  left: -2.5px;
  top: 166px;
  height: 34px;
  border-radius: 2px 0 0 2px;
}

.story-phone-shell {
  position: absolute;
  inset: var(--story-frame-thickness);
  border-radius: 42px;
  background: #000;
  overflow: hidden;
  z-index: 2;
  box-shadow: inset 0 0 0 0.5px rgba(255, 255, 255, 0.05);
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

.story-phone-shell::before {
  content: none;
}

.story-phone-status {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  padding: 14px 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 7;
}

.story-status-time {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: opacity 300ms ease;
}

.story-status-icons {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 300ms ease;
}

.story-signal-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 1.5px;
  height: 12px;
}

.story-signal-bars i {
  width: 3px;
  border-radius: 0.5px;
  background: #fff;
  display: inline-block;
}

.story-signal-bars i:nth-child(1) {
  height: 3px;
}

.story-signal-bars i:nth-child(2) {
  height: 6px;
}

.story-signal-bars i:nth-child(3) {
  height: 9px;
}

.story-signal-bars i:nth-child(4) {
  height: 12px;
  opacity: 0.3;
}

.story-network-label {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.story-battery {
  position: relative;
  width: 24px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 3px;
}

.story-battery::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -3px;
  width: 2px;
  height: 5px;
  border-radius: 0 2px 2px 0;
  background: rgba(255, 255, 255, 0.45);
}

.story-battery-level {
  position: absolute;
  inset: 1px;
  width: 76%;
  border-radius: 2px;
  background: #34c759;
}

.story-phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 34px;
  border-radius: 20px;
  background: #000;
  z-index: 8;
}

.story-dynamic-island-camera {
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: #080810;
  box-shadow: inset 0 0 0 1.5px #1c1c2e;
}

.story-lock-screen {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  border-radius: 42px;
  background:
    radial-gradient(200px 200px at 15% 12%, rgba(52, 213, 116, 0.05), transparent 65%),
    linear-gradient(170deg, #1a1a2e, #0a0a14 40%, #0d1117);
  transition: opacity 300ms var(--ease-premium);
}

.story-lock-datetime {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: 48px;
  text-align: center;
}

.story-lock-date {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.3px;
}

.story-lock-time {
  margin: 0;
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
  font-feature-settings: "tnum";
}

.story-lock-padlock {
  width: 14px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.story-lock-padlock svg {
  width: 14px;
  height: 18px;
}

.story-lock-notification {
  width: calc(100% - 20px);
  margin: auto 10px 70px;
  opacity: var(--story-lock-notif-opacity);
  transform: translateY(var(--story-lock-notif-translate));
  background: rgba(44, 44, 48, 0.72);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-radius: 20px;
  border: 0.5px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.45);
}

.story-lock-notification-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 10px 12px 0;
}

.story-lock-app-icon {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #65d26a, #34c759);
}

.story-lock-app-icon svg {
  width: 14px;
  height: 14px;
}

.story-lock-app-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.story-lock-now {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  font-weight: 400;
}

.story-lock-notification-sender {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 0;
}

.story-lock-avatar {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #36da76 0%, #2dad61 100%);
  color: #f6fff8;
  font-size: 11px;
  font-weight: 700;
}

.story-lock-name {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.story-lock-preview {
  margin: 0;
  padding: 5px 12px 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.story-lock-home-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 4px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.25);
}

.story-messages-ui {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 7;
  display: flex;
  flex-direction: column;
  opacity: var(--story-messages-opacity);
  transform: translateY(var(--story-messages-translate-y));
  pointer-events: none;
  transition: opacity 300ms ease, transform 300ms ease;
}

.story-phone-nav {
  padding: 2px 12px 8px;
  display: flex;
  align-items: center;
  z-index: 2;
  flex-shrink: 0;
  transition: opacity 300ms ease;
}

.story-nav-back {
  color: #34c759;
  font-size: 24px;
  line-height: 1;
  width: 24px;
  text-align: left;
}

.story-contact-stack {
  flex: 1;
  text-align: center;
}

.story-contact-avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin: 0 auto 2px;
  background: linear-gradient(135deg, #36da76 0%, #2dad61 100%);
  color: #f6fff8;
  font-size: 14px;
  font-weight: 700;
}

.contact-name {
  margin: 0;
  color: #f5f5f7;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.1;
}

.contact-sub {
  margin: 1px 0 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 9.8px;
  font-weight: 400;
}

.story-nav-actions {
  width: 24px;
  display: inline-flex;
  justify-content: flex-end;
  gap: 8px;
}

.story-nav-actions span {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
}

.story-phone-body {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
}

.story-intro {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 10px 10px;
  opacity: 0;
  transform: translate3d(0, -4px, 0);
  pointer-events: none;
  transition: opacity 300ms var(--ease-premium), transform 300ms var(--ease-premium);
}

.story-section.is-story-show-intro .story-intro {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.story-section.is-story-show-intro .story-screen {
  opacity: 0 !important;
  transform: translate3d(0, 6px, 0) !important;
  pointer-events: none;
}

.story-intro-time {
  margin: 0;
  color: #909093;
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
  padding-left: 4px;
}

.typing-bubble {
  min-height: 0;
  border-radius: 20px 20px 20px 6px;
  background: #1c1c1e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 12px 16px;
}

.typing-bubble span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(174, 174, 178, 0.88);
  animation: typeDot 1.2s ease-in-out infinite;
}

.typing-bubble span:nth-child(2) {
  animation-delay: 160ms;
}

.typing-bubble span:nth-child(3) {
  animation-delay: 320ms;
}

.story-screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px 10px 6px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  opacity: 0;
  transform: translate3d(0, 6px, 0);
  transition: opacity 300ms var(--ease-premium), transform 300ms var(--ease-premium);
  z-index: 2;
  pointer-events: none;
}

.story-screen::-webkit-scrollbar {
  display: none;
}

.story-screen.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.story-screen.is-leaving {
  opacity: 0;
  transform: translate3d(0, -8px, 0);
}

.msg-time {
  text-align: center;
  color: #909093;
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
  margin: 6px 0 4px;
}

.story-msg-row {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 300ms ease, transform 300ms ease;
}

.story-msg-row.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.msg {
  position: relative;
  width: fit-content;
  max-width: 82%;
  padding: 7px 12px;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 400;
  color: #f5f5f7;
  letter-spacing: -0.014em;
}

.msg b {
  font-weight: 700;
}

.msg-in {
  align-self: flex-start;
  background: #1c1c1e;
  border-radius: 20px 20px 20px 6px;
}

.msg-out {
  align-self: flex-end;
  background: #34c759;
  color: #fff;
  border-radius: 20px 20px 6px 20px;
  font-weight: 500;
}

.msg-data {
  max-width: 84%;
  font-size: 14px;
  line-height: 1.3;
}

.msg-data-lines {
  display: block;
  white-space: pre-line;
  font-size: 13px;
  line-height: 1.4;
}

.msg-data-foot {
  display: block;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
  color: rgba(245, 245, 247, 0.52);
  font-size: 13px;
}

.warn {
  color: #ff3b30;
}

.reply-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  max-width: 100%;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(235, 235, 245, 0.84);
  font-size: 13px;
  font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  line-height: 1;
  padding: 7px 12px;
  white-space: nowrap;
}

.pill.tapped {
  border-color: rgba(52, 199, 89, 0.3);
  background: rgba(52, 199, 89, 0.15);
  color: #34c759;
}

.story-phone-composer {
  position: relative;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 5px 8px 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.2));
  flex-shrink: 0;
  transition: opacity 240ms ease;
}

.story-composer-plus,
.story-composer-send {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 700;
}

.story-composer-plus {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
}

.story-composer-plus svg {
  width: 14px;
  height: 14px;
}

.story-composer-send {
  background: #34c759;
  color: #fff;
}

.story-composer-send svg {
  width: 14px;
  height: 14px;
}

.story-composer-input {
  flex: 1;
  height: 32px;
  border-radius: 80px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  font-size: 14px;
  letter-spacing: -0.04em;
}

.story-home-indicator {
  display: none;
}

.story-section.is-story-show-lock .story-lock-screen {
  opacity: var(--story-lock-opacity);
}

.story-section.is-story-show-lock .story-status-time,
.story-section.is-story-show-lock .story-status-icons,
.story-section.is-story-show-lock .story-phone-nav,
.story-section.is-story-show-lock .story-phone-composer {
  opacity: 0;
}

.story-section.is-story-show-lock .story-screen {
  opacity: 0 !important;
  pointer-events: none;
}

#how + .section.section-tight {
  padding-top: clamp(0.32rem, 0.72vw, 0.58rem);
}

@keyframes typeDot {
  0%,
  44%,
  100% {
    opacity: 0.25;
    transform: translateY(0);
  }

  22% {
    opacity: 0.9;
    transform: translateY(-4px);
  }
}

@keyframes nudgeBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }

  50% {
    transform: translateY(5px);
    opacity: 1;
  }
}

.section {
  padding: var(--space-section) 0;
}

.section-tight {
  padding-top: clamp(3.4rem, 6vw, 5rem);
  padding-bottom: clamp(3.4rem, 6vw, 5rem);
}

.section-label {
  color: rgba(74, 222, 128, 0.95);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.section-title {
  margin: 0;
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
  margin-bottom: clamp(1.28rem, 2.4vw, 1.75rem);
}

.section-intro {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.22vw, 1.1rem);
  line-height: 1.58;
}

.features-stack {
  margin-top: 1.35rem;
  display: grid;
  gap: 1rem;
}

.feature-meta-tag {
  margin: 0 0 0.72rem;
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(74, 222, 128, 0.95);
}

.feature-meta-tag--coral {
  color: rgba(242, 112, 89, 0.92);
}

.feature-hero-card {
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  padding: clamp(1.35rem, 2.7vw, 2rem) clamp(1.1rem, 2.4vw, 2rem);
  min-height: 238px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.1rem, 2.2vw, 2rem);
  transition: transform var(--dur-fast) var(--ease-premium), border-color var(--dur-fast) ease, box-shadow var(--dur-mid) ease;
}

.feature-hero-card:hover {
  transform: translate3d(0, -2px, 0);
  border-color: rgba(74, 222, 128, 0.2);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.feature-hero-copy h3,
.feature-highlight-card h3,
.feature-compact-card h3 {
  margin: 0;
  color: var(--text);
}

.feature-hero-copy h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.58rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.015em;
}

.feature-hero-copy p {
  margin: 0.55rem 0 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.56;
  max-width: 35rem;
}

.feature-budget-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.38rem;
  min-width: clamp(180px, 18vw, 220px);
  opacity: 0.7;
}

.feature-budget-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.31rem 0.86rem;
  border-radius: 6px;
  background: rgba(242, 112, 89, 0.08);
  border: 1px solid rgba(242, 112, 89, 0.15);
  color: rgba(242, 112, 89, 0.6);
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-color: rgba(242, 112, 89, 0.4);
  text-decoration-thickness: 1px;
}

.feature-budget-pill:nth-child(1) {
  opacity: 1;
  transform: translateX(0) rotate(-2deg);
}

.feature-budget-pill:nth-child(2) {
  opacity: 0.8;
  transform: translateX(3px) rotate(-0.5deg);
}

.feature-budget-pill:nth-child(3) {
  opacity: 0.6;
  transform: translateX(6px) rotate(1deg);
}

.feature-budget-pill:nth-child(4) {
  opacity: 0.4;
  transform: translateX(9px) rotate(2.5deg);
}

.feature-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-highlight-card {
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.012));
  padding: clamp(1.05rem, 2.1vw, 1.45rem);
  min-height: 224px;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-fast) var(--ease-premium), border-color var(--dur-fast) ease, box-shadow var(--dur-mid) ease;
}

.feature-highlight-card:hover {
  transform: translate3d(0, -2px, 0);
  border-color: rgba(74, 222, 128, 0.2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.feature-highlight-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.26;
  margin-bottom: 0.4rem;
}

.feature-highlight-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.52;
}

.feature-highlight-visual {
  margin-top: 1rem;
}

.feature-highlight-visual--couples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.feature-highlight-chip {
  border-radius: 8px;
  border: 1px solid rgba(74, 222, 128, 0.18);
  background: rgba(74, 222, 128, 0.07);
  padding: 0.44rem 0.56rem;
  display: grid;
  gap: 0.08rem;
  text-align: center;
}

.feature-highlight-chip small {
  color: rgba(232, 230, 227, 0.48);
  font-size: 0.62rem;
  font-weight: 500;
  line-height: 1;
}

.feature-highlight-chip strong {
  color: rgba(74, 222, 128, 0.96);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.2;
}

.feature-highlight-visual--share {
  min-height: 60px;
  border-radius: 9px;
  border: 1px solid rgba(74, 222, 128, 0.16);
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.07), rgba(74, 222, 128, 0.03));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  padding: 0.45rem 0.6rem;
}

.feature-share-prefix {
  color: rgba(232, 230, 227, 0.56);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.feature-share-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid rgba(74, 222, 128, 0.26);
  background: rgba(74, 222, 128, 0.16);
  color: rgba(74, 222, 128, 0.98);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.28rem 0.82rem;
  letter-spacing: 0.04em;
}

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

.feature-compact-card {
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.017), rgba(255, 255, 255, 0.01));
  padding: clamp(0.98rem, 1.9vw, 1.24rem);
  min-height: 170px;
  transition: transform var(--dur-fast) var(--ease-premium), border-color var(--dur-fast) ease, box-shadow var(--dur-mid) ease;
}

.feature-compact-card:hover {
  transform: translate3d(0, -2px, 0);
  border-color: rgba(74, 222, 128, 0.18);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.feature-compact-card h3 {
  font-size: 1.04rem;
  line-height: 1.28;
  margin-bottom: 0.34rem;
}

.feature-compact-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.48;
}

.pill,
.trust-chip,
.story-step {
  cursor: pointer;
}

.real-talk-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: 1.2rem;
  align-items: start;
}

.stats-card {
  --stats-accent-alt: #f27059;
  --stats-ring-circ: 188.5;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  padding: 1.5rem 1.7rem 1.1rem;
  position: relative;
  overflow: hidden;
}

.stats-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 95% at 12% 28%, rgba(52, 213, 116, 0.08), transparent 62%);
  pointer-events: none;
  opacity: 1;
}

.stats-label {
  margin: 0 0 0.36rem;
  color: rgba(232, 230, 227, 0.42);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
}

.stat-row {
  position: relative;
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.12rem 0;
  transition: opacity 520ms ease, transform 520ms var(--ease-premium);
}

.stats-card.is-staged .stat-row {
  opacity: 0.2;
  transform: translate3d(0, 12px, 0);
}

.stats-card.is-animated .stat-row,
.stats-card.is-static .stat-row {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.stats-card.is-animated .stat-row:nth-of-type(1) {
  transition-delay: 50ms;
}

.stats-card.is-animated .stat-row:nth-of-type(2) {
  transition-delay: 120ms;
}

.stats-card.is-animated .stat-row:nth-of-type(3) {
  transition-delay: 190ms;
}

.stats-card.is-animated .stat-row:nth-of-type(4) {
  transition-delay: 260ms;
}

.stat-visual {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-visual--ring {
  align-items: center;
}

.stat-ring {
  position: relative;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
}

.stat-ring svg {
  width: 68px;
  height: 68px;
  transform: rotate(-90deg);
}

.stat-ring-track,
.stat-ring-fill {
  fill: none;
  stroke-width: 4;
}

.stat-ring-track {
  stroke: rgba(255, 255, 255, 0.06);
}

.stat-ring-fill {
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-dasharray: var(--stats-ring-circ);
  stroke-dashoffset: var(--stat-ring-offset, 0);
  transition: stroke-dashoffset 1300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stats-card.is-staged .stat-ring-fill {
  stroke-dashoffset: var(--stats-ring-circ);
}

.stats-card.is-animated .stat-ring-fill,
.stats-card.is-static .stat-ring-fill {
  stroke-dashoffset: var(--stat-ring-offset, 0);
}

.stat-ring-value {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--accent);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-feature-settings: "tnum";
}

.stat-number {
  margin: 0;
  color: var(--accent);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  font-feature-settings: "tnum";
  min-width: 80px;
  text-align: center;
}

.stat-unit {
  font-size: 0.85em;
  margin-left: 1px;
}

.stat-decay-stack {
  display: grid;
  justify-items: center;
  gap: 0.26rem;
}

.stat-decay {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 36px;
}

.stat-decay i {
  display: block;
  width: 8px;
  height: calc(4px + var(--stat-bar) * 32px);
  border-radius: 3px;
  background: rgba(242, 112, 89, 0.34);
  transform-origin: bottom center;
  transform: scaleY(1);
  opacity: 1;
  transition: transform 700ms var(--ease-premium), opacity 500ms ease;
}

.stat-decay i:nth-child(1),
.stat-decay i:nth-child(2) {
  background: rgba(242, 112, 89, 0.95);
}

.stat-decay i:nth-child(3) {
  background: rgba(242, 112, 89, 0.62);
}

.stat-decay i:nth-child(4) {
  background: rgba(242, 112, 89, 0.44);
}

.stat-decay i:nth-child(5) {
  background: rgba(242, 112, 89, 0.28);
}

.stat-decay i:nth-child(6) {
  background: rgba(242, 112, 89, 0.2);
}

.stats-card.is-staged .stat-decay i {
  transform-origin: bottom center;
  transform: scaleY(0.24);
  opacity: 0.32;
}

.stats-card.is-animated .stat-decay i,
.stats-card.is-static .stat-decay i {
  transform: scaleY(1);
  opacity: 1;
}

.stat-decay-label {
  color: var(--stats-accent-alt);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.stat-decay i:nth-child(2) {
  transition-delay: 70ms;
}

.stat-decay i:nth-child(3) {
  transition-delay: 120ms;
}

.stat-decay i:nth-child(4) {
  transition-delay: 170ms;
}

.stat-decay i:nth-child(5) {
  transition-delay: 220ms;
}

.stat-decay i:nth-child(6) {
  transition-delay: 270ms;
}

.stat-zero-pill {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 2px solid rgba(52, 213, 116, 0.9);
  background: rgba(52, 213, 116, 0.1);
  color: var(--accent);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  transform: scale(1);
  opacity: 1;
  transition: transform 640ms var(--ease-premium), opacity 640ms ease, border-color 640ms ease;
}

.stats-card.is-staged .stat-zero-pill {
  transform: scale(0.88);
  opacity: 0.5;
}

.stats-card.is-animated .stat-zero-pill,
.stats-card.is-static .stat-zero-pill {
  transform: scale(1);
  opacity: 1;
}

.stat-copy {
  min-width: 0;
}

.stat-title {
  margin: 0;
  color: rgba(232, 230, 227, 0.95);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.stat-compare {
  margin: 0.2rem 0 0;
  color: rgba(232, 230, 227, 0.42);
  font-size: 0.81rem;
  line-height: 1.25;
}

.stat-accent {
  color: var(--stats-accent-alt);
}

.stat-compare--coral {
  color: var(--stats-accent-alt);
}

.not-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.not-col {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.008));
  padding: calc(var(--space-card) + 0.08rem);
  min-height: 276px;
}

.not-col h3 {
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
}

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

.no {
  color: var(--amber);
}

.not-item {
  display: flex;
  align-items: flex-start;
  gap: 0.48rem;
  color: rgba(232, 230, 227, 0.94);
  font-size: 0.94rem;
  line-height: 1.42;
}

.not-item + .not-item {
  margin-top: 0.56rem;
}

.check,
.x {
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.83rem;
  transform: translateY(2px);
}

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

.x {
  color: var(--red);
}

.quote-breaker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0));
}

.quote-lines {
  margin: 0;
  display: grid;
  gap: 0.36rem;
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.1rem, 4.4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.quote-line {
  display: block;
}

.quote-line--strong {
  color: var(--text);
  opacity: 1;
}

.quote-line--muted {
  color: var(--text);
  opacity: 0.38;
}

.quote-line--accent {
  color: var(--accent);
  opacity: 1;
}

.pricing-title {
  max-width: none;
  text-align: center;
  margin-inline: auto;
}

.waitlist-block {
  margin-top: 0.35rem;
}

.pricing-simple {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: clamp(0.75rem, 1.7vw, 1rem);
}

.pricing-door-dash {
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.pricing-door-dash-value {
  color: rgba(245, 107, 74, 0.56);
  font-size: clamp(1.25rem, 2.35vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: line-through;
  text-decoration-color: rgba(245, 107, 74, 0.58);
  text-decoration-thickness: 1.3px;
}

.pricing-door-dash-label {
  color: rgba(232, 230, 227, 0.38);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.67rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pricing-display {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.05rem;
  margin-top: -0.2rem;
}

.pricing-display-main {
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4.8rem, 13vw, 6.25rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.pricing-display-decimal {
  color: rgba(245, 240, 232, 0.42);
  font-size: clamp(1.7rem, 4vw, 2.2rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  padding-bottom: 0.3rem;
}

.pricing-display-period {
  color: rgba(245, 240, 232, 0.28);
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  font-weight: 500;
  line-height: 1;
  padding-bottom: 0.36rem;
}

.pricing-simple-copy {
  margin: 0.05rem auto 0;
  color: rgba(232, 230, 227, 0.66);
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  line-height: 1.5;
  max-width: 34ch;
}

.pricing-simple-waitlist {
  margin-top: 0.2rem;
  width: 100%;
}

.pricing-simple-waitlist .waitlist-form {
  margin: 0 auto;
}

.pricing-chip-strip {
  margin-top: 0.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.36rem;
}

.pricing-chip-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(232, 230, 227, 0.58);
  padding: 0 0.74rem;
  font-size: 0.76rem;
  line-height: 1;
  letter-spacing: 0.01em;
}

.pricing-trust-line {
  margin-top: 0.05rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 0.9rem;
}

.pricing-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(232, 230, 227, 0.34);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-trust-item::before {
  content: "";
  width: 0.24rem;
  height: 0.24rem;
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.7);
  box-shadow: 0 0 0 1px rgba(74, 222, 128, 0.2);
}

footer {
  padding: 2.5rem 1.25rem 3rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
}

footer p {
  margin: 0.42rem 0;
}

.footer-links a {
  color: var(--text);
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-note {
  color: var(--text-dim);
  max-width: 70ch;
  margin-inline: auto;
}

.sticky-cta {
  position: fixed;
  right: 1rem;
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 44;
  border-radius: var(--radius-utility);
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(245, 245, 246, 0.97);
  color: #0f1112;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.62rem 0.95rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 14px, 0) scale(0.98);
  transition: opacity var(--dur-fast) ease, transform var(--dur-fast) var(--ease-premium), box-shadow var(--dur-fast) ease,
    border-color var(--dur-fast) ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.sticky-cta:hover {
  transform: translate3d(0, 0, 0) scale(1.02);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.16), 0 0 0 1px rgba(255, 255, 255, 0.38);
}

.sticky-cta:active {
  transform: translate3d(0, 0, 0) scale(0.98);
}

.sticky-cta.is-suppressed {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 10px, 0) scale(0.98);
}

:where(a, button, input):focus-visible {
  outline: 2px solid rgba(74, 222, 128, 0.78);
  outline-offset: 3px;
}

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

[data-reveal] {
  --reveal-delay: 0ms;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity var(--dur-slow) cubic-bezier(0.16, 0.72, 0.25, 1) var(--reveal-delay),
    transform var(--dur-slow) cubic-bezier(0.16, 0.72, 0.25, 1) var(--reveal-delay);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1080px) {
  .feature-compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  body {
    scroll-snap-type: none;
  }

  .real-talk-layout {
    grid-template-columns: 1fr;
  }

  .feature-hero-card {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  .feature-budget-visual {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 0;
    justify-content: flex-start;
  }

  .feature-highlight-grid {
    grid-template-columns: 1fr;
  }

  .story-grid {
    grid-template-columns: minmax(0, 470px) minmax(0, 1fr);
    gap: clamp(1rem, 2.4vw, 1.7rem);
  }

  .story-stage {
    top: var(--story-stage-top-offset);
    height: var(--story-stage-height);
  }

  .story-float-note {
    transform: translate3d(
        calc(-50% - 230px + var(--story-layout-progress) * 36px),
        calc(-10px + (1 - var(--story-layout-progress)) * 8px),
        0
      );
    width: min(244px, 36vw);
  }

  .pricing-chip-strip {
    max-width: 560px;
  }

  .story-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  body {
    scroll-snap-type: none;
  }

  .story-scroll {
    min-height: calc((var(--story-total-vh) + 1) * 100vh);
  }

  .story-grid {
    min-height: inherit;
  }

  .story-stage {
    position: sticky;
    top: 0;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(16px, 2.6vh, 24px);
    pointer-events: auto;
  }

  .story-head .section-intro {
    display: none;
  }

  .story-float-note {
    display: none;
  }

  .story-scroll-nudge {
    display: none;
  }

  .story-phone-wrap {
    width: min(72vw, 270px) !important;
    max-width: 270px !important;
    height: auto;
    transform: none !important;
    margin-inline: auto;
  }

  .story-phone-frame {
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .story-rail {
    display: none !important;
  }

  .story-intro {
    display: none;
  }

  .story-chapter-indicator {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 0;
    padding-bottom: clamp(8px, 1.8vh, 16px);
  }

  .story-chapter-indicator.is-visible {
    display: flex;
  }

  .sticky-cta {
    display: none !important;
  }
}

@media (max-width: 740px) {
  .top-nav {
    top: max(0.45rem, env(safe-area-inset-top));
    width: min(1160px, calc(100% - 1.4rem));
    padding: 0.52rem 0.64rem 0.52rem 0.72rem;
  }

  .logo {
    font-size: 1.22rem;
  }

  .nav-cta {
    padding: 0.5rem 0.74rem;
    font-size: 0.78rem;
  }

  .container {
    width: min(1160px, calc(100% - 1.4rem));
  }

  h1 {
    font-size: clamp(3.05rem, 12vw, 4.1rem);
    line-height: 1.03;
  }

  .waitlist-form {
    flex-direction: column;
    max-width: 100%;
  }

  .waitlist-btn {
    width: 100%;
  }

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

  .stat-row {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 0.64rem;
  }

  .feature-hero-card,
  .feature-highlight-card,
  .feature-compact-card,
  .not-col {
    min-height: 0;
  }

  .sticky-cta {
    right: 0.7rem;
    bottom: max(0.7rem, env(safe-area-inset-bottom));
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
    line-height: 1.04;
  }

  .subtitle {
    font-size: 0.98rem;
  }

  .section-title {
    font-size: clamp(1.72rem, 8.3vw, 2.2rem);
  }

  .pricing-display-main {
    font-size: clamp(4rem, 20vw, 5.2rem);
  }

  .pricing-display-decimal {
    font-size: clamp(1.45rem, 8.5vw, 1.95rem);
    padding-bottom: 0.24rem;
  }

  .pricing-display-period {
    font-size: clamp(0.92rem, 4.8vw, 1.06rem);
    padding-bottom: 0.28rem;
  }

  .pricing-chip-strip {
    gap: 0.32rem;
  }

  .pricing-chip-strip span {
    font-size: 0.73rem;
    min-height: 1.82rem;
    padding: 0 0.62rem;
  }

  .pricing-trust-line {
    gap: 0.34rem 0.65rem;
  }

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

  .feature-highlight-visual--share {
    justify-content: space-between;
  }

  .stats-card {
    padding: 0.92rem 0.88rem;
  }

  .stat-row {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 0.56rem;
    padding: 0.66rem 0;
  }

  .stat-ring,
  .stat-ring svg {
    width: 58px;
    height: 58px;
  }

  .stat-ring-value {
    font-size: 0.98rem;
  }

  .stat-number {
    font-size: 1.44rem;
  }

  .stat-zero-pill {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    font-size: 1.48rem;
  }

  .stat-title {
    font-size: 0.88rem;
  }

  .stat-compare {
    font-size: 0.72rem;
  }

  .marquee-track span {
    letter-spacing: 0.14em;
  }

  .msg {
    font-size: 13px;
    max-width: min(100%, 33ch);
  }

  .sticky-cta {
    left: 0.7rem;
    right: 0.7rem;
    text-align: center;
  }

  .story-phone-frame {
    width: 100%;
    height: auto;
  }

  .story-side-button {
    display: none;
  }
}

@media (max-width: 390px) {
  .trust-strip {
    gap: 0.34rem;
  }

  .trust-chip {
    font-size: 0.67rem;
    padding: 0.34rem 0.48rem;
  }

  .pill {
    font-size: 10px;
    padding: 0 8px;
    max-width: calc(100% - 2px);
  }

  .reply-pills {
    gap: 0.28rem;
  }

  .story-step-card {
    padding: 0.8rem;
  }
}

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

  body {
    scroll-snap-type: none;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

  .marquee-track {
    animation: none;
    width: 100%;
    justify-content: center;
    padding: 0.74rem 1rem;
  }

  .marquee-track span:last-child {
    display: none;
  }

  .story-scroll-nudge-arrow {
    animation: none;
  }
}
