/* === Método Núcleo — Sales Page v4 (Liquid Glass) === */
/* Mobile-first. Cyan fintech + glass material. */

:root {
  /* === Surfaces (dark cyan slate) === */
  --bg-0: #0A0F1C;
  --bg-1: #0F172A;
  --bg-2: #111827;
  --bg-3: #1E293B;
  --bg-4: #334155;

  /* Slate scale (granular control) */
  --slate-950: #0A0F1C;
  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;

  /* === Text === */
  --fg-0: #F8FAFC;   /* primary */
  --fg-1: #CBD5E1;   /* secondary */
  --fg-2: #94A3B8;   /* dim */
  --fg-3: #64748B;   /* faint */
  --fg-4: #334155;   /* disabled */

  /* === Borders === */
  --line: rgba(148, 163, 184, 0.10);
  --line-strong: rgba(148, 163, 184, 0.18);

  /* === Brand: Cyan fintech (hero) === */
  --hero: #0EA5E9;
  --hero-light: #38BDF8;
  --hero-deep: #0369A1;
  --hero-glow: rgba(56, 189, 248, 0.35);
  --hero-soft: rgba(14, 165, 233, 0.08);

  /* Accents (mapped to hero for legacy compat) */
  --accent: var(--hero);
  --accent-2: var(--hero-light);
  --accent-soft: rgba(14, 165, 233, 0.12);
  --accent-glow: var(--hero-glow);

  /* Legacy warm tokens (kept as cyan aliases — DO NOT use in new code) */
  --peach: var(--hero-light);
  --orange: var(--hero);
  --hot-pink: var(--hero-light);
  --magenta: var(--hero);
  --mag: var(--hero-light);
  --vio: var(--hero);

  /* === Semantic states === */
  --danger: #F43F5E;
  --warn: #FB923C;
  --success: #34D399;
  --cyan: var(--hero-light);
  --green: var(--success);

  /* Silver (preserved) */
  --silver-0: #E2E8F0;
  --silver-1: #94A3B8;
  --silver-2: #64748B;

  /* === Glass primitives === */
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-bg-strong: rgba(56, 189, 248, 0.06);
  --glass-bg-deep: rgba(15, 23, 42, 0.55);
  --glass-border: rgba(148, 163, 184, 0.10);
  --glass-border-hi: rgba(56, 189, 248, 0.25);
  --glass-blur: blur(24px) saturate(140%);
  --glass-blur-soft: blur(14px) saturate(130%);
  --glass-shadow:
    0 16px 64px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(56, 189, 248, 0.08);
  --glass-shadow-soft:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);

  /* === Glow tiers (v2 hierarquia) === */
  --glow-sm: 0 0 12px rgba(56, 189, 248, 0.25);
  --glow-md: 0 0 24px rgba(56, 189, 248, 0.35);
  --glow-lg: 0 0 48px rgba(56, 189, 248, 0.45);
  --glow-xl:
    0 12px 40px rgba(14, 165, 233, 0.40),
    0 0 80px rgba(56, 189, 248, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);

  /* === Aurora setoriais (v2) === */
  --aurora-hero: radial-gradient(ellipse 1200px 700px at 50% 30%, rgba(56, 189, 248, 0.10), transparent 60%);
  --aurora-problem: radial-gradient(ellipse 800px 500px at 70% 50%, rgba(244, 63, 94, 0.06), transparent 60%);
  --aurora-pillars: radial-gradient(ellipse 900px 600px at 30% 50%, rgba(56, 189, 248, 0.07), transparent 60%);
  --aurora-offer: radial-gradient(ellipse 1100px 700px at 50% 50%, rgba(14, 165, 233, 0.14), transparent 65%);
  --aurora-final: radial-gradient(ellipse 900px 600px at 50% 60%, rgba(56, 189, 248, 0.12), transparent 60%);

  /* === Type === */
  --f-sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", system-ui, sans-serif;
  --f-display: "Inter", "General Sans", -apple-system, sans-serif;
  --f-mono: "JetBrains Mono", "Geist Mono", ui-monospace, monospace;
  --f-serif: "Fraunces", "Iowan Old Style", Georgia, serif;

  /* === Radii === */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 36px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg-0);
  color: var(--fg-0);
  font-family: var(--f-sans);
  font-size: 16.5px;
  line-height: 1.6;
  overflow-x: hidden;
  font-feature-settings: "ss01", "ss03", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-optical-sizing: auto;
}

img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--hero); color: #fff; }

/* === Liquid Glass Background ===
   body::before  → ambient cyan radial gradients (depth/glow)
   body::after   → 80px slate grid masked by radial fade (technical texture)
   Replaces legacy .bg-blobs (.b1/.b2/.b3) and .grain. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 1200px 800px at 70% 35%, rgba(14, 165, 233, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 800px 600px at 15% 85%, rgba(56, 189, 248, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 600px 400px at 85% 90%, rgba(14, 165, 233, 0.04) 0%, transparent 50%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
          mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* Legacy hooks — kept as no-op so existing markup doesn't break visually. */
.bg-blobs, .bg-blobs .blob, .grain { display: none !important; }

main, nav, footer, .top-bar { position: relative; z-index: 2; }

/* === Liquid Glass primitives (reusable) === */
.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
          backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  box-shadow: var(--glass-shadow-soft);
}

.glass-strong {
  position: relative;
  background: linear-gradient(135deg, var(--glass-bg-strong) 0%, rgba(14, 165, 233, 0.02) 100%);
  -webkit-backdrop-filter: var(--glass-blur);
          backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-hi);
  border-radius: var(--r-xl);
  box-shadow: var(--glass-shadow);
}

.glass-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.06) 0%, rgba(56, 189, 248, 0.03) 100%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
          backdrop-filter: blur(28px) saturate(140%);
  border: 1px solid var(--glass-border-hi);
  border-radius: var(--r-xl);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
}

.glass-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  border-radius: var(--r-xl) var(--r-xl) 100% 100% / var(--r-xl) var(--r-xl) 50% 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
  pointer-events: none;
}

/* === v2: Apply top-highlight to intermediate cards === */
.pillar,
.fw-card,
.days-shell,
.bruno-card,
.guarantee,
.compare-table,
.objection-box,
.terminal-wrap {
  position: relative;
  overflow: hidden;
}

.pillar::after,
.fw-card::after,
.days-shell::after,
.bruno-card::after,
.guarantee::after,
.compare-table::after,
.objection-box::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 35%;
  border-radius: inherit;
  border-bottom-left-radius: 100%;
  border-bottom-right-radius: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.pillar > *,
.fw-card > *,
.days-shell > *,
.bruno-card > *,
.guarantee > *,
.compare-table > *,
.objection-box > * { position: relative; z-index: 1; }

/* === v2: Aurora setorial (P1 atmosphere) === */
.hero,
.problem-section,
.pillars-section,
.offer-section,
.final-cta-section {
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--aurora-hero);
  pointer-events: none;
  z-index: -1;
}

.problem-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--aurora-problem);
  pointer-events: none;
  z-index: -1;
}

.pillars-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--aurora-pillars);
  pointer-events: none;
  z-index: -1;
}

/* offer-section already has its own ::before — boost it */
.offer-section::before {
  background:
    radial-gradient(ellipse 1100px 700px at 50% 50%, rgba(14, 165, 233, 0.18), transparent 65%),
    radial-gradient(ellipse 600px 400px at 20% 30%, rgba(56, 189, 248, 0.10), transparent 55%) !important;
  opacity: 0.7 !important;
}

/* === v2: Sparkle component (P2) === */
.sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  pointer-events: none;
  opacity: 0;
  animation: sparkle-twinkle 4s ease-in-out infinite;
  background: radial-gradient(circle, var(--hero-light) 0%, transparent 70%);
  filter: blur(0.5px);
  z-index: 2;
}
.sparkle.s2 { animation-delay: 1.2s; }
.sparkle.s3 { animation-delay: 2.4s; }
.sparkle.s4 { animation-delay: 0.6s; }
.sparkle.s5 { animation-delay: 3.1s; }

@keyframes sparkle-twinkle {
  0%, 100% { opacity: 0; transform: scale(0.6); }
  50% { opacity: 0.85; transform: scale(1); }
}

/* Performance + a11y guards */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass, .glass-strong, .glass-hero { background: rgba(15, 23, 42, 0.85); }
}

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

/* === Layout === */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  position: relative;
  padding: 80px 0;
}

@media (min-width: 768px) {
  .container { padding: 0 28px; }
  section { padding: 110px 0; }
}

@media (min-width: 1024px) {
  section { padding: 140px 0; }
}

/* === Type === */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--fg-1);
  padding: 7px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Eyebrow primário (v2 hierarchy) — usado em scarcity, offer, final CTA */
.eyebrow.primary {
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.10), rgba(14, 165, 233, 0.04));
  border-color: var(--glass-border-hi);
  color: var(--fg-0);
  box-shadow: var(--glow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: var(--glass-blur-soft);
          backdrop-filter: var(--glass-blur-soft);
}

.eyebrow.primary .dot {
  background: var(--hero-light);
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.7);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.06;
  text-wrap: balance;
}

h1 {
  font-size: clamp(34px, 7vw, 82px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

h2 {
  font-size: clamp(28px, 5.2vw, 58px);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.05;
}

h3 { font-size: clamp(22px, 3vw, 34px); font-weight: 600; line-height: 1.18; letter-spacing: -0.018em; }
h4 { font-size: clamp(17px, 2vw, 22px); font-weight: 600; letter-spacing: -0.012em; }

/* Gradient text — cyan fintech */
.grad-text {
  background: linear-gradient(135deg, var(--fg-0) 0%, var(--hero-light) 60%, var(--hero) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

p { text-wrap: pretty; color: var(--fg-1); }

.italic {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: -0.01em;
  color: var(--fg-0);
}

h1 .italic, h2 .italic, h3 .italic {
  font-size: 1.05em;
}

.num {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  color: var(--hero-light);
  letter-spacing: -0.015em;
  font-size: 1.08em;
  line-height: inherit;
  padding: 0 0.02em;
  white-space: nowrap;
}

h1 .num {
  position: relative;
  background: linear-gradient(
    100deg,
    var(--fg-0) 0%,
    var(--hero-light) 22%,
    var(--hero) 50%,
    var(--hero-light) 78%,
    var(--fg-0) 100%
  );
  background-size: 320% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: num-shimmer 3.5s ease-in-out infinite;
  filter: drop-shadow(0 0 24px rgba(56, 189, 248, 0.30));
}

@keyframes num-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.lead {
  font-size: clamp(15px, 1.3vw, 19px);
  color: var(--fg-1);
  line-height: 1.6;
  max-width: 60ch;
  font-weight: 400;
}

.mono { font-family: var(--f-mono); }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
  position: relative;
  font-family: var(--f-sans);
  line-height: 1.2;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--hero) 0%, var(--hero-deep) 100%);
  color: #fff;
  border: 1px solid rgba(56, 189, 248, 0.4);
  box-shadow:
    0 8px 32px var(--hero-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 44px var(--hero-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary .arrow { width: 15px; height: 15px; transition: transform 180ms; flex-shrink: 0; }
.btn-primary:hover .arrow { transform: translateX(3px); }

.btn-ghost {
  background: var(--glass-bg);
  color: var(--fg-0);
  border: 1px solid var(--line-strong);
  -webkit-backdrop-filter: var(--glass-blur-soft);
          backdrop-filter: var(--glass-blur-soft);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--glass-border-hi);
}

.btn-lg { padding: 16px 26px; font-size: 15px; }
.btn-xl { padding: 20px 34px; font-size: 17px; font-weight: 700; }

@media (min-width: 768px) {
  .btn-lg { padding: 18px 32px; font-size: 16px; }
  .btn-xl { padding: 22px 40px; font-size: 18px; }
}

/* === Top bar (liquid glass) === */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(90deg, rgba(10, 15, 28, 0.85), rgba(15, 23, 42, 0.85));
  -webkit-backdrop-filter: blur(20px) saturate(140%);
          backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
  padding: 10px 16px;
  font-size: 12.5px;
  color: var(--fg-1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.35;
}

.top-bar .tb-ic { font-size: 14px; flex-shrink: 0; }
.top-bar b { color: var(--hero-light); font-weight: 600; }

@media (max-width: 600px) {
  .top-bar { font-size: 11.5px; padding: 9px 14px; }
}

/* === Nav (liquid glass pill) === */
.nav {
  position: fixed;
  top: 54px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: calc(100% - 24px);
  max-width: 1120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 8px 8px 18px;
  background: rgba(15, 23, 42, 0.65);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
          backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid var(--glass-border-hi);
  border-radius: 999px;
  box-shadow:
    0 10px 40px -10px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* === Method Lockup (símbolo + wordmark hierárquico) === */
.method-lockup {
  display: inline-flex;
  align-items: center;
  /* Gap proporcional ao tamanho do símbolo: 10-14px */
  gap: clamp(10px, calc(var(--mark-size, 28px) * 0.28), 14px);
}

.method-mark { display: block; flex-shrink: 0; }

.method-lockup-text {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.ml-method {
  /* Label small-caps — escala 8 → 11px com size */
  font-family: var(--f-sans);
  font-size: clamp(8px, calc(var(--mark-size, 28px) * 0.16), 11px);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--slate-400);
  line-height: 1;
}

.ml-nucleo {
  /* Wordmark Inter 800 — escala 15 → 28px com size */
  font-family: var(--f-sans);
  font-style: normal;
  font-weight: 800;
  font-size: clamp(15px, calc(var(--mark-size, 28px) * 0.55), 28px);
  letter-spacing: -0.03em;
  color: var(--fg-0);
  line-height: 1;
  background: none;
  -webkit-text-fill-color: currentColor;
}

/* Reduced motion — pausa o ping mantendo o núcleo sólido */
@media (prefers-reduced-motion: reduce) {
  .method-mark .method-mark-ping { display: none; }
}

.brand-mark { font-weight: 600; letter-spacing: -0.02em; }
.brand-italic { font-family: var(--f-serif); font-style: italic; font-weight: 400; letter-spacing: 0; }

.nav-links { display: none; gap: 2px; font-size: 13.5px; color: var(--fg-2); }
.nav-links a {
  padding: 9px 12px;
  border-radius: 999px;
  transition: background 150ms, color 150ms;
  font-weight: 500;
}
.nav-links a:hover { color: var(--fg-0); background: rgba(255,255,255,0.05); }

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.85) 0%, rgba(3, 105, 161, 0.85) 100%);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  transition: background 200ms ease, box-shadow 200ms ease;
  letter-spacing: -0.01em;
  white-space: nowrap;
  border: 1px solid rgba(56, 189, 248, 0.35);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--hero) 0%, var(--hero-deep) 100%);
  box-shadow: 0 6px 20px var(--hero-glow), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { padding: 10px 18px; font-size: 13.5px; }
}

@media (max-width: 680px) {
  /* Mobile compacto: esconde label "MÉTODO" e mantém só o symbol + "Núcleo" */
  .nav .method-lockup-text .ml-method { display: none; }
  .nav { padding: 6px 6px 6px 12px; }
  .nav-cta { padding: 8px 14px; font-size: 12px; }
}

@media (max-width: 480px) {
  /* Em telas muito pequenas: só o symbol no nav */
  .nav .method-lockup-text { display: none; }
}

/* === Reveal === */
.reveal { animation: fadeUp 700ms cubic-bezier(0.2, 0.8, 0.3, 1) both; }
.reveal.delay-1 { animation-delay: 80ms; }
.reveal.delay-2 { animation-delay: 180ms; }
.reveal.delay-3 { animation-delay: 320ms; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === Hero === */
.hero {
  padding: 110px 0 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
@media (min-width: 768px) { .hero { padding: 140px 0 80px; } }

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Brand hero (logo + wordmark, presença forte acima do scarcity) */
.hero-brand {
  display: inline-flex;
  margin-bottom: 4px;
  filter: drop-shadow(0 8px 24px rgba(56, 189, 248, 0.18));
  transform-origin: center;
}

@media (max-width: 540px) {
  /* Escala visual em mobile sem mexer na prop size do componente */
  .hero-brand { transform: scale(0.78); }
}

.hero h1 {
  max-width: 22ch;
  font-size: clamp(32px, 5.4vw, 64px);
  line-height: 1.04;
}
.hero h1 .break { display: block; }
.hero h1 .break.grad-text { max-width: 28ch; margin-left: auto; margin-right: auto; }
@media (min-width: 768px) {
  .hero h1 { max-width: 24ch; }
  .hero h1 .break.grad-text { max-width: 26ch; }
}

.hero .lead { max-width: 58ch; text-align: center; }

/* Scarcity eyebrow */
.eyebrow.scarcity {
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.12), rgba(14, 165, 233, 0.04));
  border-color: var(--glass-border-hi);
  color: var(--fg-0);
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 540px) {
  .eyebrow.scarcity { font-size: 11px; padding: 6px 11px; letter-spacing: 0; }
}
.eyebrow.scarcity b { color: var(--hero-light); font-weight: 600; }
.eyebrow .dot.pulse {
  background: var(--hero-light);
  box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.55);
  animation: scarcity-pulse 1.8s ease-out infinite;
}
@keyframes scarcity-pulse {
  0% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(56, 189, 248, 0); }
  100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}

/* === Hero Live Chat (Glass / Frosted) === */
.hero-mini-chat {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 28px auto 4px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  overflow: hidden;
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow:
    0 24px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 1px 0 rgba(255,255,255,0.12) inset;
  text-align: left;
}

/* Glow halos behind glass — cyan ambient */
.hero-mini-chat::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.45), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.hero-mini-chat::after {
  content: "";
  position: absolute;
  inset: auto auto -30% -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.32), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.hero-mini-chat > * { position: relative; z-index: 1; }

/* Header */
.hmc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
}

.hmc-avatar {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.18);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.hmc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hmc-online {
  position: absolute;
  bottom: 0; right: 0;
  width: 11px; height: 11px;
  background: #27d178;
  border: 2px solid #1a1410;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(39, 209, 120, 0.6);
  z-index: 2;
}

.hmc-head-text { flex: 1; min-width: 0; }
.hmc-head-name {
  font-size: 14px;
  font-weight: 500;
  color: #e9edef;
  letter-spacing: -0.01em;
}
.hmc-head-status {
  font-size: 11.5px;
  color: #8696a0;
  margin-top: 1px;
}

.hmc-head-icons {
  display: flex;
  gap: 14px;
  color: #8696a0;
}

/* Stream — fixed height, two bubbles visible */
.hmc-stream {
  padding: 16px 14px 14px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  overflow: hidden;
  position: relative;
}

.hmc-bubble {
  position: relative;
  padding: 9px 12px 7px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.4;
  max-width: 80%;
  word-wrap: break-word;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow:
    0 4px 16px rgba(0,0,0,0.18),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  animation: hmc-pop-in 420ms cubic-bezier(0.2, 0.9, 0.3, 1.2) both;
}

@keyframes hmc-pop-in {
  0% { opacity: 0; transform: translateY(14px) scale(0.92); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hmc-bubble.in {
  align-self: flex-end;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.32), rgba(56, 189, 248, 0.18));
  border: 1px solid rgba(56, 189, 248, 0.32);
  color: var(--fg-0);
  border-top-right-radius: 4px;
}
.hmc-bubble.out {
  align-self: flex-start;
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--fg-0);
  border-top-left-radius: 4px;
}

.hmc-text {
  display: block;
  padding-right: 50px;
}
.hmc-time {
  position: absolute;
  bottom: 5px;
  right: 10px;
  font-size: 9.5px;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: var(--f-mono);
}
.hmc-bubble.out .hmc-time { color: rgba(255,255,255,0.5); }
.hmc-bubble.in .hmc-time { color: rgba(255, 220, 200, 0.75); }
.hmc-checks { color: #6dd0ff; font-size: 11px; }

/* Typing */
.hmc-bubble.typing {
  padding: 10px 14px;
  min-width: 56px;
}
.hmc-typing-dots {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.hmc-typing-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  animation: hmc-typing 1.2s ease-in-out infinite;
}
.hmc-typing-dots i:nth-child(2) { animation-delay: 0.2s; }
.hmc-typing-dots i:nth-child(3) { animation-delay: 0.4s; }
@keyframes hmc-typing {
  0%, 60%, 100% { opacity: 0.35; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-2px); }
}

/* Audio bubble */
.hmc-bubble.audio { padding: 9px 12px 7px; min-width: 240px; max-width: 86%; }
.hmc-audio-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hmc-audio-avatar {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: visible;
  flex-shrink: 0;
}
.hmc-audio-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 1.5px solid rgba(255,255,255,0.18);
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
.hmc-mic {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #6dd0ff;
  color: #0b141a;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(20, 12, 8, 0.95);
  z-index: 2;
}
.hmc-audio-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  padding-left: 4px;
  padding-right: 2px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.02em;
}
.hmc-bubble.audio .hmc-time {
  position: static;
  font-family: var(--f-mono);
  font-size: 10px;
}
.hmc-bubble.audio .hmc-dur {
  color: rgba(255,255,255,0.6);
  font-size: 10px;
}
.hmc-audio-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.18);
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
.hmc-audio-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hmc-play {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding-left: 1px;
  border: 1px solid rgba(255,255,255,0.1);
}
.hmc-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  height: 22px;
}
.hmc-wave span {
  width: 2px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: hmc-wave-pulse 1.6s ease-in-out infinite;
}
.hmc-wave span:nth-child(odd) { background: rgba(255,255,255,0.7); }
.hmc-wave span:nth-child(3n) { animation-delay: 0.2s; }
.hmc-wave span:nth-child(4n) { animation-delay: 0.4s; }
@keyframes hmc-wave-pulse {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.6); }
}
.hmc-dur {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
  font-family: var(--f-mono);
}

/* Footer meta */
.hmc-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  background: rgba(0,0,0,0.18);
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: var(--fg-2);
  letter-spacing: 0.02em;
  border-top: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
}
.hmc-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00a884;
  box-shadow: 0 0 8px rgba(0,168,132,0.6);
  animation: live-pulse 1.6s ease-in-out infinite;
}
@keyframes live-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.85); } }

/* Secondary link CTA */
.hero-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: var(--fg-2);
  font-size: 13.5px;
  font-family: var(--f-sans);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.15);
  text-underline-offset: 4px;
  cursor: pointer;
  padding: 8px 4px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}
.hero-secondary-link:hover {
  color: var(--fg-0);
  text-decoration-color: var(--accent);
}
.hero-secondary-link svg { transition: transform 180ms ease; }
.hero-secondary-link:hover svg { transform: translateY(2px); }

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-direction: column;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 380px;
  margin-top: 8px;
}

.hero-ctas .btn { width: 100%; }

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
    max-width: none;
    width: auto;
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-ctas .btn { width: auto; }
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  color: var(--fg-2);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-meta .dot-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--fg-3); }

/* === Hero mockup === */
.hero-mockup {
  position: relative;
  margin-top: 60px;
  width: 100%;
  max-width: 1080px;
  perspective: 2200px;
}

.hero-mockup .glow {
  position: absolute;
  inset: -40px -40px 0;
  background: radial-gradient(ellipse 60% 40% at 50% 100%, var(--accent-glow), transparent 70%);
  filter: blur(60px);
  z-index: -1;
  opacity: 0.6;
}

.mockup-frame {
  width: 100%;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01));
  border: 1px solid var(--line-strong);
  padding: 6px;
  box-shadow:
    0 60px 120px -30px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255,255,255,0.04);
}

@media (min-width: 900px) {
  .mockup-frame {
    transform: rotateX(12deg) translateZ(0);
    transform-origin: 50% 100%;
    animation: floaty 6s ease-in-out infinite;
  }
  @keyframes floaty {
    0%, 100% { transform: rotateX(12deg) translateY(0); }
    50% { transform: rotateX(12deg) translateY(-10px); }
  }
  .hero-mockup { margin-top: 80px; }
}

.mockup-inner {
  background: linear-gradient(180deg, #0e0e14, #0a0a0d);
  border-radius: calc(var(--r-xl) - 6px);
  display: grid;
  grid-template-columns: 1fr;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
}

@media (min-width: 900px) {
  .mockup-inner { grid-template-columns: 240px 1fr 300px; }
}

.mockup-sidebar { display: none; background: rgba(255,255,255,0.02); border-right: 1px solid var(--line); padding: 20px 14px; flex-direction: column; gap: 4px; }
@media (min-width: 900px) { .mockup-sidebar { display: flex; } }

.mockup-sidebar .app-logo { display: flex; align-items: center; gap: 8px; padding: 4px 10px; font-weight: 600; font-size: 14px; margin-bottom: 14px; }

.mockup-sidebar .side-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 8px;
  font-size: 13px; color: var(--fg-2);
  transition: background 150ms;
}
.mockup-sidebar .side-item.active { background: rgba(255,255,255,0.05); color: var(--fg-0); }
.mockup-sidebar .side-item .si-ic {
  width: 14px; height: 14px; border-radius: 3px;
  background: var(--fg-3); flex-shrink: 0;
}
.mockup-sidebar .side-item.active .si-ic { background: var(--accent); }
.mockup-sidebar .side-label {
  font-size: 10px; font-weight: 600; color: var(--fg-3);
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 10px 12px 4px; margin-top: 10px;
}

.mockup-main {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 768px) { .mockup-main { padding: 24px 28px; gap: 16px; } }

.mockup-main .mm-head { display: flex; justify-content: space-between; align-items: center; text-align: left; }
.mockup-main .mm-head h5 { font-size: 14px; font-weight: 600; text-align: left; letter-spacing: -0.01em; }
.mockup-main .mm-head .live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--accent);
  padding: 4px 10px; border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 999px; background: var(--accent-soft);
}
.mockup-main .mm-head .live::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); animation: pulse 1.5s infinite;
}

.mm-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mm-stat {
  padding: 12px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--line); border-radius: 10px; text-align: left;
}
.mm-stat .v { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; }
.mm-stat .l { font-size: 10px; color: var(--fg-2); margin-top: 2px; }
.mm-stat .trend { font-size: 10px; color: var(--accent); margin-top: 4px; }

@media (min-width: 768px) {
  .mm-stats { gap: 10px; }
  .mm-stat { padding: 14px; }
  .mm-stat .v { font-size: 22px; }
  .mm-stat .l { font-size: 10.5px; }
}

.mm-chart {
  flex: 1; border: 1px solid var(--line); border-radius: 10px;
  padding: 12px; background: rgba(255,255,255,0.02);
  display: flex; flex-direction: column; gap: 12px; min-height: 140px;
}
.mm-chart .ch-head { display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: var(--fg-2); text-align: left; }
.mm-chart .bars { flex: 1; display: flex; gap: 4px; align-items: flex-end; }
.mm-chart .bar {
  flex: 1; background: linear-gradient(180deg, var(--accent), oklch(0.55 0.2 35));
  border-radius: 3px 3px 0 0; opacity: 0.8;
  animation: barGrow 2s ease-out backwards;
}
@keyframes barGrow { from { height: 0 !important; } }

.mockup-side { display: none; border-left: 1px solid var(--line); background: rgba(255,255,255,0.015); padding: 20px; flex-direction: column; gap: 10px; }
@media (min-width: 900px) { .mockup-side { display: flex; } }

.mockup-side .side-msg {
  padding: 10px 12px; border-radius: 10px;
  font-size: 12px; line-height: 1.4; max-width: 85%;
  text-align: left; animation: msgIn 400ms ease-out backwards;
}
.mockup-side .side-msg.in { background: rgba(255,255,255,0.05); align-self: flex-start; }
.mockup-side .side-msg.out {
  background: linear-gradient(135deg, var(--hero), var(--hero-deep));
  color: #fff; align-self: flex-end;
}
.mockup-side .side-msg .tag {
  font-size: 10px; opacity: 0.7; display: block;
  margin-bottom: 3px; font-weight: 500;
}

@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Floating pills */
.float-pill {
  position: absolute;
  padding: 10px 14px;
  background: rgba(20,20,27,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  font-size: 12px;
  display: none;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.6);
  animation: pillFloat 5s ease-in-out infinite;
  z-index: 3;
  text-align: left;
}

@media (min-width: 1024px) {
  .float-pill { display: flex; }
  .float-pill.fp1 { top: 10%; left: -60px; animation-delay: -1s; }
  .float-pill.fp2 { top: 50%; right: -70px; animation-delay: -3s; }
  .float-pill.fp3 { bottom: 10%; left: 4%; animation-delay: -5s; }
}

.float-pill .pill-ic {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.float-pill .pill-ic.green { background: oklch(0.7 0.18 142 / 0.2); color: var(--green); }
.float-pill .pill-ic.amber { background: var(--accent-soft); color: var(--accent); }
.float-pill .pill-ic.mag { background: rgba(56, 189, 248, 0.2); color: var(--hero-light); }
.float-pill .pill-t { font-weight: 500; }
.float-pill .pill-s { font-size: 10.5px; color: var(--fg-2); }

@keyframes pillFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* === Section headers === */
.sec-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 56px;
  max-width: 820px;
}

.sec-head .eyebrow { align-self: flex-start; }

.sec-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

.sec-head.center .eyebrow { align-self: center; }

@media (min-width: 768px) {
  .sec-head { gap: 20px; margin-bottom: 72px; }
}

/* ==========================================================
   SECTION: Método em ação (vídeo)
   ========================================================== */
.action-section {
  padding-top: 60px;
  padding-bottom: 80px;
  position: relative;
}

@media (min-width: 768px) {
  .action-section { padding-top: 100px; padding-bottom: 120px; }
}

.video-wrap {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-xl);
  border: 1px solid var(--glass-border-hi);
  background: linear-gradient(135deg, #0A0F1C 0%, #0F172A 60%, #0A0F1C 100%);
  overflow: hidden;
  cursor: pointer;
  box-shadow:
    0 60px 120px -30px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 100px -30px var(--hero-glow);
  transition: transform 300ms, box-shadow 300ms;
}

.video-frame:hover {
  transform: translateY(-4px);
  box-shadow:
    0 70px 140px -30px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(56, 189, 248, 0.15),
    0 0 120px -30px var(--hero-glow);
}

.video-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
}

.video-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, var(--accent-glow), transparent 50%),
              radial-gradient(ellipse at 70% 60%, rgba(56, 189, 248, 0.25), transparent 50%);
  opacity: 0.6;
  pointer-events: none;
}

/* Fake IDE mockup on video */
.video-ide {
  position: absolute;
  top: 12%;
  left: 6%;
  width: 52%;
  background: #0a0a0e;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.8);
  transform: rotate(-2deg);
  animation: ideFloat 8s ease-in-out infinite;
}

@keyframes ideFloat {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-8px); }
}

.ide-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}

.ide-dots { display: flex; gap: 5px; }
.ide-dots .dot-r { width: 8px; height: 8px; border-radius: 50%; background: #ff5f56; }
.ide-dots .dot-y { width: 8px; height: 8px; border-radius: 50%; background: #ffbd2e; }
.ide-dots .dot-g { width: 8px; height: 8px; border-radius: 50%; background: #27c93f; }
.ide-title { font-family: var(--f-mono); font-size: 10.5px; color: var(--fg-2); flex: 1; text-align: center; }

.ide-body {
  padding: 14px 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  line-height: 1.75;
}

.ide-line { color: var(--fg-1); word-break: break-word; }
.ide-line.muted { color: var(--fg-2); }
.ide-line.accent { color: var(--accent); }
.ide-gt { color: var(--accent); margin-right: 4px; }
.ide-user { color: var(--fg-0); }

@media (min-width: 768px) {
  .ide-body { font-size: 12.5px; padding: 16px 18px; }
  .ide-title { font-size: 11.5px; }
}

/* Fake phone mockup on video */
.video-phone {
  position: absolute;
  top: 18%;
  right: 6%;
  width: 34%;
  max-width: 280px;
  aspect-ratio: 9 / 17;
  background: #0a0a0e;
  border-radius: 22px;
  border: 2px solid #2d2d38;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.9);
  transform: rotate(4deg);
  animation: phoneFloat 8s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-10px); }
}

.phone-screen {
  width: 100%; height: 100%;
  background: #111b21;
  display: flex; flex-direction: column;
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 10px;
  background: linear-gradient(180deg, #1f2c34, #182229);
  border-bottom: 1px solid #2a3942;
}

.phone-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--hero);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}

.phone-name { font-size: 11px; font-weight: 600; color: #fff; }
.phone-status { font-size: 9px; color: #8696a0; }

.phone-msgs {
  flex: 1;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><circle cx='20' cy='20' r='0.5' fill='%23243136'/></svg>"),
    #0b141a;
}

.pm {
  font-size: 10px;
  line-height: 1.4;
  padding: 5px 9px;
  border-radius: 8px;
  max-width: 85%;
  animation: pmIn 400ms ease-out backwards;
}

.pm.in { background: #202c33; color: #e9edef; align-self: flex-start; border-top-left-radius: 2px; }
.pm.out { background: #005c4b; color: #fff; align-self: flex-end; border-top-right-radius: 2px; }
.pm.pm-last { animation-delay: 200ms; }

@keyframes pmIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.pm-typing {
  display: inline-flex;
  gap: 3px;
  padding: 6px 10px;
  background: #202c33;
  border-radius: 8px;
  align-self: flex-start;
  border-top-left-radius: 2px;
  margin-top: 2px;
}
.pm-typing span {
  width: 4px; height: 4px; border-radius: 50%;
  background: #8696a0;
  animation: dotBounce 1.2s ease-in-out infinite;
}
.pm-typing span:nth-child(2) { animation-delay: 0.15s; }
.pm-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes dotBounce {
  0%, 60%, 100% { opacity: 0.4; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

@media (min-width: 768px) {
  .pm { font-size: 12px; padding: 7px 11px; }
  .phone-name { font-size: 13px; }
  .phone-status { font-size: 11px; }
  .phone-avatar { width: 32px; height: 32px; font-size: 16px; }
}

/* Play button */
.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(15, 15, 20, 0.75);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  z-index: 10;
  transition: transform 200ms;
  cursor: pointer;
}

.video-play:hover { transform: translate(-50%, -50%) scale(1.08); }

.play-ring, .play-ring.r2 {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--accent-glow);
  animation: ringPulse 2.6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.play-ring.r2 { animation-delay: 1.3s; }

@keyframes ringPulse {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(2.1); opacity: 0; }
}

.play-core {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--hero-light), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: #1a0b00;
  padding-left: 4px;
  box-shadow: 0 10px 30px -5px var(--accent-glow);
  z-index: 1;
}

@media (min-width: 768px) {
  .video-play { width: 100px; height: 100px; }
  .play-core { width: 72px; height: 72px; }
}

.video-badge-time {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 11.5px;
  font-family: var(--f-mono);
  color: var(--fg-0);
  backdrop-filter: blur(10px);
  z-index: 5;
}

.video-badge-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 6px 12px;
  background: var(--accent-soft);
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: 8px;
  font-size: 11px;
  color: var(--accent);
  backdrop-filter: blur(10px);
  font-weight: 600;
  letter-spacing: 0.02em;
  z-index: 5;
}

@media (max-width: 600px) {
  .video-badge-label { display: none; }
  .video-badge-time { bottom: 14px; right: 14px; font-size: 10.5px; padding: 5px 10px; }
}

/* Video captions below */
.video-caption {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .video-caption { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.vc-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.vc-num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.05em;
  padding: 6px 10px;
  background: var(--accent-soft);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 6px;
  flex-shrink: 0;
  font-weight: 600;
}

.vc-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.vc-title {
  font-size: 15.5px;
  color: var(--fg-0);
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -0.012em;
}

.vc-text {
  font-size: 14.5px;
  color: var(--fg-2);
  line-height: 1.55;
}

.video-cta-row {
  display: flex;
  justify-content: center;
}

/* ==========================================================
   SECTION: Logos strip
   ========================================================== */
.logos-strip {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.logos-strip .lbl {
  font-size: 12px;
  color: var(--fg-2);
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
  padding: 0 20px;
  line-height: 1.55;
}

.marquee {
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 52px;
  width: max-content;
  animation: marquee 48s linear infinite;
  will-change: transform;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% / 3)); }
}

.marquee-track .tool {
  flex: 0 0 auto;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg-2);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 200ms;
  padding: 8px 4px;
  opacity: 0.75;
}

.marquee-track .tool svg,
.marquee-track .tool .tool-logo-img {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.marquee-track .tool .tool-logo-img { opacity: 0.9; filter: brightness(1.1); }
.marquee-track .tool:hover { color: var(--fg-0); opacity: 1; }

@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ==========================================================
   SECTION: Problem (dor agitada)
   ========================================================== */
.problem-section { padding-bottom: 100px; }

.pain-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pain-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur-soft);
          backdrop-filter: var(--glass-blur-soft);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  font-size: 14.5px;
  color: var(--fg-1);
  line-height: 1.55;

  /* Estado inicial — invisível, deslocado, encolhido */
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition:
    opacity 600ms cubic-bezier(0.16, 1, 0.3, 1) var(--pain-delay, 0ms),
    transform 600ms cubic-bezier(0.16, 1, 0.3, 1) var(--pain-delay, 0ms),
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

@media (min-width: 640px) {
  .pain-row {
    gap: 14px;
    padding: 16px 20px;
    font-size: 15.5px;
  }
}

/* Estado revelado pelo IntersectionObserver */
.pain-row.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Texto da dor: slide-in horizontal sutil */
.pain-row .pain-txt {
  opacity: 0;
  transform: translateX(-12px);
  transition:
    opacity 500ms cubic-bezier(0.16, 1, 0.3, 1) calc(var(--pain-delay, 0ms) + 120ms),
    transform 500ms cubic-bezier(0.16, 1, 0.3, 1) calc(var(--pain-delay, 0ms) + 120ms);
}

.pain-row.revealed .pain-txt {
  opacity: 1;
  transform: translateX(0);
}

.pain-row:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--glass-border-hi);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(14, 165, 233, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pain-x {
  width: 22px; height: 22px;
  border-radius: 7px;
  background: rgba(244, 63, 94, 0.10);
  color: var(--danger);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  border: 1px solid rgba(244, 63, 94, 0.25);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

@media (min-width: 640px) {
  .pain-x {
    width: 26px; height: 26px;
    border-radius: 8px;
    margin-top: 2px;
  }
}

/* X-stamp: pulsa ao revelar (spring overshoot) */
.pain-row.revealed .pain-x {
  animation: x-stamp 420ms cubic-bezier(0.34, 1.56, 0.64, 1) var(--pain-delay, 0ms) both;
}

@keyframes x-stamp {
  0% {
    transform: scale(0.4);
    opacity: 0;
    box-shadow: 0 0 24px rgba(244, 63, 94, 0.6);
  }
  60% {
    transform: scale(1.18);
    opacity: 1;
    box-shadow: 0 0 20px rgba(244, 63, 94, 0.5);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 rgba(244, 63, 94, 0);
  }
}

/* Micro-shake no X durante hover (bonus suggestion) */
.pain-row:hover .pain-x {
  box-shadow: 0 0 16px rgba(244, 63, 94, 0.35);
  animation: x-shake 280ms ease-in-out;
}

@keyframes x-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(1.5px); }
  50% { transform: translateX(-1.5px); }
  75% { transform: translateX(0.8px); }
}

/* Reduced motion: tudo visível, sem animação */
@media (prefers-reduced-motion: reduce) {
  .pain-row,
  .pain-row .pain-txt {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .pain-row.revealed .pain-x {
    animation: none !important;
  }
}

.pain-txt { flex: 1; }

.pain-closer {
  max-width: 780px;
  margin: 60px auto 0;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
}

.pain-closer h3 {
  text-align: center;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.15;
  white-space: nowrap;
}

.pain-closer .pc-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  min-width: 20px;
}

@media (max-width: 600px) {
  .pain-closer { flex-direction: column; gap: 16px; }
  .pain-closer .pc-line { width: 80px; flex: none; }
  .pain-closer h3 { white-space: normal; }
  .pain-row { font-size: 14.5px; padding: 16px 4px; }
}

/* ==========================================================
   SECTION: Origin story
   ========================================================== */
.origin-section {
  padding: 80px 0;
  position: relative;
}

@media (min-width: 768px) { .origin-section { padding: 120px 0; } }

.origin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 900px) {
  .origin-grid { grid-template-columns: 420px 1fr; gap: 72px; }
}

.origin-video { position: relative; }

.origin-thumb {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6);
  transition: transform 300ms;
}

.origin-thumb:hover { transform: translateY(-4px); }

.origin-thumb-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--slate-900) 0%, var(--slate-950) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.origin-avatar {
  position: absolute;
  inset: 0;
}

.origin-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1);
}

.origin-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
  z-index: 2;
}

.origin-thumb:has(.origin-iframe)::after { display: none; }

.origin-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.origin-caption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 5;
  font-size: 12px;
  color: var(--fg-0);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 6px 12px;
  backdrop-filter: blur(10px);
  font-weight: 500;
}

.origin-caption-below {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--fg-2);
  text-align: center;
  letter-spacing: 0.01em;
}

.origin-text {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.origin-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--fg-1);
  font-size: 16px;
  line-height: 1.65;
}

.origin-lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--fg-0);
  font-weight: 500;
  letter-spacing: -0.01em;
  max-width: 50ch;
}

@media (min-width: 768px) {
  .origin-lead { font-size: 19px; }
}

.origin-highlight {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.35;
  color: var(--fg-0);
  padding-left: 20px;
  border-left: 2px solid var(--hero-light);
  margin-top: 8px;
}

/* ==========================================================
   SECTION: Method Pillars
   ========================================================== */
.pillars-section {
  padding: 80px 0;
}

@media (min-width: 768px) { .pillars-section { padding: 120px 0; } }

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

@media (min-width: 768px) { .pillars { gap: 24px; } }

.pillar {
  display: block;
  padding: 24px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  -webkit-backdrop-filter: var(--glass-blur-soft);
          backdrop-filter: var(--glass-blur-soft);
  box-shadow: var(--glass-shadow-soft);
  transition: border-color 300ms, transform 300ms, box-shadow 300ms;
}

.pillar:hover {
  border-color: var(--glass-border-hi);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

@media (min-width: 480px) {
  .pillar {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    padding: 28px 28px;
    align-items: flex-start;
  }
}

@media (min-width: 768px) {
  .pillar { padding: 36px 36px; gap: 32px; }
}

.pillar-num {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 200;
  font-size: clamp(56px, 8vw, 104px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
  padding: 6px 8px 6px 0;
  background: linear-gradient(180deg, var(--fg-0) 0%, var(--hero-light) 60%, var(--hero) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 32px rgba(56, 189, 248, 0.35));
  font-variant-numeric: tabular-nums;
}

@media (min-width: 480px) { .pillar-num { margin-bottom: 0; } }

.pillar-body h3 { font-size: 22px; margin-bottom: 12px; }
@media (min-width: 768px) { .pillar-body h3 { font-size: 26px; } }

.pillar-body p {
  color: var(--fg-1);
  font-size: 15px;
  line-height: 1.7;
}

@media (min-width: 768px) { .pillar-body p { line-height: 1.65; } }

.pillar-quote {
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--accent-soft);
  border-left: 2px solid var(--hero-light);
  border-radius: 8px;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--fg-0);
  line-height: 1.5;
}

.pillar-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.pillar-chips span {
  padding: 4px 10px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--fg-1);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.pillar-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}

@media (min-width: 480px) { .pillar-stats { gap: 12px; } }

.pillar-stats div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
}

@media (min-width: 480px) { .pillar-stats div { padding: 12px; } }

.pillar-stats b {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
}

@media (min-width: 480px) { .pillar-stats b { font-size: 17px; } }

.pillar-stats span {
  font-size: 11px;
  color: var(--fg-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.pillar-close {
  text-align: center;
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--fg-1);
  margin-top: 44px;
  line-height: 1.4;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Dev accordion */
.dev-accordion {
  max-width: 920px;
  margin: 0 auto;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.015);
  overflow: hidden;
}

.dev-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px 22px;
  text-align: left;
  color: var(--fg-1);
  transition: background 150ms;
}

.dev-toggle:hover { background: rgba(255,255,255,0.03); }

.dev-ic { font-size: 18px; flex-shrink: 0; }

.dev-label {
  flex: 1;
  font-size: 14px;
  color: var(--fg-1);
  line-height: 1.4;
}

.dev-label b { color: var(--fg-0); font-weight: 600; }

.dev-chevron {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: var(--fg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  flex-shrink: 0;
  transition: background 200ms, color 200ms;
}

.dev-accordion.open .dev-chevron { background: var(--accent-soft); color: var(--accent); }

.dev-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease;
  padding: 0 22px;
}

.dev-accordion.open .dev-body {
  max-height: 2000px;
  padding: 0 22px 24px;
}

.dev-body p {
  font-size: 14px;
  color: var(--fg-1);
  line-height: 1.65;
  margin-bottom: 12px;
}

.dev-body p b { color: var(--fg-0); font-weight: 500; }

.dev-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.dev-stack span {
  padding: 5px 11px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--fg-1);
}

.dev-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--accent);
  font-size: 13.5px;
  font-weight: 600;
  transition: color 150ms;
}

.dev-link:hover { color: var(--hero-light); }

.dev-days {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dev-day {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  align-items: baseline;
}

.dev-day:last-child { border-bottom: none; }

.dev-day-tag {
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--accent);
  font-weight: 600;
}

.dev-day-txt {
  font-size: 13.5px;
  color: var(--fg-1);
  line-height: 1.55;
}

@media (max-width: 600px) {
  .dev-day { grid-template-columns: 1fr; gap: 4px; }
}

/* ==========================================================
   SECTION: For Whom
   ========================================================== */
.forwhom-section { padding: 80px 0; }
@media (min-width: 768px) { .forwhom-section { padding: 120px 0; } }

.fw-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 44px;
}

@media (min-width: 800px) { .fw-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }

.fw-card {
  padding: 32px 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  -webkit-backdrop-filter: var(--glass-blur-soft);
          backdrop-filter: var(--glass-blur-soft);
  box-shadow: var(--glass-shadow-soft);
}

@media (min-width: 768px) { .fw-card { padding: 40px 36px; } }

.fw-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.fw-ic {
  font-size: 32px;
  line-height: 1;
  filter: saturate(1.2);
}

.fw-label {
  font-size: 11px;
  color: var(--hero-light);
  letter-spacing: 0.05em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.fw-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg-0);
  line-height: 1.2;
}

.fw-card ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.fw-card li {
  padding: 12px 0;
  font-size: 14.5px;
  color: var(--fg-1);
  border-bottom: 1px dashed var(--line);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.55;
}
.fw-card li:last-child { border: none; }

.fw-card li .bullet {
  margin-top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--hero-light);
  box-shadow: 0 0 8px var(--hero-glow);
}

.fw-close {
  text-align: center;
  font-size: 17px;
  color: var(--fg-1);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.5;
}

.objection-box {
  margin: 56px auto 0;
  max-width: 720px;
  padding: 32px 36px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(14, 165, 233, 0.02));
  border: 1px solid var(--glass-border-hi);
  border-left: 3px solid var(--hero-light);
  border-radius: var(--r-lg);
  -webkit-backdrop-filter: var(--glass-blur-soft);
          backdrop-filter: var(--glass-blur-soft);
}
@media (max-width: 640px) {
  .objection-box { padding: 24px 22px; margin-top: 40px; }
}

.obj-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.obj-ic {
  font-size: 24px;
  flex-shrink: 0;
}

.objection-box .obj-head h3 {
  font-size: 22px;
  line-height: 1.25;
  margin: 0;
  color: var(--fg-0);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.objection-box p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-1);
  margin: 0 0 12px 0;
}
.objection-box p:last-child { margin-bottom: 0; }
.objection-box p b { color: var(--fg-0); font-weight: 600; }

/* ==========================================================
   SECTION: 7 dias (Days / Modules)
   ========================================================== */
.days-section { padding: 80px 0; }
@media (min-width: 768px) { .days-section { padding: 120px 0; } }

/* === Days Timeline (v2.1) — vertical rail + 7 cards reveal === */
.days-timeline {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  position: relative;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

/* Trilho vertical — fundo cinza + faixa cyan progressiva via mask */
.days-timeline::before,
.days-timeline::after {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 18px;
  width: 2px;
  border-radius: 2px;
}
.days-timeline::before {
  background: rgba(148, 163, 184, 0.12);
}
.days-timeline::after {
  background: linear-gradient(180deg,
    transparent 0%,
    var(--hero-light) 8%,
    var(--hero) 50%,
    var(--hero-deep) 92%,
    transparent 100%);
  opacity: 0.7;
  filter: blur(0.5px);
}

@media (min-width: 768px) {
  .days-timeline::before,
  .days-timeline::after { left: 24px; }
}

.day-item {
  position: relative;
  padding: 0 0 28px 52px;
  list-style: none;
}

.day-item:last-child { padding-bottom: 0; }

@media (min-width: 768px) {
  .day-item { padding: 0 0 36px 64px; }
}

/* Nó (●) — círculo glass com glow cyan */
.day-node {
  position: absolute;
  top: 22px;
  left: 11px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-0);
  border: 2px solid var(--glass-border-hi);
  box-shadow: 0 0 0 4px rgba(10, 15, 28, 1), var(--glow-sm);
  transition: border-color 320ms ease, box-shadow 320ms ease, transform 320ms ease;
  z-index: 2;
}

@media (min-width: 768px) {
  .day-node { left: 17px; width: 18px; height: 18px; top: 28px; }
}

/* Estado: card no centro do viewport — nó pulsa cyan forte */
.day-item.active .day-node {
  border-color: var(--hero-light);
  box-shadow:
    0 0 0 4px var(--bg-0),
    0 0 20px rgba(56, 189, 248, 0.7),
    0 0 40px rgba(14, 165, 233, 0.5);
  transform: scale(1.15);
}

/* Estado: card já passado — nó preenchido cyan suave */
.day-item.revealed .day-node {
  background: var(--hero);
  border-color: var(--hero-light);
}

/* Card glass — material premium com top-highlight */
.day-card {
  position: relative;
  padding: 22px 22px;
  background: linear-gradient(135deg, var(--glass-bg-strong) 0%, rgba(14, 165, 233, 0.02) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  -webkit-backdrop-filter: var(--glass-blur);
          backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow-soft);
  overflow: hidden;
  transition: border-color 320ms ease, box-shadow 320ms ease, transform 320ms ease;
}

@media (min-width: 768px) {
  .day-card { padding: 32px 36px; }
}

.day-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 35%;
  border-radius: inherit;
  border-bottom-left-radius: 100%;
  border-bottom-right-radius: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.day-card > * { position: relative; z-index: 1; }

.day-item.active .day-card {
  border-color: var(--glass-border-hi);
  box-shadow: 0 16px 48px rgba(14, 165, 233, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.10);
  transform: translateY(-1px);
}

/* Header: number + eyebrow + title */
.day-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .day-card-head { gap: 20px; margin-bottom: 18px; }
}

.day-card-num {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 200;
  font-size: clamp(56px, 12vw, 88px);
  line-height: 1;
  letter-spacing: -0.045em;
  flex-shrink: 0;
  padding: 4px 4px 4px 0;
  background: linear-gradient(180deg, var(--fg-0) 0%, var(--hero-light) 55%, var(--hero) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(56, 189, 248, 0.32));
  font-variant-numeric: tabular-nums;
}

.day-card-eyebrow {
  font-size: 11px;
  color: var(--hero-light);
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.day-card-title {
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg-0);
  font-weight: 600;
  text-wrap: balance;
}

@media (min-width: 768px) {
  .day-card-title { font-size: 24px; }
}

/* Hook (italic Fraunces — preserva voz) */
.day-card-hook {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--fg-0);
  line-height: 1.4;
  margin-bottom: 12px;
  text-wrap: balance;
}

@media (min-width: 768px) {
  .day-card-hook { font-size: 20px; margin-bottom: 14px; }
}

.day-card-body {
  color: var(--fg-1);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .day-card-body { font-size: 15px; }
}

/* Outcomes — grid 1 col mobile / 2 cols desktop */
.day-card-outcomes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

@media (min-width: 640px) {
  .day-card-outcomes { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* Reveal animation */
.day-item {
  opacity: 0;
  transform: translateX(20px) translateY(8px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1) var(--day-delay, 0ms),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1) var(--day-delay, 0ms),
    border-color 320ms ease,
    box-shadow 320ms ease;
}

.day-item.revealed {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .day-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .day-item.active .day-card { transform: none; }
}

/* Outcome (compartilhado com day-card) */
.outcome {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  color: var(--fg-1);
  padding: 12px 14px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur-soft);
          backdrop-filter: var(--glass-blur-soft);
  border-radius: var(--r-md);
  border: 1px solid var(--glass-border);
  align-items: flex-start;
  line-height: 1.5;
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.outcome:hover {
  border-color: var(--glass-border-hi);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.outcome .chk {
  color: var(--hero-light);
  flex-shrink: 0;
  margin-top: 1px;
  filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.45));
}

.days-close {
  text-align: center;
  font-size: 16px;
  color: var(--fg-1);
  margin-top: 32px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ==========================================================
   SECTION: Terminal
   ========================================================== */
.terminal-section { padding: 80px 0; }
@media (min-width: 768px) { .terminal-section { padding: 120px 0; } }

.terminal-wrap {
  max-width: 920px;
  margin: 0 auto;
  background: #0a0a0e;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 40px 100px -20px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 80px -20px var(--accent-glow);
}

.terminal-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}

.terminal-head .dot-r { width: 11px; height: 11px; border-radius: 50%; background: #ff5f56; }
.terminal-head .dot-y { width: 11px; height: 11px; border-radius: 50%; background: #ffbd2e; }
.terminal-head .dot-g { width: 11px; height: 11px; border-radius: 50%; background: #27c93f; }
.terminal-head .t-title { flex: 1; text-align: center; font-family: var(--f-mono); font-size: 12px; color: var(--fg-2); }

.terminal-body {
  padding: 20px 22px;
  font-family: var(--f-mono);
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--fg-1);
  min-height: 320px;
  white-space: pre-wrap;
  word-break: break-word;
}

@media (min-width: 768px) {
  .terminal-body { padding: 28px 32px; font-size: 13.5px; min-height: 360px; }
}

.terminal-body .prompt { color: var(--accent); }
.terminal-body .user-input { color: var(--fg-0); }
.terminal-body .info { color: var(--cyan); }
.terminal-body .success { color: var(--green); }
.terminal-body .muted { color: var(--fg-3); }
.terminal-body .cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: var(--accent);
  vertical-align: text-bottom;
  animation: cursorBlink 1s steps(2) infinite;
  margin-left: 2px;
}

@keyframes cursorBlink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }

/* ==========================================================
   SECTION: Bonuses (Pack Clínica)
   ========================================================== */
.bonus-section {
  padding: 80px 0;
  position: relative;
}

@media (min-width: 768px) { .bonus-section { padding: 120px 0; } }

.bonus-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 900px 400px at 50% 30%, rgba(56, 189, 248, 0.10), transparent 65%);
  pointer-events: none;
}

.bonus-section > * { position: relative; z-index: 1; }

.bonus-tarja {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: linear-gradient(90deg, var(--accent-soft), rgba(56, 189, 248, 0.12));
  border: 1px solid var(--glass-border-hi);
  border-radius: 999px;
  color: var(--hero-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  -webkit-backdrop-filter: var(--glass-blur-soft);
          backdrop-filter: var(--glass-blur-soft);
}

.bt-ic { font-size: 15px; }
.bt-txt { letter-spacing: 0.05em; }

.bonus-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

@media (min-width: 900px) {
  .bonus-hero { grid-template-columns: 1.1fr 1fr; gap: 72px; }
}

.bonus-hero-left { display: flex; flex-direction: column; gap: 24px; }

.bonus-niches {
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-1);
  margin: -8px 0 0 0;
}
.bonus-niches b { color: var(--fg-0); font-weight: 600; }

.bonus-double {
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--r-md);
  margin-top: 4px;
}

.bd-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 14px 0;
}

.bonus-double p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--fg-1);
  margin: 0;
}
.bonus-double p b { color: var(--fg-0); font-weight: 600; }

.bonus-payoff {
  margin-top: 4px;
  padding: 18px 22px;
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.10), rgba(14, 165, 233, 0.03));
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--r-md);
  font-size: 17px;
  line-height: 1.45;
  color: var(--fg-0);
  text-align: center;
}
.bonus-payoff b { color: var(--accent); font-weight: 700; }

.bonus-uses {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.bu {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}

.bu-ic {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}

.bu b {
  display: block;
  color: var(--fg-0);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.bu span {
  display: block;
  font-size: 13.5px;
  color: var(--fg-2);
  line-height: 1.5;
}

.pack-card {
  background: linear-gradient(135deg, var(--glass-bg-strong) 0%, rgba(14, 165, 233, 0.02) 100%);
  border: 1px solid var(--glass-border-hi);
  border-radius: var(--r-xl);
  padding: 28px;
  position: relative;
  -webkit-backdrop-filter: var(--glass-blur);
          backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
}

@media (min-width: 768px) { .pack-card { padding: 36px; } }

.pack-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, var(--hero-light), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.pack-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  border-radius: var(--r-xl) var(--r-xl) 100% 100% / var(--r-xl) var(--r-xl) 50% 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
  pointer-events: none;
}

.pack-card > * { position: relative; z-index: 1; }

.pack-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.pack-icon {
  font-size: 32px;
  line-height: 1;
}

.pack-eyebrow {
  font-size: 11px;
  color: var(--hero-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.pack-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.pack-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.pack-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--fg-1);
  line-height: 1.5;
}

.pack-list .chk { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.pack-price {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 14px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.pack-price-l { font-size: 12px; color: var(--fg-2); text-transform: uppercase; letter-spacing: 0.05em; }
.pack-price-r { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.pack-old { font-size: 14px; color: var(--fg-3); text-decoration: line-through; }
.pack-new { font-size: 14px; color: var(--accent); font-weight: 600; }

.pack-warn {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px;
  background: oklch(0.65 0.2 25 / 0.08);
  border: 1px dashed oklch(0.65 0.2 25 / 0.3);
  border-radius: 8px;
  font-size: 12.5px;
  color: var(--fg-1);
  line-height: 1.5;
}

.pack-warn svg { color: var(--danger); flex-shrink: 0; margin-top: 3px; }
.pack-warn b { color: var(--fg-0); font-weight: 600; }

/* ==========================================================
   SECTION: Social Proof
   ========================================================== */
.social-section { padding: 80px 0; }
@media (min-width: 768px) { .social-section { padding: 120px 0; } }

/* Carrossel de vídeos (mobile-first: scroll-snap; desktop: 3-up) */
.sv-carousel {
  margin: 32px -20px 48px;
}

.sv-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 86%;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 20px;
  padding: 4px 20px 16px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.sv-track::-webkit-scrollbar { display: none; }

.sv-card {
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sv-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 250ms, transform 250ms;
}

.sv-frame:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.sv-frame.is-empty { cursor: default; }
.sv-frame.is-empty:hover { transform: none; }

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

.sv-empty {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--fg-3);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background:
    radial-gradient(circle at 50% 40%, rgba(14, 165, 233, 0.08), transparent 60%),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(255,255,255,0.025) 18px 19px);
}

/* Capa designed (citação + assinatura) */
.sv-cover {
  position: absolute;
  inset: 0;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: radial-gradient(ellipse at 30% 0%, rgba(56, 189, 248, 0.18), transparent 55%),
              linear-gradient(180deg, #161116 0%, #0e0b10 60%, #0a080c 100%);
  overflow: hidden;
  isolation: isolate;
}

.sv-cover.tone-magenta {
  background: radial-gradient(ellipse at 70% 0%, rgba(56, 189, 248, 0.22), transparent 55%),
              linear-gradient(180deg, #14101a 0%, #0c0a14 60%, #08070d 100%);
}

.sv-cover-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, #000 50%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 50%, transparent 90%);
  z-index: 0;
}

.sv-cover-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, var(--accent-glow), transparent 60%);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.sv-cover.tone-magenta .sv-cover-glow {
  background: radial-gradient(ellipse at 50% 50%, rgba(14, 165, 233, 0.4), transparent 60%);
}

.sv-cover-eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--fg-1);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sv-cover.tone-magenta .sv-cover-eyebrow { color: var(--hero-light); }
.sv-cover.tone-amber .sv-cover-eyebrow { color: var(--accent); }

.sv-cover-quote-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: auto 0;
  padding: 0 4px;
}

.sv-cover-mark {
  font-family: var(--f-serif);
  font-size: 56px;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.7;
}

.sv-cover.tone-magenta .sv-cover-mark { color: var(--hero); }

.sv-cover-quote {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.3;
  color: var(--fg-0);
  letter-spacing: -0.01em;
}

.sv-cover-foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255,255,255,0.1);
}

.sv-cover-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hero-light), var(--hero));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.sv-cover.tone-magenta .sv-cover-avatar {
  background: linear-gradient(135deg, var(--hero-light), var(--hero));
  color: #15001a;
}

.sv-cover-name { font-size: 12.5px; font-weight: 600; color: var(--fg-0); }
.sv-cover-role { font-size: 11px; color: var(--fg-2); }

@media (min-width: 480px) {
  .sv-cover { padding: 22px 22px 20px; }
  .sv-cover-quote { font-size: 19px; }
  .sv-cover-mark { font-size: 64px; }
  .sv-cover-avatar { width: 36px; height: 36px; font-size: 14px; }
  .sv-cover-name { font-size: 13.5px; }
  .sv-cover-role { font-size: 12px; }
}

.sv-meta {
  padding: 0 4px;
}

.sv-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-0);
}

.sv-role {
  font-size: 12px;
  color: var(--fg-2);
  margin-top: 2px;
}

.sv-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.sv-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 200ms, width 200ms;
}

.sv-dot.is-active {
  background: var(--accent);
  width: 22px;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .sv-carousel { margin: 40px auto 56px; max-width: 720px; }
  .sv-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: row;
    grid-auto-columns: auto;
    gap: 20px;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }
  .sv-card { scroll-snap-align: none; }
  .sv-dots { display: none; }
}

/* ==========================================================
   SECTION: Bruno (Instructor)
   ========================================================== */
.bruno-section { padding: 80px 0; }
@media (min-width: 768px) { .bruno-section { padding: 120px 0; } }

.bruno-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: 960px;
  margin: 0 auto;
  padding: 32px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  -webkit-backdrop-filter: var(--glass-blur);
          backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow-soft);
}

@media (min-width: 768px) { .bruno-card { grid-template-columns: 260px 1fr; gap: 48px; padding: 44px; } }

.bruno-photo {
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-strong);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.5);
  max-width: 280px;
  margin: 0 auto;
  width: 100%;
}

.bruno-photo img { width: 100%; height: 100%; object-fit: cover; }

.bruno-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4));
  pointer-events: none;
}

.bruno-photo-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  font-size: 10.5px;
  color: var(--fg-0);
  backdrop-filter: blur(10px);
  font-weight: 500;
  z-index: 2;
}

.bruno-text { display: flex; flex-direction: column; gap: 14px; }
.bruno-text h3 { font-size: 28px; margin-bottom: 0; }
.bruno-role { font-size: 12.5px; color: var(--hero-light); letter-spacing: 0.02em; font-weight: 600; }
.bruno-text p { font-size: 15px; color: var(--fg-1); line-height: 1.65; }

.bruno-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

@media (min-width: 640px) {
  .bruno-links { flex-direction: row; flex-wrap: wrap; gap: 10px; }
}

.bruno-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--fg-1);
  font-size: 13px;
  font-weight: 500;
  transition: background 150ms, border-color 150ms, color 150ms;
}

.bruno-link:hover { background: rgba(255,255,255,0.08); border-color: var(--line-strong); color: var(--fg-0); }

/* ==========================================================
   SECTION: Comparator
   ========================================================== */
.comparator-section { padding: 80px 0; }
@media (min-width: 768px) { .comparator-section { padding: 120px 0; } }

.compare-table {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--glass-bg-strong) 0%, rgba(14, 165, 233, 0.02) 100%);
  border: 1px solid var(--glass-border-hi);
  border-radius: var(--r-xl);
  overflow: hidden;
  -webkit-backdrop-filter: var(--glass-blur);
          backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
}

.ct-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid var(--line);
}

.ct-h-q { display: none; }

@media (min-width: 800px) {
  .ct-head { grid-template-columns: 1fr 1fr 1fr; }
  .ct-h-q { display: block; }
}

.ct-h-bad, .ct-h-good {
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 1px solid var(--line);
}

.ct-h-bad { border-left: none; }

.ct-name { font-size: 15px; font-weight: 600; letter-spacing: -0.02em; }
.ct-h-good .ct-name {
  background: linear-gradient(100deg, var(--hero-light), var(--hero));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ct-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 5px;
  align-self: flex-start;
}

.ct-tag.bad { background: rgba(244, 63, 94, 0.10); color: var(--danger); border: 1px solid rgba(244, 63, 94, 0.25); }
.ct-tag.good { background: var(--accent-soft); color: var(--hero-light); border: 1px solid rgba(56, 189, 248, 0.25); }

.ct-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px dashed var(--line);
  align-items: stretch;
  transition: background 200ms ease;
}

.ct-row:hover {
  background: rgba(56, 189, 248, 0.04);
}

@media (min-width: 800px) { .ct-row { grid-template-columns: 1fr 1fr 1fr; } }

.ct-row:first-of-type { border-top: none; }

.ct-q {
  padding: 14px 22px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--fg-0);
  background: rgba(255,255,255,0.015);
  grid-column: 1 / -1;
  border-bottom: 1px dashed var(--line);
}

@media (min-width: 800px) {
  .ct-q { grid-column: 1; border-bottom: none; border-right: 1px solid var(--line); }
}

.ct-bad, .ct-good {
  padding: 14px 22px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.5;
}

.ct-good { border-left: 1px solid var(--line); }
@media (min-width: 800px) { .ct-bad { border-left: none; } }

.ct-bad { color: var(--fg-2); }
.ct-good { color: var(--fg-1); }

.ct-ic {
  width: 18px; height: 18px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.ct-ic.x {
  background: rgba(244, 63, 94, 0.12);
  color: var(--danger);
  border: 1px solid rgba(244, 63, 94, 0.22);
  box-shadow: 0 0 12px rgba(244, 63, 94, 0.20);
}
.ct-ic.check {
  background: var(--accent-soft);
  color: var(--hero-light);
  border: 1px solid rgba(56, 189, 248, 0.25);
  box-shadow: 0 0 14px rgba(14, 165, 233, 0.30);
}

.compare-foot {
  text-align: center;
  font-size: 15px;
  color: var(--fg-1);
  max-width: 680px;
  margin: 40px auto 0;
  line-height: 1.6;
}

/* ==========================================================
   SECTION: Offer
   ========================================================== */
.offer-section {
  padding: clamp(100px, 14vw, 160px) 0;
  position: relative;
  overflow: hidden;
}

.offer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 1000px 500px at 50% 40%, var(--accent-glow), transparent 60%);
  opacity: 0.4;
  pointer-events: none;
}

.offer-shell { max-width: 820px; margin: 0 auto; position: relative; z-index: 2; }

.offer-card {
  background: linear-gradient(135deg, var(--glass-bg-strong) 0%, rgba(14, 165, 233, 0.02) 100%);
  border: 1px solid var(--glass-border-hi);
  border-radius: var(--r-2xl);
  padding: 32px 24px;
  position: relative;
  box-shadow:
    0 40px 120px -30px rgba(0, 0, 0, 0.6),
    0 16px 64px rgba(14, 165, 233, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(56, 189, 248, 0.10);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
          backdrop-filter: blur(28px) saturate(140%);
  overflow: hidden;
}

.offer-card > * { position: relative; z-index: 1; }

@media (min-width: 768px) { .offer-card { padding: 52px; } }

.offer-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, var(--hero-light), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.offer-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 35%;
  border-radius: var(--r-2xl) var(--r-2xl) 100% 100% / var(--r-2xl) var(--r-2xl) 50% 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.offer-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--accent-soft);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 999px;
  color: var(--accent);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  font-weight: 600;
  margin-bottom: 28px;
}

.offer-inclui {
  list-style: none;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-inclui li {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  color: var(--fg-1);
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  flex-wrap: wrap;
  line-height: 1.4;
}

.offer-inclui li:last-child { border-bottom: none; }

.offer-inclui li .chk { color: var(--accent); flex-shrink: 0; }

.offer-inclui li .val {
  margin-left: auto;
  color: var(--fg-3);
  font-family: var(--f-mono);
  font-size: 11.5px;
  padding-left: 12px;
}

.offer-inclui li .val.bonus {
  color: var(--hero-light);
  font-weight: 600;
}

.offer-bonus-li {
  padding: 14px 16px !important;
  margin: 4px 0;
  background: linear-gradient(90deg, var(--accent-soft), rgba(56, 189, 248, 0.08));
  border: 1px solid rgba(56, 189, 248, 0.3) !important;
  border-radius: 10px;
  border-bottom: 1px solid rgba(56, 189, 248, 0.3) !important;
}

/* Anchoring table */
.anchoring {
  padding: 20px 22px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 32px;
}

.anc-title {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-3);
  font-weight: 600;
  margin-bottom: 12px;
}

.anc-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
  color: var(--fg-1);
  gap: 12px;
  align-items: center;
}

.anc-row b { font-family: var(--f-mono); font-size: 13.5px; color: var(--fg-0); white-space: nowrap; }

.anc-total {
  display: flex;
  justify-content: space-between;
  padding: 12px 0 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg-0);
  gap: 12px;
  align-items: center;
}

.anc-total b {
  font-family: var(--f-mono);
  background: linear-gradient(100deg, var(--hero-light), var(--hero));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

/* Price block */
.price-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 28px;
  padding: 24px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
}

@media (min-width: 640px) { .price-block { grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; } }

.price-left { display: flex; flex-direction: column; gap: 6px; }

.price-left .old {
  font-size: 15px;
  text-decoration: line-through;
  color: var(--fg-3);
}

.price-left .main {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.price-left .main .rs { font-size: 22px; color: var(--fg-2); font-weight: 500; }

.price-left .main .val {
  font-size: 72px;
  line-height: 1;
  background: linear-gradient(180deg, #fff, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (min-width: 768px) { .price-left .main .val { font-size: 88px; } }

.price-left .inst {
  font-size: 13px;
  color: var(--fg-2);
  margin-top: 4px;
}

.price-left .inst b { color: var(--fg-0); font-weight: 600; }

.price-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pr-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-1);
}

.pr-ic {
  width: 22px; height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
}

.offer-cta-row { display: flex; }
.offer-cta-row .btn { width: 100%; }

.offer-small {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 12.5px;
  color: var(--fg-2);
  margin-top: 24px;
}

.offer-small .s-item { display: flex; align-items: center; gap: 6px; }

/* ==========================================================
   SECTION: Guarantee
   ========================================================== */
.guarantee-section { padding: 80px 0; }
@media (min-width: 768px) { .guarantee-section { padding: 100px 0; } }

.guarantee {
  max-width: 880px;
  margin: 0 auto;
  padding: 36px 28px;
  background: linear-gradient(135deg, var(--glass-bg-strong) 0%, rgba(14, 165, 233, 0.02) 100%);
  border: 1px solid var(--glass-border-hi);
  border-radius: var(--r-xl);
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  text-align: center;
  -webkit-backdrop-filter: var(--glass-blur);
          backdrop-filter: var(--glass-blur);
  box-shadow: var(--glass-shadow);
}

@media (min-width: 768px) {
  .guarantee {
    grid-template-columns: 140px 1fr;
    gap: 44px;
    text-align: left;
    padding: 48px 52px;
  }
}

.guarantee-seal {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.85), rgba(10, 15, 28, 0.85));
  border: 1px solid var(--glass-border-hi);
  color: var(--fg-0);
  -webkit-backdrop-filter: var(--glass-blur-soft);
          backdrop-filter: var(--glass-blur-soft);
}

.gs-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hero-light) 0%, transparent 35%, transparent 65%, var(--hero-deep) 100%);
  z-index: -1;
  padding: 3px;
  -webkit-mask:
    radial-gradient(circle, transparent calc(50% - 2px), black calc(50% - 1.5px), black 50%, transparent calc(50% + 0.5px));
          mask:
    radial-gradient(circle, transparent calc(50% - 2px), black calc(50% - 1.5px), black 50%, transparent calc(50% + 0.5px));
}

.guarantee-seal::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.18) 48%, rgba(255, 255, 255, 0.05) 52%, transparent 70%);
  pointer-events: none;
  animation: seal-shimmer 6s ease-in-out infinite;
  mix-blend-mode: overlay;
}

@keyframes seal-shimmer {
  0%, 100% { transform: translateX(-30%) rotate(0deg); opacity: 0; }
  40% { opacity: 1; }
  50% { transform: translateX(30%) rotate(0deg); opacity: 0.8; }
  60% { opacity: 0; }
}

@keyframes spinSlow { to { transform: rotate(360deg); } }

.guarantee-seal .d {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: var(--hero-light);
  letter-spacing: -0.04em;
}

.guarantee-seal .l {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--fg-2);
  margin-top: 4px;
  font-weight: 600;
}

.guarantee-body { display: flex; flex-direction: column; gap: 12px; align-items: center; }
@media (min-width: 768px) { .guarantee-body { align-items: flex-start; } }

.guarantee-body .eyebrow { align-self: center; }
@media (min-width: 768px) { .guarantee-body .eyebrow { align-self: flex-start; } }

.guarantee-body h3 { font-size: 26px; line-height: 1.2; }
@media (min-width: 768px) { .guarantee-body h3 { font-size: 30px; } }

.guarantee-body p { font-size: 15px; color: var(--fg-1); line-height: 1.65; }

.guarantee-reason {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--fg-0) !important;
  font-size: 17px !important;
  line-height: 1.5 !important;
  margin-top: 4px;
}

/* ==========================================================
   SECTION: FAQ
   ========================================================== */
.faq-section { padding: 80px 0; }
@media (min-width: 768px) { .faq-section { padding: 120px 0; } }

.faq {
  max-width: 820px;
  margin: 0 auto;
}

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

.faq-item:last-child { border-bottom: 1px solid var(--line); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: left;
  color: var(--fg-0);
  cursor: pointer;
  transition: color 150ms;
  gap: 16px;
  line-height: 1.35;
}

@media (min-width: 768px) { .faq-q { font-size: 18px; padding: 26px 0; } }

.faq-q:hover { color: var(--hero-light); }

.faq-q .icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-2);
  transition: background 300ms, color 300ms;
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
}

.faq-item.open .faq-q .icon { background: var(--accent-soft); color: var(--hero-light); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease, padding 400ms;
  color: var(--fg-1);
  font-size: 14.5px;
  line-height: 1.7;
}

.faq-item.open .faq-a { max-height: 500px; padding: 0 46px 24px 0; }

/* ==========================================================
   SECTION: Final CTA
   ========================================================== */
.final-cta-section {
  padding: clamp(100px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 1100px 600px at 50% 50%, rgba(56, 189, 248, 0.18), transparent 60%),
    radial-gradient(ellipse 700px 400px at 50% 70%, rgba(14, 165, 233, 0.12), transparent 55%);
  pointer-events: none;
}

.final-cta-section::after {
  content: "";
  position: absolute;
  left: 50%; top: 60%;
  width: 480px; height: 480px;
  margin-left: -240px;
  margin-top: -240px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, rgba(14, 165, 233, 0.06) 40%, transparent 70%);
  filter: blur(20px);
  border-radius: 50%;
  pointer-events: none;
  animation: orb-pulse 6s ease-in-out infinite;
}

@keyframes orb-pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.08); opacity: 1; }
}

.final-cta .btn-primary.btn-xl {
  padding: 24px 44px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transform: scale(1);
  box-shadow: var(--glow-xl);
  border: 1px solid rgba(56, 189, 248, 0.55);
}

.final-cta .btn-primary.btn-xl:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 20px 56px rgba(14, 165, 233, 0.50),
    0 0 100px rgba(56, 189, 248, 0.40),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

@media (min-width: 768px) {
  .final-cta .btn-primary.btn-xl { padding: 28px 56px; font-size: 20px; }
}

.final-cta {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-size: clamp(28px, 5vw, 54px);
  line-height: 1.1;
}

.final-cta p {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--fg-1);
  max-width: 580px;
  line-height: 1.55;
}

.final-small {
  font-size: 12.5px;
  color: var(--fg-2);
  max-width: 620px;
  line-height: 1.6;
  margin-top: 8px;
}

/* ==========================================================
   Footer
   ========================================================== */
footer {
  padding: 56px 0 32px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(10, 15, 28, 0.5));
  -webkit-backdrop-filter: var(--glass-blur-soft);
          backdrop-filter: var(--glass-blur-soft);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--fg-2);
}

.f-brand {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--fg-1);
}

.f-by {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--fg-3);
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.f-by-label { letter-spacing: 0.05em; }

.f-by-name {
  font-weight: 600;
  color: var(--fg-2);
  letter-spacing: -0.01em;
}

.f-name { font-size: 15px; font-weight: 600; letter-spacing: -0.02em; }
.f-method { font-size: 11px; color: var(--fg-3); margin-top: 2px; letter-spacing: 0.01em; }

.footer-inner .f-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-inner .f-links a:hover { color: var(--fg-0); }

.f-copy { font-size: 11.5px; color: var(--fg-3); }

@media (max-width: 600px) {
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}
