:root {
  --bg: #f3f4f1;
  --bg-elevated: rgba(255, 255, 255, 0.78);
  --surface: #ffffff;
  --surface-soft: #ecefe8;
  --line: rgba(18, 18, 18, 0.1);
  --line-strong: rgba(18, 18, 18, 0.18);
  --text: #141414;
  --muted: #5f635e;
  --muted-strong: #424640;
  --accent: #48484a;
  --accent-dark: #1c1c1e;
  --shadow: 0 20px 60px rgba(17, 17, 17, 0.08);
  --max-width: 1180px;
  --content-width: 780px;
  --apple-green: #34c759;
  --apple-green-deep: #28b84c;
  --apple-green-mid: #48d368;
  --apple-green-light: #72e585;
  --apple-green-track: #e3f5e8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

p,
li {
  color: var(--muted-strong);
}

main {
  overflow: clip;
}

.site-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(243, 244, 241, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, background 180ms ease;
}

.topbar.is-solid {
  border-bottom-color: var(--line);
  background: rgba(243, 244, 241, 0.92);
}

.topbar-inner {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.brand {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.brand-dash {
  font-weight: 500;
  color: var(--muted);
}

.brand-line {
  font-weight: 600;
  color: var(--text);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a,
.inline-link {
  color: var(--muted);
  transition: color 180ms ease;
}

.nav a:hover,
.inline-link:hover {
  color: var(--text);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.button-quiet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button {
  gap: 10px;
  background: var(--accent-dark);
  color: #fff;
}

.button-apple-icon {
  width: 20px;
  height: auto;
  aspect-ratio: 814 / 1000;
  flex-shrink: 0;
  display: block;
}

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

.button-quiet {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.button-quiet.is-dark {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 86svh;
  padding: 28px 0 88px;
  color: #fff;
  background:
    radial-gradient(ellipse 95% 75% at 78% 8%, rgba(255, 255, 255, 0.045) 0%, transparent 48%),
    radial-gradient(ellipse 60% 45% at 4% 75%, rgba(0, 0, 0, 0.42) 0%, transparent 52%),
    linear-gradient(168deg, #0e0e10 0%, #161618 40%, #242426 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(243, 244, 241, 0) 0%, var(--bg) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(200px, 280px);
  gap: 48px;
  align-items: center;
  padding-top: 64px;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1,
.display {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.96;
  font-weight: 650;
  letter-spacing: 0;
}

.hero p.lead {
  margin: 24px 0 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 34px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-meta strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.hero-meta span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.phone-stage {
  justify-self: end;
  width: min(100%, 264px);
}

.phone-frame {
  position: relative;
  width: 100%;
  padding: 10px;
  border-radius: 32px;
  background: rgba(14, 16, 14, 0.94);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.22),
    0 6px 16px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.phone-frame::before {
  content: "";
  position: absolute;
  inset: 6px 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 18px;
  border-radius: 0 0 14px 14px;
  background: rgba(0, 0, 0, 0.92);
}

.phone-screen {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #0a0a0a;
  min-height: 508px;
}

.phone-demo-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-view {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 720px;
}

.status-bar,
.app-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  color: #262926;
  font-size: 0.82rem;
}

.app-header {
  padding: 8px 20px 18px;
}

.app-header h2 {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.05;
  font-weight: 640;
}

.app-header p {
  margin: 8px 0 0;
  color: #5d635d;
}

.scan-image {
  position: relative;
  min-height: 340px;
}

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

.scan-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: var(--shadow);
  color: #1a1d1a;
  font-size: 0.82rem;
  font-weight: 600;
}

.scan-chip.top-left {
  top: 18px;
  left: 16px;
}

.scan-chip.bottom-right {
  right: 16px;
  bottom: 18px;
}

.score-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 20px 22px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.score-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  font-weight: 650;
}

.score-panel strong {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
}

.score-panel p {
  margin: 8px 0 0;
  font-size: 0.92rem;
}

.section {
  padding: 104px 0;
}

.section-tight {
  padding: 80px 0;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.2vw, 3.3rem);
  line-height: 1.02;
  font-weight: 640;
}

.section-heading p {
  margin: 0;
  max-width: 680px;
  font-size: 1.04rem;
}

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

.value-copy {
  grid-column: span 7;
}

.value-points {
  grid-column: span 5;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.value-points article,
.feature-list article,
.faq-list details,
.legal-list li,
.support-list li {
  border-bottom: 1px solid var(--line);
}

.value-points article,
.feature-list article {
  padding: 18px 0 20px;
}

.value-points h3,
.feature-list h3,
.faq-list summary,
.text-block h3,
.support-list strong {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 620;
}

.value-points p,
.feature-list p {
  margin: 8px 0 0;
}

.note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.divider {
  height: 1px;
  background: var(--line);
}

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

.step {
  padding-top: 18px;
  border-top: 1px solid var(--line-strong);
}

.step span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.step h3 {
  margin: 0;
  font-size: 1.08rem;
}

.step p {
  margin: 10px 0 0;
}

.image-band {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.image-band.nutrition {
  background: linear-gradient(180deg, #fafafa 0%, var(--surface-soft) 100%);
}

.image-band.nutrition .band-copy {
  color: var(--text);
}

.image-band.nutrition .band-copy p {
  color: var(--muted-strong);
}

.image-band.community {
  background: linear-gradient(165deg, #101012 0%, #18181a 52%, #252527 100%);
}

.image-band.community .band-copy {
  color: #fff;
}

.image-band.community .band-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.image-band .container {
  min-height: 480px;
  display: flex;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 56px;
}

.band-copy {
  max-width: 560px;
}

.band-copy h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  line-height: 1.02;
}

.band-copy p {
  margin: 14px 0 0;
  font-size: 1.05rem;
}

.band-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 400px);
  gap: 40px;
  align-items: center;
}

.band-stats {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.band-stat {
  display: grid;
  gap: 8px;
}

.band-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.band-stat-num {
  font-size: 1.05rem;
  font-weight: 620;
  color: var(--apple-green-deep);
}

.band-stat-bar {
  height: 5px;
  border-radius: 999px;
  background: var(--apple-green-track);
  overflow: hidden;
}

.band-stat-bar-fill {
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--apple-green-deep), var(--apple-green));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.band-stat-bar-fill--soft {
  background: linear-gradient(90deg, var(--apple-green), var(--apple-green-light));
}

[data-stat-animate].is-stat-visible .band-stat-bar-fill {
  transform: scaleX(var(--meter));
}

.band-stat-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.band-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c7c7cc;
  opacity: 0.35;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

[data-stat-animate].is-stat-visible .band-dot--on {
  opacity: 1;
  background: var(--apple-green);
}

.stats-visual {
  border-top: 1px solid var(--line);
}

.stats-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
  gap: 28px;
  align-items: start;
  margin-top: 8px;
}

.stats-rings-card {
  padding: 28px 28px 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.stats-rings-stage {
  position: relative;
  width: min(100%, 220px);
  margin: 0 auto 20px;
  aspect-ratio: 1;
}

.stats-rings-svg {
  width: 100%;
  height: auto;
  display: block;
}

.ring-track {
  stroke: var(--apple-green-track);
}

.ring-progress {
  stroke: var(--apple-green-deep);
  stroke-dasharray: var(--len);
  stroke-dashoffset: var(--len);
  transition: stroke-dashoffset 1.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.ring-progress--mid {
  stroke: var(--apple-green);
  transition-delay: 0.08s;
}

.ring-progress--inner {
  stroke: var(--apple-green-light);
  transition-delay: 0.16s;
}

[data-stat-animate].is-stat-visible .ring-progress {
  stroke-dashoffset: calc(var(--len) * (1 - var(--pct)));
}

.stats-rings-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}

.stats-rings-score {
  font-size: clamp(1.75rem, 4vw, 2.1rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--apple-green-deep);
  font-variant-numeric: tabular-nums;
}

.stats-rings-caption {
  margin-top: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.stats-rings-legend {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
}

.stats-rings-legend li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ring-swatch {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ring-swatch--outer {
  background: var(--apple-green-deep);
}

.ring-swatch--mid {
  background: var(--apple-green);
}

.ring-swatch--inner {
  background: var(--apple-green-light);
}

.stats-panels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat-panel {
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
}

.stat-panel-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.stat-panel-label {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 600;
}

.stat-panel-value {
  font-size: 1.35rem;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
  color: var(--apple-green-deep);
  letter-spacing: -0.02em;
}

.stat-meter {
  height: 6px;
  border-radius: 999px;
  background: var(--apple-green-track);
  overflow: hidden;
}

.stat-meter-fill {
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--apple-green-deep), var(--apple-green));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-meter-fill--b {
  background: linear-gradient(90deg, var(--apple-green), var(--apple-green-light));
  transition-delay: 0.06s;
}

[data-stat-animate].is-stat-visible .stat-meter-fill {
  transform: scaleX(var(--meter));
}

.stat-panel--spark {
  padding-bottom: 16px;
}

.spark-row {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 52px;
  margin-top: 12px;
}

.spark {
  flex: 1;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--apple-green-mid) 0%, var(--apple-green-deep) 100%);
  transform: scaleY(0.12);
  transform-origin: bottom center;
  transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.spark:nth-child(1) {
  transition-delay: 0.02s;
}

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

.spark:nth-child(3) {
  transition-delay: 0.14s;
}

.spark:nth-child(4) {
  transition-delay: 0.2s;
}

.spark:nth-child(5) {
  transition-delay: 0.26s;
}

.spark:nth-child(6) {
  transition-delay: 0.32s;
}

.spark:nth-child(7) {
  transition-delay: 0.38s;
}

[data-stat-animate].is-stat-visible .spark {
  transform: scaleY(var(--h));
}

.feature-list,
.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

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

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

.text-block p {
  margin: 10px 0 0;
}

.subscription-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 360px);
  gap: 32px;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}

.subscription-callout {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.subscription-callout strong {
  display: block;
  font-size: 0.94rem;
  font-weight: 620;
}

.subscription-callout p,
.subscription-callout ul {
  margin: 12px 0 0;
}

.subscription-callout ul {
  padding-left: 18px;
}

.faq-list details {
  padding: 18px 0;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  color: var(--text);
}

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

.faq-list details p {
  margin: 12px 0 0;
  max-width: 760px;
}

.cta-strip {
  padding: 88px 0 104px;
}

.cta-frame {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0 0;
  border-top: 1px solid var(--line-strong);
}

.cta-frame h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.04;
}

.cta-frame p {
  margin: 12px 0 0;
  max-width: 720px;
}

.site-footer {
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, 220px));
  gap: 24px;
}

.footer-grid p {
  margin: 12px 0 0;
  max-width: 360px;
  font-size: 0.95rem;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links strong {
  font-size: 0.92rem;
}

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

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

.legal-hero {
  padding: 84px 0 40px;
}

.legal-hero .container {
  display: grid;
  gap: 16px;
}

.legal-hero h1 {
  color: var(--text);
  font-size: clamp(2.2rem, 5vw, 4.1rem);
}

.legal-hero p {
  max-width: var(--content-width);
  margin: 0;
  font-size: 1.04rem;
}

.legal-body {
  padding: 26px 0 110px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.legal-content {
  max-width: var(--content-width);
}

.legal-content section + section {
  margin-top: 38px;
}

.legal-content h2 {
  margin: 0 0 14px;
  font-size: 1.32rem;
  font-weight: 640;
}

.legal-content h3 {
  margin: 22px 0 10px;
  font-size: 1.02rem;
  font-weight: 620;
}

.legal-content p,
.legal-content li {
  margin: 0;
  color: var(--muted-strong);
}

.legal-content p + p,
.legal-content p + ul,
.legal-content p + ol,
.legal-content ul + p,
.legal-content ol + p,
.legal-content li + li {
  margin-top: 12px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 20px;
}

.legal-callout {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
}

.support-list,
.legal-list {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.support-list li,
.legal-list li {
  padding: 16px 0 18px;
}

.support-list p {
  margin: 8px 0 0;
}

.placeholder {
  font-family: "SF Mono", SFMono-Regular, ui-monospace, Menlo, monospace;
  font-size: 0.94em;
  color: var(--accent);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  * {
    transition: none !important;
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  [data-stat-animate].is-stat-visible .ring-progress {
    stroke-dashoffset: calc(var(--len) * (1 - var(--pct))) !important;
  }

  [data-stat-animate].is-stat-visible .stat-meter-fill,
  [data-stat-animate].is-stat-visible .band-stat-bar-fill {
    transform: scaleX(var(--meter)) !important;
  }

  [data-stat-animate].is-stat-visible .spark {
    transform: scaleY(var(--h)) !important;
  }
}

@media (max-width: 1040px) {
  .hero-inner,
  .section-heading,
  .subscription-panel,
  .cta-frame,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 72px;
  }

  .phone-stage {
    justify-self: center;
    width: min(100%, 264px);
  }

  .value-copy,
  .value-points {
    grid-column: span 12;
  }

  .steps,
  .feature-grid,
  .text-columns {
    grid-template-columns: 1fr 1fr;
  }

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

  .band-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 720px) {
  .topbar-inner,
  .container,
  .footer-grid {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .topbar-inner {
    min-height: 64px;
  }

  .nav {
    display: none;
  }

  .hero-inner {
    width: min(calc(100% - 28px), var(--max-width));
    gap: 30px;
    padding-top: 40px;
  }

  .hero-meta,
  .steps,
  .feature-grid,
  .text-columns {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    gap: 18px;
  }

  .phone-screen {
    min-height: 460px;
  }

  .section,
  .cta-strip {
    padding: 76px 0;
  }

  .section-tight {
    padding: 64px 0;
  }

  .image-band,
  .image-band .container {
    min-height: 420px;
  }
}
