/* ==========================================================================
   MapCut — Landing v4 · dark green tech
   Verde profundo · neon lime · glows · microanimações tecnológicas
   ========================================================================== */

:root {
  --bg: #050805;
  --bg-2: #081108;
  --panel: #0a170d;
  --deep: #0b1f12;
  --paper: #eefbea;
  --muted: rgba(238, 251, 234, 0.6);
  --muted-2: rgba(238, 251, 234, 0.36);
  --line: rgba(166, 255, 53, 0.14);
  --line-2: rgba(238, 251, 234, 0.08);
  --neon: #a6ff2e;
  --neon-soft: #c5ff70;
  --ink-on-neon: #081205;

  --fd: "Chakra Petch", system-ui, sans-serif;
  --fb: "Inter", system-ui, sans-serif;
  --fm: "JetBrains Mono", ui-monospace, monospace;

  --wrap: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--paper);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--neon); color: var(--ink-on-neon); }
.mono { font-family: var(--fm); font-size: 11px; letter-spacing: 0.08em; }
.wrap { width: min(var(--wrap), calc(100% - 48px)); margin-inline: auto; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #14260f; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--neon); }

/* matriz de pontos sutil sobre tudo */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 3; pointer-events: none;
  background-image: radial-gradient(rgba(166, 255, 53, 0.045) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* ==========================================================================
   Preloader
   ========================================================================== */
.preloader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--bg); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.8s var(--ease), visibility 0s 0.8s;
}
.preloader.done { transform: translateY(-100%); visibility: hidden; }
.pre-logo {
  font-family: var(--fd); font-weight: 700;
  font-size: clamp(30px, 5vw, 44px); letter-spacing: -0.03em;
  text-shadow: 0 0 40px rgba(166, 255, 53, 0.25);
}
.pre-logo em, .logo em { font-style: normal; color: var(--neon); }
.pre-count {
  position: absolute; bottom: 26px; right: 30px;
  color: var(--neon); text-shadow: 0 0 14px rgba(166, 255, 53, 0.6);
}
.pre-count::after {
  content: "_";
  animation: blink 1s steps(1, end) infinite;
}

/* ==========================================================================
   Cursor
   ========================================================================== */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 99;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 12px rgba(166, 255, 53, 0.8);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, opacity 0.25s;
  display: none;
}
.cursor.is-hover { width: 42px; height: 42px; opacity: 0.22; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 20px 0;
  transition: padding 0.4s var(--ease), background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 12px 0;
  background: rgba(5, 8, 5, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo {
  font-family: var(--fd); font-weight: 700;
  font-size: 20px; letter-spacing: -0.03em;
}
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  text-transform: uppercase; color: var(--muted);
  position: relative; transition: color 0.25s, text-shadow 0.25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 1px; background: var(--neon);
  box-shadow: 0 0 8px rgba(166, 255, 53, 0.7);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover { color: var(--paper); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ==========================================================================
   Botões / links
   ========================================================================== */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--fd); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 16px 32px;
  transition: background 0.3s, color 0.3s, border-color 0.3s, filter 0.3s, transform 0.3s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn-s { padding: 10px 20px; font-size: 11.5px; }
.btn-xs { padding: 8px 16px; font-size: 10.5px; }
.btn-xl { padding: 20px 46px; font-size: clamp(13px, 1.5vw, 16px); }

/* sólido neon: cantos chanfrados (HUD) + glow pulsante + varredura de luz */
.btn-ink, .btn-paper {
  background: var(--neon); color: var(--ink-on-neon);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  animation: btn-breathe 3.2s ease-in-out infinite;
}
.btn-ink:hover, .btn-paper:hover {
  background: var(--neon-soft);
  filter: drop-shadow(0 0 22px rgba(166, 255, 53, 0.65));
}
@keyframes btn-breathe {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(166, 255, 53, 0.3)); }
  50% { filter: drop-shadow(0 0 18px rgba(166, 255, 53, 0.55)); }
}
.btn-ink::after, .btn-paper::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -70%;
  width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg);
  animation: btn-sheen 3.6s var(--ease) infinite;
}
@keyframes btn-sheen {
  0%, 55% { left: -70%; }
  85%, 100% { left: 130%; }
}
/* contorno técnico com colchetes */
.btn-line {
  border: 1px solid var(--line); color: var(--paper);
  background: rgba(166, 255, 53, 0.04);
  border-radius: 4px;
}
.btn-line::before { content: "["; color: var(--neon); font-family: var(--fm); font-weight: 400; }
.btn-line::after { content: "]"; color: var(--neon); font-family: var(--fm); font-weight: 400; }
.btn-line:hover {
  border-color: var(--neon); color: var(--neon);
  box-shadow: inset 0 0 18px rgba(166, 255, 53, 0.08), 0 0 18px rgba(166, 255, 53, 0.18);
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fd); font-weight: 600; font-size: 15px;
  color: var(--neon);
  border-bottom: 1px solid rgba(166, 255, 53, 0.4);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s, text-shadow 0.25s;
}
.link-arrow span { transition: transform 0.3s var(--ease); }
.link-arrow:hover { border-color: var(--neon); text-shadow: 0 0 14px rgba(166, 255, 53, 0.5); }
.link-arrow:hover span { transform: translate(3px, 0); }

/* ==========================================================================
   1 · Hero — imagem de fundo (mapa verde + MF)
   ========================================================================== */
.hero {
  position: relative;
  padding: clamp(140px, 18vh, 200px) 0 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background: url("bg.png") center / cover no-repeat var(--bg);
}
/* leve escurecida só para o texto ter contraste + fusão com a seção seguinte */
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(5, 8, 5, 0.5), transparent 75%),
    linear-gradient(180deg, rgba(5, 8, 5, 0.45), transparent 30%, transparent 72%, var(--bg));
}

.hero-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}

/* banner flutuante no topo (como na referência) */
.notice {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: center;
  background: rgba(8, 17, 8, 0.85);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 0 34px rgba(166, 255, 53, 0.1), 0 20px 50px -20px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: clamp(40px, 6vw, 64px);
}
.notice p { font-size: 13.5px; color: var(--muted); }
.notice b { color: var(--paper); }

.kicker { color: var(--neon); margin-bottom: clamp(24px, 3vw, 36px); }
.kicker::before {
  content: "● ";
  animation: blink 1.8s steps(1, end) infinite;
}
@keyframes blink { 50% { opacity: 0.25; } }

.hero-title {
  font-family: var(--fd); font-weight: 700;
  font-size: clamp(42px, 8vw, 112px);
  line-height: 1.02; letter-spacing: -0.025em;
  margin-bottom: clamp(36px, 5vw, 56px);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.45);
}
.hero-title .hl { display: block; overflow: hidden; padding-bottom: 0.09em; margin-bottom: -0.09em; }
.hero-title .hl-in { display: inline-block; will-change: transform; }
/* palavra destacada: chip neon, como na referência */
.hero-title em {
  font-style: normal;
  display: inline-block;
  color: var(--ink-on-neon);
  background: var(--neon);
  padding: 0 0.16em;
  border-radius: 0.12em;
  transform: rotate(-1.6deg);
  box-shadow: 0 0 44px rgba(166, 255, 53, 0.45);
}

.hero-meta {
  display: flex; flex-direction: column; align-items: center;
  gap: 28px;
}
.hero-sub { max-width: 560px; color: var(--muted); font-size: 16.5px; }
.hero-sub a { color: var(--paper); font-weight: 500; border-bottom: 1px solid var(--neon); }
.hero-sub a:hover { color: var(--neon); }
.hero-ctas { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

/* vídeo que expande no scroll */
.hero-stage {
  position: relative; z-index: 1;
  display: flex; justify-content: center;
  padding: clamp(70px, 10vw, 120px) 0 clamp(50px, 7vw, 90px);
}
.hero-media {
  width: min(96vw, 1600px);
  transform-origin: center top;
  will-change: transform;
}
.hero-media .frame video {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: 10px;
  background: #000;
}
.hero-media figcaption {
  color: var(--muted-2); margin-top: 14px; text-align: center;
}

/* moldura HUD: borda fina + 4 cantoneiras neon */
.frame {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 0 60px rgba(166, 255, 53, 0.13), 0 30px 80px -30px rgba(0, 0, 0, 0.8);
}
.frame::before {
  content: ""; position: absolute; inset: -2px; z-index: 2; pointer-events: none;
  --c: var(--neon);
  background:
    linear-gradient(var(--c), var(--c)) left 0 top 0 / 20px 2px,
    linear-gradient(var(--c), var(--c)) left 0 top 0 / 2px 20px,
    linear-gradient(var(--c), var(--c)) right 0 top 0 / 20px 2px,
    linear-gradient(var(--c), var(--c)) right 0 top 0 / 2px 20px,
    linear-gradient(var(--c), var(--c)) left 0 bottom 0 / 20px 2px,
    linear-gradient(var(--c), var(--c)) left 0 bottom 0 / 2px 20px,
    linear-gradient(var(--c), var(--c)) right 0 bottom 0 / 20px 2px,
    linear-gradient(var(--c), var(--c)) right 0 bottom 0 / 2px 20px;
  background-repeat: no-repeat;
  filter: drop-shadow(0 0 6px rgba(166, 255, 53, 0.6));
}

/* ==========================================================================
   Chipbar — faixa técnica em marquee
   ========================================================================== */
.chipbar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  padding: 15px 0; overflow: hidden;
}
.chip-track { display: flex; width: max-content; animation: chips 38s linear infinite; }
.chip-track .mono { color: var(--muted-2); white-space: nowrap; letter-spacing: 0.14em; }
.chipbar:hover .chip-track { animation-play-state: paused; }
@keyframes chips { to { transform: translateX(-50%); } }

/* ==========================================================================
   Cabeçalho de seção
   ========================================================================== */
section { position: relative; }
.sec-head {
  text-align: center;
  margin-bottom: clamp(44px, 6vw, 72px);
}
.sec-label { display: block; color: var(--neon); margin-bottom: 18px; }
.sec-label::before { content: "● "; animation: blink 1.8s steps(1, end) infinite; }
.sec-title {
  font-family: var(--fd); font-weight: 700;
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.08; letter-spacing: -0.03em;
  max-width: 820px; margin-inline: auto;
}

/* ==========================================================================
   2 · Em ação — pin
   ========================================================================== */
.acao { padding: clamp(100px, 14vw, 180px) 0 0; }
.stage { padding-bottom: clamp(40px, 6vw, 80px); }
.stage-grid {
  display: grid; grid-template-columns: 340px 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.stage-left { display: flex; flex-direction: column; gap: 28px; }
.stage-num {
  font-size: clamp(64px, 8vw, 120px); line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(166, 255, 53, 0.65);
  text-shadow: 0 0 30px rgba(166, 255, 53, 0.15);
  opacity: 0.95;
}
.stage-list { display: flex; flex-direction: column; }
.stage-list li { border-bottom: 1px solid var(--line-2); }
.stage-list li:first-child { border-top: 1px solid var(--line-2); }
.stage-list button {
  width: 100%; text-align: left;
  font-family: var(--fd); font-weight: 600;
  font-size: clamp(16px, 1.6vw, 19px); letter-spacing: -0.01em;
  padding: 16px 2px;
  color: var(--muted-2);
  display: flex; align-items: center; gap: 10px;
  transition: color 0.3s, padding-left 0.3s var(--ease), text-shadow 0.3s;
}
.stage-list button::before {
  content: "→"; color: var(--neon);
  opacity: 0; transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.3s var(--ease);
}
.stage-list li.is-active button {
  color: var(--paper); padding-left: 6px;
  text-shadow: 0 0 20px rgba(166, 255, 53, 0.3);
}
.stage-list li.is-active button::before { opacity: 1; transform: none; }
.stage-list button:hover { color: var(--paper); }

.stage-media { min-width: 0; }
.stage-screen {
  position: relative; aspect-ratio: 16 / 9;
  background: #000;
}
/* flash rápido ao trocar de vídeo */
.stage-screen.switching .sv.is-active { animation: sv-flick 0.32s steps(3, end); }
@keyframes sv-flick {
  0% { opacity: 0.2; transform: translateX(-4px); filter: brightness(1.8) saturate(0.4); }
  50% { opacity: 0.7; transform: translateX(3px); }
  100% { opacity: 1; transform: none; filter: none; }
}
.sv {
  position: absolute; inset: 6px;
  width: calc(100% - 12px); height: calc(100% - 12px); object-fit: contain;
  border-radius: 8px;
  opacity: 0; transition: opacity 0.45s var(--ease);
}
.sv.is-active { opacity: 1; }
.stage-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; margin-top: 14px;
}
.stage-foot .mono { color: var(--muted-2); }
.stage-progress {
  flex: 1; max-width: 320px; height: 2px;
  background: var(--line-2); position: relative; border-radius: 2px;
}
.stage-progress i {
  position: absolute; inset: 0;
  background: var(--neon);
  box-shadow: 0 0 10px rgba(166, 255, 53, 0.8);
  transform: scaleX(0); transform-origin: left;
  border-radius: 2px;
}

/* ==========================================================================
   3 · O criador
   ========================================================================== */
.criador { padding: clamp(100px, 14vw, 180px) 0 0; }
.fill-text {
  font-family: var(--fd); font-weight: 500;
  font-size: clamp(24px, 3.6vw, 46px);
  line-height: 1.25; letter-spacing: -0.025em;
  max-width: 1060px;
  margin-bottom: clamp(50px, 7vw, 90px);
}
.fill-text .w { opacity: 0.13; }

.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line-2); border-radius: 16px;
  background: var(--panel);
  overflow: hidden;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.stat {
  padding: 30px 26px;
  border-right: 1px solid var(--line-2);
  transition: background 0.3s;
}
.stat:last-child { border-right: 0; }
.stat:hover { background: rgba(166, 255, 53, 0.045); }
.stat-n {
  display: block; font-family: var(--fd); font-weight: 700;
  font-size: clamp(30px, 4vw, 52px); letter-spacing: -0.03em;
  color: var(--neon);
  text-shadow: 0 0 26px rgba(166, 255, 53, 0.3);
  font-variant-numeric: tabular-nums;
}
.stat-l { color: var(--muted-2); }

/* ==========================================================================
   4 · Planos
   ========================================================================== */
.planos { padding: clamp(100px, 14vw, 180px) 0 0; }
.offer { margin-top: 20px; color: var(--muted); }
.offer #cd {
  color: var(--neon); font-variant-numeric: tabular-nums;
  text-shadow: 0 0 16px rgba(166, 255, 53, 0.5);
  animation: cd-pulse 2.4s ease-in-out infinite;
}
@keyframes cd-pulse {
  0%, 100% { text-shadow: 0 0 10px rgba(166, 255, 53, 0.35); }
  50% { text-shadow: 0 0 22px rgba(166, 255, 53, 0.7); }
}

.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.plan {
  position: relative; overflow: hidden;
  padding: clamp(30px, 4vw, 50px) clamp(24px, 3vw, 44px);
  border: 1px solid var(--line-2); border-radius: 18px;
  background: var(--panel);
  display: flex; flex-direction: column; gap: 22px;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease);
  --mx: 50%; --my: 50%;
}
.plan::before {
  content: ""; position: absolute; inset: 0; opacity: 0; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx) var(--my), rgba(166, 255, 53, 0.08), transparent 60%);
  transition: opacity 0.4s;
}
.plan:hover { border-color: var(--line); transform: translateY(-3px); }
.plan:hover::before { opacity: 1; }
.plan-hot {
  border-color: rgba(166, 255, 53, 0.55);
  box-shadow: 0 0 44px rgba(166, 255, 53, 0.14), 0 26px 70px -34px rgba(0, 0, 0, 0.8);
}
.plan-hot:hover { border-color: var(--neon); }
.plan header { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.plan h3 {
  font-family: var(--fd); font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.02em;
}
.plan-i { color: var(--muted-2); }
.plan-save {
  color: var(--ink-on-neon); background: var(--neon);
  padding: 5px 10px; border-radius: 999px;
  box-shadow: 0 0 18px rgba(166, 255, 53, 0.5);
  animation: cd-pulse 2.4s ease-in-out infinite;
}

.price {
  font-family: var(--fd); font-weight: 700;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1; letter-spacing: -0.045em;
}
.plan-hot .price { color: var(--neon); text-shadow: 0 0 34px rgba(166, 255, 53, 0.3); }
.price sup { font-size: 0.3em; font-weight: 600; color: var(--muted); margin-right: 4px; vertical-align: super; }
.price small { font-size: 0.4em; }
.price span { font-family: var(--fb); font-weight: 400; font-size: 15px; color: var(--muted); margin-left: 8px; }
.price-note { font-size: 14px; color: var(--muted-2); margin-top: -10px; }
.price-note b { color: var(--paper); }

.plan ul { display: flex; flex-direction: column; flex: 1; }
.plan ul li {
  padding: 12px 0 12px 26px;
  border-bottom: 1px solid var(--line-2);
  font-size: 15px; color: var(--muted);
  position: relative;
}
.plan ul li::before {
  content: "→"; position: absolute; left: 0;
  font-family: var(--fm); font-size: 13px; color: var(--neon);
}
.plan .btn { align-self: flex-start; }
.plan-hot .btn { align-self: stretch; }

.plan-foot { margin-top: 34px; color: var(--muted-2); text-align: center; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { padding: clamp(100px, 14vw, 180px) 0 0; }
.faq-list { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-list details {
  border: 1px solid var(--line-2); border-radius: 14px;
  background: var(--panel);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-list details:hover { border-color: var(--line); }
.faq-list details[open] {
  border-color: rgba(166, 255, 53, 0.5);
  box-shadow: 0 0 26px rgba(166, 255, 53, 0.1);
}
.faq-list summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--fd); font-weight: 600; font-size: 15.5px;
  padding: 18px 22px;
  transition: color 0.25s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i {
  font-style: normal; font-family: var(--fm); font-size: 18px;
  color: var(--neon); flex-shrink: 0;
  transition: transform 0.35s var(--ease);
}
.faq-list details[open] summary { color: var(--neon); }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details p {
  padding: 0 22px 20px;
  font-size: 14.5px; color: var(--muted);
  max-width: 640px;
}

/* ==========================================================================
   5 · Final + footer
   ========================================================================== */
.final {
  margin-top: clamp(100px, 14vw, 180px);
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(166, 255, 53, 0.13), transparent 65%),
    var(--deep);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.final .sec-label { color: var(--neon); }
.final-inner {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 30px;
  padding: clamp(90px, 12vw, 160px) 0 clamp(70px, 9vw, 120px);
}
.final-title {
  font-family: var(--fd); font-weight: 700;
  font-size: clamp(52px, 10vw, 150px);
  line-height: 0.95; letter-spacing: -0.045em;
}
.final-title em {
  font-style: normal; color: var(--neon);
  text-shadow: 0 0 60px rgba(166, 255, 53, 0.5);
}
.final-note { color: var(--muted-2); }

.footer { border-top: 1px solid var(--line-2); }
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
  padding: 24px 0;
}
.footer-top .mono { color: var(--muted-2); transition: color 0.25s, text-shadow 0.25s; }
.footer-top a:hover { color: var(--neon); text-shadow: 0 0 12px rgba(166, 255, 53, 0.5); }
.footer-mark { overflow: hidden; line-height: 0.78; }
.footer-mark span {
  display: block;
  font-family: var(--fd); font-weight: 700;
  font-size: clamp(120px, 24vw, 380px);
  letter-spacing: -0.05em;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(166, 255, 53, 0.3);
  transform: translateY(18%);
  user-select: none;
}

/* ==========================================================================
   Toast
   ========================================================================== */
.toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translate(-50%, calc(100% + 44px)); z-index: 90;
  background: var(--panel); color: var(--paper);
  border: 1px solid rgba(166, 255, 53, 0.5);
  font-size: 14px;
  padding: 14px 24px; border-radius: 999px;
  box-shadow: 0 0 30px rgba(166, 255, 53, 0.15), 0 16px 44px -12px rgba(0, 0, 0, 0.6);
  transition: transform 0.45s var(--ease);
  max-width: calc(100vw - 48px); text-align: center;
}
.toast.show { transform: translate(-50%, 0); }

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (max-width: 960px) {
  /* no toque, o flash de interferência fica duro: crossfade longo e limpo */
  .stage-screen.switching .sv.is-active { animation: none; }
  .sv { transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1); }

  .stage-grid { grid-template-columns: 1fr; gap: 30px; }
  .stage-left { flex-direction: column-reverse; }
  .stage-num { display: none; }
  .plans { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line-2); }
  .stat:last-child { border-bottom: 0; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .hero-meta { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   Movimento reduzido
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .fill-text .w { opacity: 1; }
  .chip-track { animation: none; }
}
