/* =========================================================
   Sheepy — design tokens
   ========================================================= */
:root {
  --white: #ffffff;
  --black: #000000;

  --zinc-50: #fafafa;
  --zinc-100: #f4f4f5;
  --zinc-200: #e4e4e7;
  --zinc-400: #9f9fa9;
  --zinc-500: #71717b;
  --zinc-700: #3f3f47;
  --zinc-800: #27272a;
  --zinc-900: #18181b;

  --indigo-50: #eef2ff;
  --indigo-100: #e0e7ff;
  --indigo-500: #615fff;
  --indigo-600: #4f46e5;

  --lime-200: #d9f99d;
  --lime-300: #bbf451;
  --lime-400: #9ae600;

  --amber-200: #fde68a;
  --amber-300: #ffd230;
  --amber-400: #ffb900;

  --red-200: #fecaca;
  --red-300: #ffa2a2;
  --red-400: #ff6467;

  --bg-page: var(--white);
  --bg-soft: var(--zinc-100);
  --bg-dark: var(--zinc-900);

  --text: var(--zinc-900);
  --text-muted: var(--zinc-500);
  --text-on-dark: var(--white);
  --text-on-dark-muted: var(--zinc-400);

  --radius-pill: 999px;
  --radius-card: 24px;
  --radius-phone: 44px;
  --radius-phone-screen: 32px;

  --container-max: 1240px;
  --container-pad: 24px;

  --header-h: 80px;

  --shadow-card: 0 18px 40px -22px rgba(24, 24, 27, 0.18);
  --shadow-phone: 0 30px 60px -30px rgba(24, 24, 27, 0.5);

  --easing: cubic-bezier(.2,.7,.2,1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Mulish', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg-page);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

p { margin: 0; }

h1, h2, h3 { margin: 0; font-weight: 800; letter-spacing: -0.01em; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.block { display: block; }
.text-indigo { color: var(--indigo-500); }

/* =========================================================
   Typography scale (Mulish ExtraBold)
   ========================================================= */
.display {
  font-size: clamp(48px, 7.2vw, 72px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.display--md { font-size: clamp(40px, 5.6vw, 56px); line-height: 1.08; }

.h2 {
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.015em;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.h2--light { color: var(--text-on-dark); }
.display { overflow-wrap: break-word; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--indigo-50);
  color: var(--indigo-600);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  margin: 0 0 20px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--indigo-500);
}
/* Plain text eyebrow (no pill, no dot) — used in Figma 44:307 */
.eyebrow--solo {
  background: transparent;
  padding: 0;
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 800;
  color: var(--indigo-500);
  opacity: 0.9;
}
/* Hero tagline — black with one indigo word (Figma 57:303) */
.hero-tagline {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 800;
  color: var(--black);
  opacity: 0.9;
}
.btn-arrow { width: 20px; height: 20px; flex: none; }

.lede {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 24px;
  max-width: 44ch;
  margin-top: 16px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 24px;
  max-width: 56ch;
  margin: 12px auto 0;
  text-align: center;
}

.limits-sub {
  color: var(--text-on-dark-muted);
  font-size: 16px;
  line-height: 24px;
  max-width: 36ch;
  margin-top: 24px;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  --btn-h: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: var(--btn-h);
  padding: 0 22px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  transition: transform .15s var(--easing), background .2s var(--easing), color .2s var(--easing);
  cursor: pointer;
  border: 0;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--indigo-500);
  color: var(--white);
}
.btn--primary:hover { background: var(--indigo-600); }

.btn--sm { --btn-h: 44px; padding: 0 20px; font-size: 15px; }

.btn--store {
  background: var(--zinc-900);
  color: var(--white);
  padding: 0 20px;
  height: 48px;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
}
.btn--store:hover { background: var(--zinc-700); }

.cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.cta-meta {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 800;
}
.cta-meta-strike {
  color: var(--zinc-400);
  text-decoration: line-through;
  font-weight: 800;
}
.cta-meta-free { color: var(--zinc-900); }
.section--limits .cta-meta-free { color: var(--white); }
/* Figma hero uses regular weight for the meta text */
.cta-meta--regular,
.cta-meta--regular .cta-meta-strike,
.cta-meta--regular .cta-meta-free { font-weight: 400; }

.store-row {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(24,24,27,0.04);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.logo-mark {
  display: block;
  height: 56px;
  width: auto;
  background: transparent;
  border-radius: 0;
  pointer-events: none;
  object-fit: contain;
}
.site-footer .logo-mark { height: 44px; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  background: linear-gradient(90deg, rgba(220,229,255,0.15), rgba(126,122,254,0.15));
  padding: clamp(48px, 8vw, 96px) 0 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 48px;
  min-height: 640px;
  padding-bottom: 80px;
}
.hero-content { max-width: 600px; }
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
  overflow: visible;
}
.hero-sheep {
  position: relative;
  z-index: 1;
  width: clamp(360px, 50vw, 620px);
  height: auto;
  display: block;
  transform: rotate(8deg) translateX(8%);
  transform-origin: center center;
}

/* =========================================================
   Phone mockup
   ========================================================= */
.phone {
  position: relative;
  width: clamp(260px, 32vw, 360px);
  aspect-ratio: 360 / 730;
  filter: drop-shadow(var(--shadow-phone));
  /* bezel, corner radius and rim all scale with the phone's width */
  container-type: inline-size;
}
.phone--hero { z-index: 1; }
.phone-frame {
  position: relative;
  width: 100%;
  height: 100%;
  /* Graphite / titanium iPhone body */
  background: linear-gradient(145deg, #303036 0%, #16161a 42%, #0c0c0f 100%);
  border-radius: 13cqw;
  padding: 2.8cqw;                              /* thin bezel, proportional */
  box-shadow:
    inset 0 0 0 0.4cqw rgba(255,255,255,0.16),  /* bright titanium rim */
    inset 0 0 0 0.9cqw #0a0a0c,                  /* inner bezel wall */
    inset 0 1px 1px rgba(255,255,255,0.12);
}
.phone-frame--dark { background: #0b0b0d; }
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10.5cqw;
  overflow: hidden;
  background: var(--indigo-50);
  display: grid;
  place-items: center;
}
.phone-screen--lavender { background: linear-gradient(180deg, #eef2ff 0%, #e0e7ff 100%); }
.phone-screen--peach { background: linear-gradient(180deg, #fff1e6 0%, #ffe2cc 100%); }
.phone-screen--dim { background: linear-gradient(180deg, #1f1f25 0%, #0f0f12 100%); }
.phone-notch {
  position: absolute;
  top: 2.8%;
  left: 50%;
  transform: translateX(-50%);
  width: 27%;
  height: 5%;
  border-radius: 999px;
  background: #050506;
  z-index: 3;
}
.phone-notch--punch {
  top: 3.4%;
  width: 6%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
}
.phone-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.phone-screen video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.phone-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(closest-side, rgba(0,0,0,0) 35%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.phone-rip {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.4em;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 8px 14px;
  border-radius: 999px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* =========================================================
   Bumpy / cloudy dividers
   The mask renders the section's own color as a bumpy shape
   that overlaps onto the next/previous section.
   ========================================================= */
.bumpy-divider {
  --bump: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath fill='%23000' d='M0 0 L1440 0 L1440 36 C1380 36 1380 72 1300 72 C1230 72 1230 40 1160 40 C1090 40 1090 76 1030 76 C970 76 970 42 900 42 C830 42 830 80 770 80 C710 80 710 40 640 40 C570 40 570 72 510 72 C450 72 450 44 380 44 C310 44 310 80 250 80 C190 80 190 40 120 40 C60 40 60 32 0 32 Z'/%3E%3C/svg%3E");
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 60px;
  z-index: 3;
  mask-image: var(--bump);
  -webkit-mask-image: var(--bump);
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  pointer-events: none;
}
.bumpy-divider--bottom {
  bottom: -40px;
  background-color: var(--white);
}
.bumpy-divider--top {
  top: -40px;
  transform: scaleY(-1);
  background-color: var(--white);
}
.bumpy-divider--on-dark { background-color: var(--bg-dark); }
.bumpy-divider--on-soft { background-color: var(--zinc-100); }

.section { position: relative; }

/* =========================================================
   Section: Every Scroll Affects Sheepy
   ========================================================= */
.section--scrolls {
  background: var(--white);
  padding: clamp(64px, 10vw, 140px) 0 clamp(64px, 9vw, 120px);
}
.section-head { text-align: center; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head .h2 { max-width: 22ch; margin-inline: auto; }
.section--scrolls .section-head .h2 { max-width: none; }

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

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: transparent;
  padding: 0;
}

.card-halo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  isolation: isolate;
}
/* Soft pastel circular halo behind the character */
.card-halo::before {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  z-index: 0;
  filter: blur(2px);
}
.card-halo--lime::before { background: radial-gradient(closest-side, rgba(187,244,81,0.55), rgba(187,244,81,0.18) 60%, transparent 75%); }
.card-halo--amber::before { background: radial-gradient(closest-side, rgba(255,210,48,0.55), rgba(255,210,48,0.18) 60%, transparent 75%); }
.card-halo--red::before { background: radial-gradient(closest-side, rgba(255,162,162,0.65), rgba(255,162,162,0.20) 60%, transparent 75%); }

.card-halo video {
  position: relative;
  z-index: 1;
  width: 92%;
  height: 92%;
  object-fit: contain;
}

.card-caption {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: var(--zinc-400);
  text-align: center;
}

/* =========================================================
   Bar component (Figma node 7:269)
   Pill chip: face icon + progress track.
   Default (sm): w=124, py=4, icon=20, track h=8
   Large (lg):   w=124, p=8,  icon=24, track h=12
   ========================================================= */
.bar {
  --bar-w: 124px;
  --bar-icon: 20px;
  --bar-track-h: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: var(--bar-w);
  padding: 4px 8px 4px 4px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.07);
  overflow: hidden;
}
.bar--lg {
  --bar-icon: 24px;
  --bar-track-h: 12px;
  padding: 8px;
  gap: 4px;
}
.bar--tilt { transform: rotate(0.52deg); }
.bar-icon {
  flex: none;
  width: var(--bar-icon);
  height: var(--bar-icon);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bar-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.bar--happy .bar-icon { color: var(--lime-400); }
.bar--meh .bar-icon { color: var(--amber-400); }
.bar--sad .bar-icon { color: var(--red-400); }

.bar-track {
  flex: 1 0 0;
  min-width: 0;
  height: var(--bar-track-h);
  background: var(--zinc-100);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
  display: block;
}
.bar-fill {
  display: block;
  height: 100%;
  border-radius: 99px;
}
.bar-fill--lime { background: var(--lime-400); }
.bar-fill--amber { background: var(--amber-400); }
.bar-fill--red { background: var(--red-400); }

/* =========================================================
   Section: Even Sheepy Has Limits
   ========================================================= */
.section--limits {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: clamp(80px, 10vw, 160px) 0;
  position: relative;
}
.limits-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  min-height: 640px;
}
.limits-content { max-width: 540px; }
.limits-visual { display: flex; justify-content: center; align-items: center; }
.limits-image {
  width: clamp(260px, 30vw, 360px);
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.45));
}

/* =========================================================
   Section: When you feel good, Sheepy feels good
   ========================================================= */
.section--feelgood {
  background: #f5f6ff;
  padding: clamp(64px, 9vw, 120px) 0 clamp(80px, 10vw, 140px);
  position: relative;
  overflow: hidden;
}
.section--feelgood::before {
  content: "";
  position: absolute;
  left: 50%; top: 90px;
  width: 700px; height: 220px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(97,95,255,0.22), transparent 70%);
  pointer-events: none;
}
/* Horizontal-scroll carousel — cards peek off the edges (Figma 57:292/451/611) */
.feelgood-row {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: 1fr;
  grid-auto-columns: 274px;
  gap: 24px;
  margin-top: clamp(32px, 5vw, 56px);
  position: relative;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline-start: 0;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.feelgood-row::-webkit-scrollbar { display: none; }

.mini-card {
  scroll-snap-align: start;
  width: 274px;
  height: 318px;
  border-radius: 24px;
  background: #eff2fe;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px;
  position: relative;
  isolation: isolate;
}
.mini-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}
/* Soft white halo behind each character */
.mini-media::before {
  content: "";
  position: absolute;
  inset: 14% 8%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,255,255,0.85), rgba(255,255,255,0.45) 60%, transparent 75%);
  z-index: 0;
}
.mini-media video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mini-badge {
  background: var(--white);
  border-radius: 999px;
  padding: 4px 16px;
  font-size: 16px;
  font-weight: 800;
  line-height: 24px;
  color: var(--zinc-700);
  box-shadow: 0 2px 4px -1.6px rgba(0,0,0,0.04);
  white-space: nowrap;
}

/* =========================================================
   Section: Less Screen More Life (preorder)
   ========================================================= */
.section--preorder {
  background: var(--indigo-50);
  padding: clamp(80px, 10vw, 160px) 0 clamp(64px, 8vw, 120px);
  position: relative;
}
.section--preorder .bumpy-divider--top { background-color: var(--indigo-50); }
.preorder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 48px;
}
.preorder-content { max-width: 600px; }
.preorder-visual {
  position: relative;
  width: 100%;
  max-width: 567px;
  aspect-ratio: 567 / 575;
  margin-inline: auto;
}
.preorder-visual .phone {
  position: absolute;
  aspect-ratio: 235 / 504;
}
.preorder-visual .phone--back {
  width: 41.45%;
  left: 28.5%;
  top: 49.5%;
  transform: translate(-50%, -50%) rotate(-8deg);
  filter: drop-shadow(0 30px 50px rgba(24,24,27,0.28));
  z-index: 2;
}
.preorder-visual .phone--front {
  width: 41.45%;
  left: 68.66%;
  top: 49.5%;
  transform: translate(-50%, -50%) rotate(10deg);
  filter: drop-shadow(0 24px 40px rgba(24,24,27,0.18));
  z-index: 1;
}
.badge-arrow {
  position: absolute;
  top: -42px;
  right: -64px;
  display: inline-flex;
  align-items: flex-start;
  gap: 4px;
  color: var(--indigo-500);
  font-weight: 800;
}
.badge-arrow-pill {
  background: var(--indigo-500);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  border-radius: 999px;
  padding: 8px 14px;
  white-space: nowrap;
  transform: rotate(-6deg);
}
.badge-arrow svg { transform: translate(-12px, 18px) rotate(8deg); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--white);
  border-top: 1px solid rgba(24,24,27,0.06);
  padding: 24px 0;
}
.footer-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy {
  color: var(--text-muted);
  font-size: 14px;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  :root { --container-pad: 20px; }
  .hero-grid { gap: 32px; }
  .limits-grid, .preorder-grid { gap: 32px; }
  .cards--three { gap: 16px; }
  .badge-arrow { right: -32px; top: -24px; }
}

@media (max-width: 900px) {
  .h2 { font-size: clamp(28px, 6vw, 42px); }
  .display { font-size: clamp(40px, 9vw, 56px); }
}

@media (max-width: 820px) {
  /* Tablet & down: stack to single column and center each section (Figma tablet/mobile) */
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: 0;
  }
  .hero-content { max-width: none; }
  .hero-tagline, .lede { margin-inline: auto; }
  .cta-row { justify-content: center; }
  .hero-visual { order: 2; min-height: 0; padding: 24px 0 8px; }
  .hero-sheep { width: min(72vw, 380px); transform: rotate(6deg) translateX(0); }

  .limits-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    text-align: center;
  }
  .limits-content { max-width: none; }
  .limits-sub { margin-inline: auto; }
  .limits-visual { order: 2; }
  .limits-image { width: min(72vw, 320px); }

  /* Reaction cards stay 3-across on tablet; narrower gap */
  .cards--three { gap: 16px; }

  .preorder-grid { grid-template-columns: 1fr; text-align: center; }
  .preorder-content { max-width: none; }
  .preorder-visual { order: 2; max-width: 480px; }
  .store-row { justify-content: center; }
  .badge-arrow { right: 8%; top: -24px; }
}

@media (max-width: 520px) {
  .display { font-size: 44px; line-height: 1.05; }
  .display--md { font-size: 38px; }
  .h2 { font-size: 30px; }
  .header-row { height: 64px; }
  .logo-mark { height: 38px; }
  .btn--sm { padding: 0 16px; font-size: 14px; }
  .btn--store { height: 48px; padding: 0 16px; font-size: 14px; gap: 10px; }
  /* CTA: full-width button, centered meta (Figma mobile) */
  .cta-row { flex-direction: column; align-items: center; gap: 14px; }
  .cta-row .btn--primary { width: 100%; }
  .cta-meta { font-size: 14px; justify-content: center; }
  .card-caption { font-size: 13px; }
  .preorder-visual { max-width: 380px; }
  .footer-row { justify-content: center; text-align: center; }

  /* Reaction cards stack one-per-row on phones */
  .cards--three { grid-template-columns: 1fr; gap: 28px; }
  .card-halo { width: min(80vw, 320px); }

  /* Feel-good: two-row horizontal carousel (Figma 57:611) */
  .feelgood-row {
    grid-template-rows: repeat(2, auto);
    grid-auto-columns: minmax(150px, 44vw);
    gap: 12px;
  }
  .mini-card { width: 100%; height: auto; padding: 12px; }
  .mini-badge { font-size: 14px; padding: 4px 12px; }

  /* Store buttons: full-width, stacked (Figma mobile) */
  .store-row { flex-direction: column; gap: 10px; align-items: stretch; }
  .store-row .btn--store { width: 100%; }

  .eyebrow--solo { font-size: 18px; line-height: 24px; }
  .section-head .h2 { max-width: none; }
}

@media (max-width: 420px) {
  :root { --container-pad: 16px; }
  .display { font-size: 38px; }
  .display--md { font-size: 32px; }
  .h2 { font-size: 28px; line-height: 1.15; }
  .h2--light { font-size: 28px; }
  .logo-mark { height: 34px; }
  .header-row { height: 56px; }
  .section-head { margin-bottom: 32px; }
  .section-head .h2,
  .section--scrolls .section-head .h2 { max-width: 14ch; margin-inline: auto; }
}

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

