/* ============================================================
   ELEVATESTUDIOS — ink black · violet · cream
   ============================================================ */

:root {
  --ink: #0A0A0C;
  --ink-2: #0E0E13;
  --ink-3: #14141B;
  --cream: #F4EFE4;
  --cream-dim: rgba(244, 239, 228, 0.58);
  --cream-faint: rgba(244, 239, 228, 0.14);
  --violet: #8B5CF6;
  --violet-soft: rgba(139, 92, 246, 0.35);
  --violet-faint: rgba(139, 92, 246, 0.12);
  --display: "Anton", Impact, sans-serif;
  --body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "Cascadia Mono", monospace;
  --nav-h: 72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--violet); color: var(--ink); }

::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #26262f; border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--violet); }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
em { font-style: normal; color: var(--violet); }

/* ---------- kicker / labels ---------- */
.kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--violet);
}
.kicker::before { content: "— "; color: var(--cream-dim); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 3.4vw, 44px);
  background: linear-gradient(to bottom, rgba(10, 10, 12, 0.82), rgba(10, 10, 12, 0));
}

.nav__logo {
  font-family: var(--display);
  font-size: 1.02rem;
  letter-spacing: 0.14em;
  color: var(--cream);
}
.nav__logo span {
  font-family: var(--body);
  font-weight: 200;
  letter-spacing: 0.42em;
  margin-left: 0.45em;
  color: var(--cream-dim);
}

.nav__right { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 30px); }

.lang { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 0.78rem; }
.lang__sep { color: var(--cream-faint); }
.lang__btn {
  letter-spacing: 0.18em;
  color: var(--cream-dim);
  padding: 4px 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.lang__btn:hover { color: var(--cream); }
.lang__btn.is-active { color: var(--violet); border-color: var(--violet); }

.nav__cta {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid var(--cream-faint);
  border-radius: 999px;
  padding: 9px 18px;
  transition: border-color 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.nav__cta:hover {
  border-color: var(--violet);
  color: var(--violet);
  box-shadow: 0 0 24px -6px var(--violet-soft);
  transform: translateY(-1px);
}

/* ============================================================
   ALTITUDE INDICATOR
   ============================================================ */
.altitude {
  position: fixed;
  right: clamp(14px, 2vw, 26px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  height: 52vh;
  pointer-events: none;
}

.altitude__label {
  writing-mode: vertical-rl;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--cream-dim);
  font-variant-numeric: tabular-nums;
}
.altitude__label #altValue { color: var(--violet); }

.altitude__track {
  position: relative;
  flex: 1;
  width: 1px;
  background: var(--cream-faint);
}
.altitude__fill {
  position: absolute;
  bottom: 0; left: 0;
  width: 1px; height: 0%;
  background: linear-gradient(to top, var(--violet-faint), var(--violet));
}
.altitude__dot {
  position: absolute;
  bottom: 0%; left: 50%;
  width: 7px; height: 7px;
  transform: translate(-50%, 50%);
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 12px 2px var(--violet-soft);
}

/* ============================================================
   HERO ASCENT
   ============================================================ */
.ascent { height: 460vh; position: relative; }

.ascent__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--ink);
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.ascent__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 50%, transparent 40%, rgba(6, 6, 9, 0.55) 100%),
    linear-gradient(to top, rgba(10, 10, 12, 0.75), transparent 34%);
}

.hero-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 6vw;
  z-index: 3;
}

.hero-title { display: flex; flex-direction: column; align-items: center; }

.hero-elevate {
  font-family: var(--display);
  font-size: clamp(4.2rem, 16.5vw, 15rem);
  line-height: 0.92;
  letter-spacing: 0.015em;
  color: var(--cream);
  display: inline-block;
  white-space: nowrap;
  text-shadow: 0 10px 60px rgba(6, 6, 9, 0.6);
}
.hero-elevate .ltr { display: inline-block; will-change: transform; }

.hero-studios {
  display: block;
  margin-top: clamp(10px, 1.6vw, 22px);
  font-family: var(--body);
  font-weight: 200;
  font-size: clamp(0.95rem, 2.9vw, 2rem);
  letter-spacing: 0.58em;
  margin-right: -0.58em; /* optically recenter tracked-out text */
  color: var(--cream);
}

.hero-sub {
  margin-top: clamp(22px, 3.4vh, 40px);
  font-size: clamp(0.92rem, 1.45vw, 1.12rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--cream-dim);
  max-width: 46ch;
}

.scrollcue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.scrollcue__line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--violet), transparent);
  animation: cueDrop 2.1s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cueDrop {
  0% { transform: scaleY(0); opacity: 0; }
  35% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(18px); opacity: 0; }
}

/* ============================================================
   PILLARS — pinned reveals
   ============================================================ */
.pillars {
  height: 340vh;
  position: relative;
  background:
    radial-gradient(52% 44% at 82% 60%, var(--violet-faint), transparent 70%),
    linear-gradient(var(--ink), var(--ink-2) 60%, var(--ink));
}

.pillars__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillars__kicker {
  position: absolute;
  top: calc(var(--nav-h) + 3vh);
  left: clamp(18px, 6vw, 80px);
}

.pillars__inner {
  position: relative;
  width: min(960px, 88vw);
  height: 60vh;
}

.pillar {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pillar__idx {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--violet);
  margin-bottom: 18px;
}
.pillar__idx::after { content: " /03"; color: var(--cream-faint); letter-spacing: 0.2em; }

.pillar__title {
  font-family: var(--display);
  font-size: clamp(2.7rem, 7.4vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  color: var(--cream);
  text-transform: uppercase;
}

.pillar__rule {
  width: 84px;
  height: 1px;
  margin: 26px 0;
  background: linear-gradient(to right, var(--violet), transparent);
}

.pillar__body {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.8;
  color: var(--cream-dim);
  max-width: 56ch;
}

/* ============================================================
   WORK
   ============================================================ */
.work { position: relative; padding: 20vh clamp(18px, 6vw, 80px) 16vh; overflow: hidden; }

.bgvid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.no-video .bgvid { display: none; }

.work__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, var(--ink) 0%, rgba(10, 10, 12, 0.45) 30%, rgba(10, 10, 12, 0.55) 70%, var(--ink) 100%),
    var(--violet-faint);
}
.work.no-video {
  background:
    radial-gradient(40% 60% at 20% 40%, var(--violet-faint), transparent 65%),
    radial-gradient(40% 60% at 85% 75%, rgba(139, 92, 246, 0.08), transparent 65%),
    var(--ink-2);
}

.work__content { position: relative; z-index: 2; }

.section-head { margin-bottom: 7vh; }

.giant {
  font-family: var(--display);
  font-size: clamp(4rem, 12.5vw, 11.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(244, 239, 228, 0.85);
  text-transform: uppercase;
  margin-top: 10px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 26px);
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 30px 26px 34px;
  border: 1px solid var(--cream-faint);
  border-radius: 16px;
  background: rgba(10, 10, 14, 0.68);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  transition: border-color 0.35s ease, box-shadow 0.5s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.card:hover {
  border-color: var(--violet);
  box-shadow: 0 30px 70px -24px var(--violet-soft), 0 0 0 1px var(--violet-faint) inset;
}

.card__idx { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.34em; color: var(--violet); margin-bottom: 22px; }

.card__name {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2vw, 1.95rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 16px;
}

.card__pitch { font-size: 0.95rem; line-height: 1.75; color: var(--cream-dim); flex: 1; }

.card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.card__tags span {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  border: 1px solid var(--cream-faint);
  border-radius: 999px;
  padding: 5px 11px;
}

.card__arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  font-size: 1.3rem;
  color: var(--violet);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.35s, transform 0.35s;
}
.card:hover .card__arrow { opacity: 1; transform: translateX(0); }

/* ============================================================
   FOUNDER
   ============================================================ */
.founder {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 18vh clamp(18px, 6vw, 80px);
  overflow: hidden;
}

.founder__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(10, 10, 12, 0.94) 0%, rgba(10, 10, 12, 0.72) 46%, rgba(10, 10, 12, 0.28) 100%),
    linear-gradient(to bottom, var(--ink) 0%, transparent 22%, transparent 78%, var(--ink) 100%);
}
.founder.no-video {
  background:
    radial-gradient(46% 60% at 78% 50%, var(--violet-faint), transparent 70%),
    var(--ink);
}

.founder__content { position: relative; z-index: 2; max-width: 680px; }

.founder__title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5.6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 22px 0 26px;
}

.founder__bio { font-size: clamp(1rem, 1.4vw, 1.15rem); line-height: 1.85; color: var(--cream-dim); max-width: 56ch; }

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(26px, 4vw, 54px);
  margin-top: 9vh;
}

.stat { border-left: 1px solid var(--violet-soft); padding-left: 18px; }

.stat__value { display: flex; align-items: baseline; }
.stat__num {
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.6vw, 3.3rem);
  line-height: 1;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}
.stat__suffix { font-family: var(--display); font-size: clamp(1.3rem, 2vw, 1.9rem); color: var(--violet); margin-left: 2px; }

.stat__label {
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cream-dim);
  max-width: 15ch;
  line-height: 1.7;
}

/* ============================================================
   OFFER
   ============================================================ */
.offer {
  position: relative;
  min-height: 112vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 16vh clamp(18px, 6vw, 80px);
  background:
    radial-gradient(58% 48% at 50% 56%, rgba(139, 92, 246, 0.2), transparent 72%),
    var(--ink);
}

.offer__ghost {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: clamp(16rem, 44vw, 46rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--violet-soft);
  opacity: 0.34;
  transform: rotate(-4deg);
  pointer-events: none;
  user-select: none;
}

.offer__content { position: relative; z-index: 2; max-width: 980px; }

.offer__title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 6.6vw, 5.9rem);
  line-height: 1.03;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 24px 0 28px;
  text-shadow: 0 8px 60px rgba(6, 6, 9, 0.8);
}
.offer__title em { text-shadow: 0 0 44px var(--violet-soft); }

.offer__sub { font-size: clamp(1.15rem, 2vw, 1.55rem); font-weight: 200; color: var(--cream); letter-spacing: 0.04em; }

.offer__cta { margin-top: 44px; }

.offer__marquee {
  position: absolute;
  left: 0; right: 0;
  z-index: 2;
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--cream-faint);
  border-bottom: 1px solid var(--cream-faint);
  background: rgba(10, 10, 12, 0.4);
}
.offer__marquee--top { top: 0; border-top: 0; }
.offer__marquee--bottom { bottom: 0; border-bottom: 0; }

.offer__marquee-track {
  display: inline-flex;
  white-space: nowrap;
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.34em;
  color: var(--violet);
  opacity: 0.85;
  animation: marquee 26s linear infinite;
  will-change: transform;
}
.offer__marquee--bottom .offer__marquee-track { animation-direction: reverse; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 34px;
  border-radius: 999px;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s, border-color 0.35s, color 0.35s, background 0.35s;
}

.btn--primary {
  background: var(--violet);
  color: #0B0812;
  font-weight: 600;
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px -12px var(--violet-soft), 0 0 0 1px var(--violet);
}

.btn--ghost {
  border: 1px solid rgba(244, 239, 228, 0.32);
  color: var(--cream);
}
.btn--ghost:hover {
  transform: translateY(-3px);
  border-color: var(--violet);
  color: var(--violet);
  box-shadow: 0 14px 40px -14px var(--violet-soft);
}

/* ============================================================
   FINALE + FOOTER
   ============================================================ */
.finale {
  position: relative;
  padding: 24vh clamp(18px, 6vw, 80px) 5vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(var(--ink), var(--ink-2));
}

.finale__title {
  font-family: var(--display);
  font-size: clamp(2.3rem, 5.6vw, 5rem);
  line-height: 1.06;
  text-transform: uppercase;
  max-width: 20ch;
}

.finale__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 54px;
}

.wa-icon { flex: 0 0 auto; }

.footer {
  width: 100%;
  max-width: 1240px;
  margin-top: 20vh;
  padding: 30px 0 34px;
  border-top: 1px solid var(--cream-faint);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  text-align: left;
}

.footer__socials { display: flex; gap: 26px; font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; }
.footer__socials a { position: relative; color: var(--cream-dim); transition: color 0.3s; padding-bottom: 4px; }
.footer__socials a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--violet);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.footer__socials a:hover { color: var(--cream); }
.footer__socials a:hover::after { transform: scaleX(1); transform-origin: left; }

.footer__meta { text-align: right; }
.footer__slots { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--violet); }
.footer__made { margin-top: 10px; font-size: 0.78rem; color: var(--cream-dim); }

/* ============================================================
   WHATSAPP FAB (mobile)
   ============================================================ */
.wa-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 55;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--violet);
  color: #0B0812;
  box-shadow: 0 10px 30px -8px var(--violet-soft);
}
.wa-fab::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid var(--violet-soft);
  animation: fabPulse 2.4s ease-out infinite;
}
@keyframes fabPulse {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ============================================================
   GRAIN
   ============================================================ */
.grain {
  position: fixed;
  inset: -60%;
  z-index: 90;
  pointer-events: none;
  opacity: 0.055;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
  animation: grainShift 0.7s steps(2) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1.4%); }
  50% { transform: translate(1.6%, -1.2%); }
  75% { transform: translate(-1.2%, -1.8%); }
  100% { transform: translate(1.8%, 1.2%); }
}

/* ============================================================
   REVEAL DEFAULTS (JS animates; visible without JS)
   ============================================================ */
.no-js .pillar { position: static; margin-bottom: 60px; }
.no-js .pillars, .no-js .pillars__stage { height: auto; }
.no-js .ascent { height: 100vh; }

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 820px) {
  :root { --nav-h: 60px; }

  .nav__cta { display: none; }

  .altitude { height: 30vh; right: 10px; }
  .altitude__label { font-size: 0.54rem; }

  .ascent { height: 380vh; }
  .hero-elevate { font-size: 21vw; }
  .hero-sub { font-size: 0.9rem; max-width: 34ch; }

  /* Pillars → swipeable carousel */
  .pillars { height: auto; padding: 16vh 0 10vh; }
  .pillars__stage {
    position: static;
    height: auto;
    display: block;
    overflow: visible;
  }
  .pillars__kicker { position: static; margin: 0 0 40px 24px; }
  .pillars__inner {
    width: auto;
    height: auto;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 24px 24px;
    scrollbar-width: none;
  }
  .pillars__inner::-webkit-scrollbar { display: none; }
  .pillar {
    position: static;
    flex: 0 0 84vw;
    scroll-snap-align: center;
    border: 1px solid var(--cream-faint);
    border-radius: 18px;
    padding: 34px 26px;
    background: rgba(14, 14, 19, 0.6);
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    justify-content: flex-start;
  }
  .pillar__title { font-size: clamp(2rem, 9vw, 2.9rem); }

  /* Work cards → swipeable */
  .work { padding: 16vh 0 12vh; }
  .section-head { padding: 0 24px; }
  .cards {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 24px 24px;
    scrollbar-width: none;
  }
  .cards::-webkit-scrollbar { display: none; }
  .card { flex: 0 0 82vw; min-height: 300px; }
  .card__arrow { opacity: 1; transform: none; }

  .founder { padding: 16vh 24px; }
  .stats { gap: 24px; }
  .stat { flex: 1 1 38%; }

  .offer { min-height: 100vh; }
  .offer__ghost { font-size: 58vw; }

  .finale__actions { flex-direction: column; width: 100%; }
  .finale__actions .btn { width: 100%; }

  .footer { flex-direction: column; }
  .footer__meta { text-align: left; }

  .wa-fab { display: flex; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .grain, .scrollcue__line, .wa-fab::after { animation: none; }
  .offer__marquee-track { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
