@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --color-obsidian: #09090b;
  --color-ink: #18181b;
  --color-graphite: #3f3f46;
  --color-slate: #52525b;
  --color-steel: #71717a;
  --color-ash: #a1a1aa;
  --color-pebble: #d4d4d8;
  --color-fog: #ececee;
  --color-mist: #f4f4f5;
  --color-snow: #ffffff;
  --color-ember: #ff5a00;
  --color-orchid-flash: #fe45e2;
  --font-jakarta: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --page-max-width: 1200px;
  --section-gap: 80px;
  --radius-xl: 12px;
  --radius-2xl: 16px;
  --radius-3xl-2: 28px;
  --radius-3xl-3: 36px;
  --radius-hero: 48px;
  --radius-pill: 10000px;
  --shadow-button: rgba(255, 255, 255, 0.5) 0px 0.5px 0px 0px inset, rgba(117, 123, 133, 0.4) 0px 9px 14px -5px inset, rgb(44, 46, 52) 0px 0px 0px 1.5px, rgba(0, 0, 0, 0.14) 0px 4px 6px 0px;
  --shadow-line: rgb(228, 228, 231) 0px 1px 0px 0px inset;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--color-mist);
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--color-mist);
  color: var(--color-ink);
  font-family: var(--font-jakarta);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

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

.icon-sprite {
  width: 0;
  height: 0;
  position: absolute;
  overflow: hidden;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 690px;
  color: var(--color-obsidian);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  color: var(--color-obsidian);
  font-size: 56px;
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  color: var(--color-obsidian);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: 0;
}

p {
  color: var(--color-steel);
}

.site-shell,
.shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

.site-header,
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 12px 0;
  background: rgba(244, 244, 245, 0.78);
  border-bottom: 1px solid rgba(212, 212, 216, 0.72);
  backdrop-filter: blur(17px);
}

.nav-inner,
.hero,
.section,
.footer-inner,
.main {
  width: min(var(--page-max-width), calc(100% - 40px));
  margin: 0 auto;
}

.nav-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.menu-toggle {
  position: relative;
  order: 2;
  margin-left: auto;
}

.menu-toggle summary {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  gap: 5px;
  padding: 13px;
  border: 0;
  background: transparent;
  cursor: pointer;
  list-style: none;
}

.menu-toggle summary::-webkit-details-marker {
  display: none;
}

.menu-toggle summary span {
  width: 18px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--color-obsidian);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[open] summary span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[open] summary span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[open] summary span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.drawer {
  width: 230px;
  position: absolute;
  top: 58px;
  right: 0;
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid var(--color-pebble);
  border-radius: var(--radius-3xl-2);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-line);
  animation: menu-in 0.22s ease both;
}

.drawer a {
  padding: 12px 14px;
  border-radius: var(--radius-pill);
  color: var(--color-graphite);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.drawer a:hover {
  background: var(--color-fog);
  color: var(--color-obsidian);
}

.drawer .drawer-store-badge,
.drawer .drawer-store-badge:hover {
  width: fit-content;
  margin-top: 8px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.drawer .drawer-store-badge img {
  width: 156px;
  height: auto;
}

.wordmark,
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: var(--color-obsidian);
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.wordmark {
  order: 1;
  margin-left: 0;
}

.brand {
  margin-left: auto;
}

.wordmark img,
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.wordmark img {
  background: var(--color-obsidian);
}

main {
  flex: 1;
  overflow-x: clip;
}

.hero {
  min-height: 720px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: 36px;
  align-items: center;
  padding: 64px 0 56px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 24px;
  align-content: center;
}

.eyebrow,
.small-label {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0;
  background: transparent;
  color: var(--color-steel);
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
}

.lead {
  max-width: 570px;
  color: var(--color-ink);
  font-size: 18px;
  line-height: 1.45;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 600px;
}

.trust-strip span {
  min-height: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-steel);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.app-store-badge {
  width: 180px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.app-store-badge:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.app-store-badge img {
  width: 100%;
  height: auto;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0 18px;
  font-family: var(--font-jakarta);
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.button.primary {
  background: var(--color-obsidian);
  color: var(--color-snow);
  box-shadow: var(--shadow-button);
}

.button.outline {
  background: var(--color-snow);
  color: var(--color-graphite);
  border: 1px solid var(--color-graphite);
}

.coming-soon-button {
  background: var(--color-snow);
  color: var(--color-obsidian);
  border: 1.5px solid var(--color-obsidian);
  border-radius: 12px;
  box-shadow: none;
  cursor: default;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.coming-soon-button-large {
  min-width: 220px;
  min-height: 60px;
}

.icon-button {
  gap: 8px;
}

.icon-button svg,
.icon-tile svg,
.trust-strip svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-button svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.icon-tile {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--color-pebble);
  background: var(--color-snow);
  color: var(--color-obsidian);
}

.icon-tile {
  width: 46px;
  height: 46px;
  border-radius: 18px;
}

.icon-tile svg {
  width: 20px;
  height: 20px;
}

.trust-strip svg {
  width: 15px;
  height: 15px;
}

.hero-stage {
  min-height: 630px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-hero);
  background: var(--color-snow);
  box-shadow: var(--shadow-line);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: var(--radius-3xl-3);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.72)),
    url("/media/homepage/yugamama-menu-board.jpg") center / cover no-repeat;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 24px;
  z-index: 6;
  border-radius: var(--radius-3xl-3);
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(9, 9, 11, 0.34), rgba(9, 9, 11, 0.12) 42%, rgba(9, 9, 11, 0.04) 72%),
    linear-gradient(180deg, rgba(9, 9, 11, 0.04), rgba(9, 9, 11, 0.18));
}

.hero-stage-headlines {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: grid;
  place-items: center;
  padding: clamp(26px, 7vw, 72px);
  pointer-events: none;
  text-align: center;
}

.hero-stage-headlines span {
  grid-area: 1 / 1;
  max-width: 12.5ch;
  color: #ffffff;
  font-size: clamp(31px, 5.2vw, 72px);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 0.96;
  opacity: 0;
  text-wrap: balance;
  overflow-wrap: normal;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.32),
    0 18px 46px rgba(0, 0, 0, 0.28);
  animation: hero-heading-cycle 12s ease-in-out infinite;
  animation-delay: -1s;
}

.hero-stage-headlines .hero-headline-compare {
  max-width: 15.5ch;
}

.hero-stage-headlines span:nth-child(2) {
  animation-delay: 3s;
}

.hero-stage-headlines span:nth-child(3) {
  animation-delay: 7s;
}

.hero-image-rail {
  position: absolute;
  left: 24px;
  right: 24px;
  z-index: 5;
  overflow: hidden;
  opacity: 0.98;
  pointer-events: none;
}

.hero-image-track {
  --hero-rail-gap: 12px;
  width: max-content;
  display: flex;
  gap: var(--hero-rail-gap);
  animation: hero-rail-left 28s linear infinite;
  will-change: transform;
}

.hero-image-rail img {
  width: 138px;
  height: 102px;
  flex: 0 0 auto;
  border: 6px solid var(--color-snow);
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow-line);
}

.rail-top {
  top: 42px;
  transform: rotate(-6deg);
}

.rail-bottom {
  bottom: 42px;
  transform: rotate(6deg);
}

.rail-bottom .hero-image-track {
  animation-name: hero-rail-right;
  animation-duration: 31s;
}

.phone {
  width: 285px;
  min-height: 548px;
  position: absolute;
  z-index: 3;
  display: grid;
  align-content: start;
  gap: 14px;
  border: 10px solid var(--color-obsidian);
  border-radius: 42px;
  padding: 16px;
  background: var(--color-mist);
  overflow: hidden;
}

.phone-front {
  left: 46px;
  top: 44px;
  animation: float-a 7s ease-in-out infinite;
}

.phone-back {
  right: 42px;
  bottom: 34px;
  transform: rotate(5deg) scale(0.92);
  opacity: 0.96;
  animation: float-b 8s ease-in-out infinite;
}

.phone-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-obsidian);
  font-size: 12px;
  font-weight: 700;
}

.scan-card,
.result-card,
.rank-list {
  display: grid;
  gap: 14px;
  border-radius: var(--radius-3xl-2);
  padding: 16px;
  background: var(--color-snow);
  box-shadow: var(--shadow-line);
}

.scan-card {
  min-height: 174px;
  align-content: end;
  background:
    linear-gradient(180deg, rgba(9, 9, 11, 0.08), rgba(9, 9, 11, 0.02)),
    var(--color-snow);
}

.scan-lines {
  display: grid;
  gap: 8px;
}

.scan-lines span {
  height: 10px;
  border-radius: var(--radius-pill);
  background: var(--color-fog);
}

.scan-lines span:nth-child(2) {
  width: 80%;
}

.scan-lines span:nth-child(3) {
  width: 68%;
}

.scan-lines span:nth-child(4) {
  width: 90%;
}

.badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: var(--radius-xl);
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
}

.badge.dark {
  background: var(--color-graphite);
  color: #fafafa;
}

.badge.light {
  background: var(--color-fog);
  color: var(--color-graphite);
}

.badge.overlay {
  color: var(--color-snow);
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(9, 9, 11, 0.16);
  backdrop-filter: blur(8px);
}

.result-card h2 {
  font-size: 24px;
  line-height: 1.1;
}

.score-row {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  align-items: center;
}

.score-row strong {
  display: grid;
  place-items: center;
  height: 62px;
  border-radius: var(--radius-2xl);
  background: var(--color-obsidian);
  color: var(--color-snow);
  font-size: 26px;
  line-height: 1;
}

.score-row p {
  color: var(--color-graphite);
  font-size: 13px;
  line-height: 1.45;
}

.macro-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.macro-row span {
  display: grid;
  gap: 2px;
  border-radius: 16px;
  padding: 10px;
  background: var(--color-fog);
  color: var(--color-steel);
  font-size: 11px;
  line-height: 1.2;
}

.macro-row b {
  color: var(--color-obsidian);
  font-size: 14px;
}

.rank-list article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: var(--color-fog);
}

.rank-list article strong {
  display: grid;
  place-items: center;
  height: 46px;
  border-radius: 14px;
  background: var(--color-obsidian);
  color: var(--color-snow);
}

.rank-list h3 {
  font-size: 14px;
}

.rank-list p {
  font-size: 12px;
  line-height: 1.35;
}

.ticker {
  position: relative;
  width: 100%;
  margin: 0 0 var(--section-gap);
  border-radius: 0;
  background: var(--color-obsidian);
  overflow-x: clip;
}

.ticker::before,
.ticker::after {
  content: none;
}

.image-marquee {
  --marquee-gap: 14px;
  width: min(var(--page-max-width), calc(100% - 40px));
  display: grid;
  gap: var(--marquee-gap);
  margin: -34px auto var(--section-gap);
  overflow: hidden;
  border-radius: var(--radius-3xl-3);
}

.image-marquee-row {
  width: max-content;
  display: flex;
  gap: var(--marquee-gap);
  animation: image-marquee-left 38s linear infinite;
  will-change: transform;
}

.image-marquee-row.reverse {
  animation-name: image-marquee-right;
  animation-duration: 44s;
}

.image-marquee figure {
  width: 260px;
  height: 178px;
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-3xl-2);
  background: var(--color-fog);
}

.image-marquee img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-marquee figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(9, 9, 11, 0.26);
  border-radius: var(--radius-pill);
  background: rgba(9, 9, 11, 0.9);
  box-shadow: 0 10px 24px rgba(9, 9, 11, 0.2);
  color: var(--color-snow);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.image-marquee-row.reverse figcaption {
  border-color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(9, 9, 11, 0.18);
  color: var(--color-obsidian);
}

.ticker-track {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 26px;
  padding: 16px 24px;
  color: var(--color-snow);
  font-size: 14px;
  font-weight: 650;
  text-align: center;
}

.ticker-track span {
  position: relative;
  white-space: nowrap;
}

.ticker-track span::after {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 50%;
  right: -19px;
  border-radius: 999px;
  background: var(--color-slate);
  transform: translateY(-50%);
}

.ticker-track span:last-child::after {
  content: none;
}

.section {
  margin-bottom: var(--section-gap);
}

.section-heading {
  max-width: 760px;
  display: grid;
  justify-items: center;
  gap: 16px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading.compact {
  max-width: 680px;
}

.problem-section .section-heading {
  max-width: 100%;
}

.problem-heading-desktop-two-line {
  white-space: normal;
}

.problem-heading-mobile-break {
  display: none;
}

.heading-reveal,
.stat-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.heading-reveal.is-visible,
.stat-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.stat-reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.stat-reveal:nth-child(4) {
  transition-delay: 0.24s;
}

.keep-line {
  white-space: nowrap;
}

.trust-banner-section {
  margin-top: -18px;
}

.ordering-context-banner {
  width: 100%;
  aspect-ratio: 1721 / 914;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-3xl-3);
  background: var(--color-fog);
  box-shadow: var(--shadow-line);
}

.ordering-context-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem-panel {
  display: grid;
  gap: 18px;
  border-radius: var(--radius-3xl-3);
  padding: 34px;
  background: var(--color-obsidian);
}

.problem-panel p {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  color: var(--color-ash);
  font-size: 20px;
  line-height: 1.45;
}

.problem-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-snow);
}

.problem-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-panel strong {
  color: var(--color-snow);
  font-weight: 700;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.flow-card,
.page {
  display: grid;
  gap: 16px;
  border-radius: var(--radius-3xl-3);
  padding: 28px;
  background: var(--color-snow);
  box-shadow: var(--shadow-line);
}

.flow-card {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  --proximity-scale: 1;
  --proximity-brightness: 1;
  --proximity-lift: 0px;
  transform: translateY(var(--proximity-lift)) scale(var(--proximity-scale));
  filter: brightness(var(--proximity-brightness));
  transform-origin: center;
  will-change: transform, filter;
  transition:
    transform 0.22s ease,
    filter 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease;
}

.flow-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 58%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.flow-card.muted {
  background: var(--color-fog);
}

.flow-card.dark {
  background: var(--color-obsidian);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.card-top > span:last-child {
  color: var(--color-ash);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  transition: color 0.22s ease, transform 0.22s ease;
}

.flow-card p,
.page p,
.page li {
  color: var(--color-steel);
  font-size: 14px;
  line-height: 1.56;
}

.flow-card.dark h3,
.flow-card.dark .card-top > span:last-child {
  color: var(--color-snow);
}

.flow-card.dark p {
  color: var(--color-ash);
}

.flow-card.dark .icon-tile {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-snow);
}

.flow-card .icon-tile,
.flow-card h3,
.flow-card p {
  position: relative;
  z-index: 1;
  transition:
    transform 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

@media (hover: hover) {
  .flow-card:hover {
    transform: translateY(calc(-8px + var(--proximity-lift, 0px))) scale(var(--proximity-scale, 1));
    border-color: rgba(9, 9, 11, 0.08);
    box-shadow:
      0 22px 44px rgba(9, 9, 11, 0.1),
      0 1px 0 rgba(255, 255, 255, 0.72) inset;
  }

  .flow-card:hover::after {
    opacity: 1;
  }

  .flow-card:hover .icon-tile {
    transform: translateY(-2px) scale(1.03);
    border-color: rgba(9, 9, 11, 0.16);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 24px rgba(9, 9, 11, 0.08);
  }

  .flow-card:hover .card-top > span:last-child {
    color: var(--color-graphite);
    transform: scale(1.04);
  }

  .flow-card:hover h3 {
    transform: translateY(-1px);
  }

  .flow-card:hover p {
    color: var(--color-graphite);
  }

  .flow-card.dark:hover {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow:
      0 26px 52px rgba(9, 9, 11, 0.26),
      0 1px 0 rgba(255, 255, 255, 0.08) inset;
  }

  .flow-card.dark:hover::after {
    opacity: 0.22;
  }

  .flow-card.dark:hover .icon-tile {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  }

  .flow-card.dark:hover .card-top > span:last-child {
    color: var(--color-snow);
  }

  .flow-card.dark:hover p {
    color: rgba(255, 255, 255, 0.86);
  }
}

.portfolio-carousel {
  display: grid;
  gap: 18px;
}

.carousel-frame {
  position: relative;
  min-width: 0;
}

.portfolio-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(282px, 360px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.portfolio-strip::-webkit-scrollbar {
  display: none;
}

.portfolio-tile {
  min-height: 430px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius-3xl-3);
  padding: 24px;
  scroll-snap-align: start;
  background: var(--color-snow);
}

.portfolio-tile img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.portfolio-tile:hover img {
  transform: scale(1.04);
}

.image-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 9, 11, 0.02), rgba(9, 9, 11, 0.62));
}

.portfolio-tile > div,
.orchid-tile > h3,
.orchid-tile > .badge {
  position: relative;
  z-index: 2;
}

.portfolio-tile > div {
  display: grid;
  gap: 10px;
}

.portfolio-tile h3 {
  color: var(--color-snow);
  font-size: 24px;
}

.orchid-tile {
  align-content: end;
  gap: 12px;
  background: var(--color-orchid-flash);
}

.carousel-controls {
  width: fit-content;
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.carousel-arrow {
  width: 42px;
  height: 42px;
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-pebble);
  border-radius: var(--radius-pill);
  background: var(--color-snow);
  color: var(--color-obsidian);
  cursor: pointer;
  box-shadow: var(--shadow-line);
  transform: translateY(-50%);
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.carousel-arrow-left {
  left: 14px;
}

.carousel-arrow-right {
  right: 14px;
}

.carousel-arrow:hover:not(:disabled) {
  background: var(--color-fog);
  transform: translateY(-50%) scale(1.04);
}

.carousel-arrow:disabled {
  cursor: default;
  opacity: 0.36;
}

.carousel-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 0;
  background: var(--color-pebble);
  cursor: pointer;
  opacity: 0.75;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.carousel-dot:hover {
  transform: scale(1.16);
  opacity: 1;
}

.carousel-dot[aria-current] {
  background: var(--color-obsidian);
  opacity: 1;
  transform: scale(1.2);
}

.proof-showcase {
  margin-top: -8px;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 54px;
  border-radius: var(--radius-3xl-3);
  padding: 42px;
  background: var(--color-fog);
  box-shadow: var(--shadow-line);
}

.proof-visual {
  display: grid;
  justify-items: center;
  gap: 18px;
  min-width: 0;
}

.proof-phone {
  width: min(100%, 320px);
  aspect-ratio: 1 / 2;
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.proof-phone::before {
  content: none;
}

.proof-screen-track {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
}

.proof-slide {
  position: absolute;
  inset: 0;
  height: 100%;
  margin: 0;
  opacity: 0;
  transform: translateX(18px) scale(0.985);
  transition: opacity 0.36s ease, transform 0.36s ease;
}

.proof-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: translateX(0) scale(1);
}

.proof-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.proof-controls {
  margin: 0;
}

.proof-copy {
  display: grid;
  gap: 18px;
}

.proof-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--color-obsidian);
  border-radius: var(--radius-pill);
  padding: 0 14px;
  background: var(--color-obsidian);
  color: var(--color-snow);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.proof-copy h2 {
  max-width: 620px;
}

.proof-copy > p {
  max-width: 560px;
  color: var(--color-steel);
  font-size: 17px;
  line-height: 1.6;
}

.proof-feature-list {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.proof-feature {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  border: 1px solid var(--color-pebble);
  border-radius: 24px;
  padding: 16px;
  background: var(--color-snow);
  cursor: pointer;
  --proximity-scale: 1;
  --proximity-brightness: 1;
  --proximity-lift: 0px;
  transform: translateY(var(--proximity-lift)) scale(var(--proximity-scale));
  filter: brightness(var(--proximity-brightness));
  transform-origin: center;
  will-change: transform, filter;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

.proof-feature:focus-visible {
  outline: 3px solid rgba(9, 9, 11, 0.18);
  outline-offset: 3px;
}

.proof-feature > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-pill);
  background: var(--color-obsidian);
  color: var(--color-snow);
  font-size: 13px;
  font-weight: 760;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .proof-feature:hover {
    border-color: rgba(9, 9, 11, 0.38);
    box-shadow: 0 18px 44px rgba(9, 9, 11, 0.12);
    transform: translateY(calc(-2px + var(--proximity-lift, 0px))) scale(var(--proximity-scale, 1));
  }

  .proof-feature:hover > span {
    transform: scale(1.04);
  }
}

.proof-feature.is-active {
  border-color: rgba(9, 9, 11, 0.38);
  box-shadow: 0 18px 44px rgba(9, 9, 11, 0.12);
}

.proof-feature h3 {
  color: var(--color-obsidian);
  font-size: 19px;
  line-height: 1.16;
}

.proof-feature p {
  margin-top: 5px;
  color: var(--color-steel);
  font-size: 14px;
  line-height: 1.45;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.stat-block {
  display: grid;
  gap: 6px;
  align-content: start;
}

.stat-block strong {
  color: var(--color-obsidian);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
}

.stat-block .stat-label {
  font-size: 42px;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.stat-block > span {
  max-width: 190px;
  color: var(--color-steel);
  font-size: 13px;
  line-height: 1.56;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.faq-list details {
  width: 100%;
  min-height: auto;
  border-radius: var(--radius-3xl-2);
  padding: 22px 24px;
  background: var(--color-snow);
  box-shadow: var(--shadow-line);
}

.faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 14px;
  align-items: start;
  cursor: pointer;
  list-style: none;
  color: var(--color-obsidian);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

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

.faq-list summary::after {
  content: "";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-pebble);
  border-radius: var(--radius-pill);
  background:
    linear-gradient(currentColor 0 0) center / 12px 2px no-repeat,
    linear-gradient(currentColor 0 0) center / 2px 12px no-repeat;
  color: var(--color-graphite);
}

.faq-list details[open] summary::after {
  content: "";
  background:
    linear-gradient(currentColor 0 0) center / 12px 2px no-repeat,
    var(--color-obsidian);
  border-color: var(--color-obsidian);
  color: var(--color-snow);
}

.faq-list p {
  max-width: none;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.56;
}

.final-cta {
  width: min(var(--page-max-width), calc(100% - 40px));
  display: grid;
  justify-items: center;
  gap: 22px;
  margin: 0 auto var(--section-gap);
  border-radius: var(--radius-3xl-3);
  padding: 52px 48px;
  background: var(--color-snow);
  text-align: center;
  box-shadow: var(--shadow-line);
}

.final-cta-copy {
  max-width: 760px;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.final-cta-kicker {
  color: var(--color-obsidian);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.final-cta-copy h2 {
  max-width: 860px;
}

.final-cta-heading span {
  display: block;
}

.final-cta-copy p {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.5;
}

.final-cta-points {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 780px;
}

.final-cta-points span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-pebble);
  background: var(--color-fog);
  color: var(--color-graphite);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  --final-cta-action-width: 220px;
}

.final-cta-actions .button {
  width: var(--final-cta-action-width);
  min-width: var(--final-cta-action-width);
  height: 60px;
}

.final-cta-actions .app-store-badge {
  width: var(--final-cta-action-width);
  height: auto;
}

.footer {
  margin-top: auto;
  border-top: 1px solid var(--color-pebble);
}

.footer-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--color-steel);
  font-size: 13px;
}

.footer nav,
.links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer a,
.links a {
  padding: 9px 12px;
  border-radius: var(--radius-pill);
  color: var(--color-graphite);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.footer a:hover,
.links a:hover {
  background: var(--color-fog);
  color: var(--color-obsidian);
}

.main {
  padding: 64px 0;
}

.page {
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.68;
}

.page h1 {
  font-size: 56px;
  line-height: 1.08;
}

.page h2 {
  margin-top: 24px;
  font-size: 24px;
  line-height: 1.22;
}

.page ul {
  margin: 0;
  padding-left: 22px;
}

.page a {
  color: var(--color-obsidian);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.updated {
  color: var(--color-graphite);
  font-weight: 650;
}

.support-form-card {
  margin-top: 18px;
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--color-pebble);
  border-radius: var(--radius-3xl-2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 244, 245, 0.92));
  box-shadow: var(--shadow-line);
}

.support-form-copy {
  display: grid;
  gap: 6px;
}

.support-form-copy h3 {
  font-size: 22px;
}

.support-form-copy p {
  color: var(--color-graphite);
}

.support-form {
  display: grid;
  gap: 16px;
}

.support-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.support-field {
  display: grid;
  gap: 8px;
}

.support-field span,
.support-honeypot span {
  color: var(--color-obsidian);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.support-field input,
.support-field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--color-pebble);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-obsidian);
  font: inherit;
  line-height: 1.5;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  resize: vertical;
}

.support-field input:focus,
.support-field textarea:focus {
  outline: none;
  border-color: var(--color-obsidian);
  box-shadow: 0 0 0 3px rgba(9, 9, 11, 0.08);
  background: var(--color-snow);
}

.support-field textarea {
  min-height: 170px;
}

.support-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.support-form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.support-submit {
  border: 0;
  cursor: pointer;
}

.support-submit:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.support-form-status {
  min-height: 24px;
  color: var(--color-graphite);
  font-size: 14px;
  font-weight: 650;
}

.support-form-status[data-tone="success"] {
  color: #156f43;
}

.support-form-status[data-tone="error"] {
  color: #9f1239;
}

.support-form-status[data-tone="pending"] {
  color: var(--color-obsidian);
}

@media (max-width: 720px) {
  .support-form-card {
    padding: 20px;
  }

  .support-form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .support-form-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

.reveal {
  animation: reveal-in 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@supports (animation-timeline: view()) {
  .section.reveal,
  .final-cta.reveal {
    animation-timeline: view();
    animation-range: entry 10% cover 28%;
  }
}

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

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

@keyframes menu-drop {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

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

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

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

@media (prefers-reduced-motion: reduce) {
  .heading-reveal,
  .stat-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@keyframes float-a {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-12px) rotate(-2deg);
  }
}

@keyframes float-b {
  0%,
  100% {
    transform: translateY(0) rotate(5deg) scale(0.92);
  }

  50% {
    transform: translateY(10px) rotate(5deg) scale(0.92);
  }
}

@keyframes hero-rail-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - (var(--hero-rail-gap) / 2)));
  }
}

@keyframes hero-rail-right {
  from {
    transform: translateX(calc(-50% - (var(--hero-rail-gap) / 2)));
  }

  to {
    transform: translateX(0);
  }
}

@keyframes image-marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - (var(--marquee-gap) / 2)));
  }
}

@keyframes image-marquee-right {
  from {
    transform: translateX(calc(-50% - (var(--marquee-gap) / 2)));
  }

  to {
    transform: translateX(0);
  }
}

@keyframes hero-heading-cycle {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }

  8%,
  23% {
    opacity: 1;
    transform: translateY(0);
  }

  31%,
  100% {
    opacity: 0;
    transform: translateY(-22px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .hero-stage-headlines span {
    animation: none !important;
    opacity: 0;
    transform: none;
  }

  .hero-stage-headlines span:first-child {
    opacity: 1;
  }
}

@media (max-width: 1040px) {
  .hero h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 46px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 48px;
  }

  .hero-stage {
    min-height: 610px;
  }

  .hero-image-rail {
    left: 18px;
    right: 18px;
  }

  .phone-front {
    left: 13%;
  }

  .phone-back {
    right: 13%;
  }

  .flow-grid,
  .stats-section {
    grid-template-columns: 1fr;
  }

  .proof-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .proof-copy {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .site-header,
  .nav {
    padding: 10px 0;
    background: var(--color-mist);
    backdrop-filter: none;
  }

  .nav-inner {
    min-height: 44px;
  }

  .menu-toggle {
    position: static;
  }

  .menu-toggle summary {
    width: 44px;
    height: 44px;
    padding: 12px;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
  }

  .drawer {
    width: 100%;
    max-width: 100%;
    max-height: calc(100dvh - 64px);
    position: fixed;
    top: 65px;
    z-index: 60;
    right: auto;
    left: 0;
    gap: 2px;
    overflow-y: auto;
    padding: 24px 30px 28px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 0 0 34px 34px;
    background: rgba(244, 244, 245, 0.56);
    backdrop-filter: blur(28px) saturate(1.22);
    -webkit-backdrop-filter: blur(28px) saturate(1.22);
    box-shadow: 0 18px 60px rgba(9, 9, 11, 0.12);
    animation: menu-drop 0.28s ease both;
  }

  .drawer a:not(.drawer-store-badge) {
    padding: 11px 0;
    border-radius: 0;
    background: transparent;
    color: var(--color-obsidian);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.12;
  }

  .drawer a:not(.drawer-store-badge):hover {
    background: transparent;
  }

  .drawer .drawer-store-badge {
    margin-top: 14px;
  }

  .drawer .drawer-store-badge img {
    width: 148px;
  }

  .wordmark {
    gap: 10px;
    font-size: 20px;
  }

  .wordmark img {
    width: 40px;
    height: 40px;
    border-radius: 9px;
  }

  .nav-inner,
  .hero,
  .section,
  .footer-inner,
  .main {
    width: min(100% - 24px, var(--page-max-width));
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(40px, 10.75vw, 44px);
    line-height: 1.04;
    text-align: left;
  }

  .hero-copy {
    justify-items: start;
    text-align: left;
  }

  .trust-strip {
    width: auto;
    max-width: none;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 6px 10px;
  }

  .trust-strip span {
    flex: 0 1 auto;
    gap: 5px;
    white-space: nowrap;
    font-size: clamp(10.4px, 2.7vw, 11px);
    letter-spacing: 0;
  }

  .trust-strip svg {
    width: 13px;
    height: 13px;
  }

  h2,
  .page h1 {
    font-size: 34px;
  }

  .flow-section h2 {
    font-size: 29px;
    line-height: 1.08;
  }

  .lead {
    max-width: 34ch;
    font-size: 16px;
    margin-inline: 0;
    text-align: left;
  }

  .hero {
    padding: 40px 0 48px;
  }

  .hero-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .button {
    width: fit-content;
    min-width: 178px;
    min-height: 50px;
  }

  .app-store-badge {
    justify-content: flex-start;
    width: 178px;
    height: auto;
  }

  .hero-stage {
    aspect-ratio: 1 / 1;
    min-height: 0;
    border-radius: var(--radius-3xl-2);
  }

  .hero-stage::before,
  .hero-stage::after {
    inset: 12px;
    border-radius: 24px;
  }

  .hero-stage-headlines {
    padding: 42px 28px;
  }

  .hero-stage-headlines span {
    max-width: min(12ch, 86%);
    font-size: clamp(34px, 9.6vw, 42px);
    line-height: 0.96;
  }

  .hero-stage-headlines .hero-headline-compare {
    max-width: min(16.5ch, 96%);
  }

  .hero-image-rail {
    left: 12px;
    right: 12px;
  }

  .hero-image-rail img {
    width: 108px;
    height: 82px;
    border-radius: 20px;
  }

  .hero-image-track {
    --hero-rail-gap: 10px;
    animation-duration: 24s;
  }

  .rail-top {
    top: 24px;
  }

  .rail-bottom {
    bottom: 34px;
  }

  .section,
  .ticker {
    margin-bottom: 52px;
  }

  .ticker::before,
  .ticker::after {
    width: 38px;
  }

  .ticker-track {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
    padding: 18px 8px;
    font-size: clamp(9.8px, 2.62vw, 11px);
    letter-spacing: -0.025em;
    line-height: 1;
    white-space: nowrap;
  }

  .ticker-track span:nth-child(n+5) {
    display: none;
  }

  .ticker-track span::after {
    width: 4px;
    height: 4px;
    right: -8px;
  }

  .ticker-track span:nth-child(4)::after {
    content: none;
  }

  .section-heading,
  .final-cta-copy {
    justify-items: start;
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }

  .preview-section {
    margin-bottom: 18px;
  }

  .problem-section .section-heading {
    margin-bottom: 20px;
  }

  .problem-heading-desktop-two-line {
    white-space: normal;
  }

  .problem-heading-mobile-break {
    display: inline;
  }

  .problem-panel,
  .flow-card,
  .final-cta,
  .page {
    border-radius: var(--radius-3xl-2);
    padding: 24px;
  }

  .problem-panel p {
    font-size: 16px;
  }

  .flow-card {
    position: relative;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: center;
    column-gap: 14px;
    row-gap: 16px;
  }

  .flow-card .card-top {
    display: contents;
  }

  .flow-card .card-top > .icon-tile {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }

  .flow-card .card-top > span:last-child {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 28px;
  }

  .flow-card h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin: 0;
    padding-right: 60px;
    font-size: 17px;
    line-height: 1.1;
  }

  .flow-card p {
    grid-column: 1 / -1;
  }

  .proof-layout {
    border-radius: var(--radius-3xl-2);
    padding: 24px;
  }

  .proof-phone {
    width: min(100%, 280px);
  }

  .proof-screen-track {
    border-radius: 0;
  }

  .proof-copy {
    gap: 14px;
    justify-items: start;
    text-align: left;
  }

  .proof-copy h2 {
    font-size: 29px;
    line-height: 1.06;
    max-width: 100%;
  }

  .final-cta {
    justify-items: center;
    text-align: center;
  }

  .final-cta-copy {
    justify-items: center;
    text-align: center;
  }

  .final-cta-copy h2 {
    font-size: 29px;
    line-height: 1.06;
    max-width: none;
  }

  .final-cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: center;
    --final-cta-action-width: min(220px, 100%);
  }

  .final-cta-actions .button,
  .final-cta-actions .app-store-badge {
    max-width: 100%;
  }

  .proof-copy > p {
    margin-inline: 0;
    font-size: 15px;
  }

  .proof-feature {
    grid-template-columns: 40px minmax(0, 1fr);
    border-radius: 20px;
    padding: 14px;
  }

  .proof-feature > span {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }

  .proof-feature h3 {
    font-size: 17px;
  }

  .portfolio-strip {
    grid-auto-columns: minmax(230px, 74vw);
    gap: 12px;
  }

  .portfolio-carousel {
    gap: 14px;
  }

  .carousel-controls {
    grid-template-columns: 40px auto 40px;
    gap: 12px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .image-marquee {
    width: min(100% - 24px, var(--page-max-width));
    margin-top: -28px;
    border-radius: 24px;
  }

  .image-marquee figure {
    width: 210px;
    height: 148px;
    border-radius: 24px;
  }

  .portfolio-tile {
    min-height: 320px;
    border-radius: var(--radius-3xl-2);
    padding: 20px;
  }

  .portfolio-tile h3 {
    font-size: 22px;
    line-height: 1.16;
  }

  .preview-section {
    margin-bottom: 38px;
  }

  .stats-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 48px;
  }

  .stat-block {
    min-height: 112px;
    gap: 8px;
    align-content: space-between;
    border-radius: 24px;
    padding: 16px;
    background: var(--color-snow);
    box-shadow: var(--shadow-line);
  }

  .stat-block strong {
    font-size: 34px;
    line-height: 0.95;
  }

  .stat-block .stat-label {
    font-size: 28px;
    line-height: 0.98;
  }

  .stat-block > span {
    max-width: none;
    font-size: 12px;
    line-height: 1.35;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .faq-list details {
    min-height: auto;
    padding: 18px;
  }

  .faq-list summary {
    grid-template-columns: 1fr 26px;
    font-size: 16px;
  }

  .faq-list summary::after {
    width: 26px;
    height: 26px;
  }

  .footer-inner {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 0;
  }
}

@media (max-width: 380px) {
  .nav-inner,
  .hero,
  .section,
  .image-marquee,
  .footer-inner,
  .main {
    width: calc(100% - 20px);
  }

  .hero h1 {
    max-width: 100%;
    font-size: 39px;
  }

  .trust-strip {
    gap: 6px;
  }

  .trust-strip span {
    font-size: 9.7px;
  }

  .trust-strip svg {
    width: 12px;
    height: 12px;
  }

  .ticker-track {
    gap: 9px;
    padding-right: 6px;
    padding-left: 6px;
    font-size: 9.35px;
  }

  .ticker-track span::after {
    right: -6px;
  }

  h2,
  .page h1 {
    font-size: 30px;
  }

  .flow-section h2 {
    font-size: 29px;
  }

  .proof-layout {
    padding: 18px;
  }

  .proof-phone {
    width: min(100%, 242px);
  }

  .proof-screen-track {
    border-radius: 0;
  }

  .wordmark span,
  .brand span {
    font-size: 14px;
  }

  .drawer {
    width: 100%;
    padding-right: 24px;
    padding-left: 24px;
  }

  .drawer a:not(.drawer-store-badge) {
    font-size: 18px;
  }
}
