/* ============================================================
   Bento — Advantages Landing Page
   ============================================================ */

:root {
  --coral: #FD504B;
  --coral-2: #FC5C4A;
  --coral-3: #FC6750;
  --red: #FD4C4C;
  --orange: #FA8844;
  --ink: #38383F;
  --ink-soft: #5A5A63;
  --gray-bg: #EDEDED;
  --card-bg: #F5F5F6;
  --white: #FFFFFF;
  --grad-brand: linear-gradient(90deg, #FD4C4C 0%, #FA8844 100%);
  --radius-lg: clamp(24px, 3.3vw, 56px);
  --radius-card: clamp(20px, 2.2vw, 34px);
  --container: 1440px;
  --gutter: clamp(20px, 4vw, 64px);
  --header-h: 84px;
  --font: 'Quicksand', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; color-scheme: light only; }
@supports (overflow-x: clip) {
  html, body { overflow-x: clip; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Lenis smooth scroll */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font);
  font-weight: 500;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container {
  width: min(var(--container), 100% - 2 * var(--gutter));
  margin-inline: auto;
}

h1, h2, h3 { line-height: 1.02; letter-spacing: -0.01em; }

/* line-split reveal helpers */
.rl { display: block; }
.aio-title .light, .aio-title strong { display: inline-block; }
.ink { color: var(--ink); }
.light { font-weight: 500; }

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85em 1.9em;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn-gradient {
  background: var(--grad-brand);
  color: var(--white);
}
.btn-gradient:hover { box-shadow: 0 10px 24px rgba(253, 76, 76, 0.35); }

.btn-white {
  background: var(--white);
  color: var(--coral);
}
.btn-white:hover { box-shadow: 0 10px 24px rgba(56, 56, 63, 0.18); }

.btn-outline {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 2px var(--white);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); }

.btn-wide { min-width: min(310px, 100%); justify-content: space-between; }
.btn-arrow { display: inline-flex; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(56, 56, 63, 0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
  transition: height 0.3s ease;
}
.site-header.scrolled .header-inner { height: 68px; }

.logo img { width: clamp(76px, 6.2vw, 94px); height: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3.4vw, 56px);
}
.main-nav a:not(.btn) {
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.main-nav a:not(.btn):hover,
.main-nav a.active:not(.btn) { color: var(--coral); }
.nav-cta { display: none; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: none;
  border: 0;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: clamp(8px, 1.5vw, 24px) 0 clamp(40px, 5vw, 90px);
  overflow: hidden;
}

.hero-stage {
  position: relative;
  width: min(1560px, 100% - 2 * clamp(12px, 2vw, 40px));
  margin-inline: auto;
  aspect-ratio: 1802.7 / 801.3;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-icon {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  will-change: transform;
  filter: drop-shadow(0 14px 22px rgba(120, 30, 10, 0.18));
}
/* widths relative to stage */
.icon-sushi     { width: 8.8%; }
.icon-burger    { width: 9.3%; }
.icon-package   { width: 9.8%; }
.icon-pharmacy  { width: 9%; }
.icon-spaghetti { width: 13.5%; }
.icon-cart      { width: 13%; }

.hero-canvas-mobile { display: none; }

.hero-copy {
  position: absolute;
  left: 8.2%;
  top: 46.6%; /* vertical center of the box (y 88.7-658.7 in the 801.3 viewBox) */
  transform: translateY(-50%);
  max-width: 34%;
  color: var(--white);
  z-index: 3;
}
.hero-copy h1 {
  font-size: clamp(1.5rem, 3.6vw, 4rem);
  font-weight: 700;
}
.hero-sub {
  margin-top: clamp(8px, 1.3vw, 20px);
  font-size: clamp(0.82rem, 1.15vw, 1.32rem);
  font-weight: 400;
  line-height: 1.35;
}
.hero-sub strong { font-weight: 700; }

.hero-note {
  margin-top: clamp(8px, 1vw, 16px);
  font-size: clamp(0.66rem, 0.82vw, 0.9rem);
  font-weight: 400;
  line-height: 1.45;
  max-width: 46ch;
  opacity: 0.95;
}
.hero-note strong { font-weight: 700; }

.hero-ctas {
  margin-top: clamp(12px, 1.7vw, 26px);
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 30px);
  flex-wrap: nowrap;
}
.hero-ctas .btn-white { font-size: clamp(0.8rem, 1.05vw, 1.2rem); flex: 0 0 auto; }
.hero-microcopy {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--white);
  font-size: clamp(0.7rem, 0.85vw, 0.95rem);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.benny {
  position: absolute;
  right: 9.5%;
  bottom: 6%;
  width: 40%;
  height: auto;
  z-index: 2;
  will-change: transform;
  filter: drop-shadow(0 30px 44px rgba(120, 30, 10, 0.22));
}

/* ============================================================
   PICKUP OR DELIVERY
   ============================================================ */
.pickup-delivery {
  padding: clamp(40px, 6vw, 110px) 0 clamp(60px, 8vw, 140px);
  position: relative;
}

.section-head { text-align: center; }
.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 3.1rem);
  font-weight: 700;
}
.section-sub {
  margin-top: 8px;
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  font-weight: 500;
  color: var(--ink-soft);
}

.pd-cards {
  margin-top: clamp(36px, 4.5vw, 80px);
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3vw, 48px);
}

.pd-card {
  position: relative;
  display: flex;
  align-items: center;
  width: min(720px, 92%);
  background: linear-gradient(100deg, #F2F2F3 0%, #FAFAFB 55%, #FFFFFF 100%);
  border-radius: var(--radius-card);
  padding: clamp(24px, 3vw, 48px) clamp(24px, 3.4vw, 56px);
  min-height: clamp(180px, 18vw, 260px);
  will-change: transform;
}
/* border glow that follows the cursor */
.pd-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%),
    rgba(184, 184, 192, 0.75), rgba(200, 200, 206, 0.35) 45%, transparent 72%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.pd-card:hover::after { opacity: 1; }
.pd-pickup { margin-left: 19%; }
.pd-delivery {
  margin-left: 17%;
  background: linear-gradient(260deg, #F2F2F3 0%, #FAFAFB 55%, #FFFFFF 100%);
}

.pd-media {
  position: absolute;
  top: 50%;
  width: clamp(160px, 17.5vw, 250px);
  aspect-ratio: 1;
  pointer-events: none;
  z-index: 1;
}
.pd-pickup .pd-media { left: 0; transform: translate(-58%, -54%); }
.pd-delivery .pd-media { right: 0; transform: translate(58%, -46%); }

.pd-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #FD4C4C 0%, #FA8844 100%);
}
.pd-delivery .pd-circle { background: linear-gradient(225deg, #FD4C4C 0%, #FA8844 100%); }

.pd-icon {
  position: absolute;
  inset: 8%;
  width: 84%;
  filter: drop-shadow(0 16px 26px rgba(120, 30, 10, 0.28));
}

.pd-content { width: 100%; }
.pd-pickup .pd-content { padding-left: clamp(90px, 9vw, 150px); }
.pd-delivery .pd-content { padding-right: clamp(110px, 11vw, 170px); text-align: right; }

.pd-card h3 {
  color: var(--coral);
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
  font-weight: 700;
  margin-bottom: clamp(10px, 1.2vw, 18px);
}
.pd-card p {
  font-weight: 500;
  color: var(--ink-soft);
  max-width: 46ch;
  line-height: 1.5;
  font-size: clamp(0.95rem, 1.15vw, 1.2rem);
}
.pd-delivery p { margin-left: auto; }
.pd-card strong { color: var(--ink); font-weight: 700; }

/* ============================================================
   STATEMENT
   ============================================================ */
.statement {
  position: relative;
  padding: clamp(70px, 10vw, 180px) 0 clamp(80px, 11vw, 190px);
  background-image: url('../assets/texture-waves.png');
  background-size: 1200px auto;
  background-repeat: repeat;
  background-position: 0 top;
  overflow: hidden;
  animation: waveDrift 70s linear infinite;
}
@keyframes waveDrift {
  to { background-position: 1200px top; }
}

.statement-inner {
  position: relative;
  text-align: center;
  z-index: 2;
}
.statement-headline {
  color: var(--coral);
  font-size: clamp(2.4rem, 5.6vw, 5.4rem);
  font-weight: 700;
  line-height: 1.12;
}
.squiggle {
  width: clamp(180px, 22vw, 330px);
  margin: clamp(22px, 3vw, 48px) auto 0;
  display: block;
}

.scribble {
  position: absolute;
  top: 50%;
  height: min(110%, 900px);
  z-index: 1;
  pointer-events: none;
}
.scribble-left { left: 0; transform: translateY(-62%); }
.scribble-right { right: 0; transform: translateY(-44%); }

/* ============================================================
   CORAL WRAP
   ============================================================ */
.coral-wrap {
  background: linear-gradient(180deg, #FD504B 0%, #FC5C4A 45%, #FC6750 100%);
  color: var(--white);
  position: relative;
}
.dome {
  display: block;
  width: 100%;
  height: clamp(30px, 6.2vw, 130px);
  margin-top: calc(-1 * clamp(30px, 6.2vw, 130px) + 1px);
  position: relative;
  z-index: 1;
}

/* ---------- Benefits ---------- */
.benefits { padding: clamp(48px, 6vw, 110px) 0 clamp(60px, 7vw, 130px); }

.benefits-title {
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
  line-height: 1.08;
}
.benefits-title .light { font-weight: 500; }
.benefits-sub {
  margin-top: clamp(14px, 1.8vw, 28px);
  font-size: clamp(1.05rem, 1.5vw, 1.55rem);
  font-weight: 500;
  opacity: 0.95;
}

.benefits-grid {
  margin-top: clamp(40px, 5vw, 90px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 3.4vw, 60px);
}

.benefit { text-align: center; }
.benefit-inner {
  transition: transform 0.35s ease;
  will-change: transform;
}
.benefit-inner:hover { transform: scale(1.1); }
.benefit img {
  height: clamp(126px, 12.6vw, 204px);
  width: auto;
  margin: 0 auto clamp(16px, 2vw, 30px);
  will-change: transform;
}

.benefit h3 {
  font-size: clamp(1.05rem, 1.35vw, 1.4rem);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.benefit .num {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7em;
  height: 1.7em;
  border-radius: 50%;
  background: var(--white);
  color: var(--coral);
  font-size: 0.78em;
  font-weight: 700;
}
.benefit p {
  margin-top: clamp(10px, 1.2vw, 16px);
  font-size: clamp(0.88rem, 1.05vw, 1.08rem);
  line-height: 1.5;
  font-weight: 500;
  opacity: 0.92;
  max-width: 30ch;
  margin-inline: auto;
}

/* ---------- All in one ---------- */
.all-in-one {
  position: relative;
  padding: clamp(60px, 7vw, 130px) 0 clamp(120px, 13vw, 230px);
  overflow: hidden;
}
.aio-wave {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
}
.aio-wave-top { top: 0; height: 55%; }
.aio-wave-bottom { bottom: -10%; height: 60%; }

.aio-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 90px);
}

.aio-media { position: relative; z-index: 2; }
.aio-media img {
  width: min(100%, 620px);
  margin-inline: auto;
  will-change: transform;
  filter: drop-shadow(0 40px 60px rgba(120, 20, 5, 0.25));
}

.aio-content { position: relative; z-index: 3; max-width: 520px; }
.aio-title {
  font-size: clamp(2.3rem, 4.6vw, 4.5rem);
  line-height: 1.06;
}
.aio-title .light { font-weight: 500; }
.aio-copy {
  margin-top: clamp(18px, 2.4vw, 36px);
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  line-height: 1.55;
  font-weight: 500;
  max-width: 40ch;
}
.aio-copy strong { font-weight: 700; }
.aio-more {
  margin-top: clamp(10px, 1.4vw, 20px);
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  font-weight: 600;
  opacity: 0.92;
}
.aio-content .btn { margin-top: clamp(22px, 3vw, 44px); }

/* ---------- Marquee ---------- */
.marquee {
  position: relative;
  z-index: 4;
  margin-top: clamp(-140px, -9vw, -60px);
  margin-bottom: clamp(-40px, -2vw, -10px);
  pointer-events: none;
}
.marquee-svg { display: block; width: 100%; height: auto; }
.marquee-text {
  font-family: var(--font);
  font-weight: 700;
  font-size: 46px;
  letter-spacing: 0.14em;
  fill: var(--coral);
}

/* ---------- Convenience ---------- */
.convenience { padding: clamp(60px, 7vw, 120px) 0 clamp(70px, 8vw, 150px); }

.conv-title strong { font-size: 1em; }
.conv-title {
  font-size: clamp(2.5rem, 5.6vw, 5.4rem);
  line-height: 1.12;
}
.conv-title .light {
  font-weight: 500;
  font-size: 0.78em;
}

.conv-inner {
  margin-top: clamp(36px, 4.5vw, 80px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(32px, 5vw, 90px);
}

.conv-media img {
  width: min(100%, 560px);
  will-change: transform;
  filter: drop-shadow(0 30px 50px rgba(120, 20, 5, 0.22));
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.6vw, 22px);
}
.checklist li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  font-weight: 500;
}
.checklist .check { font-size: 0.85em; }

.conv-ctas {
  margin-top: clamp(26px, 3.2vw, 48px);
  display: flex;
  gap: clamp(14px, 1.6vw, 24px);
  flex-wrap: wrap;
}

/* ============================================================
   DOWNLOAD
   ============================================================ */
.download { background: var(--gray-bg); padding: clamp(60px, 8vw, 140px) 0; }

.dl-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 80px);
  flex-wrap: wrap;
}
.dl-copy h2 {
  font-size: clamp(1.9rem, 3.1vw, 3rem);
  font-weight: 700;
}
.dl-copy p {
  margin-top: clamp(16px, 2vw, 30px);
  font-size: clamp(1.1rem, 1.6vw, 1.65rem);
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.4;
}
.dl-cta { margin-top: clamp(20px, 2.6vw, 38px); }

.dl-badges { display: flex; flex-direction: column; gap: 16px; }
.dl-badges a {
  display: block;
  transition: transform 0.25s ease;
}
.dl-badges a:hover { transform: translateY(-3px); }
.dl-badges img { width: clamp(170px, 14vw, 205px); height: auto; }
.dl-note {
  margin-top: 6px;
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.45;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: clamp(36px, 4.5vw, 70px) 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 60px);
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 36px);
}
.footer-logo {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(70px, 6.5vw, 96px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--coral);
}
.footer-logo img { width: 62%; }
.footer-copy {
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 500;
  opacity: 0.85;
  line-height: 1.5;
}
.footer-links {
  display: flex;
  gap: clamp(28px, 4vw, 72px);
}
.footer-links a {
  text-decoration: none;
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.footer-links a:hover { opacity: 1; text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Notebook / tablet landscape */
@media (max-width: 1199px) {
  .marquee-text { font-size: 52px; }
}

/* Tablet */
@media (max-width: 1023px) {
  .main-nav a:not(.btn) { display: none; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); row-gap: clamp(40px, 6vw, 64px); }
  .benefit p { max-width: 38ch; }
  .marquee-text { font-size: 60px; }
}

/* Hero switches to the mobile composition (1234x2048 reference) */
@media (max-width: 899px) {
  /* room below the route so the traveling icons never get clipped
     by the hero's overflow before the next section */
  .hero { padding-bottom: clamp(40px, 12vw, 64px); }
  .pickup-delivery { padding-top: clamp(16px, 3vw, 40px); }
  .hero-stage {
    width: min(100%, 480px);
    margin-inline: auto;
    aspect-ratio: auto; /* height follows the content: card + composition */
    display: flex;
    flex-direction: column;
  }
  .hero-canvas { display: none; }
  .hero-copy { order: 1; }
  .hero-canvas-mobile { order: 2; }

  /* the real rabisco asset in normal flow below the card; its top loop
     overlaps the card bottom (in front of it) */
  .hero-canvas-mobile {
    display: block;
    position: relative;
    width: 106%;
    margin-left: -3%;
    margin-top: -3vw;
    height: auto;
    aspect-ratio: 1.7;
    z-index: 3;
    pointer-events: none;
  }

  /* gradient card sized by its own content, with breathing room */
  .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    height: auto;
    max-width: none;
    margin: clamp(6px, 2vw, 14px) 7% 0;
    background: linear-gradient(90deg, #FD504C 0%, #FC6A48 52%, #FA8445 100%);
    border-radius: clamp(24px, 8vw, 42px);
    padding: clamp(28px, 8.5vw, 44px) 9% clamp(30px, 9vw, 46px) 10.3%;
    text-align: left;
    transform: none;
    z-index: 2;
  }
  .hero-copy h1 {
    font-size: clamp(28px, 8.3vw, 42px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.05;
  }
  .hero-sub {
    font-size: clamp(14px, 3.9vw, 20px);
    margin-top: clamp(10px, 3vw, 20px);
    line-height: 1.2;
  }
  .hero-note {
    font-size: clamp(10.5px, 2.9vw, 14px);
    margin-top: clamp(10px, 3vw, 18px);
    line-height: 1.4;
    max-width: none;
  }
  .hero-ctas {
    margin-top: clamp(14px, 4.8vw, 26px);
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(10px, 3.6vw, 20px);
  }
  .hero-ctas .btn-white { order: 1; font-size: clamp(14px, 3.7vw, 18px); padding: 0.9em 2.3em; }
  .hero-microcopy { order: 2; font-size: clamp(10.5px, 2.6vw, 13px); }

  .benny {
    right: auto;
    left: 15%;
    bottom: clamp(4px, 1.5vw, 12px);
    width: 70%;
    z-index: 5;
  }
  /* icons ride the scribble but pass behind the mascot */
  .hero-icons { z-index: 4; }

  /* all six items travel the mobile route */
  .icon-sushi     { width: 11.5%; }
  .icon-package   { width: 12.5%; }
  .icon-pharmacy  { width: 13%; }
  .icon-burger    { width: 15.2%; }
  .icon-cart      { width: 20.5%; }
  .icon-spaghetti { width: 14.3%; }
}

/* Mobile */
@media (max-width: 767px) {
  /* mobile: only the centered logo */
  .header-cta { display: none; }
  .menu-toggle { display: none; }
  .main-nav { display: none; }
  .header-inner { justify-content: center; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    padding: 24px var(--gutter) 32px;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(56, 56, 63, 0.12);
    transform: translateY(-130%);
    transition: transform 0.35s ease;
    z-index: 49;
  }
  .site-header.menu-open .main-nav { transform: translateY(0); }
  .main-nav a:not(.btn) { display: block; font-size: 1.1rem; padding: 6px 0; }
  .nav-cta { display: inline-flex; }

  .pd-cards { gap: 125px; margin-top: 135px; }
  .pd-card {
    width: 100%;
    margin-left: 0 !important;
    flex-direction: column;
    padding-top: 110px;
    text-align: center;
  }
  .pd-media {
    top: 0;
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -55%) !important;
    width: 170px;
  }
  .pd-content { padding: 0 !important; text-align: center !important; }
  .pd-card p { margin-inline: auto; }

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

  .aio-inner { grid-template-columns: 1fr; }
  /* "Your favorites." / "All in one app." em duas linhas no mobile */
  .aio-title .br-desktop { display: none; }
  .aio-content { max-width: none; text-align: center; margin-inline: auto; }
  .aio-copy { margin-inline: auto; }
  .aio-media img { width: min(78vw, 420px); }
  .marquee { margin-top: clamp(-70px, -12vw, -30px); }
  .marquee-text { font-size: 72px; }

  .conv-inner { grid-template-columns: 1fr; }
  .conv-media img { margin-inline: auto; width: min(80vw, 440px); }
  .conv-ctas { justify-content: center; }
  .checklist { max-width: 34rem; margin-inline: auto; }

  .dl-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; align-items: flex-start; }

  .scribble { display: none; }
}

/* Mobile compact */
@media (max-width: 390px) {
  .hero-copy h1 { font-size: 2rem; }
  .marquee-text { font-size: 84px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-icon { display: none; }
}
