/* ============================================================
   NETORBIT. Landing Page
   Sistema de design: dark com metáfora de órbita
   ============================================================ */

:root {
  --bg-0: #05060b;
  --bg-1: #0a0a0f;
  --bg-2: #0f1320;
  --bg-3: #151a2d;

  --cyan: #06b6d4;
  --cyan-bright: #22d3ee;
  --cyan-soft: rgba(34, 211, 238, 0.12);
  --gold: #eab308;
  --silver: #94a3b8;
  --red: #ef4444;
  --amber: #f59e0b;

  --ink-0: #f8fafc;
  --ink-1: #cbd5e1;
  --ink-2: #94a3b8;
  --ink-3: #64748b;

  --line: rgba(148, 163, 184, 0.14);
  --line-strong: rgba(148, 163, 184, 0.28);

  --mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, monospace;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Fraunces", "Inter", ui-serif, Georgia, serif;
}

* { box-sizing: border-box; }

html, body {
  background: var(--bg-0);
  color: var(--ink-0);
  font-family: var(--sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  margin: 0;
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(6, 182, 212, 0.09), transparent 60%),
    radial-gradient(1000px 600px at 10% 30%, rgba(234, 179, 8, 0.05), transparent 60%),
    radial-gradient(900px 900px at 50% 110%, rgba(14, 28, 51, 0.9), transparent 60%),
    var(--bg-0);
  overflow-x: hidden;
  text-wrap: pretty;
}

/* tiny starfield via repeating-radial */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(203, 213, 225, 0.5), transparent 50%),
    radial-gradient(1px 1px at 72% 38%, rgba(203, 213, 225, 0.4), transparent 50%),
    radial-gradient(1px 1px at 28% 78%, rgba(203, 213, 225, 0.45), transparent 50%),
    radial-gradient(1px 1px at 88% 88%, rgba(203, 213, 225, 0.35), transparent 50%),
    radial-gradient(1.5px 1.5px at 44% 24%, rgba(34, 211, 238, 0.55), transparent 50%),
    radial-gradient(1.5px 1.5px at 60% 72%, rgba(234, 179, 8, 0.35), transparent 50%);
  background-size: 800px 800px;
  opacity: 0.5;
}

/* ============ Tipografia ============ */
.font-display { font-family: var(--display); font-weight: 500; letter-spacing: -0.02em; }
.font-mono { font-family: var(--mono); }

h1, h2, h3, h4 { letter-spacing: -0.02em; }
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--cyan-bright);
}

/* ============ Utilities ============ */
.container-x { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container-x { padding: 0 40px; } }

.hairline { border-top: 1px solid var(--line); }
.hairline-b { border-bottom: 1px solid var(--line); }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12px;
  color: var(--ink-1);
  background: rgba(15, 19, 32, 0.6);
  backdrop-filter: blur(8px);
}
.chip .dot {
  width: 6px; height: 6px; border-radius: 99px;
  background: var(--cyan-bright);
  box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.6);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(34, 211, 238, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0); }
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, #22d3ee 0%, #06b6d4 100%);
  color: #05171b;
  box-shadow:
    0 0 0 1px rgba(34, 211, 238, 0.4) inset,
    0 10px 40px -10px rgba(34, 211, 238, 0.55),
    0 0 80px -20px rgba(34, 211, 238, 0.45);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.7) inset, 0 18px 60px -10px rgba(34, 211, 238, 0.75), 0 0 120px -20px rgba(34, 211, 238, 0.7); }
.btn-ghost {
  background: rgba(15, 19, 32, 0.6);
  color: var(--ink-0);
  border-color: var(--line-strong);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan-bright); }

.btn-lg { padding: 18px 28px; font-size: 16px; }
.btn-xl { padding: 22px 34px; font-size: 18px; border-radius: 999px; }

.btn-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px 20px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 14px;
  color: #25d366;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  margin-top: 4px;
}
.btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.14);
  border-color: rgba(37, 211, 102, 0.6);
  transform: translateY(-1px);
}

/* ============ Section framing ============ */
section { position: relative; z-index: 1; padding: 100px 0; overflow-x: clip; }
@media (max-width: 768px) { section { padding: 72px 0; } }

.section-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-2);
  border: 1px solid var(--line-strong);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.h1 { font-size: clamp(40px, 6.5vw, 84px); line-height: 0.98; font-weight: 300; letter-spacing: -0.035em; }
.h1 em { font-style: normal; font-family: var(--display); font-weight: 400; color: var(--cyan-bright); }
.h2 { font-size: clamp(30px, 4.2vw, 52px); line-height: 1.04; font-weight: 300; letter-spacing: -0.03em; }
.h2 em { font-style: normal; font-family: var(--display); font-weight: 400; color: var(--cyan-bright); }
.h3 { font-size: clamp(22px, 2.2vw, 28px); line-height: 1.2; font-weight: 500; }
.lead { font-size: clamp(16px, 1.4vw, 19px); color: var(--ink-1); line-height: 1.55; max-width: 58ch; }

/* ============ Top scroll progress ============ */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 90;
  background: rgba(148, 163, 184, 0.08);
}
.scroll-progress > div {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #06b6d4, #eab308);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.6);
  transition: width 120ms linear;
}

/* ============ Nav ============ */
.nav {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  z-index: 80;
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px 8px 16px;
  background: rgba(10, 10, 15, 0.72);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 14px;
}
.nav a { color: var(--ink-1); text-decoration: none; padding: 8px 12px; border-radius: 999px; }
.nav a:hover { color: var(--ink-0); background: rgba(255,255,255,0.04); }
.nav .brand { display: flex; align-items: center; gap: 10px; color: var(--ink-0); font-weight: 600; letter-spacing: -0.01em; padding-right: 6px; }
.nav .brand-mark { width: 22px; height: 22px; }
@media (max-width: 820px) { .nav .nav-links { display: none; } }

/* ============ Hero ============ */
.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  position: relative;
  display: grid;
  place-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
}
.hero-xp-card {
  position: absolute;
  right: 24px; bottom: 24px;
  font-family: var(--mono);
  font-size: 11px;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(15, 19, 32, 0.72);
  backdrop-filter: blur(10px);
  color: var(--ink-1);
  display: flex; align-items: center; gap: 10px;
  z-index: 5;
}
.hero-xp-card .xp-val { color: var(--cyan-bright); font-weight: 600; }
.hero-xp-card .xp-plus { color: var(--gold); opacity: 0; transition: opacity .3s ease; transform: translateY(-2px); }
.hero-xp-card.bump .xp-plus { opacity: 1; }

/* spiral stage */
.spiral-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}
.spiral-stage svg { width: 100%; height: 100%; display: block; }
.spiral-path {
  fill: none;
  stroke: rgba(34, 211, 238, 0.22);
  stroke-width: 1;
  stroke-dasharray: 2 4;
}
.spiral-path.bright { stroke: rgba(34, 211, 238, 0.5); }
.spiral-core {
  fill: url(#coreGrad);
  filter: drop-shadow(0 0 20px rgba(34, 211, 238, 0.7));
}
.orbit-node {
  transition: r .2s ease, opacity .2s ease;
}
.orbit-node-label {
  font-family: var(--mono);
  font-size: 8px;
  fill: var(--ink-2);
  text-anchor: middle;
}
.orbit-link {
  stroke: rgba(234, 179, 8, 0.35);
  stroke-width: 1;
  stroke-dasharray: 3 3;
  fill: none;
}
.warn-ring { fill: none; stroke: #f59e0b; stroke-width: 1.2; stroke-dasharray: 2 3; opacity: 0.7; }
.danger-ring {
  fill: none; stroke: #ef4444; stroke-width: 1.4;
  animation: pulse-danger 2s infinite;
}
@keyframes pulse-danger {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 0.3; }
}

/* Decay tick numbers */
.decay-tick {
  font-family: var(--mono);
  font-size: 8px;
  fill: #f87171;
}

/* Particle dot */
.particle {
  fill: rgba(34, 211, 238, 0.7);
}

/* ================================================================
   HERO — Imersivo e animado
   ================================================================ */
.hero-immersive {
  overflow: hidden;
  isolation: isolate;
}
.hero-immersive::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(34,211,238,0.08), transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 10%, rgba(6,182,212,0.05), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.hero-immersive .container-x { position: relative; z-index: 2; }

/* Starfield canvas (parallax with mouse) */
#hero-stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
}

/* Pulsing vignette behind copy */
.hero-vignette {
  position: absolute;
  inset: -10% -10% -10% -10%;
  background: radial-gradient(ellipse 50% 50% at 70% 50%, rgba(34,211,238,0.18), transparent 60%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
  animation: vignettePulse 7s ease-in-out infinite;
}
@keyframes vignettePulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.04); }
}

/* Reveal: stagger in */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(6px);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.9s ease-out;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
/* h1 lines animate as block-level */
.h1 .reveal { display: block; }

/* Hero copy letter-shine on heading em */
.hero-copy .h1 em {
  background: linear-gradient(90deg, #22d3ee 0%, #67e8f9 40%, #22d3ee 80%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shineText 6s linear infinite;
}
@keyframes shineText {
  from { background-position: 0% 50%; }
  to { background-position: 200% 50%; }
}

/* Spiral stage — parallax tilt on mouse */
.hero-spiral-stage {
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

/* Halo pulses */
.hero-halo {
  transform-origin: 280px 280px;
  animation: haloBreathe 5s ease-in-out infinite;
}
@keyframes haloBreathe {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.06); }
}

/* Expanding ripples from core */
.hero-ripple {
  transform-origin: 280px 280px;
  animation: ripple 4.5s ease-out infinite;
  animation-delay: var(--d, 0s);
  opacity: 0;
}
@keyframes ripple {
  0% { transform: scale(0.3); opacity: 0.8; }
  80% { opacity: 0.15; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* Ring draw-in */
.hero-rings .draw {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: drawRing 1.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  animation-delay: var(--delay, 0s);
  opacity: 0;
}
@keyframes drawRing {
  0% { stroke-dashoffset: 1; opacity: 0; }
  20% { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 1; }
}

/* Rotate orbit group slowly */
.hero-orbit-rot {
  transform-origin: 280px 280px;
  animation: slowSpin 90s linear infinite;
}
@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Big-bang nodes: fly from center to final position */
.bb-node {
  /* Placeholders start at center (0,0 -> translate to final). We animate from center */
  transform: translate(280px, 280px) scale(0.2);
  opacity: 0;
  animation: bigBang 1.3s cubic-bezier(0.2, 0.8, 0.25, 1) forwards;
  animation-delay: calc(0.8s + var(--i, 0) * 70ms);
}
@keyframes bigBang {
  0%   { transform: translate(280px, 280px) scale(0.2); opacity: 0; }
  60%  { opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) scale(1); opacity: 1; }
}

/* Twinkle particles */
.twinkle {
  animation: twinkle 3s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
@keyframes twinkle {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}

/* Core pulse (behind the solid core) */
.hero-core-pulse {
  fill: rgba(34,211,238,0.5);
  transform-origin: 280px 280px;
  animation: corePulse 2.6s ease-in-out infinite;
  filter: blur(6px);
}
@keyframes corePulse {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50%      { transform: scale(1.8); opacity: 0.1; }
}

/* Callouts (absolute overlays) */
.hero-callout {
  position: absolute;
  font-family: var(--mono);
  font-size: 10px;
  pointer-events: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-callout-left { top: 24%; left: 0; color: #fca5a5; }
.hero-callout-left span {
  border: 1px solid rgba(239,68,68,0.4);
  padding: 4px 8px; border-radius: 99px;
  background: rgba(239,68,68,0.08);
  animation: floaty 4s ease-in-out infinite;
}
.hero-callout-right { top: 20%; right: 0; color: #fbbf24; }
.hero-callout-right span {
  border: 1px solid rgba(234,179,8,0.4);
  padding: 4px 8px; border-radius: 99px;
  background: rgba(234,179,8,0.08);
  animation: floaty 4.6s ease-in-out -1s infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 4;
  pointer-events: none;
}
.hero-scroll-hint .scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(34,211,238,0.6), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-hint .scroll-line i {
  position: absolute;
  left: -1px; top: -20px;
  width: 3px; height: 20px;
  background: linear-gradient(to bottom, transparent, #22d3ee);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { top: -20px; opacity: 0; }
  30% { opacity: 1; }
  100% { top: 48px; opacity: 0; }
}
@media (max-width: 1024px) {
  .hero-scroll-hint { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orbit-rot,
  .hero-ripple,
  .hero-halo,
  .hero-core-pulse,
  .twinkle,
  .hero-callout-left span,
  .hero-callout-right span,
  .hero-scroll-hint .scroll-line i,
  .hero-vignette,
  .hero-copy .h1 em { animation: none; }
  .bb-node { animation: none; transform: translate(var(--tx), var(--ty)); opacity: 1; }
  .hero-rings .draw { animation: none; stroke-dashoffset: 0; opacity: 1; }
  .reveal { opacity: 1; transform: none; filter: none; }
}

/* ============ Social proof strip ============ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  background: rgba(10, 10, 15, 0.5);
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-2);
}
.marquee-track {
  display: flex; gap: 56px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-track span { display: inline-flex; align-items: center; gap: 10px; }
.marquee-track .sep { color: var(--cyan); }

/* ============ Problem cards (PAS) ============ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.04), rgba(15, 19, 32, 0.55));
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.problem-card .quote {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink-0);
  letter-spacing: -0.01em;
}
.problem-card .attribution {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.problem-card .time-dust {
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red));
  opacity: 0.7;
}

/* ============ Interactive mini spiral ============ */
.mini-spiral-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(15, 19, 32, 0.6), rgba(10, 10, 15, 0.6));
  padding: 40px;
}
@media (max-width: 960px) { .mini-spiral-wrap { grid-template-columns: 1fr; padding: 28px; } }
.mini-spiral-stage { aspect-ratio: 1/1; max-width: 460px; width: 100%; margin: 0 auto; position: relative; }
.mini-spiral-stage svg { width: 100%; height: 100%; }
.mini-readout {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-1);
  min-height: 200px;
}
.mini-readout .row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--line); }
.mini-readout .row:last-child { border-bottom: 0; }
.mini-readout .v { color: var(--cyan-bright); }
.mini-readout .v.warn { color: var(--amber); }
.mini-readout .v.danger { color: var(--red); }

/* ============ How it works ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background: rgba(15, 19, 32, 0.5);
  position: relative;
  min-height: 220px;
}
.step .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cyan-bright);
  letter-spacing: 0.2em;
}
.step h4 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 12px 0 8px;
}
.step p { color: var(--ink-2); font-size: 14px; line-height: 1.5; }
.step svg { margin-top: 16px; }

/* ============ Features grid (asymmetric bento) ============ */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 14px;
}
.b-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(15, 19, 32, 0.72), rgba(10, 10, 15, 0.72));
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 16px;
}
.b-card .label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cyan-bright);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.b-card h3 { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; margin: 8px 0 6px; color: var(--ink-0); }
.b-card p { color: var(--ink-2); font-size: 14px; line-height: 1.5; max-width: 36ch; }
.b-card .viz { flex: 1; min-height: 120px; position: relative; }
.b-wide { grid-column: span 4; }
.b-half { grid-column: span 3; }
.b-third { grid-column: span 2; }
.b-full { grid-column: span 6; }
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(4, 1fr); }
  .b-wide { grid-column: span 4; }
  .b-half { grid-column: span 2; }
  .b-third { grid-column: span 2; }
  .b-full { grid-column: span 4; }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; }
  .b-wide, .b-half, .b-third, .b-full { grid-column: span 1; }
}

/* mini score bars */
.score-bar { height: 6px; border-radius: 99px; background: rgba(255,255,255,0.06); overflow: hidden; position: relative; }
.score-bar > i { display: block; height: 100%; background: linear-gradient(90deg, #06b6d4, #22d3ee); border-radius: 99px; }
.score-bar.warn > i { background: linear-gradient(90deg, #f59e0b, #f87171); }
.score-bar.gold > i { background: linear-gradient(90deg, #eab308, #fbbf24); }

.mini-kanban { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; font-family: var(--mono); font-size: 9px; }
.mini-kanban .col { background: rgba(255,255,255,0.03); border-radius: 8px; padding: 8px; display: flex; flex-direction: column; gap: 4px; min-height: 110px; }
.mini-kanban .col .hd { font-size: 8px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.7; margin-bottom: 2px; }
.mini-kanban .col.k-red .hd { color: var(--red); }
.mini-kanban .col.k-blue .hd { color: #60a5fa; }
.mini-kanban .col.k-amber .hd { color: var(--amber); }
.mini-kanban .col.k-silver .hd { color: var(--silver); }
.mini-kanban .task { background: rgba(255,255,255,0.05); border-radius: 5px; padding: 5px 6px; font-size: 9px; color: var(--ink-1); border-left: 2px solid; }
.mini-kanban .k-red .task { border-color: var(--red); }
.mini-kanban .k-blue .task { border-color: #60a5fa; }
.mini-kanban .k-amber .task { border-color: var(--amber); }
.mini-kanban .k-silver .task { border-color: var(--silver); opacity: 0.6; }

/* psych profile card */
.psych-row { display: flex; align-items: center; justify-content: space-between; padding: 6px 0; border-bottom: 1px dashed var(--line); font-family: var(--mono); font-size: 11px; }
.psych-row:last-child { border: 0; }
.psych-row .k { color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.15em; font-size: 10px; }
.psych-row .v { color: var(--ink-0); }
.psych-row .v.gold { color: var(--gold); }

/* whatsapp bubble */
.wa-mock { display: flex; flex-direction: column; gap: 6px; }
.wa-bubble { max-width: 80%; padding: 8px 12px; border-radius: 14px; font-size: 12px; line-height: 1.35; background: rgba(34, 211, 238, 0.12); border: 1px solid rgba(34, 211, 238, 0.3); color: var(--ink-0); align-self: flex-end; border-bottom-right-radius: 2px; }
.wa-bubble.in { align-self: flex-start; background: rgba(148, 163, 184, 0.08); border-color: rgba(148, 163, 184, 0.2); border-bottom-right-radius: 14px; border-bottom-left-radius: 2px; }
.wa-stamp { font-family: var(--mono); font-size: 9px; color: var(--ink-3); }

/* ============ Proof ============ */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .proof-grid { grid-template-columns: 1fr; } }
.proof-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  background: rgba(15, 19, 32, 0.55);
  display: flex; flex-direction: column; gap: 18px;
}
.proof-card .stars { color: var(--gold); letter-spacing: 2px; }
.proof-card blockquote { font-family: var(--display); font-weight: 400; font-size: 19px; line-height: 1.35; color: var(--ink-0); margin: 0; letter-spacing: -0.01em; }
.proof-card .who { display: flex; align-items: center; gap: 12px; }
.proof-card .who .avatar { width: 40px; height: 40px; border-radius: 99px; background: linear-gradient(135deg, rgba(34, 211, 238, 0.4), rgba(234, 179, 8, 0.3)); border: 1px solid var(--line-strong); font-family: var(--mono); font-size: 12px; display: grid; place-items: center; color: var(--ink-0); }
.proof-card .who .meta { font-family: var(--mono); font-size: 11px; color: var(--ink-2); line-height: 1.4; }
.proof-card .who .meta b { color: var(--ink-0); font-weight: 500; }
.proof-card .metric { font-family: var(--mono); font-size: 11px; color: var(--cyan-bright); border-top: 1px dashed var(--line); padding-top: 12px; letter-spacing: 0.1em; }

/* ============ Stack of value ============ */
.stack-wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: flex-start; }
@media (max-width: 960px) { .stack-wrap { grid-template-columns: 1fr; } }
.stack-list {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  background: rgba(15, 19, 32, 0.5);
}
.stack-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.stack-row:last-of-type { border-bottom: 0; }
.stack-row .t { color: var(--ink-0); font-size: 15px; }
.stack-row .t small { color: var(--ink-3); font-family: var(--mono); font-size: 11px; display: block; margin-top: 2px; }
.stack-row .v { font-family: var(--mono); color: var(--cyan-bright); white-space: nowrap; font-size: 13px; }
.stack-total { margin-top: 14px; padding: 16px; border: 1px solid var(--line-strong); border-radius: 16px; background: rgba(234, 179, 8, 0.06); display: flex; justify-content: space-between; align-items: baseline; }
.stack-total .t { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.stack-total .v { font-family: var(--display); font-size: 28px; color: var(--ink-0); letter-spacing: -0.01em; }

/* Plan cards */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 720px) { .plans { grid-template-columns: 1fr; } }
.plan {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  background: rgba(10, 10, 15, 0.6);
  position: relative;
  display: flex; flex-direction: column; gap: 16px;
}
.plan.highlight {
  border-color: rgba(34, 211, 238, 0.6);
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.06), rgba(10, 10, 15, 0.6));
  box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.18), 0 30px 100px -40px rgba(34, 211, 238, 0.5);
}
.plan .badge {
  position: absolute;
  top: -12px; left: 24px;
  background: linear-gradient(90deg, #22d3ee, #06b6d4);
  color: #042024;
  font-family: var(--mono);
  font-size: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}
.plan .plan-name { font-family: var(--display); font-size: 28px; letter-spacing: -0.015em; }
.plan .plan-sub { color: var(--ink-2); font-size: 13px; }
.plan .price { display: flex; align-items: baseline; gap: 6px; margin: 4px 0; }
.plan .price .cur { font-family: var(--mono); color: var(--ink-2); }
.plan .price .v { font-family: var(--display); font-weight: 500; font-size: 48px; letter-spacing: -0.02em; }
.plan .price .per { color: var(--ink-3); font-size: 13px; font-family: var(--mono); }
.plan ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.plan li { font-size: 14px; color: var(--ink-1); display: flex; gap: 10px; align-items: flex-start; }
.plan li.off { color: var(--ink-3); text-decoration: line-through; }
.plan li .check { color: var(--cyan-bright); font-family: var(--mono); width: 14px; flex-shrink: 0; }
.plan li.off .check { color: var(--ink-3); }

/* pricing toggle */
.toggle {
  display: inline-flex; align-items: center; gap: 4px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 4px;
  background: rgba(15, 19, 32, 0.6);
  font-family: var(--mono);
  font-size: 12px;
}
.toggle button {
  background: transparent; border: 0; color: var(--ink-2);
  padding: 8px 16px; border-radius: 999px; cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background .2s, color .2s;
}
.toggle button.on { background: rgba(34, 211, 238, 0.15); color: var(--cyan-bright); }
.toggle .save { color: var(--gold); font-size: 10px; padding: 3px 6px; border-radius: 99px; background: rgba(234, 179, 8, 0.12); margin-left: 6px; }

.secure-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 18px; font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.1em; text-transform: uppercase; }
.secure-row .pill { border: 1px solid var(--line); padding: 6px 10px; border-radius: 99px; }

/* ============ Guarantee ============ */
.guarantee {
  display: grid; grid-template-columns: 180px 1fr; gap: 32px;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  padding: 40px;
  background:
    radial-gradient(600px 200px at 10% 50%, rgba(234, 179, 8, 0.1), transparent 60%),
    rgba(15, 19, 32, 0.55);
}
@media (max-width: 720px) { .guarantee { grid-template-columns: 1fr; text-align: center; } }
.seal {
  width: 180px; height: 180px; border-radius: 99px;
  border: 2px dashed rgba(234, 179, 8, 0.5);
  display: grid; place-items: center;
  position: relative;
  background: radial-gradient(circle at 50% 40%, rgba(234, 179, 8, 0.18), transparent 70%);
  margin: 0 auto;
}
.seal svg { position: absolute; inset: 0; animation: spin 30s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.seal-inner { font-family: var(--display); font-size: 40px; font-weight: 500; color: var(--gold); line-height: 1; letter-spacing: -0.02em; text-align: center; }
.seal-inner small { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; color: var(--ink-2); margin-top: 6px; text-transform: uppercase; }

/* ============ FAQ ============ */
.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-0);
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--mono);
  color: var(--cyan-bright);
  transition: transform .2s ease;
  font-size: 22px;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { color: var(--ink-1); font-size: 15px; line-height: 1.6; padding-top: 12px; max-width: 70ch; }

/* ============ Final CTA ============ */
.final-cta {
  border-radius: 32px;
  padding: 72px 48px;
  background:
    radial-gradient(700px 400px at 20% 20%, rgba(34, 211, 238, 0.12), transparent 60%),
    radial-gradient(700px 400px at 80% 80%, rgba(234, 179, 8, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(15, 19, 32, 0.85), rgba(5, 6, 11, 0.85));
  border: 1px solid var(--line-strong);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta .countdown {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.06);
  padding: 10px 18px;
  border-radius: 16px;
  margin-bottom: 24px;
  max-width: 100%;
  line-height: 1.6;
  text-align: center;
}
.final-cta .countdown b { color: var(--ink-0); font-weight: 600; margin: 0 5px; }
@media (max-width: 600px) { .final-cta { padding: 48px 24px; } .final-cta .countdown { font-size: 11px; letter-spacing: 0.1em; } }

/* ============ Footer ============ */
footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--ink-3);
  font-size: 13px;
}
footer a { color: var(--ink-2); text-decoration: none; }
footer a:hover { color: var(--cyan-bright); }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }

/* ============ Chatbot ============ */
.bot-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 70;
  width: 64px; height: 64px;
  border-radius: 99px;
  background: radial-gradient(circle, #22d3ee, #06b6d4);
  border: 0;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.6), 0 10px 40px -8px rgba(34, 211, 238, 0.6);
  animation: pulse-fab 2.4s infinite;
  display: grid; place-items: center;
}
@keyframes pulse-fab {
  0% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.6), 0 10px 40px -8px rgba(34, 211, 238, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(34, 211, 238, 0), 0 10px 40px -8px rgba(34, 211, 238, 0.6); }
  100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0), 0 10px 40px -8px rgba(34, 211, 238, 0.6); }
}
.bot-fab svg { width: 28px; height: 28px; color: #041b20; }
.bot-fab .bot-notif {
  position: absolute; top: -2px; right: -2px;
  width: 18px; height: 18px; border-radius: 99px;
  background: var(--red);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  display: grid; place-items: center;
  border: 2px solid var(--bg-0);
}

.bot-panel {
  position: fixed; right: 24px; bottom: 100px; z-index: 70;
  width: 360px; max-width: calc(100vw - 32px);
  max-height: 70vh;
  border-radius: 20px;
  background: rgba(10, 12, 20, 0.96);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(34, 211, 238, 0.1);
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.bot-panel.open { display: flex; animation: slide-up .25s ease; }
@keyframes slide-up { from { transform: translateY(10px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.bot-head {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
}
.bot-head .bot-av {
  width: 36px; height: 36px; border-radius: 99px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.3), rgba(34, 211, 238, 0.05));
  border: 1px solid rgba(34, 211, 238, 0.35);
  display: grid; place-items: center;
}
.bot-head .ttl { font-weight: 600; font-size: 14px; }
.bot-head .sub { font-family: var(--mono); font-size: 10px; color: var(--cyan-bright); letter-spacing: 0.16em; text-transform: uppercase; }
.bot-head .close { margin-left: auto; background: transparent; border: 0; color: var(--ink-2); cursor: pointer; font-size: 20px; padding: 4px 8px; }
.bot-head .step-dots { display: flex; gap: 4px; margin-left: 8px; }
.bot-head .step-dots i { width: 6px; height: 6px; border-radius: 99px; background: rgba(148, 163, 184, 0.25); }
.bot-head .step-dots i.on { background: var(--cyan-bright); }

.bot-body {
  padding: 16px;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.bot-msg {
  padding: 12px 14px;
  border-radius: 14px;
  max-width: 88%;
  font-size: 14px;
  line-height: 1.45;
  animation: fadeUp .3s ease;
}
@keyframes fadeUp { from { transform: translateY(4px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.bot-msg.from-bot { background: rgba(15, 19, 32, 0.8); border: 1px solid var(--line); color: var(--ink-0); align-self: flex-start; border-bottom-left-radius: 4px; }
.bot-msg.from-user { background: linear-gradient(180deg, rgba(34, 211, 238, 0.18), rgba(34, 211, 238, 0.1)); border: 1px solid rgba(34, 211, 238, 0.3); color: var(--ink-0); align-self: flex-end; border-bottom-right-radius: 4px; }

.bot-opts { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.bot-opt {
  text-align: left;
  background: rgba(15, 19, 32, 0.6);
  border: 1px solid var(--line);
  color: var(--ink-0);
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 13px;
  transition: border-color .15s, background .15s;
}
.bot-opt:hover { border-color: var(--cyan); background: rgba(34, 211, 238, 0.08); }
.bot-opt .em { color: var(--ink-3); font-family: var(--mono); font-size: 10px; margin-left: 6px; letter-spacing: 0.08em; text-transform: uppercase; }

.bot-recomend {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(34, 211, 238, 0.35);
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.08), rgba(15, 19, 32, 0.9));
  margin-top: 6px;
}
.bot-recomend .ttl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan-bright); }
.bot-recomend h5 { font-family: var(--display); font-size: 22px; margin: 4px 0 6px; letter-spacing: -0.01em; font-weight: 500; }
.bot-recomend p { font-size: 13px; color: var(--ink-1); line-height: 1.45; margin: 0 0 10px; }

/* ============ Cookie banner ============ */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 95;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(10, 12, 20, 0.96);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  box-shadow: 0 10px 50px -10px rgba(0,0,0,0.6);
  font-size: 13px;
  color: var(--ink-1);
  max-width: 720px;
  margin: 0 auto;
}
.cookie button { padding: 8px 14px; border-radius: 99px; border: 1px solid var(--line-strong); background: transparent; color: var(--ink-1); cursor: pointer; font-size: 12px; }
.cookie button.primary { background: var(--cyan-bright); color: #051a1f; border-color: var(--cyan-bright); font-weight: 600; }

/* ============ Price unlock (gamification) ============ */
.price-locked {
  position: relative;
}
.price-locked.locked .plans,
.price-locked.locked .stack-wrap { filter: blur(8px) brightness(0.7); pointer-events: none; user-select: none; }
.price-locked .lock-overlay {
  display: none;
  position: absolute; inset: 0;
  place-items: center;
  text-align: center;
  padding: 32px;
  z-index: 2;
}
.price-locked.locked .lock-overlay { display: grid; }
.lock-overlay-inner {
  max-width: 480px;
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: rgba(10, 12, 20, 0.92);
  backdrop-filter: blur(12px);
}
.lock-overlay-inner h3 { font-family: var(--display); font-weight: 500; font-size: 26px; letter-spacing: -0.015em; margin: 0 0 10px; }
.lock-overlay-inner p { color: var(--ink-2); font-size: 14px; margin: 0 0 16px; }

/* ============ Confetti / particle pop ============ */
.spark {
  position: fixed;
  width: 6px; height: 6px; border-radius: 99px;
  pointer-events: none;
  z-index: 120;
  background: var(--cyan-bright);
  box-shadow: 0 0 10px currentColor;
}

/* ============ Easter egg toast ============ */
.easter-toast {
  position: fixed;
  top: 72px; left: 50%;
  transform: translateX(-50%) translateY(-20px);
  opacity: 0;
  z-index: 100;
  padding: 14px 20px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(234, 179, 8, 0.2), rgba(15, 19, 32, 0.95));
  border: 1px solid rgba(234, 179, 8, 0.4);
  font-family: var(--mono);
  font-size: 13px;
  color: var(--gold);
  transition: all .4s ease;
  pointer-events: none;
  text-align: center;
}
.easter-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.easter-toast b { color: var(--ink-0); }

/* ============ Prints grid ============ */
.prints-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  overflow: hidden;
}
.prints-grid .ph {
  aspect-ratio: unset !important;
  height: 140px;
}
@media (max-width: 640px) {
  .prints-grid { grid-template-columns: repeat(2, 1fr); }
  .prints-grid .ph { height: 110px; }
}

/* ============ Placeholder image (striped) ============ */
.ph {
  border-radius: 16px;
  border: 1px dashed var(--line-strong);
  background:
    repeating-linear-gradient(45deg, rgba(148, 163, 184, 0.05) 0 10px, transparent 10px 20px),
    rgba(15, 19, 32, 0.4);
  display: grid; place-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  min-height: 80px;
}

/* Ensure all sections stacked above background */
main { position: relative; z-index: 1; }

/* Fundador */
@media (max-width: 860px) { #fundador .container-x > div[style*='grid-template-columns'] { grid-template-columns: 1fr !important; } #fundador img { aspect-ratio: 4/3 !important; max-width: 360px; } #fundador div[style*='sticky'] { position: static !important; text-align: center; } }

/* Bônus GPS do Gestor */
@media (max-width: 860px) { #bonus .container-x > div[style*='grid-template-columns:1fr 1fr'] { grid-template-columns: 1fr !important; } }

/* Onboarding steps */
@media (max-width: 720px) { div[style*='grid-template-columns:repeat(4,1fr)'] { grid-template-columns: 1fr 1fr !important; } }
@media (max-width: 480px) { div[style*='grid-template-columns:repeat(4,1fr)'] { grid-template-columns: 1fr !important; } }
