/* Freezah — landing (Yuka-style structure, Freezah brand) */

:root {
  --bg: #070b14;
  --surface: #0c1220;
  --elevated: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f2f6ff;
  --muted: rgba(242, 246, 255, 0.64);
  --primary: #4da3ff;
  --primary-deep: #2b7fe8;
  --cyan: #4fd6e8;
  --good: #3ecf8e;
  --soon: #ff8f4a;
  --glow: rgba(77, 163, 255, 0.4);
  --font: "Outfit", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: inherit;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 70% 0%, rgba(43, 127, 232, 0.22), transparent 55%),
    radial-gradient(ellipse 40% 35% at 10% 40%, rgba(79, 214, 232, 0.08), transparent 50%),
    var(--bg);
}

.bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}

.bg__orb--1 {
  width: 380px;
  height: 380px;
  top: 12%;
  right: 5%;
  background: rgba(77, 163, 255, 0.45);
}

.bg__orb--2 {
  width: 280px;
  height: 280px;
  bottom: 20%;
  left: -40px;
  background: rgba(79, 214, 232, 0.25);
}

.wrap {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(7, 11, 20, 0.72);
  border-bottom: 1px solid transparent;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.logo__mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 0 20px var(--glow);
  object-fit: cover;
}

.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: center;
  padding: 48px 0 80px;
  min-height: min(78vh, 700px);
}

.hero__brand {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #fff 10%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 {
  font-size: clamp(2.35rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 18px;
  max-width: 11ch;
}

.hero h1 .gradient {
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 38ch;
  margin-bottom: 28px;
}

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

.store-row--center {
  justify-content: center;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 152px;
  height: 48px;
  flex: 0 0 152px;
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.store-badge img {
  width: 152px;
  height: 48px;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 0;
  outline: 0;
  vertical-align: top;
}

.store-badge:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

/* Hero visual: blob + floats + phone */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
}

.hero__blob {
  position: absolute;
  width: min(520px, 100%);
  height: 460px;
  border-radius: 48% 52% 44% 56% / 52% 42% 58% 48%;
  background:
    radial-gradient(circle at 40% 40%, rgba(77, 163, 255, 0.35), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(79, 214, 232, 0.2), transparent 55%),
    rgba(20, 48, 79, 0.55);
  filter: blur(2px);
  z-index: 0;
  animation: blob 12s ease-in-out infinite alternate;
}

@keyframes blob {
  from { border-radius: 48% 52% 44% 56% / 52% 42% 58% 48%; transform: scale(1); }
  to { border-radius: 42% 58% 52% 48% / 46% 54% 46% 54%; transform: scale(1.04); }
}

.hero__float {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  z-index: 2;
  animation: float 5s ease-in-out infinite;
}

.hero__float--salad {
  top: 12%;
  left: 6%;
  animation-delay: 0s;
}

.hero__float--milk {
  bottom: 18%;
  left: 4%;
  animation-delay: -1.5s;
}

.hero__float--pepper {
  top: 22%;
  right: 4%;
  animation-delay: -3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── Realistic phone frame ── */
.phone {
  position: relative;
  z-index: 1;
  width: 290px;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.55));
}

.phone--sm {
  width: 260px;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.5));
}

.phone__frame {
  position: relative;
  background: linear-gradient(165deg, #2a2f3a 0%, #0a0c10 40%, #151820 100%);
  border-radius: 44px;
  padding: 12px;
  border: 2px solid #3a4050;
  box-shadow:
    inset 0 0 0 2px #1a1d26,
    inset 0 0 0 5px #0d0f14,
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.phone__frame::before,
.phone__frame::after {
  content: "";
  position: absolute;
  background: #1a1d26;
  border-radius: 2px;
  z-index: 3;
}

/* Volume / power buttons */
.phone__frame::before {
  width: 3px;
  height: 56px;
  left: -5px;
  top: 110px;
  box-shadow: 0 70px 0 #1a1d26, 0 120px 0 0 #1a1d26;
}

.phone__frame::after {
  width: 3px;
  height: 72px;
  right: -5px;
  top: 140px;
}

.phone__island {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 28px;
  background: #000;
  border-radius: 20px;
  z-index: 4;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.phone__screen {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  background: var(--surface);
  min-height: 560px;
  padding: 42px 12px 16px;
}

.phone--sm .phone__screen {
  min-height: 500px;
  padding-top: 40px;
}

/* ── In-phone UI ── */
.ui-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.68rem;
  color: var(--muted);
  margin-bottom: 10px;
  padding: 0 4px;
}

.ui-status--light {
  color: #121722;
  margin-bottom: 12px;
}

.ui-status--light strong {
  font-size: 0.88rem;
}

.ui-status__icons {
  width: 46px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.15));
}

.ui-search {
  font-size: 0.76rem;
  color: rgba(242, 246, 255, 0.42);
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  margin-bottom: 10px;
}

.ui-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

.ui-stat {
  padding: 10px;
  border-radius: 14px;
  background: var(--elevated);
  border: 1px solid var(--border);
}

.ui-stat__label {
  display: block;
  font-size: 0.6rem;
  color: var(--muted);
  margin-bottom: 2px;
}

.ui-stat strong {
  display: block;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.ui-stat--good strong {
  color: var(--good);
}

.ui-stat__meta {
  font-size: 0.62rem;
  color: var(--muted);
}

.ui-section {
  font-size: 0.78rem;
  font-weight: 700;
  margin: 2px 0 8px;
}

.ui-section span {
  color: var(--muted);
  font-weight: 500;
}

.ui-item {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 9px;
  border-radius: 14px;
  background: var(--elevated);
  border: 1px solid var(--border);
  margin-bottom: 7px;
}

.ui-item img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.ui-item strong {
  display: block;
  font-size: 0.74rem;
  font-weight: 650;
}

.ui-item span {
  display: block;
  font-size: 0.62rem;
  color: var(--muted);
}

.ui-pill {
  font-size: 0.56rem;
  font-weight: 700;
  padding: 5px 7px;
  border-radius: 999px;
  white-space: nowrap;
}

.ui-pill--soon {
  color: #ffd4b8;
  background: rgba(255, 143, 74, 0.18);
  border: 1px solid rgba(255, 143, 74, 0.35);
}

.ui-pill--ok {
  color: #b8e8ff;
  background: rgba(77, 163, 255, 0.14);
  border: 1px solid rgba(77, 163, 255, 0.3);
}

.ui-pill--tag {
  color: #ffd4b8;
  background: rgba(255, 143, 74, 0.16);
  border: 1px solid rgba(255, 143, 74, 0.3);
}

.ui-home {
  padding-bottom: 70px;
}

.ui-tabbar {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 14px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 6px;
  border-radius: 999px;
  background: rgba(12, 18, 32, 0.94);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

.ui-tabbar .is-active {
  color: var(--primary);
}

.ui-fab {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: -20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 6px 18px var(--glow);
}

/* Review (light) screen */
.ui-review {
  background: #f4f6fa;
  color: #121722;
}

.ui-photo {
  border-radius: 14px;
  overflow: hidden;
  background: #e8edf5;
  margin-bottom: 8px;
}

.ui-photo img {
  width: 100%;
  height: 96px;
  object-fit: cover;
  display: block;
  transform: scale(1.2);
}

.ui-hint {
  font-size: 0.66rem;
  color: #6b7385;
  margin-bottom: 10px;
}

.ui-field {
  background: #fff;
  border: 1px solid #dfe5ef;
  border-radius: 12px;
  padding: 9px 11px;
  margin-bottom: 8px;
  text-align: left;
}

.ui-field span {
  display: block;
  font-size: 0.6rem;
  color: #7a8498;
}

.ui-field strong {
  font-size: 0.84rem;
}

.ui-field--row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ui-mini {
  font-size: 0.7rem;
  font-weight: 600;
  margin: 6px 0 8px;
  text-align: left;
}

.ui-locs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}

.ui-locs span {
  font-size: 0.66rem;
  font-weight: 600;
  text-align: center;
  padding: 11px 2px;
  border-radius: 12px;
  border: 1px solid #dfe5ef;
  background: #fff;
  color: #5c6578;
}

.ui-locs .is-on {
  border-color: var(--primary);
  color: var(--primary-deep);
  background: rgba(77, 163, 255, 0.1);
}

.ui-cta {
  text-align: center;
  font-size: 0.86rem;
  font-weight: 700;
  color: #fff;
  padding: 13px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
}

/* ── Three pillars (Yuka-style) ── */
.pillars {
  padding: 40px 0 88px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.pillars__title {
  font-size: clamp(1.7rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
  line-height: 1.15;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 960px;
  margin: 0 auto;
}

.pillar img {
  width: 120px;
  height: 120px;
  margin-bottom: 18px;
}

.pillar h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.pillar p {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 28ch;
  margin: 0 auto;
}

.pillars__more {
  margin-top: 40px;
}

.pillars__more a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
}

.pillars__more a:hover {
  text-decoration: underline;
}

/* ── Split learn-more ── */
.split {
  padding: 40px 0 96px;
}

.split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.section-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.split__copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 16px;
}

.split__copy > p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 42ch;
  margin-bottom: 20px;
}

.split__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.split__list li {
  font-weight: 600;
  font-size: 0.95rem;
  padding-left: 22px;
  position: relative;
}

.split__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
}

.split__visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.split__visual::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 163, 255, 0.22), transparent 65%);
  top: 10%;
}

/* ── Mission page (editorial / full-bleed) ── */
.page-mission {
  background: var(--bg);
}

.page-mission .bg {
  display: none;
}

.nav__links a[aria-current="page"] {
  color: var(--text);
}

.nav--over {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(7, 11, 20, 0.28);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav--over .nav__links a {
  color: rgba(242, 246, 255, 0.78);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.nav--over .nav__links a:hover,
.nav--over .nav__links a[aria-current="page"] {
  color: #fff;
}

.nav--over .logo {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

/* Full-bleed hero — one locked viewport, copy over the image */
.mh-hero {
  position: relative;
  isolation: isolate;
  height: 100svh;
  height: 100dvh;
  min-height: 560px;
  max-height: 100svh;
  max-height: 100dvh;
  overflow: hidden;
  color: #fff;
  background-color: #070b14;
  background-image: var(--mh-bg, url("../assets/mission-hero.png"));
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}

.mh-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  pointer-events: none;
  animation: mh-ken 22s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes mh-ken {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.mh-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      100deg,
      rgba(7, 11, 20, 0.4) 0%,
      rgba(7, 11, 20, 0.2) 26%,
      rgba(7, 11, 20, 0.05) 46%,
      transparent 58%
    );
  pointer-events: none;
}

.mh-hero__content {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  align-items: flex-start;
  padding: clamp(80px, 10vh, 104px) 0 40px;
  box-sizing: border-box;
  animation: mh-rise 0.9s ease-out both;
}

/* Index-example only: sit copy + badges just above the milk glass */
.mh-hero--example .mh-hero__content {
  padding: clamp(180px, 30vh, 270px) 0 40px;
}

.mh-hero__inner {
  width: min(640px, calc(100% - 48px));
  margin-left: max(24px, calc((100% - 1120px) / 2));
  margin-right: auto;
  align-self: flex-start;
}

@keyframes mh-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mh-hero__brand {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 3.8vw, 2.45rem);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.mh-hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin-bottom: 12px;
  max-width: 14ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.4);
}

.mh-hero__lead {
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  color: rgba(242, 246, 255, 0.92);
  max-width: 38ch;
  line-height: 1.5;
  margin-bottom: 20px;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* Image + short copy moments */
.mh-moment {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  min-height: min(70vh, 620px);
  background: var(--bg);
}

.mh-moment--flip {
  grid-template-columns: 0.85fr 1.15fr;
}

.mh-moment--flip .mh-moment__visual {
  order: 2;
}

.mh-moment--flip .mh-moment__copy {
  order: 1;
}

.mh-moment__visual {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.mh-moment__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mh-moment__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px clamp(24px, 5vw, 64px);
  margin: 0;
  width: auto;
  max-width: none;
}

.mh-moment__copy h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 16px;
  max-width: 16ch;
}

.mh-moment__copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 36ch;
}

/* Pull quote band */
.mh-quote {
  padding: 88px 0;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(43, 127, 232, 0.16), transparent 70%),
    var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mh-quote blockquote {
  margin: 0 auto;
  max-width: 22ch;
}

.mh-quote p {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  background: linear-gradient(135deg, #fff 20%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mh-join {
  border-top: none;
}

.mh-join p {
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
}

@media (prefers-reduced-motion: reduce) {
  .mh-hero__media,
  .mh-hero__content {
    animation: none;
  }
}

/* ── Closing ── */
.closing {
  text-align: center;
  padding: 56px 0 72px;
  border-top: 1px solid var(--border);
}

.closing h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.closing p {
  color: var(--muted);
  margin-bottom: 24px;
}

/* ── Footer ── */
.footer {
  padding: 32px 0 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer p {
  font-size: 0.88rem;
  color: var(--muted);
}

.footer a {
  color: var(--primary);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer__brand {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.footer__links {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.footer__links a {
  color: var(--muted);
  font-weight: 500;
}

.footer__links a:hover {
  color: var(--primary);
}

.footer__copy {
  margin-top: 12px;
  font-size: 0.75rem !important;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: 0;
    gap: 32px;
    padding-bottom: 56px;
  }

  .hero h1,
  .hero__lead {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .store-row {
    justify-content: center;
  }

  .hero__visual {
    min-height: 520px;
  }

  .pillars__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .split__copy > p {
    margin-left: auto;
    margin-right: auto;
  }

  .split__list {
    align-items: center;
  }

  .split__list li {
    text-align: left;
  }

  .mh-hero {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .mh-hero__content {
    align-items: flex-start;
    padding: clamp(80px, 10vh, 104px) 0 36px;
  }

  .mh-hero--example .mh-hero__content {
    padding: clamp(130px, 20vh, 190px) 0 36px;
  }

  .mh-hero__inner {
    width: calc(100% - 48px);
    margin-left: 24px;
    margin-right: 24px;
  }

  .mh-hero__scrim {
    background:
      linear-gradient(
        to bottom,
        rgba(7, 11, 20, 0.3) 0%,
        rgba(7, 11, 20, 0.14) 48%,
        rgba(7, 11, 20, 0.08) 100%
      );
  }

  .mh-moment,
  .mh-moment--flip {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .mh-moment--flip .mh-moment__visual,
  .mh-moment--flip .mh-moment__copy {
    order: unset;
  }

  .mh-moment__visual {
    min-height: 280px;
    aspect-ratio: 16 / 10;
  }

  .mh-moment__copy {
    padding: 40px 24px 56px;
  }

  .mh-moment__copy h2,
  .mh-moment__copy p {
    max-width: none;
  }

  .mh-quote {
    padding: 64px 0;
  }

  .mh-quote blockquote {
    max-width: 18ch;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: calc(100% - 32px);
  }

  .nav__links {
    gap: 14px;
  }

  .nav__links a:nth-child(2) {
    display: none;
  }

  .phone {
    width: 260px;
  }

  .hero__float {
    width: 52px;
    height: 52px;
  }

  .hero__float--milk {
    display: none;
  }

  .mh-hero__content {
    padding: clamp(72px, 9vh, 92px) 0 28px;
  }

  .mh-hero--example .mh-hero__content {
    padding: clamp(104px, 15vh, 150px) 0 28px;
  }

  .mh-hero__inner {
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-right: 16px;
  }

  .mh-hero h1 {
    max-width: none;
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

  .mh-hero__lead {
    max-width: none;
    font-size: 0.98rem;
    margin-bottom: 18px;
  }

  .mh-hero .store-row {
    gap: 10px;
  }

  .mh-moment__copy {
    padding: 32px 0 48px;
  }
}

/* Index example preview note */
.preview-note {
  font-size: 0.8rem !important;
  color: rgba(242, 246, 255, 0.45) !important;
  margin-top: 10px;
}
