/* ============================================================
   Navegantes.ai · Landing de venda de sites
   Base: design Farm Spray · adaptado à marca (navy + lima) · tema escuro
   Sora (display) + Manrope (texto) · acento único lima
   ============================================================ */

:root {
  /* Marca */
  --bg:        #0C192C;   /* navy profundo */
  --bg-2:      #0F2138;   /* navy alternativo (seções) */
  --bg-deep:   #081320;   /* navy mais escuro (footer/cta) */
  --surface:   #122A47;   /* cards */
  --surface-2: #18335420; /* superfícies internas (chips/inline) sobre card */
  --surface-2-solid: #15304F;
  --ink:       #EBFFFE;   /* texto principal (ice) */
  --ink-soft:  rgba(194, 210, 223, .74);   /* texto secundário (mist) */
  --ink-faint: rgba(194, 210, 223, .50);
  --brand:     #D7F15F;   /* lima — cor primária/CTA */
  --brand-ink: #0C192C;   /* texto sobre lima */
  --lime:      #D7F15F;
  --lime-soft: rgba(215, 241, 95, .15);
  --line:      rgba(194, 210, 223, .16);
  --line-soft: rgba(194, 210, 223, .09);

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, .25);
  --shadow-md: 0 18px 44px -18px rgba(0, 0, 0, .55);
  --shadow-lg: 0 40px 90px -34px rgba(0, 0, 0, .7);
  --shadow-lime: 0 18px 40px -16px rgba(215, 241, 95, .45);

  --r-card: 22px;
  --r-pill: 999px;

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  --maxw: 1200px;
  color-scheme: dark;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.06; letter-spacing: -.02em; font-weight: 700; }
::selection { background: var(--lime); color: var(--brand-ink); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(72px, 11vw, 140px); }
.section__head { max-width: 660px; margin-bottom: clamp(40px, 6vw, 72px); }
.section__head h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
.section__lead { margin-top: 18px; color: var(--ink-soft); font-size: 1.1rem; }

.eyebrow {
  font-family: var(--font-body); font-weight: 700; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--lime); margin-bottom: 16px;
}
.mark { position: relative; white-space: nowrap; color: var(--ink); }
.mark::after {
  content: ""; position: absolute; left: -.04em; right: -.04em; bottom: .08em;
  height: .34em; background: var(--lime); z-index: -1; border-radius: 4px;
  transform: scaleX(0); transform-origin: left; animation: markIn .8s .6s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes markIn { to { transform: scaleX(1); } }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  padding: 13px 24px; border-radius: var(--r-pill); border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap; line-height: 1;
  transition: transform .18s cubic-bezier(.16,1,.3,1), box-shadow .25s, background .2s, color .2s, border-color .2s;
}
.btn i { font-size: 1.15em; }
.btn--lg { padding: 16px 30px; font-size: 1.05rem; }
.btn--block { width: 100%; justify-content: center; margin-top: 26px; }

.btn--primary { background: var(--lime); color: var(--brand-ink); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lime); filter: brightness(1.04); }
.btn--primary:active { transform: translateY(0); }
.btn--lime { background: var(--lime); color: var(--brand-ink); }
.btn--lime:hover { transform: translateY(-2px); box-shadow: var(--shadow-lime); filter: brightness(1.04); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-2px); }
.btn--ghost-dark { background: rgba(255,255,255,.06); color: var(--ink); border-color: rgba(255,255,255,.26); }
.btn--ghost-dark:hover { background: rgba(255,255,255,.13); transform: translateY(-2px); }

/* ============================================================ NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .3s, box-shadow .3s, backdrop-filter .3s; }
.nav__inner { max-width: var(--maxw); margin-inline: auto; height: 72px; padding-inline: 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav.is-scrolled { background: rgba(8,19,32,.82); backdrop-filter: saturate(160%) blur(14px); box-shadow: 0 1px 0 var(--line-soft); }
.nav__logo { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.nav__logo .brand-mark { width: 26px; height: 26px; color: var(--lime); }
.nav__logo .dot-ai { color: var(--lime); }
.nav__links { display: flex; gap: 30px; }
.nav__links a { font-size: .95rem; font-weight: 600; color: var(--ink-soft); position: relative; transition: color .2s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--lime); transition: width .25s; }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__right { display: flex; align-items: center; gap: 16px; }
.lang { display: flex; gap: 2px; padding: 3px; border: 1px solid var(--line); border-radius: var(--r-pill); }
.lang a { font-size: .72rem; font-weight: 700; letter-spacing: .04em; color: var(--ink-soft); padding: 4px 10px; border-radius: var(--r-pill); transition: .2s; }
.lang a[aria-current="true"] { background: var(--lime); color: var(--brand-ink); }

/* ============================================================ HERO */
.hero { position: relative; padding-top: 124px; padding-bottom: clamp(60px, 8vw, 110px); overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 70% at 85% 0%, rgba(215,241,95,.14), transparent 60%),
    radial-gradient(55% 60% at 0% 100%, rgba(194,210,223,.06), transparent 60%);
}
.hero__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(194,210,223,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(194,210,223,.045) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse at 70% 10%, black 20%, transparent 70%);
  mask-image: radial-gradient(ellipse at 70% 10%, black 20%, transparent 70%);
}
.hero__inner { position: relative; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.hero__title { font-size: clamp(2.4rem, 5vw, 3.7rem); margin: 6px 0 22px; }
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 34ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__facts { display: flex; flex-wrap: wrap; gap: 8px 26px; margin-top: 38px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero__facts li { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: .95rem; color: var(--ink); }
.hero__facts i { color: var(--lime); font-size: 1.25rem; }
.hero__visual { position: relative; min-height: 420px; }
.hero__badge { position: absolute; top: -20px; right: -6px; z-index: 3; background: var(--surface); border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.hero__badge strong { display: block; font-family: var(--font-display); color: var(--lime); font-size: 1rem; }
.hero__badge span { font-size: .8rem; color: var(--ink-soft); }
.hero__chip { position: absolute; bottom: -22px; left: -14px; z-index: 3; display: flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 11px 18px; box-shadow: var(--shadow-md); font-weight: 600; font-size: .9rem; }
.hero__chip i { color: var(--lime); font-size: 1.25rem; }

/* Browser frame */
.browser { background: var(--surface); border-radius: 14px; overflow: hidden; border: 1px solid var(--line); }
.browser__bar { display: flex; align-items: center; gap: 7px; padding: 10px 14px; background: var(--bg-deep); border-bottom: 1px solid var(--line-soft); }
.browser__dot { width: 10px; height: 10px; border-radius: 50%; background: #2c405c; }
.browser__url { margin-left: 12px; font-size: .76rem; color: var(--ink-soft); background: rgba(255,255,255,.05); padding: 3px 12px; border-radius: var(--r-pill); font-family: var(--font-body); font-weight: 600; }
.browser img { width: 100%; display: block; }
.hero__visual .browser { box-shadow: var(--shadow-lg); }

/* ============================================================ DESAFÍO */
.desafio__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.desafio__media { position: relative; }
.desafio__media .browser { box-shadow: var(--shadow-md); }
.desafio__since { position: absolute; bottom: 16px; left: 16px; background: rgba(8,19,32,.82); backdrop-filter: blur(6px); color: var(--ink); font-weight: 600; font-size: .85rem; padding: 9px 16px; border-radius: var(--r-pill); border: 1px solid var(--line); }
.desafio__text h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: 22px; }
.desafio__text p { color: var(--ink-soft); margin-bottom: 16px; max-width: 52ch; }
.checklist { margin-top: 26px; display: grid; gap: 12px; }
.checklist li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.checklist i { color: var(--lime); font-size: 1.4rem; flex-shrink: 0; }

/* ============================================================ BENTO (incluye) */
.incluye { background: var(--bg-2); }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 18px; }
.bento__cell { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-card); padding: 28px; transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s, border-color .25s; }
.bento__cell:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line); }
.bento__cell h3 { font-size: 1.3rem; margin-bottom: 8px; }
.bento__cell p { color: var(--ink-soft); font-size: .98rem; }
.bento__icon { width: 50px; height: 50px; border-radius: 14px; background: var(--surface-2-solid); color: var(--lime); display: grid; place-items: center; font-size: 1.6rem; margin-bottom: 18px; }
.bento__cell--feature { grid-column: span 2; grid-row: span 2; display: flex; flex-direction: column; }
.bento__cell--feature h3 { font-size: 1.8rem; }
.bento__cell--feature p { font-size: 1.08rem; max-width: 46ch; }
.bento__inline { display: grid; gap: 12px; margin-top: 24px; }
.bento__inline-item { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: var(--surface-2-solid); border-radius: 14px; }
.bento__inline-item > i { font-size: 1.45rem; color: var(--lime); flex-shrink: 0; width: 44px; height: 44px; display: grid; place-items: center; background: var(--bg-deep); border-radius: 11px; }
.bento__inline-item strong { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--ink); }
.bento__inline-item span { font-size: .88rem; color: var(--ink-soft); }
.bento__art { margin-top: auto; padding-top: 26px; }
.bento__art-label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 13px; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { background: var(--surface-2-solid); border: 1px solid var(--line-soft); padding: 8px 16px; border-radius: var(--r-pill); font-weight: 600; font-size: .85rem; color: var(--lime); }
.bento__cell--photo { grid-row: span 2; padding: 0; overflow: hidden; position: relative; min-height: 240px; }
.bento__cell--photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.bento__photo-label { position: absolute; left: 16px; bottom: 16px; right: 16px; background: rgba(8,19,32,.85); backdrop-filter: blur(6px); color: var(--ink); font-weight: 600; font-size: .9rem; padding: 10px 16px; border-radius: 12px; border: 1px solid var(--line-soft); }
.bento__cell--lime { background: var(--lime-soft); border-color: transparent; }
.bento__cell--lime .bento__icon { background: var(--lime); color: var(--brand-ink); }
.incluye__note { margin-top: 28px; display: flex; align-items: center; gap: 12px; color: var(--ink-soft); font-weight: 600; }
.incluye__note i { color: var(--lime); font-size: 1.4rem; }

/* ============================================================ BANDA */
.band { position: relative; min-height: 50vh; display: grid; place-items: center; text-align: center; overflow: hidden; color: var(--ink); }
.band__bg { position: absolute; inset: -12% 0; will-change: transform; background:
    radial-gradient(60% 80% at 50% 0%, rgba(215,241,95,.16), transparent 60%),
    linear-gradient(160deg, var(--bg-2), var(--bg-deep)); }
.band__bg::after { content:""; position:absolute; inset:0; background-image: linear-gradient(rgba(194,210,223,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(194,210,223,.05) 1px, transparent 1px); background-size: 54px 54px; -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 10%, transparent 70%); mask-image: radial-gradient(ellipse at 50% 50%, black 10%, transparent 70%); }
.band__inner { position: relative; padding-block: 90px; }
.band__title { font-size: clamp(2.2rem, 6vw, 4.2rem); }
.band__title .count, .band__title .accent { color: var(--lime); }
.band__sub { margin-top: 16px; font-size: 1.15rem; color: var(--ink-soft); }

/* ============================================================ TRABAJOS */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.card { display: block; transition: transform .3s cubic-bezier(.16,1,.3,1); }
.card .browser { box-shadow: var(--shadow-md); transition: box-shadow .3s; }
.card:hover { transform: translateY(-6px); }
.card:hover .browser { box-shadow: var(--shadow-lg); }
.card__meta { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--ink); }
.card__meta i { color: var(--lime); transition: transform .25s; }
.card:hover .card__meta i { transform: translate(3px, -3px); }

/* ============================================================ PROCESO */
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; position: relative; }
.timeline::before { content: ""; position: absolute; top: 9px; left: 4%; right: 4%; height: 2px; background: var(--line); }
.timeline__step { position: relative; padding-top: 36px; }
.timeline__step::before { content: ""; position: absolute; top: 2px; left: 0; width: 18px; height: 18px; border-radius: 50%; background: var(--surface); border: 3px solid var(--lime); }
.timeline__step--final::before { background: var(--lime); }
.timeline__day { font-family: var(--font-display); font-weight: 700; color: var(--lime); font-size: .9rem; }
.timeline__step h3 { font-size: 1.15rem; margin: 8px 0 6px; }
.timeline__step p { color: var(--ink-soft); font-size: .92rem; }

/* ============================================================ INVERSIÓN */
.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.price { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-card); padding: 38px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.price .btn--block { margin-top: auto; }
.price__foot { margin-top: auto; padding-top: 26px; display: flex; align-items: center; gap: 11px; color: var(--ink-soft); font-size: .92rem; font-weight: 600; }
.price__foot i { font-size: 1.3rem; color: var(--lime); }
.price--main { background: var(--bg-deep); border-color: rgba(215,241,95,.35); box-shadow: var(--shadow-lg); position: relative; }
.price--main::before { content:""; position:absolute; inset:0; border-radius: var(--r-card); background: radial-gradient(60% 50% at 50% 0%, rgba(215,241,95,.1), transparent 60%); pointer-events:none; }
.price__head { padding-bottom: 24px; border-bottom: 1px solid var(--line); margin-bottom: 24px; position: relative; }
.price__tag { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--ink-soft); }
.price--main .price__tag { color: var(--lime); }
.price__amount { display: flex; align-items: baseline; gap: 8px; margin: 14px 0 6px; }
.price__value { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 3.4vw, 2.4rem); line-height: 1.05; letter-spacing: -.02em; color: var(--ink); }
.price__note { font-size: .92rem; color: var(--ink-soft); }
.price__list { display: grid; gap: 13px; position: relative; }
.price__list li { display: flex; align-items: center; gap: 12px; font-size: .98rem; }
.price__list i { font-size: 1rem; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: var(--lime-soft); color: var(--lime); }

/* ============================================================ POR QUÉ */
.porque__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 5vw, 70px); }
.porque__text { position: sticky; top: 110px; align-self: start; }
.porque__text h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 18px; }
.porque__text p { color: var(--ink-soft); }
.porque__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.porque__seal { display: flex; align-items: flex-start; gap: 12px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); color: var(--ink-soft); font-weight: 600; font-size: .95rem; max-width: 36ch; }
.porque__seal i { font-size: 1.6rem; color: var(--lime); flex-shrink: 0; }
.porque__list { display: grid; gap: 14px; }
.porque__list li { display: flex; gap: 18px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--r-card); padding: 24px 26px; transition: transform .25s, box-shadow .25s, border-color .25s; }
.porque__list li:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); border-color: var(--line); }
.porque__list i { font-size: 1.7rem; color: var(--lime); flex-shrink: 0; width: 50px; height: 50px; border-radius: 14px; background: var(--surface-2-solid); display: grid; place-items: center; }
.porque__list h3 { font-size: 1.2rem; margin-bottom: 5px; }
.porque__list p { color: var(--ink-soft); font-size: .96rem; }

/* ============================================================ CTA */
.cta { background: var(--bg-deep); color: var(--ink); text-align: center; padding-block: clamp(80px, 11vw, 140px); position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 70% at 50% 0%, rgba(215,241,95,.16), transparent 60%); pointer-events: none; }
.cta__inner { position: relative; max-width: 760px; }
.cta h2 { font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 18px; }
.cta h2 + p { color: var(--ink-soft); font-size: 1.15rem; max-width: 50ch; margin-inline: auto; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 40px; }
.cta__fine { margin-top: 34px; font-size: .88rem; color: var(--ink-faint); }

/* ============================================================ FOOTER */
.footer { background: var(--bg-deep); color: var(--ink-soft); padding-top: 64px; border-top: 1px solid var(--line-soft); }
.footer__inner { max-width: var(--maxw); margin-inline: auto; padding: 0 24px 40px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 32px; border-bottom: 1px solid var(--line-soft); }
.footer__brand .nav__logo { margin-bottom: 16px; }
.footer__brand p { max-width: 40ch; color: var(--ink-soft); font-size: .95rem; }
.footer__contact { display: grid; gap: 12px; align-content: start; }
.footer__contact a { display: flex; align-items: center; gap: 10px; font-weight: 600; transition: color .2s; }
.footer__contact a:hover { color: var(--lime); }
.footer__contact i { color: var(--lime); font-size: 1.25rem; }
.footer__base { max-width: var(--maxw); margin-inline: auto; padding: 22px 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .85rem; color: var(--ink-faint); }

/* WhatsApp flotante */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; font-size: 2rem; box-shadow: 0 12px 30px -8px rgba(37,211,102,.7); transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }

/* ============================================================ REVEAL
   Regra de ouro: o conteúdo é SEMPRE visível. A única animação é a
   entrada do hero (acima da dobra), via CSS puro. Nada depende de JS. */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero__copy .reveal { opacity: 0; animation: fadeUp .8s cubic-bezier(.16,1,.3,1) forwards; }
.hero__copy .reveal:nth-child(1) { animation-delay: .05s; }
.hero__copy .reveal:nth-child(2) { animation-delay: .15s; }
.hero__copy .reveal:nth-child(3) { animation-delay: .25s; }
.hero__copy .reveal:nth-child(4) { animation-delay: .35s; }
.hero__copy .reveal:nth-child(5) { animation-delay: .45s; }
.hero__visual { opacity: 0; animation: fadeUp 1s .35s cubic-bezier(.16,1,.3,1) forwards; }
@media (prefers-reduced-motion: reduce) {
  .hero__copy .reveal, .hero__visual { opacity: 1; animation: none; }
}

/* ============================================================ RESPONSIVE */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 520px; margin-top: 44px; }
  .desafio__grid { grid-template-columns: 1fr; }
  .desafio__text { order: -1; }
  .porque__grid { grid-template-columns: 1fr; }
  .porque__text { position: static; }
  .pricing { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline::before { display: none; }
  .nav__links { display: none; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav__cta { display: none; }
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
  .bento__cell--feature { grid-column: span 2; grid-row: auto; }
  .bento__cell--photo { grid-column: span 2; grid-row: auto; aspect-ratio: 16/10; min-height: 0; }
  .footer__base { flex-direction: column; }
  .hero__chip { left: 0; }
}
@media (max-width: 480px) {
  .bento { grid-template-columns: 1fr; }
  .bento__cell--feature, .bento__cell--photo { grid-column: auto; }
  .timeline { grid-template-columns: 1fr; }
  .hero__badge { right: 0; }
  .gallery { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .mark::after { transform: scaleX(1); }
}
