:root {
  --bg: #020704;
  --bg2: #07130e;
  --ink: #f7fff9;
  --muted: #a7b8ae;
  --muted2: #71847b;
  --green: #00bf63;
  --greenDeep: #05613b;
  --gold: #ffd23f;
  --gold2: #b9871f;
  --blue: #1746d2;
  --cyan: #53b8ff;
  --glass: rgba(5, 18, 13, .72);
  --glass2: rgba(255, 255, 255, .055);
  --line: rgba(255,255,255,.13);
  --line2: rgba(255,210,63,.22);
  --shadow: 0 30px 90px rgba(0,0,0,.55);
  --max: 1180px;
  --radius: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 18%, rgba(0,191,99,.24), transparent 27%),
    radial-gradient(circle at 22% 80%, rgba(23,70,210,.25), transparent 32%),
    radial-gradient(circle at 54% 50%, rgba(255,210,63,.08), transparent 29%),
    linear-gradient(135deg, #020704 0%, #06120e 45%, #010403 100%);
}
.site-bg::before {
  content: "";
  position: absolute;
  inset: -24%;
  background:
    linear-gradient(112deg, transparent 0 38%, rgba(0,191,99,.08) 38.2% 41%, transparent 41.2% 100%),
    linear-gradient(112deg, transparent 0 46%, rgba(255,210,63,.10) 46.2% 47.8%, transparent 48% 100%),
    linear-gradient(112deg, transparent 0 55%, rgba(23,70,210,.09) 55.2% 58%, transparent 58.2% 100%);
  transform: rotate(-7deg);
}
.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .33;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.20) 1px, transparent 0),
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px, 88px 88px, 88px 88px;
  mask-image: radial-gradient(circle at 50% 20%, black 0 48%, transparent 80%);
}
.orb { position: absolute; border-radius: 999px; filter: blur(60px); opacity: .42; animation: float 14s ease-in-out infinite; }
.orb-green { width: 36vw; height: 36vw; background: var(--green); right: -13vw; top: 16vh; }
.orb-gold { width: 26vw; height: 26vw; background: var(--gold); left: 8vw; top: -10vh; animation-delay: -4s; opacity: .22; }
.orb-blue { width: 38vw; height: 38vw; background: var(--blue); left: -15vw; bottom: -18vh; animation-delay: -7s; }
.flag-line { position: absolute; height: 1px; width: 62vw; opacity: .38; background: linear-gradient(90deg, transparent, var(--green), var(--gold), var(--blue), transparent); }
.flag-line-a { top: 18vh; right: -16vw; transform: rotate(-22deg); }
.flag-line-b { bottom: 20vh; left: -18vw; transform: rotate(19deg); }
@keyframes float { 50% { transform: translate3d(18px, -26px, 0) scale(1.05); } }

.section-pad { width: min(var(--max), calc(100% - 44px)); margin: 0 auto; padding: 104px 0; }

/* NAV: more editorial, less template */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  width: 100%;
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
  border-radius: 0;
  background: rgba(2, 7, 4, .54);
  backdrop-filter: blur(22px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px max(22px, calc((100vw - var(--max)) / 2));
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.nav::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--blue));
}
.nav.scrolled { background: rgba(2, 7, 4, .86); }
.brand { display: flex; align-items: center; justify-self: start; }
.brand img { width: 176px; height: auto; filter: drop-shadow(0 0 22px rgba(0,191,99,.26)); }
.nav nav { display: flex; justify-content: center; align-items: center; gap: 30px; color: var(--muted); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; font-weight: 750; }
.nav nav a { position: relative; padding: 10px 0; transition: color .2s ease; }
.nav nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; transform: scaleX(0); transform-origin: left; background: var(--gold); transition: transform .22s ease; }
.nav nav a:hover { color: var(--ink); }
.nav nav a:hover::after { transform: scaleX(1); }
.nav-cta {
  justify-self: end;
  padding: 12px 18px;
  border: 1px solid rgba(255,210,63,.45);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,210,63,.98), rgba(0,191,99,.88));
  color: #04100a;
  font-weight: 920;
  box-shadow: 0 15px 34px rgba(0,191,99,.16);
}

/* HERO: poster-like redesign */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 58px;
  min-height: calc(100svh - 72px);
  padding-top: 92px;
  isolation: isolate;
}
.hero-bg-word {
  position: absolute;
  inset: 6% auto auto -6%;
  z-index: -1;
  font-weight: 1000;
  font-size: clamp(120px, 24vw, 330px);
  letter-spacing: -.12em;
  line-height: .72;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.07);
  opacity: .88;
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 9% 43% 9% -8%;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(145deg, rgba(0,191,99,.13), transparent 35%),
    linear-gradient(0deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  clip-path: polygon(0 0, 87% 0, 100% 52%, 86% 100%, 0 100%);
  box-shadow: inset 0 0 90px rgba(0,191,99,.07);
}
.hero-copy { position: relative; z-index: 2; padding: 34px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
  font-weight: 950;
}
.eyebrow::before { content: ""; width: 48px; height: 2px; border-radius: 99px; background: linear-gradient(90deg, var(--green), var(--gold), var(--blue)); box-shadow: 0 0 20px rgba(0,191,99,.45); }
.hero h1 {
  margin: 0;
  font-size: clamp(80px, 12vw, 172px);
  line-height: .77;
  letter-spacing: -.095em;
  text-transform: uppercase;
  max-width: 900px;
}
.hero h1 span {
  display: block;
  color: #fff;
  text-shadow: 0 0 52px rgba(0,191,99,.18), 0 0 110px rgba(23,70,210,.14);
}
.hero h1::after {
  content: "Sigarette Digitali";
  display: block;
  margin-top: 16px;
  font-size: clamp(20px, 3vw, 42px);
  letter-spacing: .20em;
  line-height: 1;
  color: var(--gold);
  -webkit-text-stroke: 0;
  text-shadow: none;
}
.hero h1 { font-size: clamp(80px, 13vw, 176px); }
.hero h1:not(:has(span)) { color: #fff; }
.hero h1 span + text { display: none; }
.hero-lead {
  margin: 32px 0 0;
  max-width: 705px;
  color: #e6f8ef;
  font-size: clamp(21px, 2.3vw, 31px);
  line-height: 1.23;
  letter-spacing: -.025em;
}
.hero-note {
  position: relative;
  max-width: 540px;
  margin: 28px 0 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  border-left: 3px solid var(--gold);
}
.hero-actions, .age-actions, .cta-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  cursor: pointer;
  font-weight: 950;
  letter-spacing: -.01em;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { border-color: rgba(255,210,63,.48); background: linear-gradient(135deg, #ffe27a 0%, #00bf63 100%); color: #031009; box-shadow: 0 20px 44px rgba(0,191,99,.20), inset 0 1px 0 rgba(255,255,255,.45); }
.btn-ghost, .btn-muted { background: rgba(255,255,255,.052); color: var(--ink); border-color: rgba(255,255,255,.16); }
.btn-ghost:hover, .btn-muted:hover { border-color: rgba(255,210,63,.42); background: rgba(255,210,63,.08); }

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  max-width: 690px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.035);
}
.trust-row div { padding: 20px 18px; border-right: 1px solid rgba(255,255,255,.10); }
.trust-row div:last-child { border-right: 0; }
.trust-row strong { display: block; color: var(--gold); font-size: 34px; letter-spacing: -.06em; }
.trust-row span { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; line-height: 1.35; }

.hero-visual { min-width: 0; }
.halo-card {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 52px;
  background:
    radial-gradient(circle at 50% 48%, rgba(0,191,99,.23), transparent 29%),
    radial-gradient(circle at 74% 22%, rgba(255,210,63,.17), transparent 19%),
    linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.025));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.10);
}
.halo-card::before {
  content: "";
  position: absolute;
  width: 73%;
  aspect-ratio: 1;
  border: 2px solid rgba(255,210,63,.55);
  transform: rotate(45deg);
  box-shadow: 0 0 0 22px rgba(0,191,99,.055), 0 0 90px rgba(0,191,99,.22);
}
.halo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 36%, rgba(0,191,99,.12) 36% 39%, transparent 39% 100%),
    linear-gradient(120deg, transparent 0 49%, rgba(255,210,63,.15) 49% 50.5%, transparent 50.5% 100%),
    linear-gradient(120deg, transparent 0 61%, rgba(23,70,210,.13) 61% 64%, transparent 64% 100%);
  mix-blend-mode: screen;
  opacity: .85;
}
.brazil-diamond {
  position: absolute;
  width: 370px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(0,191,99,.88), rgba(4,97,59,.45));
  transform: rotate(45deg);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: inset 0 0 70px rgba(255,210,63,.12), 0 25px 80px rgba(0,0,0,.32);
  opacity: .45;
}
.country-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,210,63,.32);
  border-radius: 999px;
  background: rgba(2,7,4,.62);
  backdrop-filter: blur(16px);
  color: #fff7cd;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.country-tag span { width: 10px; height: 10px; border-radius: 99px; background: var(--green); box-shadow: 0 0 18px var(--green); }
.gorilla-hero { position: relative; z-index: 2; width: min(86%, 560px); height: auto; filter: drop-shadow(0 40px 62px rgba(0,0,0,.55)) drop-shadow(0 0 34px rgba(0,191,99,.18)); transform: translateY(18px); }
.orbit { position: absolute; z-index: 1; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; transform: rotate(-18deg); }
.orbit-one { width: 76%; height: 37%; border-color: rgba(0,191,99,.28); }
.orbit-two { width: 89%; height: 45%; border-color: rgba(255,210,63,.24); transform: rotate(18deg); }
.mini-panel {
  position: absolute;
  z-index: 4;
  max-width: 260px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(2, 7, 4, .68);
  backdrop-filter: blur(18px);
  padding: 14px 16px;
  box-shadow: 0 18px 38px rgba(0,0,0,.32);
}
.mini-panel b { display: block; font-size: 16px; color: var(--gold); }
.mini-panel span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; line-height: 1.35; }
.panel-one { left: 28px; bottom: 92px; }
.panel-two { right: 28px; bottom: 36px; }

/* QUICK STRIP */
.quick-local { padding-top: 18px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.quick-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  padding: 20px;
  min-height: 112px;
}
.quick-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: linear-gradient(var(--green), var(--gold), var(--blue)); }
.quick-card span { display: block; color: #eafff4; font-weight: 850; letter-spacing: -.02em; line-height: 1.3; padding-right: 20px; }
.quick-card a { display: inline-flex; margin-top: 18px; color: var(--gold); font-weight: 900; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }

/* MANIFESTO */
.manifesto { display: grid; grid-template-columns: 1.06fr .94fr; gap: 22px; align-items: stretch; }
.manifesto-card, .manifesto-quote, .cta-strip, .age-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: 0 22px 70px rgba(0,0,0,.25);
}
.manifesto-card { padding: clamp(32px, 5vw, 58px); }
.manifesto-card::after { content: ""; position: absolute; right: -80px; bottom: -100px; width: 260px; height: 260px; border-radius: 999px; background: rgba(0,191,99,.16); filter: blur(18px); }
.manifesto-card h2, .section-head h2, .cta-strip h2 { margin: 0; font-size: clamp(38px, 5.4vw, 72px); line-height: .94; letter-spacing: -.064em; }
.manifesto-card p:not(.eyebrow), .section-head p:not(.eyebrow), .cta-strip p:not(.eyebrow) { color: var(--muted); font-size: 17px; line-height: 1.75; max-width: 760px; }
.manifesto-quote { display: grid; align-content: end; padding: clamp(32px, 5vw, 56px); background: radial-gradient(circle at 80% 15%, rgba(255,210,63,.14), transparent 34%), linear-gradient(145deg, rgba(0,191,99,.12), rgba(255,255,255,.025)); }
.manifesto-quote span { position: absolute; top: 16px; left: 32px; color: rgba(255,210,63,.25); font-size: 180px; line-height: .8; font-family: Georgia, serif; }
.manifesto-quote p { position: relative; margin: 0; color: var(--ink); font-size: clamp(28px, 3.4vw, 46px); line-height: 1.06; letter-spacing: -.05em; font-weight: 950; }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.section-head.compact-head { display: block; max-width: 820px; }
.section-head > p:not(.eyebrow) { margin: 0; max-width: 440px; }

/* WHY */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 30px; }
.why-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.072), rgba(255,255,255,.024));
  padding: 24px;
}
.why-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(0,191,99,.16), transparent 35%); opacity: .9; }
.why-card:nth-child(2)::before { background: radial-gradient(circle at 50% 0%, rgba(255,210,63,.14), transparent 35%); }
.why-card:nth-child(3)::before { background: radial-gradient(circle at 50% 0%, rgba(23,70,210,.17), transparent 35%); }
.why-card span { position: relative; display: block; color: transparent; -webkit-text-stroke: 1px rgba(255,210,63,.42); font-size: 78px; line-height: .9; font-weight: 1000; letter-spacing: -.09em; }
.why-card h3 { position: relative; margin: 56px 0 0; font-size: 22px; line-height: 1.05; letter-spacing: -.04em; }
.why-card p { position: relative; margin: 14px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

/* STORES */
.stores { padding-top: 72px; }
.store-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.store-card {
  --accent: var(--green);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 34px;
  min-height: 575px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.026)),
    radial-gradient(circle at 60% 0%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 45%);
  box-shadow: 0 28px 76px rgba(0,0,0,.30);
}
.tone-green { --accent: var(--green); }
.tone-gold { --accent: var(--gold); }
.tone-blue { --accent: var(--cyan); }
.store-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: linear-gradient(90deg, var(--accent), transparent 75%);
}
.store-card::after {
  content: "";
  position: absolute;
  right: -84px;
  top: 74px;
  width: 230px;
  height: 230px;
  border: 1px solid color-mix(in srgb, var(--accent) 42%, transparent);
  transform: rotate(45deg);
  opacity: .38;
}
.store-top { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.store-number { color: transparent; -webkit-text-stroke: 1px color-mix(in srgb, var(--accent) 70%, white 0%); font-size: 70px; line-height: .8; font-weight: 1000; letter-spacing: -.09em; }
.status { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; padding: 8px 10px; background: rgba(0,0,0,.22); color: var(--muted); font-size: 12px; font-weight: 850; }
.status::before { content: ""; width: 8px; height: 8px; border-radius: 99px; background: var(--muted2); }
.status.open { color: #dffff0; border-color: rgba(0,191,99,.32); }
.status.open::before { background: var(--green); box-shadow: 0 0 16px var(--green); }
.status.closed { color: #ffe8e8; border-color: rgba(255,130,130,.28); }
.status.closed::before { background: #ff6969; }
.store-card h3 { position: relative; z-index: 2; margin: 42px 0 0; font-size: clamp(29px, 3vw, 43px); line-height: .96; letter-spacing: -.06em; }
.store-area { position: relative; z-index: 2; margin: 12px 0 0; color: var(--accent); font-weight: 950; letter-spacing: .02em; }
.address { position: relative; z-index: 2; margin: 18px 0 0; color: #dbece2; font-size: 16px; line-height: 1.5; }
.hours { position: relative; z-index: 2; list-style: none; margin: 28px 0 0; padding: 0; border-top: 1px solid rgba(255,255,255,.10); }
.hours li { display: flex; justify-content: space-between; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.10); padding: 13px 0; color: var(--muted); font-size: 14px; }
.hours strong { color: #fff; }
.store-actions { position: relative; z-index: 2; display: grid; gap: 10px; margin-top: 28px; }
.store-actions a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 49px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 0 15px;
  background: rgba(255,255,255,.045);
  color: #f2fff7;
  font-weight: 900;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.store-actions a::after { content: "→"; color: var(--accent); }
.store-actions a:hover { transform: translateX(4px); border-color: color-mix(in srgb, var(--accent) 42%, rgba(255,255,255,.15)); background: color-mix(in srgb, var(--accent) 12%, transparent); }
.store-actions .action-whatsapp { background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 82%, #000 18%), rgba(255,255,255,.05)); color: #031009; border-color: transparent; }
.tone-blue .store-actions .action-whatsapp { color: #fff; }
.tone-gold .store-actions .action-whatsapp { color: #120d02; }

/* CTA */
.cta-strip { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; align-items: center; padding: clamp(32px, 5vw, 56px); }
.cta-strip::before { content: ""; position: absolute; inset: 0; background: linear-gradient(112deg, transparent 0 52%, rgba(0,191,99,.12) 52% 57%, rgba(255,210,63,.12) 57% 59%, rgba(23,70,210,.10) 59% 65%, transparent 65%); }
.cta-strip > * { position: relative; }
.cta-actions-stores { margin-top: 0; justify-content: flex-end; }
.cta-actions-stores .btn-primary:nth-child(2) { background: linear-gradient(135deg, #ffe27a, #dba518); }
.cta-actions-stores .btn-primary:nth-child(3) { background: linear-gradient(135deg, #53b8ff, #1746d2); color: #fff; }

/* FOOTER + AGE */
.footer { width: min(var(--max), calc(100% - 44px)); margin: 0 auto 100px; padding: 30px 0 0; color: var(--muted); display: flex; justify-content: space-between; align-items: center; gap: 18px; border-top: 1px solid rgba(255,255,255,.12); }
.footer div { display: flex; align-items: center; gap: 12px; color: #fff; }
.footer img { filter: drop-shadow(0 0 12px rgba(0,191,99,.28)); }
.footer p { margin: 0; }

.age-gate { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 22px; background: rgba(0,0,0,.78); backdrop-filter: blur(18px); }
.age-gate.hidden { display: none; }
.age-card { width: min(920px, 100%); display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; padding: 28px; }
.age-card h2 { margin: 0; font-size: clamp(28px, 4vw, 50px); letter-spacing: -.06em; line-height: .96; }
.age-card p { color: var(--muted); margin: 8px 0 0; line-height: 1.55; }
.age-mark { filter: drop-shadow(0 0 18px rgba(0,191,99,.34)); }
.age-actions { margin: 0; justify-content: flex-end; }

.mobile-dock { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@supports not selector(:has(*)) {
  .hero h1::after { content: ""; }
}

@media (max-width: 1050px) {
  .nav { grid-template-columns: auto 1fr auto; padding-inline: 22px; }
  .nav nav { gap: 16px; font-size: 12px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 64px; }
  .hero::before { inset: 4% -6% 46% -6%; clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%); }
  .halo-card { min-height: 560px; }
  .manifesto, .cta-strip { grid-template-columns: 1fr; }
  .why-grid, .store-grid { grid-template-columns: repeat(2, 1fr); }
  .store-grid .store-card:last-child { grid-column: span 2; }
  .quick-local { grid-template-columns: 1fr; }
  .cta-actions-stores { justify-content: flex-start; }
}

@media (max-width: 760px) {
  .section-pad { width: min(100% - 28px, var(--max)); padding: 74px 0; }
  .nav { position: sticky; grid-template-columns: 1fr auto; padding: 12px 14px; }
  .brand img { width: 148px; }
  .nav nav { display: none; }
  .nav-cta { font-size: 12px; padding: 10px 12px; border-radius: 12px; }
  .hero { gap: 34px; padding-top: 44px; }
  .hero-bg-word { left: -14px; top: 2%; font-size: 112px; }
  .hero h1 { font-size: clamp(66px, 23vw, 118px); }
  .hero h1::after { font-size: clamp(16px, 5vw, 26px); letter-spacing: .13em; }
  .hero-lead { font-size: 21px; }
  .hero-actions { align-items: stretch; }
  .btn { width: 100%; min-height: 54px; }
  .trust-row { grid-template-columns: 1fr; }
  .trust-row div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.10); }
  .trust-row div:last-child { border-bottom: 0; }
  .halo-card { min-height: 430px; border-radius: 32px; }
  .brazil-diamond { width: 240px; }
  .country-tag { top: 16px; left: 16px; font-size: 10px; max-width: calc(100% - 32px); }
  .mini-panel { display: none; }
  .manifesto-card h2, .section-head h2, .cta-strip h2 { font-size: clamp(34px, 12vw, 52px); }
  .manifesto-quote p { font-size: 30px; }
  .section-head { display: block; }
  .section-head p:not(.eyebrow) { margin-top: 16px; }
  .why-grid, .store-grid { grid-template-columns: 1fr; }
  .store-grid .store-card:last-child { grid-column: auto; }
  .store-card { min-height: auto; border-radius: 28px; padding: 24px; }
  .store-number { font-size: 58px; }
  .store-card h3 { margin-top: 34px; }
  .age-card { grid-template-columns: 1fr; text-align: left; }
  .age-actions { justify-content: stretch; }
  .footer { margin-bottom: 92px; flex-direction: column; align-items: flex-start; }
  .mobile-dock {
    position: fixed;
    z-index: 90;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
    background: rgba(2,7,4,.78);
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 45px rgba(0,0,0,.36);
  }
  .mobile-dock a { min-height: 44px; display: grid; place-items: center; border-radius: 14px; background: rgba(255,255,255,.055); color: #fff; font-size: 13px; font-weight: 900; }
  .mobile-dock a:nth-child(2) { background: linear-gradient(135deg, var(--gold), var(--green)); color: #04100a; }
}
