/* ============================================================
   Palpites — landing de planos
   Estética: preto + ouro + monospace. Um só acento, hairlines,
   dot-grid sutil. Movimento leve em CSS/JS nativo.
   ============================================================ */

:root {
  /* base — quase-preto, em camadas */
  --bg: #09090c;
  --bg-soft: #0d0e12;
  --panel: #111319;
  --panel-2: #15171f;
  --panel-hi: #191c25;

  /* hairlines */
  --line: rgba(255, 255, 255, 0.07);
  --line-2: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);

  /* texto */
  --text: #f3f4f7;
  --muted: #9499a6;
  --muted-2: #5e6373;
  --muted-3: #3d414d;

  /* acentos — OURO é o único acento de marca */
  --gold: #ffb200;
  --gold-2: #ff9500;
  --gold-soft: rgba(255, 178, 0, 0.12);
  --gold-line: rgba(255, 178, 0, 0.34);

  /* semânticos (apenas onde fazem sentido) */
  --green: #34d27b;
  --red: #ff5252;
  --blue: #4d8dff;

  /* formas */
  --radius: 14px;
  --radius-sm: 10px;
  --radius-xs: 7px;

  /* fontes */
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", "Cascadia Code", Menlo, Consolas, monospace;
  --font-display: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

  /* profundidade por camada de cor, não por sombra pesada */
  --elev-1: 0 1px 0 rgba(255, 255, 255, 0.03) inset;
  --ring-gold: 0 0 0 1px rgba(255, 178, 0, 0.28);
  --shadow-soft: 0 24px 60px -28px rgba(0, 0, 0, 0.85);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-sans);
  font-feature-settings: "cv05", "ss01";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.5;
}

/* dot-grid sutil no fundo, com fade vertical — assinatura minimal */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1.4px);
  background-size: 26px 26px;
  background-position: center;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 55%, transparent 92%);
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 55%, transparent 92%);
}

/* brilho ouro discreto no canto superior — único aceno decorativo */
body::after {
  content: "";
  position: fixed;
  top: -18vh;
  right: -8vw;
  width: 60vw;
  height: 60vh;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 178, 0, 0.08), transparent 60%);
}

main,
.topbar,
footer {
  position: relative;
  z-index: 1;
}

.topbar,
main,
footer {
  width: min(1400px, calc(100% - 64px));
  margin: 0 auto;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: rgba(255, 178, 0, 0.28);
  color: #fff;
}

/* ---------- topbar ---------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(9, 9, 12, 0.9);
  backdrop-filter: blur(14px);
}

.topbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2) 18%, var(--line-2) 82%, transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  border: 1px solid var(--line-2);
}

.brand span {
  font-size: 1.18rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-family: var(--font-mono);
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

nav a {
  position: relative;
  padding: 4px 0;
  transition: color 180ms ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

nav a:hover {
  color: var(--text);
}

nav a:hover::after {
  transform: scaleX(1);
}

.topbar-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 23px;
  border-radius: 999px;
  border: 1px solid rgba(255, 178, 0, 0.52);
  background: linear-gradient(180deg, #ffc532, #ffad05);
  box-shadow: 0 16px 34px -24px rgba(255, 178, 0, 0.95), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 800;
  color: #160f00;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, filter 180ms ease;
}

.topbar-action::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #151009;
  box-shadow: 0 0 0 3px rgba(22, 15, 0, 0.1);
}

.topbar-action:hover {
  border-color: rgba(255, 214, 91, 0.92);
  box-shadow: 0 18px 42px -22px rgba(255, 178, 0, 1), inset 0 1px 0 rgba(255, 255, 255, 0.38);
  filter: saturate(1.08);
  transform: translateY(-1px);
}

/* ---------- tipografia base ---------- */
h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: -0.03em;
  line-height: 0.98;
  font-weight: 700;
  text-wrap: balance;
  font-family: var(--font-display);
}

/* kicker monospace numerado — substitui o eyebrow repetido */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.kicker b {
  color: var(--gold);
  font-weight: 600;
}

.kicker i {
  font-style: normal;
  color: var(--muted-3);
}

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  align-items: center;
  gap: 64px;
  padding: 44px 0 72px;
  overflow: clip;
}

.hero-copy {
  position: relative;
}

.hero h1 {
  margin-bottom: 26px;
  font-size: clamp(2.9rem, 5.6vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 700;
}

.hero h1 .accent {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero h1 .live-underline {
  position: relative;
  white-space: nowrap;
}

.hero h1 .live-underline::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: 0.04em;
  height: 0.16em;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0.5;
  transform-origin: left;
  animation: live-underline 2.4s 1s cubic-bezier(0.65, 0, 0.35, 1) both;
}

@keyframes live-underline {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 0.5;
  }
}

.hero-foot {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted-2);
  letter-spacing: 0.04em;
}

.hero-foot u {
  color: var(--muted);
  text-decoration: none;
}

.hero-text {
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.6;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-row > span {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  border-right: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.signal-row > span:last-child {
  border-right: 0;
}

.signal-row b {
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.signal-row b u {
  text-decoration: none;
  color: var(--gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* ---------- botões ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 220ms ease, background 200ms ease, border-color 200ms ease;
}

.button-primary {
  color: #1a1100;
  background: linear-gradient(180deg, #ffc94d, var(--gold) 55%, var(--gold-2));
  box-shadow: 0 10px 30px -10px rgba(255, 178, 0, 0.55), var(--elev-1);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(255, 178, 0, 0.6), var(--elev-1);
}

.button-secondary {
  color: var(--text);
  background: transparent;
  border-color: var(--line-2);
}

.button-secondary:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}

.button-primary::after {
  content: "→";
  font-weight: 700;
  transition: transform 200ms ease;
}

.button-primary:hover::after {
  transform: translateX(3px);
}

/* ---------- hero visual ---------- */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  perspective: 1400px;
}

.hero-stage {
  position: relative;
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: min(460px, 100%);
  transform-style: preserve-3d;
  transform: rotateY(var(--tilt-y, 0deg)) rotateX(var(--tilt-x, 0deg));
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* selo de marca girando no canto — assinatura visual */
/* card protagonista — placar do gol */
.discord-card {
  position: relative;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft), var(--elev-1);
}

.discord-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(150deg, rgba(255, 178, 0, 0.4), transparent 35%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.discord-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.discord-head img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border: 1px solid var(--line-2);
}

.discord-head strong {
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.discord-head .app-badge {
  padding: 2px 7px;
  margin-left: 6px;
  border-radius: 5px;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #07170d;
  background: var(--green);
  box-shadow: 0 0 0 1px rgba(52, 210, 123, 0.22), 0 0 18px rgba(52, 210, 123, 0.18);
}

.discord-head .live-tag {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 10px 4px 8px;
  border-radius: 999px;
  background: rgba(52, 210, 123, 0.1);
  border: 1px solid rgba(52, 210, 123, 0.3);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--green);
  box-shadow: 0 0 22px rgba(52, 210, 123, 0.08);
}

.discord-head .live-tag .live-dot {
  width: 7px;
  height: 7px;
  margin: 0;
  padding: 0;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(52, 210, 123, 0.12);
}

.discord-card h2 {
  margin-bottom: 10px;
  font-size: 1.9rem;
  letter-spacing: -0.03em;
  font-weight: 820;
}

.discord-card h2 .accent {
  color: var(--gold);
}

.match-line {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.match-line strong {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
}

.goal-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  border-top: 1px solid var(--line);
}

.goal-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.goal-list li:last-child {
  border-bottom: 0;
}

.goal-list span {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  min-width: 34px;
}

.discord-card small {
  display: block;
  margin-top: 16px;
  color: var(--muted-2);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.02em;
}

/* live dot */
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(255, 82, 82, 0.16);
  animation: live-pulse 1.7s ease-in-out infinite;
  flex: none;
}

/* ranking — secundário, flat */
.ranking-card {
  padding: 18px 20px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.ranking-card strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.ranking-card strong::after {
  content: "ao vivo";
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--green);
  letter-spacing: 0.08em;
}

.ranking-card ol {
  display: grid;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ranking-card li {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--text);
  font-size: 0.88rem;
  border-bottom: 1px solid var(--line);
}

.ranking-card li:last-child {
  border-bottom: 0;
}

.ranking-card li span {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted-2);
  font-weight: 600;
}

.ranking-card li:nth-child(1) span {
  color: var(--gold);
}

.ranking-card b {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}

/* ---------- live flow (scroll story) ---------- */
.live-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: start;
  gap: 56px;
  min-height: 1240px;
  padding: 96px 0 120px;
  border-top: 1px solid var(--line);
}

.flow-copy,
.flow-board {
  position: sticky;
  top: 116px;
}

.flow-copy h2 {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 820;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.flow-copy p:not(.kicker) {
  max-width: 480px;
  color: var(--muted);
  line-height: 1.6;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 30px;
  color: var(--muted-2);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-cue span {
  position: relative;
  width: 16px;
  height: 28px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 6px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
  animation: wheel-drop 1.5s ease-in-out infinite;
}

.flow-steps {
  position: relative;
  display: grid;
  gap: 4px;
  max-width: 520px;
  padding-left: 22px;
}

.flow-steps::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: var(--line);
}

.flow-steps::after {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 1px;
  height: calc(var(--story-progress, 0) * (100% - 28px));
  background: linear-gradient(180deg, var(--gold), rgba(255, 178, 0, 0.1));
  box-shadow: 0 0 12px rgba(255, 178, 0, 0.4);
}

.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px 16px;
  padding: 18px 0 18px 20px;
  color: var(--muted-2);
  opacity: 0.5;
  transform: translateX(-4px);
  transition: opacity 420ms cubic-bezier(0.16, 1, 0.3, 1), transform 460ms cubic-bezier(0.16, 1, 0.3, 1), color 300ms ease;
}

.flow-step::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 30px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted-3);
  transition: background 300ms ease, box-shadow 300ms ease, transform 300ms ease;
}

.flow-step span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--muted-2);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 9px;
  transition: color 300ms ease, background 300ms ease, border-color 300ms ease;
}

.flow-step strong {
  color: var(--muted);
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.flow-step p {
  margin: 2px 0 0;
  color: inherit;
  line-height: 1.5;
  font-size: 0.9rem;
}

.flow-step.is-active {
  opacity: 1;
  transform: translateX(6px);
  color: var(--muted);
}

.flow-step.is-active strong {
  color: var(--text);
}

.flow-step.is-active span {
  color: #1a1100;
  background: var(--gold);
  border-color: var(--gold);
}

.flow-step.is-active::before {
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(255, 178, 0, 0.14), 0 0 18px rgba(255, 178, 0, 0.45);
  transform: scale(1.2);
}

.flow-step.is-past {
  opacity: 0.72;
  transform: translateX(0);
}

.flow-step.is-past::before {
  background: var(--line-strong);
}

/* board — painel de palpites ao vivo */
.flow-board {
  position: relative;
  overflow: hidden;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft), var(--elev-1);
}

/* scan-line que atravessa o painel — estilo engine */
.flow-board::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 178, 0, 0.04) 46%,
    rgba(255, 178, 0, 0.06) 50%,
    rgba(255, 178, 0, 0.04) 54%,
    transparent 62%,
    transparent 100%
  );
  animation: board-scan 4.8s ease-in-out infinite;
}

@keyframes board-scan {
  0%, 36% {
    transform: translateY(-100%);
  }
  72%, 100% {
    transform: translateY(100%);
  }
}

.flow-progress {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: var(--line);
  z-index: 3;
}

.flow-progress span {
  display: block;
  width: var(--story-width, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 14px rgba(255, 178, 0, 0.5);
  transition: width 120ms linear;
}

.board-header,
.prediction-list,
.flow-stats {
  position: relative;
  z-index: 2;
}

.board-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.board-header .live-dot {
  width: 7px;
  height: 7px;
}

.board-header strong {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-header small {
  margin-left: auto;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.board-clock {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  padding: 3px 9px;
  border-radius: 6px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-line);
  font-variant-numeric: tabular-nums;
  margin-left: 10px;
}

.prediction-list {
  display: grid;
  gap: 8px;
}

.prediction-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.live-flow .prediction-row:nth-child(1) {
  transform: translateY(calc((1 - var(--row-1, 0)) * 16px));
  opacity: calc(0.4 + var(--row-1, 0) * 0.6);
}

.live-flow .prediction-row:nth-child(2) {
  transform: translateY(calc((1 - var(--row-2, 0)) * 16px));
  opacity: calc(0.4 + var(--row-2, 0) * 0.6);
}

.live-flow .prediction-row:nth-child(3) {
  transform: translateY(calc((1 - var(--row-3, 0)) * 16px));
  opacity: calc(0.4 + var(--row-3, 0) * 0.6);
}

.prediction-row:hover {
  border-color: var(--line-strong);
  background: var(--panel-2);
}

.prediction-row span {
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
}

.prediction-row strong {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 1rem;
  font-weight: 600;
}

.prediction-row small {
  font-family: var(--font-mono);
  color: var(--muted);
  font-size: 0.74rem;
  min-width: 78px;
  text-align: right;
}

.prediction-row small.hit {
  color: var(--green);
}

.flow-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.flow-stats span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.flow-stats b {
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
}

/* ---------- seções genéricas ---------- */
.plans,
.feature-band,
.compare,
.final-cta {
  padding: 84px 0;
}

.compare {
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  font-weight: 820;
  letter-spacing: -0.035em;
}

.section-heading .kicker {
  margin-left: auto;
  margin-right: auto;
}

.section-heading p:not(.kicker) {
  color: var(--muted);
  line-height: 1.6;
  font-size: 1.02rem;
}

/* ---------- planos ---------- */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  box-shadow: var(--elev-1);
}

.plan-pro {
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255, 178, 0, 0.08), transparent 60%),
    var(--panel);
  border-color: var(--gold-line);
  box-shadow: var(--shadow-soft), var(--ring-gold);
  animation: pro-breathe 4s ease-in-out infinite;
}

@keyframes pro-breathe {
  0%, 100% {
    box-shadow: var(--shadow-soft), 0 0 0 1px rgba(255, 178, 0, 0.28), 0 0 20px -8px rgba(255, 178, 0, 0.15);
  }
  50% {
    box-shadow: var(--shadow-soft), 0 0 0 1px rgba(255, 178, 0, 0.4), 0 0 32px -4px rgba(255, 178, 0, 0.22);
  }
}

.popular,
.plan-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 11px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-kicker {
  color: var(--gold);
  background: var(--gold-soft);
  border: 1px solid var(--gold-line);
}

.plan-free .plan-kicker {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-2);
}

.popular {
  position: absolute;
  top: -13px;
  right: 28px;
  color: #1a1100;
  background: linear-gradient(180deg, #ffc94d, var(--gold));
  border: 0;
  box-shadow: 0 8px 20px -6px rgba(255, 178, 0, 0.5);
}

.plan h3 {
  margin: 18px 0 14px;
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0 0 8px;
  color: var(--text);
  font-size: clamp(2.6rem, 4.6vw, 3.6rem);
  font-weight: 820;
  letter-spacing: -0.04em;
}

.price .currency {
  font-size: 0.45em;
  color: var(--muted);
  font-weight: 600;
  margin-right: 2px;
}

.price span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
}

.plan-summary {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.96rem;
}

.feature-list {
  display: grid;
  gap: 2px;
  flex: 1;
  padding: 22px 0;
  margin: 8px 0 24px;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
}

.feature-list li::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--bg-soft);
}

.feature-list li:not(.muted)::before {
  border-color: rgba(52, 210, 123, 0.5);
  background: radial-gradient(circle, var(--green) 38%, transparent 42%);
  box-shadow: 0 0 0 3px rgba(52, 210, 123, 0.1);
}

.feature-list .muted {
  color: var(--muted-2);
}

.plan .button {
  width: 100%;
}

/* ---------- feature band ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-grid article {
  padding: 28px 24px;
  background: var(--panel);
}

.feature-grid span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.feature-grid h3 {
  margin: 16px 0 10px;
  font-size: 1.14rem;
  letter-spacing: -0.015em;
  font-weight: 700;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

/* ---------- comparativo ---------- */
.table-wrap {
  overflow-x: auto;
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

th,
td {
  padding: 17px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

thead th {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg-soft);
}

thead th:nth-child(3) {
  color: var(--gold);
}

tbody td {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

tbody td:first-child {
  color: var(--text);
  font-weight: 600;
}

tbody td:nth-child(3) {
  color: var(--text);
  font-weight: 600;
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr:hover {
  background: rgba(255, 178, 0, 0.03);
}

/* ---------- final cta ---------- */
.final-cta {
  margin: 40px 0 80px;
  padding: 64px 28px;
  text-align: center;
  background:
    radial-gradient(100% 120% at 50% 0%, rgba(255, 178, 0, 0.1), transparent 60%),
    var(--panel);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.final-cta .kicker {
  margin-left: auto;
  margin-right: auto;
}

.final-cta h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 820;
  letter-spacing: -0.035em;
}

.final-cta p {
  max-width: 520px;
  margin: 0 auto 30px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- footer ---------- */
footer {
  display: grid;
  gap: 20px;
  padding: 30px 0 48px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

footer .footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
  font-family: var(--font-sans);
}

footer .footer-brand::before {
  content: "P";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: #1a1100;
  background: var(--gold);
  border-radius: 50%;
}

footer .footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted-2);
}

footer .footer-right a {
  color: var(--muted-2);
  transition: color 180ms ease;
}

footer .footer-right a:hover {
  color: var(--text);
}

footer .footer-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--muted-3);
}

.privacy-disclosure {
  max-width: 920px;
}

.privacy-disclosure summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  cursor: pointer;
  user-select: none;
  padding: 8px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.privacy-disclosure summary::after {
  content: "+";
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 800;
}

.privacy-disclosure[open] summary {
  color: var(--text);
  border-color: var(--gold-line);
  background: rgba(255, 178, 0, 0.06);
}

.privacy-disclosure[open] summary::after {
  content: "-";
}

.privacy-note {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding: 16px;
  max-width: 920px;
  color: var(--muted-2);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  line-height: 1.55;
}

.privacy-note strong {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.86rem;
}

.privacy-note p {
  margin: 0;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 16px;
  background: rgba(15, 16, 20, 0.96);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 70px -34px rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(14px);
}

.cookie-banner strong {
  display: block;
  color: var(--text);
  font-size: 0.86rem;
  letter-spacing: -0.01em;
}

.cookie-banner p {
  max-width: 520px;
  margin: 4px 0 0;
  color: var(--muted-2);
  font-size: 0.78rem;
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-link,
.cookie-accept {
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.cookie-link {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
}

.cookie-accept {
  color: #140d00;
  background: var(--gold);
  box-shadow: 0 14px 30px -22px rgba(255, 178, 0, 0.85);
}

.cookie-link:hover,
.cookie-accept:hover {
  transform: translateY(-1px);
}

/* ============================================================
   Sistema de reveal
   O JS adiciona .motion-ready e alterna .is-visible via IntersectionObserver.
   Se o JS falhar ou reduced-motion estiver ativo, o conteúdo fica visível.
   ============================================================ */

/* ---------- scrollbar custom ---------- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--muted-2);
}

/* ---------- separadores entre secoes ---------- */
.plans::before,
.feature-band::before,
.final-cta::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  margin: 0 auto 28px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}

.compare::before {
  content: "";
  display: block;
  width: 100%;
  max-width: 480px;
  height: 1px;
  margin: 0 auto 28px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}

/* ---------- glow extra no CTA hover ---------- */
.button-primary:hover {
  box-shadow:
    0 10px 30px -10px rgba(255, 178, 0, 0.55),
    0 0 60px -20px rgba(255, 178, 0, 0.3),
    var(--elev-1);
}

/* ---------- feature grid hover: acento mono ---------- */
.feature-grid article {
  transition: background 280ms ease, transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-grid article:hover {
  background: var(--panel-2);
  transform: translateY(-2px);
}
.motion-ready [data-reveal] {
  opacity: 0;
  transition:
    opacity 680ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0ms);
  will-change: transform, opacity;
}

.motion-ready [data-reveal="up"] {
  transform: translate3d(0, 36px, 0);
}

.motion-ready [data-reveal="left"] {
  transform: translate3d(-32px, 12px, 0);
}

.motion-ready [data-reveal="right"] {
  transform: translate3d(32px, 12px, 0);
}

.motion-ready [data-reveal="scale"] {
  transform: scale(0.96);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-ready [data-stagger] > * {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--stagger, 0) * 80ms);
  will-change: transform, opacity;
}

.motion-ready [data-stagger].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- keyframes ---------- */
@keyframes live-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(255, 82, 82, 0.16);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(255, 82, 82, 0.04);
    transform: scale(1.15);
  }
}

@keyframes wheel-drop {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 11px);
  }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html:not(.motion-ready) *,
  html:not(.motion-ready) *::before,
  html:not(.motion-ready) *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  html:not(.motion-ready) [data-reveal],
  html:not(.motion-ready) [data-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
  }

  .live-dot,
  .flow-board::after,
  .plan-pro {
    animation: none !important;
  }
}

/* ---------- responsivo ---------- */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 32px;
  }

  .live-flow {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 40px;
  }

  .flow-copy,
  .flow-board {
    position: relative;
    top: auto;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  nav {
    display: none;
  }

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

  h1 {
    font-size: clamp(2.5rem, 11vw, 4rem);
  }
}

@media (max-width: 560px) {
  .topbar,
  main,
  footer {
    width: min(100% - 28px, 1400px);
  }

  .topbar {
    gap: 12px;
    padding: 16px 0;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .brand span {
    font-size: 0.98rem;
  }

  .topbar-action {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.78rem;
  }

  .hero {
    gap: 30px;
    padding-bottom: 56px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
    line-height: 1.02;
  }

  .signal-row {
    flex-direction: column;
  }

  .signal-row > span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-row > span:last-child {
    border-bottom: 0;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button-primary::after {
    margin-left: auto;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-actions,
  .cookie-link,
  .cookie-accept {
    width: 100%;
  }

  .plans,
  .live-flow,
  .feature-band,
  .compare,
  .final-cta {
    padding: 56px 0;
  }

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

  .prediction-row {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .prediction-row small {
    grid-column: 1 / -1;
    text-align: left;
    min-width: 0;
  }

  .plan {
    padding: 26px;
  }

  .final-cta {
    padding: 44px 20px;
  }

  footer {
    gap: 14px;
  }

  footer .footer-main,
  footer .footer-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  footer .footer-dot {
    display: none;
  }
}
