/* ─── TOKENS ──────────────────────────────────────────────────────────── */
:root {
  --blue:        #3B63F5;
  --blue-light:  #5B7FF7;
  --blue-dark:   #1E3FCC;
  --blue-glow:   rgba(59, 99, 245, 0.35);

  --red:         #E63946;
  --red-light:   #FF5A63;
  --red-glow:    rgba(230, 57, 70, 0.30);

  --yellow:      #F5C518;
  --yellow-glow: rgba(245, 197, 24, 0.25);

  --bg:          #090C14;
  --bg-2:        #0E1220;
  --bg-3:        #141826;
  --bg-card:     #111827;
  --bg-card-2:   #1A2238;

  --border:      rgba(255,255,255,0.07);
  --border-blue: rgba(59, 99, 245, 0.4);

  --text:        #F0F4FF;
  --text-2:      #8896B3;
  --text-3:      #4A5670;

  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;

  --font: 'Inter', system-ui, sans-serif;
}

/* ─── RESET ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

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

input, button { font-family: inherit; }

/* ─── UTILITIES ───────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 48px;
}

.highlight-blue  { color: var(--blue-light); }
.highlight-red   { color: var(--red-light); }
.highlight-yellow{ color: var(--yellow); }

/* ── Decorative underline accents ── */
.ul-blue,
.ul-red {
  display: inline;
  padding-bottom: 4px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 3px;
}
.ul-blue {
  color: var(--blue-light);
  background-image: linear-gradient(90deg, var(--blue), var(--blue-light));
  text-shadow: 0 0 24px rgba(59, 99, 245, 0.35);
}
.ul-red {
  color: var(--red-light);
  background-image: linear-gradient(90deg, var(--red), var(--red-light));
  text-shadow: 0 0 24px rgba(230, 57, 70, 0.30);
}

/* ─── BUTTONS ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 20px var(--blue-glow);
}

.btn-primary:hover {
  background: var(--blue-light);
  box-shadow: 0 0 32px var(--blue-glow);
}

.btn-sm  { padding: 9px 18px;  font-size: 0.875rem; border-radius: var(--radius-sm); }
.btn-lg  { padding: 16px 32px; font-size: 1rem;    border-radius: var(--radius); }
.btn-xl  { padding: 20px 40px; font-size: 1.1rem;  border-radius: var(--radius); font-weight: 800; letter-spacing: 0.01em; }

/* ─── NAVBAR ──────────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 12, 20, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 83px;
}

.nav-logo img {
  height: 46px;
  width: auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ─── LANGUAGE SWITCHER ───────────────────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 3px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-2);
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  padding: 4px 9px;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
  line-height: 1;
}

.lang-btn.active {
  background: var(--blue);
  color: #fff;
}

.lang-btn:not(.active):hover {
  color: var(--text);
  background: rgba(255,255,255,0.08);
}

/* ─── HERO ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}

/* Subtle grid background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
  pointer-events: none;
}

/* Blue radial glow top-center */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(59,99,245,0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* Red glow bottom-right */
.hero::after {
  content: '';
  position: absolute;
  bottom: 60px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(230,57,70,0.10) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,99,245,0.12);
  border: 1px solid rgba(59,99,245,0.35);
  color: var(--blue-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 8px var(--blue-light);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 820px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--text-2);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-sub strong { color: var(--text); }

/* ─── LADDER TILES DECORATION ─────────────────────────────────────────── */
.tiles-deco {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
  pointer-events: none;
  z-index: 0;
}

.tiles-left {
  left: 20px;
  mask-image: linear-gradient(to right, transparent, black 40%, black 70%, transparent);
}

.tiles-right {
  right: 20px;
  mask-image: linear-gradient(to left, transparent, black 40%, black 70%, transparent);
}

.trow {
  display: flex;
  gap: 4px;
  animation: tiles-float 6s ease-in-out infinite;
}

/* Stagger animation per row */
.trow:nth-child(1) { animation-delay: 0s; }
.trow:nth-child(2) { animation-delay: 0.4s; }
.trow:nth-child(3) { animation-delay: 0.8s; }
.trow:nth-child(4) { animation-delay: 1.2s; }
.trow:nth-child(5) { animation-delay: 1.6s; }
.trow:nth-child(6) { animation-delay: 2.0s; }
.trow:nth-child(7) { animation-delay: 2.4s; }
.trow:nth-child(8) { animation-delay: 2.8s; }

@keyframes tiles-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

.tb, .tl {
  display: block;
  height: 18px;
  border-radius: 3px;
  width: calc(var(--w, 1) * 13px + 8px);
  transition: opacity 0.3s;
}

.tb {
  background: var(--blue);
  opacity: 0.22;
  box-shadow: 0 0 6px rgba(59,99,245,0.4);
}

.tl {
  background: var(--red);
  opacity: 0.18;
  box-shadow: 0 0 6px rgba(230,57,70,0.35);
}

/* Only show on wide screens — avoid visual clutter on mobile */
@media (max-width: 1100px) {
  .tiles-deco { display: none; }
}

/* ─── PRICING PILL (hero) ─────────────────────────────────────────────── */
.pricing-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(59, 99, 245, 0.08);
  border: 1px solid var(--border-blue);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* "Beta gratuito" — highlighted */
.pricing-original {
  color: var(--blue-light);
  font-weight: 700;
}

.pricing-original small { font-size: 0.72em; }

.pricing-divider { color: var(--text-3); font-size: 0.8rem; }

/* "Versão final: $197/mês" — muted secondary info */
.pricing-free { color: var(--text-2); font-weight: 500; }
.pricing-free strong { color: var(--text); font-weight: 700; }
.pricing-free small { font-size: 0.78em; }

/* ─── DOWNLOAD PRICING BLOCK ──────────────────────────────────────────── */
.download-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.dl-price-tag {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dl-was {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue-light);
  background: rgba(59,99,245,0.12);
  border: 1px solid var(--border-blue);
  padding: 4px 14px;
  border-radius: 100px;
}

.dl-now {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-3);
}

.dl-now small { font-size: 0.82em; }

/* ─── HERO ACTIONS ────────────────────────────────────────────────────── */
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-2);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 100px;
}

.platform-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.platform-coming {
  font-size: 0.78rem;
  color: var(--text-3);
  font-style: italic;
}

/* ─── VIRUSTOTAL SEAL ─────────────────────────────────────────────────── */
.vt-seal {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 12px 20px;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s;
  max-width: 420px;
  width: 100%;
  justify-content: center;
}
.vt-seal:hover {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.55);
}
.vt-seal-shield {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.vt-shield-icon {
  width: 40px;
  height: 40px;
}
.vt-seal-score {
  font-size: 1rem;
  font-weight: 800;
  color: #22c55e;
  line-height: 1;
}
.vt-seal-total {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-3);
}
.vt-seal-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.vt-wordmark {
  height: 18px;
  width: auto;
  fill: var(--text-2);
  opacity: 0.75;
}
.vt-seal-label {
  font-size: 0.72rem;
  color: #22c55e;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ─── DOWNLOAD DIVIDER ────────────────────────────────────────────────── */
.download-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 520px;
  margin: 36px 0 28px;
  color: var(--text-3);
  font-size: 0.8rem;
}

.download-divider::before,
.download-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ─── APP WINDOW MOCKUP ───────────────────────────────────────────────── */
.app-window {
  margin-top: 64px;
  width: 100%;
  max-width: 860px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(59,99,245,0.12),
    0 40px 100px rgba(0,0,0,0.7),
    0 0 80px rgba(59,99,245,0.12);
  /* Slight perspective tilt for depth */
  transform: perspective(1200px) rotateX(2deg);
  transform-origin: center bottom;
}

.app-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  height: 36px;
  background: #1a1f2e;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  user-select: none;
}

.app-titlebar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-titlebar-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
}

.app-titlebar-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.02em;
}

/* Windows-style traffic lights */
.app-titlebar-controls {
  display: flex;
  align-items: center;
  gap: 0;
}

.win-btn {
  width: 46px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-2);
  transition: background 0.1s;
}

.win-btn::before { content: ''; display: block; }

.win-min::before  {
  width: 10px; height: 1px;
  background: currentColor;
  margin-top: 4px;
}

.win-max::before  {
  width: 10px; height: 10px;
  border: 1px solid currentColor;
  border-radius: 1px;
}

.win-close::before {
  content: '✕';
  font-size: 11px;
  line-height: 1;
  display: block;
}

.win-btn:hover         { background: rgba(255,255,255,0.08); }
.win-close:hover       { background: #c42b1c; color: #fff; }

.app-screen {
  line-height: 0;
  background: #0a0c14;
}

.app-screen img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.97) saturate(1.05);
}

/* ─── LEAD-GATE FORM ──────────────────────────────────────────────────── */
.lead-gate {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.lead-gate-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.lead-gate-row input[type="email"] {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-blue);
  color: var(--text);
  font-size: 1rem;
  padding: 14px 18px;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.lead-gate-row input[type="email"]:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,99,245,0.18);
}

.lead-gate-row input[type="email"]::placeholder { color: var(--text-3); }

/* XL variant for the download section */
.lead-gate-xl .lead-gate-row input[type="email"] {
  padding: 18px 20px;
  font-size: 1.05rem;
}

.lead-gate-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.lead-gate-note {
  font-size: 0.78rem;
  color: var(--text-3);
}
.lead-gate-optional {
  font-size: 0.75rem;
  color: var(--text-3);
  opacity: 0.65;
  font-style: italic;
}

.lead-gate-feedback {
  min-height: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}

.lgf-success { color: #4ADE80; }
.lgf-error   { color: var(--red-light); }

.lead-gate-row .btn {
  width: 100%;
  justify-content: center;
}

/* ─── PAIN SECTION ────────────────────────────────────────────────────── */
.pain {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Override: pain uses its own title class */
.pain .section-eyebrow {
  text-align: center;
  color: var(--red-light);
}

/* ─── PAIN TITLE ──────────────────────────────────────────────────────── */
.pain-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-align: center;
  color: var(--text);
  margin-bottom: 40px;
}

.pain-trava {
  color: var(--red-light);
  display: inline-block;
  position: relative;
}

/* Red underline accent */
.pain-trava::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: var(--red-light);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--red-glow);
}

/* Subtle shake on hover */
@media (hover: hover) {
  .pain-trava:hover {
    animation: trava-shake 0.4s ease;
  }
}

@keyframes trava-shake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-4px); }
  40%      { transform: translateX(4px); }
  60%      { transform: translateX(-3px); }
  80%      { transform: translateX(3px); }
}

/* ─── DELAY VS BAR ────────────────────────────────────────────────────── */
.delay-vs-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 560px;
  margin: 0 auto 56px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.dvb-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px;
  gap: 6px;
}

.dvb-poly  { background: rgba(230,57,70,0.06); }
.dvb-pow   { background: rgba(59,99,245,0.06); }

.dvb-count {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--red-light);
}

.dvb-instant { color: var(--blue-light); }

.dvb-precount {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: -2px;
}

.dvb-label {
  font-size: 0.78rem;
  color: var(--text-2);
  text-align: center;
  line-height: 1.5;
}

.dvb-label strong { color: var(--text); font-weight: 700; }

.dvb-ms {
  font-style: normal;
  font-weight: 800;
  color: var(--blue-light);
  font-size: 1.05em;
}

.dvb-divider {
  padding: 0 16px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-3);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  align-self: stretch;
  display: flex;
  align-items: center;
}

/* ─── PAIN CARD HIGHLIGHT (first card) ───────────────────────────────── */
.pain-counter {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--red-light);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.pain-counter span {
  font-size: 1.4rem;
  font-weight: 700;
}

.pain-card-highlight {
  border-color: rgba(230, 57, 70, 0.25) !important;
  background: rgba(230, 57, 70, 0.04) !important;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.pain-card:hover {
  border-color: rgba(230, 57, 70, 0.3);
  transform: translateY(-3px);
}

.pain-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.pain-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.pain-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ─── FEATURES ────────────────────────────────────────────────────────── */
.features { background: var(--bg); }

.features .section-title {
  text-align: center;
  margin-bottom: 56px;
}

.features .section-eyebrow {
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-3px);
}

.feature-card:hover .feature-icon.blue {
  box-shadow: 0 0 24px var(--blue-glow);
  border-color: rgba(59, 99, 245, 0.5);
}

.feature-card:hover .feature-icon.red {
  box-shadow: 0 0 24px var(--red-glow);
  border-color: rgba(230, 57, 70, 0.4);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid transparent;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-icon.blue {
  background: rgba(59, 99, 245, 0.15);
  border-color: rgba(59, 99, 245, 0.25);
  color: var(--blue-light);
}

.feature-icon.red {
  background: rgba(230, 57, 70, 0.12);
  border-color: rgba(230, 57, 70, 0.20);
  color: var(--red-light);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ─── STATS ───────────────────────────────────────────────────────────── */
.stats {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 32px;
  gap: 8px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

.stat-number {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.stat-number.blue   { color: var(--blue-light); }
.stat-number.red    { color: var(--red-light); }
.stat-number.yellow { color: var(--yellow); }
.stat-number.green  { color: #4ADE80; }

.stat-suffix {
  font-size: 1rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-2);
  max-width: 180px;
  line-height: 1.5;
}

/* ─── VIDEO SECTION ───────────────────────────────────────────────────── */
.video-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Welcome variant — sits right below navbar, no top border */
.video-welcome {
  background: var(--bg);
  border-top: none;
  padding: 64px 0 80px;
}

.video-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.video-inner .section-title {
  margin-bottom: 12px;
}

.video-welcome-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 36px;
  letter-spacing: -0.01em;
  line-height: 1.45;
}

.video-sub {
  font-size: 0.95rem;
  color: var(--text-2);
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 820px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-blue);
  box-shadow:
    0 0 0 1px rgba(59,99,245,0.08),
    0 32px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(59,99,245,0.12);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── WAITLIST ────────────────────────────────────────────────────────── */
.waitlist {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.waitlist-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(59,99,245,0.14) 0%, transparent 70%);
  pointer-events: none;
}

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

.waitlist-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin-bottom: 24px;
  box-shadow: 0 0 32px var(--blue-glow);
}

.waitlist .section-title {
  margin-bottom: 16px;
}

.waitlist-sub {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.waitlist-form {
  width: 100%;
  max-width: 520px;
}

.form-group {
  display: flex;
  gap: 10px;
}

.form-group input[type="email"] {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-blue);
  color: var(--text);
  font-size: 1rem;
  padding: 16px 20px;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input[type="email"]:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59, 99, 245, 0.20);
}

.form-group input[type="email"]::placeholder {
  color: var(--text-3);
}

.form-note {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-3);
}

.form-feedback {
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  min-height: 22px;
}

.form-feedback.success { color: #4ADE80; }
.form-feedback.error   { color: var(--red-light); }

/* ─── FOOTER ──────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-logo {
  height: 28px;
  width: auto;
  opacity: 0.7;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-3);
}

.footer-disclaimer {
  font-size: 0.74rem;
  color: var(--text-3);
  opacity: 0.6;
  max-width: 520px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.footer-legal a {
  font-size: 0.78rem;
  color: var(--text-3);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}

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

.footer-legal-sep {
  font-size: 0.78rem;
  color: var(--text-3);
  opacity: 0.4;
}

/* ─── SCREENSHOTS ─────────────────────────────────────────────────────── */
.screenshots {
  background: var(--bg);
}

.shots-hero {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 56px;
}

.shots-copy {
  display: flex;
  flex-direction: column;
}

.shots-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}

.shots-desc {
  font-size: 0.97rem;
  color: var(--text-2);
  line-height: 1.72;
  max-width: 420px;
}

.shots-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-blue);
  box-shadow:
    0 0 0 1px rgba(59,99,245,0.08),
    0 24px 64px rgba(0,0,0,0.55),
    0 0 48px rgba(59,99,245,0.10);
}

.shots-img {
  width: 100%;
  height: auto;
  display: block;
}

.shots-secondary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.shots-img-wide {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
  max-width: 760px;
}

.shots-caption {
  font-size: 0.78rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
}

@media (max-width: 840px) {
  .shots-hero {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .shots-desc {
    max-width: 100%;
  }

}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 700px) {
  .section { padding: 64px 0; }

  .ladder-panels {
    grid-template-columns: 1fr;
  }

  .form-group {
    flex-direction: column;
  }

  .form-group .btn {
    width: 100%;
    justify-content: center;
  }

  .stat-divider {
    display: none;
  }

  .stats-grid {
    flex-direction: column;
    gap: 4px;
  }

  .stat-item {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero { padding: 72px 0 56px; }

  .ladder-demo {
    margin-top: 40px;
  }
}
