/* =============================================
   NSKIAXAUUSD — AUTHORITY EDITION v2
   Premium High-Conversion Landing Page
   ============================================= */

/* ── DESIGN TOKENS ── */
:root {
  --bg-deep:    #010103;
  --bg-primary: #04040A;
  --bg-elevated:#07070F;
  --bg-surface: #0C0C16;
  --bg-glass:   rgba(255,255,255,0.025);
  --bg-glass-strong: rgba(255,255,255,0.05);

  --border-subtle:      rgba(255,255,255,0.055);
  --border-medium:      rgba(255,255,255,0.09);
  --border-gold:        rgba(245,196,0,0.18);
  --border-gold-mid:    rgba(245,196,0,0.32);
  --border-gold-strong: rgba(245,196,0,0.50);

  --gold-600: #B8890A;
  --gold-500: #F0BE00;
  --gold-400: #FFD040;
  --gold-300: #FFE47A;
  --gold-gradient:      linear-gradient(135deg, #FFE259 0%, #F5C400 50%, #E6A020 100%);
  --gold-gradient-rich: linear-gradient(135deg, #FFE566 0%, #F5C400 28%, #D4960A 62%, #A87608 100%);
  --gold-gradient-v:    linear-gradient(180deg, #FFE566 0%, #F0BE00 55%, #C88A08 100%);
  --gold-glow:        0 0 60px rgba(245,196,0,0.14);
  --gold-glow-strong: 0 0 120px rgba(245,196,0,0.26);

  --green-500: #22C55E;
  --green-glow: 0 8px 32px rgba(34,197,94,0.28);

  --red-500:   #EF4444;
  --red-bg:    rgba(239,68,68,0.05);
  --red-border:rgba(239,68,68,0.14);

  --text-primary:   #F5F5FF;
  --text-secondary: rgba(245,245,255,0.60);
  --text-muted:     rgba(245,245,255,0.34);
  --text-dim:       rgba(245,245,255,0.16);

  --container-max: 1180px;
  --section-py:    114px;

  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  18px;
  --r-xl:  26px;
  --r-2xl: 36px;

  --font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; border: none; cursor: pointer; background: none; color: inherit; }
ul, ol { list-style: none; }

/* Display font on headings */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.order-name,
.founder-text h2,
.g-content h3,
.price-new {
  font-family: var(--font-display);
}

/* ── GLOBAL BACKGROUND MESH ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(245,196,0,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 90% 80%, rgba(200,140,0,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at -10% 40%, rgba(245,196,0,0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Grain texture overlay for premium tactile feel */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.020;
  pointer-events: none;
  z-index: 9998;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

body > * { position: relative; z-index: 1; }

/* Animated grid background (hero) */
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,196,0,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,196,0,0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at center, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at center, black 0%, transparent 80%);
  pointer-events: none;
}

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.text-center { text-align: center; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }

/* ── SECTION TYPOGRAPHY ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-400);
  padding: 7px 16px;
  border: 1px solid var(--border-gold-mid);
  border-radius: 100px;
  background: rgba(245,196,0,0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-gradient);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 22px;
}
.section-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 18px;
  line-height: 1.72;
  color: var(--text-secondary);
  max-width: 680px;
  margin-bottom: 60px;
}
.section-desc strong { color: var(--text-primary); font-weight: 600; }

/* Section backgrounds */
.section-dark {
  background: var(--bg-primary);
  padding: var(--section-py) 0;
  position: relative;
}
.section-elevated {
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-surface) 100%);
  padding: var(--section-py) 0;
  position: relative;
}
.section-deep {
  background: var(--bg-deep);
  padding: var(--section-py) 0;
  position: relative;
}

/* Subtle section separator glow lines */
.section-dark::after,
.section-elevated::after,
.section-deep::after,
.founder::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,196,0,0.12) 30%, rgba(245,196,0,0.18) 50%, rgba(245,196,0,0.12) 70%, transparent);
  pointer-events: none;
}

/* ── SCROLL REVEAL ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(.22,1,.36,1), transform 0.9s cubic-bezier(.22,1,.36,1);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   URGENCY BAR
   ═══════════════════════════════════════════ */
.urgency-bar {
  background: linear-gradient(90deg, #7A1010, #B22020, #CC2B2B, #B22020, #7A1010);
  background-size: 200% 100%;
  animation: gradient-slide 10s linear infinite;
  padding: 10px 0;
  position: relative;
  z-index: 1001;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.urgency-bar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,196,0,0.35) 50%, transparent);
}
.urgency-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  max-width: var(--container-max); margin: 0 auto; padding: 0 24px;
}
.ub-text {
  font-size: 12.5px; font-weight: 700; color: #fff;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.ub-timer { display: flex; align-items: center; gap: 4px; }
.t-block {
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px; padding: 4px 10px;
  font-size: 19px; font-weight: 900; color: #fff;
  min-width: 44px; text-align: center;
  font-variant-numeric: tabular-nums;
  font-family: var(--font-display);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.t-sep { font-size: 16px; color: rgba(255,255,255,0.65); font-weight: 700; }

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(4,4,10,0.82);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-bottom: 1px solid rgba(245,196,0,0.10);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.navbar.scrolled {
  background: rgba(4,4,10,0.95);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5), 0 1px 0 rgba(245,196,0,0.15);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: var(--container-max); margin: 0 auto;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0; min-width: 0;
}
.site-logo {
  display: block; width: auto; height: auto;
  max-width: 100%; object-fit: contain; object-position: center; flex-shrink: 0;
}
.site-logo--nav   { max-height: clamp(38px, 10vw, 54px); width: auto; }
.site-logo--hero  { max-width: min(200px, 60vw); width: auto; height: auto; margin: 0 auto 26px; }
.site-logo--order { max-width: min(210px, 70vw); width: auto; height: auto; margin: 0 auto 22px; }
.site-logo--footer  { max-width: min(170px, 52vw); width: auto; height: auto; }
.site-logo--section { max-width: min(190px, 72vw); width: auto; height: auto; margin: 0 auto 28px; }

.logo-mark {
  width: 40px; height: 40px; background: var(--gold-gradient-rich);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(245,196,0,0.35), inset 0 1px 0 rgba(255,255,255,0.4);
}
.logo-text .lt1 { font-size: 17px; font-weight: 700; font-family: var(--font-display); letter-spacing: 0.05em; color: #fff; display: block; line-height: 1; }
.logo-text .lt2 {
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em;
  background: var(--gold-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block; margin-top: 3px;
}
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-wpp-btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.30);
  color: var(--green-500);
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.03em;
  padding: 9px 16px; border-radius: var(--r-sm);
  transition: all 0.25s;
}
.nav-wpp-btn:hover {
  background: rgba(34,197,94,0.22);
  border-color: rgba(34,197,94,0.5);
  transform: translateY(-1px);
}
.nav-cta-btn {
  background: var(--gold-gradient); color: #000;
  font-size: 12.5px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 10px 22px; border-radius: var(--r-sm);
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(245,196,0,0.32);
  position: relative; overflow: hidden;
}
.nav-cta-btn::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: shimmer 3.5s infinite;
}
.nav-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,196,0,0.5); }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 88px 0 108px;
  overflow: hidden;
  background: var(--bg-primary);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(245,196,0,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 15% 70%, rgba(200,140,0,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 85% 35%, rgba(245,196,0,0.04) 0%, transparent 55%);
  pointer-events: none;
}

.hero-orb-1, .hero-orb-2, .hero-orb-3 {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(90px);
}
.hero-orb-1 {
  top: -250px; left: 50%; transform: translateX(-50%);
  width: 750px; height: 750px;
  background: radial-gradient(circle, rgba(245,196,0,0.16) 0%, transparent 60%);
  animation: float-orb 20s ease-in-out infinite;
}
.hero-orb-2 {
  top: 25%; right: -200px; width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(255,165,0,0.08) 0%, transparent 60%);
  animation: float-orb-2 24s ease-in-out infinite alternate;
}
.hero-orb-3 {
  bottom: -200px; left: -150px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(184,134,11,0.09) 0%, transparent 60%);
  animation: float-orb-3 28s ease-in-out infinite alternate;
}

/* Gold coin particles */
.gold-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.coin {
  position: absolute;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold-gradient-rich);
  box-shadow: 0 0 14px rgba(245,196,0,0.55), inset 0 1px 0 rgba(255,255,255,0.4);
  opacity: 0;
  animation: coin-fall 15s linear infinite;
}
.coin::before {
  content: '$'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(0,0,0,0.45); font-size: 10px; font-weight: 900;
}
.coin:nth-child(1)  { left: 5%;  animation-delay: 0s;    width: 13px; height: 13px; }
.coin:nth-child(2)  { left: 18%; animation-delay: 3s;    width: 21px; height: 21px; }
.coin:nth-child(3)  { left: 35%; animation-delay: 6s;    width: 15px; height: 15px; }
.coin:nth-child(4)  { left: 55%; animation-delay: 1.5s;  width: 19px; height: 19px; }
.coin:nth-child(5)  { left: 72%; animation-delay: 4.5s;  width: 14px; height: 14px; }
.coin:nth-child(6)  { left: 88%; animation-delay: 2s;    width: 17px; height: 17px; }
.coin:nth-child(7)  { left: 12%; animation-delay: 7.5s;  width: 11px; height: 11px; }
.coin:nth-child(8)  { left: 62%; animation-delay: 9s;    width: 23px; height: 23px; }
.coin:nth-child(9)  { left: 28%; animation-delay: 11.5s; width: 15px; height: 15px; }
.coin:nth-child(10) { left: 80%; animation-delay: 10s;   width: 18px; height: 18px; }

.hero-content { position: relative; z-index: 2; }
.hero-grid {
  display: flex;
  justify-content: center;
}
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
}

/* Hero badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(245,196,0,0.07);
  border: 1px solid rgba(245,196,0,0.28);
  border-radius: 100px;
  padding: 9px 20px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
}
.badge-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 12px var(--green-500);
  animation: pulse-dot 1.8s infinite;
}

.hero-title {
  font-size: clamp(40px, 5.8vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 22px;
}
.hero-title span,
.hero-title-accent {
  background: var(--gold-gradient-rich);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative; display: inline-block;
}
.hero-title-accent {
  margin-top: 4px;
}
.hero-title span::after,
.hero-title-accent::after {
  content: ''; position: absolute; left: 0; bottom: -5px;
  height: 3px; width: 100%;
  background: var(--gold-gradient);
  border-radius: 2px; opacity: 0.35;
}

.hero-sub {
  font-size: clamp(15.5px, 1.6vw, 17.5px);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.72;
}
.hero-sub strong { color: rgba(255,255,255,0.9); font-weight: 600; }

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; justify-content: center; }

/* Trust row */
.hero-trust {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 0; flex-wrap: wrap;
  justify-content: center;
}
.trust-avatars { display: flex; }
.trust-avatars img {
  width: 34px; height: 34px;
  border-radius: 50%; border: 2px solid var(--bg-primary);
  object-fit: cover; margin-left: -10px;
}
.trust-avatars img:first-child { margin-left: 0; }
.trust-text { font-size: 13px; color: var(--text-secondary); line-height: 1.4; }
.trust-text strong { color: #fff; font-weight: 700; }
.trust-stars { color: var(--gold-500); letter-spacing: 2px; font-size: 13px; }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-gradient); color: #000;
  font-size: 15px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 18px 32px; border-radius: var(--r-sm);
  box-shadow: 0 10px 36px rgba(245,196,0,0.32), inset 0 1px 0 rgba(255,255,255,0.35);
  transition: all 0.25s; position: relative; overflow: hidden;
}
.btn-gold::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  animation: shimmer 3.5s infinite;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(245,196,0,0.48); }

.btn-wpp {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(34,197,94,0.15); color: var(--green-500);
  border: 1px solid rgba(34,197,94,0.35);
  font-size: 14px; font-weight: 800; letter-spacing: 0.04em;
  padding: 18px 24px; border-radius: var(--r-sm);
  transition: all 0.25s;
}
.btn-wpp:hover {
  background: rgba(34,197,94,0.22);
  border-color: rgba(34,197,94,0.55);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(34,197,94,0.22);
}
.btn-wpp .wpp-label { display: flex; flex-direction: column; text-align: left; line-height: 1.15; }
.btn-wpp .wpp-label .wl1 { font-size: 10.5px; opacity: 0.8; font-weight: 500; text-transform: none; letter-spacing: 0; }
.btn-wpp .wpp-label .wl2 { font-size: 14px; font-weight: 800; }

/* ── HERO METRICS ── */
.hero-metrics {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 64px;
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg); overflow: hidden;
  background: rgba(245,196,0,0.025);
  backdrop-filter: blur(16px);
  box-shadow: 0 0 60px rgba(245,196,0,0.07);
}
.metric {
  padding: 28px 20px; text-align: center;
  border-right: 1px solid var(--border-subtle);
  position: relative; transition: background 0.3s;
}
.metric:hover { background: rgba(245,196,0,0.05); }
.metric:last-child { border-right: none; }
.metric-value {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700; font-family: var(--font-display);
  background: var(--gold-gradient-rich);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; letter-spacing: -0.025em;
}
.metric-label { font-size: 11.5px; color: var(--text-muted); margin-top: 8px; font-weight: 500; }

/* ═══════════════════════════════════════════
   AS SEEN IN
   ═══════════════════════════════════════════ */
.as-seen {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 28px 0; position: relative;
}
.as-seen-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.as-seen-lbl {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.20em; color: var(--text-muted);
  padding-right: 16px; border-right: 1px solid var(--border-subtle);
  white-space: nowrap;
}
.as-seen-logos {
  display: flex; align-items: center; gap: 36px;
  flex-wrap: wrap; justify-content: center;
}
.as-logo {
  font-weight: 900; letter-spacing: 0.04em;
  color: var(--text-muted); opacity: 0.45;
  font-size: 17px; font-style: italic;
  transition: opacity 0.35s, color 0.35s;
  cursor: default; user-select: none;
}
.as-logo:hover { opacity: 0.85; color: #fff; }
.as-logo.serif  { font-family: Georgia, serif; font-style: normal; font-size: 20px; }
.as-logo.bold   { letter-spacing: -0.02em; font-size: 20px; font-style: normal; }

/* ═══════════════════════════════════════════
   SOCIAL PROOF STRIP
   ═══════════════════════════════════════════ */
.social-strip {
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 22px 0;
}
.strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 52px; flex-wrap: wrap;
}
.strip-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 600; color: var(--text-secondary);
}
.strip-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(245,196,0,0.08);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}

/* ═══════════════════════════════════════════
   VSL / VIDEO PRESENTATION
   ═══════════════════════════════════════════ */
.vsl-section {
  background: var(--bg-primary);
  padding: var(--section-py) 0;
  text-align: center; position: relative; overflow: hidden;
}
.vsl-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(245,196,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.vsl-wrap {
  position: relative; max-width: 900px;
  margin: 48px auto 0; aspect-ratio: 16/9;
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--border-gold-mid);
  box-shadow: 0 36px 90px rgba(0,0,0,0.75), 0 0 70px rgba(245,196,0,0.13);
  background: #000;
}
.vsl-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
  z-index: 1;
}
.vsl-wrap.is-playing .vsl-video { z-index: 3; }
.vsl-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.vsl-wrap.is-playing .vsl-overlay {
  opacity: 0; visibility: hidden; pointer-events: none;
}
.vsl-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.72), rgba(0,0,0,0.38)),
    url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?w=1600&q=80') center/cover;
}
.vsl-play-center {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  transition: transform 0.35s ease;
}
.vsl-overlay:hover .vsl-play-center { transform: scale(1.04); }
.play-btn {
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 10px rgba(245,196,0,0.12), 0 0 0 26px rgba(245,196,0,0.05);
  animation: pulse-ring 2.2s ease-in-out infinite;
}
.play-btn::after {
  content: ''; width: 0; height: 0;
  border-top: 14px solid transparent; border-bottom: 14px solid transparent;
  border-left: 24px solid #000; margin-left: 5px;
}
.vsl-cta-text {
  color: #fff; font-size: 17px; font-weight: 800; font-family: var(--font-display);
  text-shadow: 0 2px 14px rgba(0,0,0,0.85); letter-spacing: 0.03em;
  margin: 0;
}
.vsl-play-hint {
  font-size: 12px; color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em; margin: 0;
}
.vsl-duration {
  position: absolute; bottom: 16px; right: 16px; z-index: 2;
  background: rgba(0,0,0,0.78); color: #fff;
  font-size: 12px; font-weight: 700; padding: 5px 10px;
  border-radius: 4px; letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
  pointer-events: none;
}
.vsl-wrap.is-playing .vsl-video::-webkit-media-controls-panel {
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
}
/* ── VSL buy CTA (aparece após 15s) ── */
.vsl-buy-cta {
  max-width: 560px;
  margin: 40px auto 0;
  padding: 0 16px;
  text-align: center;
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.55s cubic-bezier(.22,1,.36,1),
              transform 0.55s cubic-bezier(.22,1,.36,1);
}
.vsl-buy-cta[hidden] { display: none; }
.vsl-buy-cta.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.vsl-buy-headline {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}
.btn-comprar-agora {
  position: relative;
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0;
  border: none;
  border-radius: 14px;
  text-decoration: none;
  cursor: pointer;
  animation: vsl-btn-pulse 2.4s ease-in-out infinite;
}
.btn-comprar-glow {
  position: absolute;
  inset: -4px;
  border-radius: 18px;
  background: var(--gold-gradient);
  opacity: 0.45;
  filter: blur(14px);
  z-index: 0;
  animation: vsl-glow-pulse 2.4s ease-in-out infinite;
}
.btn-comprar-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 28px;
  border-radius: 14px;
  background: var(--gold-gradient);
  color: #000;
  box-shadow:
    0 14px 48px rgba(245,196,0,0.42),
    0 0 0 1px rgba(255,255,255,0.25) inset,
    0 4px 0 rgba(0,0,0,0.12);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-comprar-agora::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 14px;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: vsl-btn-shine 3s ease-in-out infinite;
  pointer-events: none;
}
.btn-comprar-agora:hover .btn-comprar-inner {
  transform: translateY(-4px);
  box-shadow:
    0 22px 60px rgba(245,196,0,0.55),
    0 0 0 1px rgba(255,255,255,0.35) inset,
    0 4px 0 rgba(0,0,0,0.1);
}
.btn-comprar-agora:active .btn-comprar-inner {
  transform: translateY(-1px);
}
.btn-comprar-icon {
  font-size: 26px;
  line-height: 1;
  flex-shrink: 0;
}
.btn-comprar-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.15;
  flex: 1;
}
.btn-comprar-main {
  font-family: var(--font-display);
  font-size: clamp(18px, 4.5vw, 22px);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.btn-comprar-sub {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.72;
  letter-spacing: 0.03em;
  margin-top: 3px;
}
.btn-comprar-arrow {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.btn-comprar-agora:hover .btn-comprar-arrow {
  transform: translateX(5px);
}
.vsl-buy-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  margin-top: 18px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
}
.vsl-buy-trust span { white-space: nowrap; }
.vsl-buy-secondary {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-400);
  transition: color 0.2s;
}
.vsl-buy-secondary:hover {
  color: var(--gold-300);
  text-decoration: underline;
}
@keyframes vsl-btn-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.02); }
}
@keyframes vsl-glow-pulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50%      { opacity: 0.65; transform: scale(1.04); }
}
@keyframes vsl-btn-shine {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@keyframes vsl-cta-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   CARD SYSTEM
   ═══════════════════════════════════════════ */
.card-grid { display: grid; gap: 18px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: linear-gradient(160deg, rgba(18,18,30,0.95) 0%, rgba(10,10,18,0.98) 100%);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative; overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  /* Gradient border via box-shadow + after */
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.07), inset 0 1px 0 rgba(255,255,255,0.06);
}
.card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,196,0,0.28) 50%, transparent);
  opacity: 0; transition: opacity 0.4s;
}
.card::after {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px rgba(245,196,0,0.0);
  transition: box-shadow 0.4s ease;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-7px);
  box-shadow:
    inset 0 0 0 1px rgba(245,196,0,0.20),
    0 28px 70px rgba(0,0,0,0.5),
    0 0 50px rgba(245,196,0,0.08);
}
.card:hover::before { opacity: 1; }

.card-icon {
  font-size: 26px; margin-bottom: 18px;
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(245,196,0,0.12), rgba(245,196,0,0.03));
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
}
.card h3 {
  font-size: 19px; font-weight: 700; color: var(--text-primary);
  margin-bottom: 10px; letter-spacing: -0.01em; font-family: var(--font-display);
}
.card p { font-size: 14px; color: var(--text-secondary); line-height: 1.72; }

/* ═══════════════════════════════════════════
   ALERT CARDS (Red Flags)
   ═══════════════════════════════════════════ */
.alert-card {
  background: linear-gradient(160deg, rgba(239,68,68,0.05), rgba(239,68,68,0.02));
  border-radius: var(--r-lg); padding: 28px;
  position: relative; overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(239,68,68,0.14);
  transition: transform 0.3s, box-shadow 0.3s;
}
.alert-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239,68,68,0.4) 50%, transparent);
}
.alert-card:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px rgba(239,68,68,0.28), 0 18px 50px rgba(239,68,68,0.12);
}
.alert-card .card-icon {
  background: linear-gradient(135deg, rgba(239,68,68,0.14), rgba(239,68,68,0.04));
  border-color: rgba(239,68,68,0.2); font-size: 26px;
}
.alert-card h3 { font-size: 18px; font-weight: 700; color: var(--red-500); margin-bottom: 8px; font-family: var(--font-display); }
.alert-card p  { font-size: 14px; color: var(--text-secondary); line-height: 1.72; }

/* ═══════════════════════════════════════════
   INCLUDE ITEMS
   ═══════════════════════════════════════════ */
.include-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: linear-gradient(160deg, rgba(18,18,30,0.85), rgba(10,10,18,0.90));
  border-radius: var(--r-md); padding: 22px;
  transition: all 0.3s;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  position: relative; overflow: hidden;
}
.include-item::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,196,0,0.20) 50%, transparent);
  opacity: 0; transition: opacity 0.3s;
}
.include-item:hover {
  box-shadow: inset 0 0 0 1px rgba(245,196,0,0.22), 0 14px 36px rgba(0,0,0,0.28);
  transform: translateY(-3px);
}
.include-item:hover::before { opacity: 1; }
.include-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: linear-gradient(135deg, rgba(245,196,0,0.12), rgba(245,196,0,0.03));
  border: 1px solid var(--border-gold); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.include-text h4 { font-size: 15.5px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; font-family: var(--font-display); }
.include-text p  { font-size: 13px; color: var(--text-secondary); line-height: 1.65; }
.include-value {
  display: inline-block; margin-top: 8px;
  font-size: 10.5px; font-weight: 800; color: var(--gold-400);
  background: rgba(245,196,0,0.09); border: 1px solid var(--border-gold);
  padding: 3px 10px; border-radius: 100px; letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════
   PROOF CARDS
   ═══════════════════════════════════════════ */
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.proof-card {
  background: linear-gradient(160deg, rgba(18,18,30,0.95), rgba(10,10,18,0.98));
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.07);
  transition: all 0.4s;
}
.proof-card:hover {
  box-shadow: inset 0 0 0 1px rgba(245,196,0,0.25), 0 24px 65px rgba(0,0,0,0.5), var(--gold-glow);
  transform: translateY(-5px);
}
.proof-head {
  padding: 16px 24px;
  background: linear-gradient(90deg, rgba(245,196,0,0.07), rgba(245,196,0,0.02));
  border-bottom: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: space-between;
}
.proof-title {
  font-size: 14.5px; font-weight: 700; font-family: var(--font-display);
  background: var(--gold-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.proof-badge {
  background: var(--gold-gradient); color: #000;
  font-size: 10px; font-weight: 900;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 4px;
}
.proof-body { padding: 24px; }
.proof-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
.pm {
  background: rgba(255,255,255,0.028);
  border-radius: 10px; padding: 14px; text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.pm-val {
  font-size: 25px; font-weight: 700; font-family: var(--font-display);
  background: var(--gold-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.pm-lbl { font-size: 10px; color: var(--text-muted); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.07em; font-weight: 700; }
.proof-chart {
  background: #050510; border-radius: 10px; height: 140px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden; position: relative;
}
.proof-chart svg { width: 100%; height: 100%; }

/* ═══════════════════════════════════════════
   AUTHORITY / FOUNDER SECTION
   ═══════════════════════════════════════════ */
.founder {
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-deep) 100%);
  padding: var(--section-py) 0;
  position: relative; overflow: hidden;
}
.founder::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 30% 50%, rgba(245,196,0,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.founder-grid {
  display: grid;
  grid-template-columns: 0.80fr 1.20fr;
  gap: 64px; align-items: center;
}
.founder-photo {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: 0 36px 90px rgba(0,0,0,0.65), 0 0 0 1px rgba(245,196,0,0.18), var(--gold-glow);
}
.founder-photo img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5;
  filter: contrast(1.06) saturate(1.08);
}
.founder-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(2,2,8,0.88) 100%);
}
.founder-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 26px;
}
.founder-name { font-size: 22px; font-weight: 700; color: #fff; font-family: var(--font-display); letter-spacing: -0.01em; }
.founder-role {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--gold-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-top: 4px;
}
.founder-creds-bar {
  position: absolute; top: 16px; left: 16px; right: 16px;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.cred {
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  padding: 5px 10px; border-radius: 6px;
  font-size: 10px; font-weight: 700; color: var(--gold-400);
  text-transform: uppercase; letter-spacing: 0.07em;
}
.founder-text h2 {
  font-size: clamp(28px, 4.2vw, 46px);
  font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.06; margin-bottom: 22px;
}
.founder-text h2 span {
  background: var(--gold-gradient-rich);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.founder-text > p {
  font-size: 15.5px; color: var(--text-secondary); line-height: 1.78; margin-bottom: 22px;
}
.founder-text p strong { color: #fff; font-weight: 600; }
.founder-quote {
  border-left: 3px solid var(--gold-500);
  padding: 6px 0 6px 20px;
  font-style: italic; color: rgba(255,255,255,0.82);
  font-size: 16.5px; margin: 28px 0;
  background: rgba(245,196,0,0.03);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.founder-achievements {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px;
}
.achievement {
  background: rgba(245,196,0,0.04);
  border-radius: var(--r-md); padding: 18px; text-align: center;
  box-shadow: inset 0 0 0 1px rgba(245,196,0,0.12);
}
.achievement-val {
  font-size: 26px; font-weight: 700; font-family: var(--font-display);
  background: var(--gold-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.achievement-lbl { font-size: 11.5px; color: var(--text-muted); margin-top: 6px; font-weight: 500; }

/* ═══════════════════════════════════════════
   COMO FUNCIONA — STEPS + TERMINAL
   ═══════════════════════════════════════════ */
#technology .section-label,
#technology .section-title,
#technology .how-lead {
  text-align: left;
}
#technology .how-lead {
  max-width: 580px;
  margin-left: 0;
  margin-right: auto;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
  align-items: start;
  margin-top: 48px;
}
.how-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.how-step {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  transition: border-color 0.2s ease;
}
.how-step:hover {
  border-color: rgba(245,196,0,0.18);
}
.step-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-600);
  min-width: 28px;
  padding-top: 3px;
  letter-spacing: 0.08em;
  font-family: var(--font-display);
}
.step-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.step-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.transparency-grid { margin-top: 48px; }

/* ═══════════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════════ */
.table-wrap {
  overflow-x: auto; overflow-y: visible;
  padding-top: 20px;
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
}
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th {
  padding: 18px 16px;
  background: rgba(0,0,0,0.35);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--text-muted); text-align: center;
  border-bottom: 1px solid var(--border-subtle); vertical-align: bottom;
  font-family: var(--font-display);
}
.compare-table th:first-child { text-align: left; }
.compare-table th.col-gold {
  background: linear-gradient(180deg, rgba(245,196,0,0.12), rgba(245,196,0,0.04));
  border-bottom: 1px solid var(--border-gold-mid);
  position: relative; padding-top: 40px; min-width: 112px;
}
.compare-table th.col-gold::before {
  content: 'RECOMENDADO';
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  font-size: 8.5px; font-weight: 900; color: #000;
  background: var(--gold-gradient);
  padding: 4px 10px; border-radius: 100px;
  letter-spacing: 0.09em; white-space: nowrap; z-index: 1;
}
.compare-table th.col-gold span {
  display: block; font-size: 10px; letter-spacing: 0.06em;
  line-height: 1.3; word-break: break-word; hyphens: auto;
  color: var(--gold-400); background: none; -webkit-text-fill-color: var(--gold-400);
}
.compare-table td {
  padding: 16px; font-size: 14px; color: var(--text-secondary);
  text-align: center; border-bottom: 1px solid var(--border-subtle);
}
.compare-table td:first-child { text-align: left; font-weight: 600; color: var(--text-primary); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(255,255,255,0.018); transition: background 0.2s; }
.td-gold    { background: rgba(245,196,0,0.04) !important; font-weight: 800 !important; }
.td-good    { color: #4ADE80 !important; }
.td-bad     { color: #EF5757 !important; }
.td-gold.td-good {
  background: rgba(245,196,0,0.06) !important;
  color: #4ADE80 !important; -webkit-text-fill-color: #4ADE80 !important;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tcard {
  background: linear-gradient(160deg, rgba(16,16,28,0.98) 0%, rgba(8,8,18,1) 100%);
  border-radius: var(--r-lg); padding: 32px;
  transition: all 0.4s; text-align: left;
  position: relative; overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.07);
}
.tcard::before {
  content: '\201C'; position: absolute;
  top: 4px; right: 20px;
  font-size: 100px; font-family: Georgia, serif;
  color: rgba(245,196,0,0.08);
  line-height: 1; pointer-events: none;
}
.tcard::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,196,0,0.22) 50%, transparent);
  opacity: 0; transition: opacity 0.4s;
}
.tcard:hover {
  box-shadow: inset 0 0 0 1px rgba(245,196,0,0.22), 0 24px 65px rgba(0,0,0,0.4), var(--gold-glow);
  transform: translateY(-6px);
}
.tcard:hover::after { opacity: 1; }
.tcard-stars { color: var(--gold-500); font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.tcard-text { font-size: 14.5px; color: rgba(255,255,255,0.82); line-height: 1.72; margin-bottom: 24px; }
.tcard-author { display: flex; align-items: center; gap: 14px; }
.tcard-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--border-gold-mid); flex-shrink: 0;
}
.tcard-name     { font-size: 14px; font-weight: 700; color: var(--text-primary); font-family: var(--font-display); }
.tcard-role     { font-size: 11.5px; color: var(--text-muted); margin-top: 2px; }
.tcard-verified {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 700; color: var(--green-500); margin-top: 4px;
}

/* ═══════════════════════════════════════════
   PHONE / MOBILE PREVIEW
   ═══════════════════════════════════════════ */
.phone-section {
  background: var(--bg-primary);
  padding: var(--section-py) 0;
  position: relative; overflow: hidden;
}
.phone-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 75% 50%, rgba(245,196,0,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.phone-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.phone-wrap { position: relative; display: flex; justify-content: center; perspective: 1500px; }
.phone {
  width: 280px; height: 580px;
  background: #070710; border-radius: 40px;
  border: 7px solid #14141F;
  position: relative; overflow: hidden;
  box-shadow:
    0 44px 90px rgba(0,0,0,0.75),
    0 0 70px rgba(245,196,0,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  transform: rotateY(-12deg) rotateX(4deg);
  animation: phone-float 6s ease-in-out infinite;
}
.phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 26px; background: #000; border-radius: 14px; z-index: 5;
}
.phone-screen {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #060612 0%, #080812 100%);
  padding: 50px 16px 20px; overflow: hidden;
}
.phone-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4px 12px;
  border-bottom: 1px solid var(--border-subtle); margin-bottom: 14px;
}
.phone-pair { display: flex; align-items: center; gap: 8px; }
.phone-pair-logo {
  width: auto; height: auto; max-width: 40px; max-height: 40px;
  object-fit: contain; border-radius: 8px; flex-shrink: 0;
}
.phone-pair-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold-gradient); display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900; color: #000;
}
.phone-pair-name { font-size: 13px; font-weight: 700; color: #fff; font-family: var(--font-display); }
.phone-pair-sub  { font-size: 9px; color: var(--text-muted); margin-top: 1px; text-transform: uppercase; letter-spacing: 0.08em; }
.phone-live {
  font-size: 9px; font-weight: 700; color: var(--green-500);
  display: flex; align-items: center; gap: 4px;
}
.phone-live::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-500); box-shadow: 0 0 8px var(--green-500);
  animation: pulse-dot 1.5s infinite;
}
.phone-price { text-align: center; margin-bottom: 16px; }
.phone-price-val {
  font-size: 30px; font-weight: 700; font-family: var(--font-display);
  background: var(--gold-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
}
.phone-price-change {
  font-size: 11px; font-weight: 700; color: var(--green-500);
  background: rgba(34,197,94,0.10);
  display: inline-block; padding: 2px 8px; border-radius: 4px; margin-top: 4px;
}
.phone-chart {
  background: #040410; border-radius: 8px; height: 120px;
  margin-bottom: 14px; padding: 8px; overflow: hidden;
}
.phone-chart svg { width: 100%; height: 100%; }
.phone-trades {
  background: rgba(255,255,255,0.020); border-radius: 8px; padding: 10px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}
.phone-trades-head {
  font-size: 9px; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 8px;
}
.phone-trade {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0; border-top: 1px solid var(--border-subtle); font-size: 11px;
}
.phone-trade-left { display: flex; align-items: center; gap: 6px; }
.phone-trade-tag { font-size: 8px; font-weight: 800; padding: 2px 6px; border-radius: 3px; letter-spacing: 0.06em; }
.phone-trade-tag.buy  { background: rgba(34,197,94,0.14); color: var(--green-500); }
.phone-trade-tag.sell { background: rgba(239,68,68,0.14);  color: var(--red-500); }
.phone-trade-name   { color: #fff; font-weight: 600; }
.phone-trade-profit { color: var(--green-500); font-weight: 800; font-variant-numeric: tabular-nums; }

.phone-feature { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.phone-feature-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(245,196,0,0.12), rgba(245,196,0,0.04));
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.phone-feature h4 { font-size: 15.5px; font-weight: 700; color: #fff; margin-bottom: 4px; font-family: var(--font-display); }
.phone-feature p  { font-size: 14px; color: var(--text-secondary); line-height: 1.62; }

/* ═══════════════════════════════════════════
   GUARANTEE
   ═══════════════════════════════════════════ */
.guarantee-box {
  max-width: 880px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(245,196,0,0.06), rgba(245,196,0,0.01));
  border-radius: var(--r-2xl); padding: 54px;
  display: flex; align-items: center; gap: 46px;
  position: relative; overflow: hidden;
  box-shadow: 0 36px 90px rgba(0,0,0,0.45), 0 0 0 1px rgba(245,196,0,0.35), var(--gold-glow-strong);
}
.guarantee-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,196,0,0.6) 50%, transparent);
}
.g-seal {
  width: 148px; min-width: 148px; height: 148px;
  border-radius: 50%;
  background: var(--gold-gradient-rich);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 12px 60px rgba(245,196,0,0.45), inset 0 2px 0 rgba(255,255,255,0.35);
  animation: seal-glow 3s ease-in-out infinite;
  position: relative; flex-shrink: 0;
}
.g-seal::before {
  content: ''; position: absolute; inset: 8px;
  border: 2px dashed rgba(0,0,0,0.25); border-radius: 50%;
  animation: rotate 22s linear infinite;
}
.g-seal .gs1 { font-size: 10px; font-weight: 800; color: #000; letter-spacing: 0.12em; text-transform: uppercase; z-index: 1; }
.g-seal .gs2 { font-size: 40px; font-weight: 700; color: #000; line-height: 1; z-index: 1; font-family: var(--font-display); }
.g-seal .gs3 { font-size: 10px; font-weight: 800; color: #000; text-transform: uppercase; z-index: 1; letter-spacing: 0.09em; }
.g-content h3 {
  font-size: 27px; font-weight: 700; font-family: var(--font-display);
  color: var(--text-primary); margin-bottom: 12px; letter-spacing: -0.02em;
}
.g-content p { font-size: 15.5px; color: var(--text-secondary); line-height: 1.72; }

/* ═══════════════════════════════════════════
   ORDER / PRICING
   ═══════════════════════════════════════════ */
.order-section {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(245,196,0,0.09) 0%, transparent 65%),
    var(--bg-deep);
  padding: var(--section-py) 0;
  text-align: center; position: relative; overflow: hidden;
}
.order-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(245,196,0,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 80% 20%, rgba(245,196,0,0.03) 0%, transparent 55%);
  pointer-events: none;
}
.order-card {
  max-width: 610px;
  margin: 48px auto 0;
  background: linear-gradient(180deg, rgba(16,16,26,0.97), rgba(8,8,16,0.98));
  border-radius: var(--r-2xl); padding: 52px 46px;
  position: relative; overflow: hidden;
  box-shadow: 0 50px 110px rgba(0,0,0,0.7), 0 0 0 1px rgba(245,196,0,0.28), var(--gold-glow-strong);
}
.order-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--gold-gradient);
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
}
.order-card::after {
  content: ''; position: absolute;
  top: -60%; left: -60%; width: 220%; height: 220%;
  background: conic-gradient(from 0deg, transparent, rgba(245,196,0,0.03), transparent 35%);
  animation: rotate 18s linear infinite;
  pointer-events: none;
}
.order-card > * { position: relative; z-index: 1; }

.order-tag {
  display: inline-block; font-size: 11px; font-weight: 900;
  letter-spacing: 0.12em; text-transform: uppercase; color: #fff;
  background: linear-gradient(90deg, #991B1B, #DC2626);
  padding: 6px 16px; border-radius: 100px; margin-bottom: 18px;
  box-shadow: 0 4px 18px rgba(220,38,38,0.32);
}
.order-name {
  font-size: 30px; font-weight: 700; color: #fff;
  margin-bottom: 28px; letter-spacing: -0.025em;
}
.price-old { font-size: 20px; color: var(--text-muted); text-decoration: line-through; }
.price-new {
  font-size: 80px; font-weight: 700;
  background: var(--gold-gradient-rich);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; letter-spacing: -0.04em; margin-top: 4px;
}
.price-info { font-size: 13px; color: var(--text-muted); margin: 12px 0 34px; }

.order-includes { text-align: left; margin-bottom: 34px; }
.order-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text-secondary);
  padding: 12px 0; border-bottom: 1px solid var(--border-subtle);
}
.order-item:last-child { border-bottom: none; }
.order-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold-gradient); color: #000;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 12px; flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(245,196,0,0.28);
}
.order-item-val {
  margin-left: auto; font-size: 12px; color: var(--gold-400); font-weight: 700;
}

.order-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.btn-gold-lg {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gold-gradient); color: #000;
  font-size: 17px; font-weight: 900; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 22px 16px; border-radius: var(--r-sm);
  box-shadow: 0 14px 44px rgba(245,196,0,0.38), inset 0 1px 0 rgba(255,255,255,0.35);
  transition: all 0.25s; position: relative; overflow: hidden;
}
.btn-gold-lg::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  animation: shimmer 3.5s infinite;
}
.btn-gold-lg:hover { transform: translateY(-3px); box-shadow: 0 20px 56px rgba(245,196,0,0.52); }

.btn-wpp-order {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: rgba(34,197,94,0.14); color: var(--green-500);
  border: 1px solid rgba(34,197,94,0.30);
  font-size: 14px; font-weight: 800; letter-spacing: 0.04em;
  padding: 22px 16px; border-radius: var(--r-sm); transition: all 0.25s;
}
.btn-wpp-order:hover {
  background: rgba(34,197,94,0.22);
  border-color: rgba(34,197,94,0.5);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(34,197,94,0.20);
}
.btn-wpp-order .wpp-label { display: flex; flex-direction: column; text-align: left; line-height: 1.15; }
.btn-wpp-order .wpp-label .wl1 { font-size: 10px; opacity: 0.8; font-weight: 500; text-transform: none; letter-spacing: 0; }
.btn-wpp-order .wpp-label .wl2 { font-size: 14px; font-weight: 800; }

.order-note { font-size: 12px; color: var(--text-dim); }
.order-note span { color: var(--gold-500); font-weight: 700; }

.payment-icons {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-top: 20px; opacity: 0.55;
}
.payment-icon {
  height: 24px;
  background: rgba(255,255,255,0.04);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  padding: 4px 10px; border-radius: 5px;
  font-size: 10.5px; font-weight: 800; color: var(--text-muted);
  display: flex; align-items: center; letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: linear-gradient(160deg, rgba(14,14,24,0.90), rgba(8,8,16,0.95));
  border-radius: var(--r-md); overflow: hidden; transition: all 0.3s;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.07);
}
.faq-item.active {
  box-shadow: inset 0 0 0 1px rgba(245,196,0,0.25), 0 8px 30px rgba(245,196,0,0.06);
}
.faq-question {
  width: 100%; padding: 22px 26px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 15.5px; font-weight: 600; font-family: var(--font-display);
  color: var(--text-primary); text-align: left; transition: color 0.3s;
}
.faq-item.active .faq-question { color: var(--gold-400); }
.faq-icon {
  font-size: 22px; font-weight: 300;
  background: var(--gold-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  transition: transform 0.35s ease; flex-shrink: 0; margin-left: 16px;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.faq-item.active .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 26px 22px;
  font-size: 14.5px; color: var(--text-secondary); line-height: 1.76;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
  padding: 52px 0; text-align: center; position: relative;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,196,0,0.20) 50%, transparent);
}
.footer .logo { justify-content: center; margin-bottom: 28px; }
.footer-links {
  display: flex; gap: 28px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 28px;
}
.footer-links a { font-size: 13px; color: var(--text-muted); transition: color 0.25s; }
.footer-links a:hover { color: var(--gold-400); }
.footer-disc {
  font-size: 11px; color: var(--text-dim);
  max-width: 720px; margin: 0 auto; line-height: 1.75;
}

/* ═══════════════════════════════════════════
   FLOATING WHATSAPP
   ═══════════════════════════════════════════ */
.floating-wpp {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 62px; height: 62px;
  background: var(--green-500);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(34,197,94,0.42);
  transition: all 0.25s; animation: float-pulse 2.5s infinite;
}
.floating-wpp:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(34,197,94,0.60); }
.floating-wpp svg { width: 29px; height: 29px; fill: #fff; }

/* ═══════════════════════════════════════════
   LIVE VIEWERS
   ═══════════════════════════════════════════ */
.live-viewers {
  position: fixed; top: calc(var(--navbar-height, 84px) + 12px); right: 24px; z-index: 880;
  background: rgba(16,16,26,0.88);
  border: 1px solid var(--border-gold-mid);
  border-radius: 100px; padding: 8px 14px;
  display: flex; align-items: center; gap: 8px;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  font-size: 12px; color: #fff; font-weight: 600;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  animation: live-viewers-in 0.6s ease-out 1s both;
}
.live-viewers-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-500); box-shadow: 0 0 12px var(--green-500);
  animation: pulse-dot 1.6s infinite;
}
.live-viewers strong { color: var(--gold-400); font-weight: 800; font-family: var(--font-display); }

@keyframes live-viewers-in {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   KEYFRAMES
   ═══════════════════════════════════════════ */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.82); }
}
@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 200%; }
}
@keyframes float-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(34,197,94,0.42); }
  50%       { box-shadow: 0 6px 40px rgba(34,197,94,0.68); }
}
@keyframes seal-glow {
  0%, 100% { box-shadow: 0 12px 60px rgba(245,196,0,0.45), inset 0 2px 0 rgba(255,255,255,0.35); }
  50%       { box-shadow: 0 12px 80px rgba(245,196,0,0.70), inset 0 2px 0 rgba(255,255,255,0.35); }
}
@keyframes float-orb {
  0%, 100% { transform: translate(-50%, 0) scale(1); }
  33%       { transform: translate(-42%, 28px) scale(1.08); }
  66%       { transform: translate(-58%, -18px) scale(0.92); }
}
@keyframes float-orb-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-44px, 44px) scale(1.18); }
}
@keyframes float-orb-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(32px, -32px) scale(1.14); }
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes phone-float {
  0%, 100% { transform: rotateY(-12deg) rotateX(4deg) translateY(0); }
  50%       { transform: rotateY(-10deg) rotateX(3deg) translateY(-14px); }
}
@keyframes coin-fall {
  0%   { top: -30px; transform: rotate(0deg);   opacity: 0; }
  8%   { opacity: 0.55; }
  92%  { opacity: 0.55; }
  100% { top: 110%;   transform: rotate(720deg); opacity: 0; }
}
@keyframes gradient-slide {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0  rgba(245,196,0,0.55), 0 0 0 0  rgba(245,196,0,0.30); }
  100% { box-shadow: 0 0 0 26px rgba(245,196,0,0),   0 0 0 52px rgba(245,196,0,0); }
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════
   LEAD CAPTURE POPUP
   ═══════════════════════════════════════════ */
.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(12px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right))
           max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.lead-popup.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.lead-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 1, 3, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lead-popup-panel {
  position: relative;
  width: 100%;
  max-width: min(480px, 100%);
  max-height: calc(100dvh - 24px);
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: clamp(20px, 4vw, 32px) clamp(18px, 4vw, 28px) clamp(16px, 3vw, 24px);
  border-radius: var(--r-2xl);
  background: linear-gradient(165deg, #0f0f18 0%, #07070f 55%, #04040a 100%);
  border: 1px solid var(--border-gold-mid);
  box-shadow:
    0 0 0 1px rgba(245, 196, 0, 0.08),
    0 24px 80px rgba(0, 0, 0, 0.65),
    var(--gold-glow-strong);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.lead-popup-panel::-webkit-scrollbar { display: none; width: 0; height: 0; }
.lead-popup.is-open .lead-popup-panel {
  transform: translateY(0) scale(1);
}
.lead-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.lead-popup-close:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-medium);
}
.lead-popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: clamp(10px, 2vh, 16px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-400);
  background: rgba(245, 196, 0, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 999px;
}
.lead-popup-badge-icon { font-size: 14px; }
.lead-popup-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 4.5vw, 26px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: clamp(8px, 1.5vh, 12px);
  color: var(--text-primary);
}
.lead-popup-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lead-popup-desc {
  font-size: clamp(13px, 2.8vw, 15px);
  line-height: 1.45;
  color: var(--text-secondary);
  margin-bottom: clamp(10px, 2vh, 14px);
}
.lead-popup-desc strong { color: var(--text-primary); font-weight: 600; }
.lead-popup-benefits {
  margin: 0 0 clamp(12px, 2vh, 18px);
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 0.8vh, 8px);
}
.lead-popup-benefits li {
  font-size: clamp(12px, 2.5vw, 13px);
  color: var(--text-secondary);
  line-height: 1.35;
  padding: 0;
}
.lead-popup-benefits li::marker { content: none; }
.lead-popup-form { display: flex; flex-direction: column; gap: clamp(10px, 2vh, 14px); }
.lead-field { display: flex; flex-direction: column; gap: 5px; }
.lead-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.lead-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.lead-input,
.lead-country {
  width: 100%;
  padding: clamp(11px, 2.5vh, 14px) clamp(12px, 3vw, 16px);
  font-size: clamp(14px, 3vw, 15px);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-medium);
  border-radius: var(--r-md);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.lead-input::placeholder { color: var(--text-muted); }
.lead-input:focus,
.lead-country:focus {
  outline: none;
  border-color: var(--border-gold-strong);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(245, 196, 0, 0.12);
}
.lead-input.is-invalid,
.lead-country.is-invalid {
  border-color: rgba(239, 68, 68, 0.55);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.lead-phone-row {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 10px;
}
.lead-country {
  padding-right: 8px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23F5C400' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.lead-hint {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
.lead-error {
  font-size: 13px;
  color: #f87171;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  background: var(--red-bg);
  border: 1px solid var(--red-border);
}
.lead-submit {
  width: 100%;
  margin-top: 2px;
  padding: clamp(13px, 2.8vh, 16px) clamp(16px, 4vw, 20px);
  font-size: clamp(14px, 3vw, 15px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0a0800;
  background: var(--gold-gradient-rich);
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 230, 100, 0.4);
  box-shadow: 0 8px 32px rgba(245, 196, 0, 0.35);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.lead-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245, 196, 0, 0.45);
  filter: brightness(1.05);
}
.lead-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}
.lead-submit-loading { display: none; }
.lead-submit.is-loading .lead-submit-text { display: none; }
.lead-submit.is-loading .lead-submit-loading { display: inline; }
.lead-popup-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: clamp(10px, 2vh, 16px);
  font-size: clamp(10px, 2.2vw, 12px);
  color: var(--text-muted);
  text-align: center;
}
.lead-trust-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 8px var(--green-500);
  animation: pulse-ring 2s ease infinite;
}
.lead-popup-trust strong { color: var(--text-secondary); }
.lead-popup-legal {
  margin-top: clamp(6px, 1vh, 10px);
  font-size: clamp(9px, 2vw, 10px);
  line-height: 1.35;
  color: var(--text-dim);
  text-align: center;
}

/* Popup compacto — telas baixas sem scroll */
@media (max-height: 740px) {
  .lead-popup-panel {
    padding: 18px 18px 14px;
  }
  .lead-popup-badge {
    padding: 5px 12px;
    font-size: 10px;
    margin-bottom: 8px;
  }
  .lead-popup-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
  .lead-hint { display: none; }
  .lead-popup-legal { display: none; }
}

@media (max-height: 620px) {
  .lead-popup {
    align-items: flex-start;
    padding-top: 8px;
  }
  .lead-popup-panel {
    max-height: calc(100dvh - 16px);
    padding: 14px 16px 12px;
    border-radius: var(--r-xl);
  }
  .lead-popup-title { font-size: 18px; }
  .lead-popup-benefits {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 14px;
  }
  .lead-popup-benefits li { font-size: 11px; }
  .lead-label { font-size: 11px; }
  .lead-popup-trust { margin-top: 8px; }
}

@media (max-width: 380px) {
  .lead-phone-row { grid-template-columns: 96px 1fr; gap: 8px; }
  .lead-popup-trust { font-size: 10px; }
}
.lead-popup.is-success .lead-popup-form,
.lead-popup.is-success .lead-popup-benefits { display: none; }
.lead-popup-success {
  display: none;
  text-align: center;
  padding: 20px 0 8px;
}
.lead-popup.is-success .lead-popup-success { display: block; }
.lead-success-icon {
  font-size: 48px;
  margin-bottom: 12px;
}
.lead-success-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.lead-success-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}
body.lead-popup-open { overflow: hidden; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .founder-grid, .phone-grid, .how-grid { grid-template-columns: 1fr; gap: 44px; }
  .how-col--right { order: -1; }
  .card-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-photo { max-width: 420px; margin: 0 auto; }
  .live-viewers { display: none; }
  .compare-table { min-width: 520px; }
}

@media (max-width: 768px) {
  :root { --section-py: 76px; }

  .nav-inner { flex-wrap: wrap; gap: 10px 12px; padding: 10px 16px; }
  .logo { max-width: 44%; }
  .site-logo--nav { max-height: 44px; }
  .nav-right { flex: 1 1 100%; justify-content: flex-end; flex-wrap: wrap; gap: 8px; }
  .nav-wpp-btn:not([aria-label="Área do aluno"]) { display: none; }
  .nav-cta-btn { font-size: 12px; padding: 10px 14px; }

  .hero { padding: 58px 0 76px; }
  .hero-title { font-size: clamp(36px, 9vw, 56px); }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn-gold, .btn-wpp { justify-content: center; }
  .hero-metrics { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(odd)  { border-right: 1px solid var(--border-subtle); }
  .metric:nth-child(even) { border-right: none; }
  .metric:nth-child(1), .metric:nth-child(2) { border-bottom: 1px solid var(--border-subtle); }

  .card-grid.cols-2, .card-grid.cols-3, .proof-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .strip-inner { gap: 22px; flex-wrap: wrap; justify-content: center; }
  .as-seen-logos { gap: 18px; flex-wrap: wrap; justify-content: center; }
  .as-logo { font-size: 14px; }
  .as-logo.serif, .as-logo.bold { font-size: 16px; }

  .guarantee-box { flex-direction: column; text-align: center; padding: 36px 24px; gap: 26px; }
  .order-card { padding: 36px 22px; }
  .order-buttons { grid-template-columns: 1fr; }
  .price-new { font-size: clamp(48px, 14vw, 64px); }
  .order-item { flex-wrap: wrap; gap: 4px; }
  .order-item-val { margin-left: auto; }

  .founder-achievements { grid-template-columns: 1fr; gap: 12px; }
  .container { padding: 0 16px; }
  .section-title { font-size: clamp(28px, 7vw, 40px); }
  .section-desc { font-size: 15.5px; }
  .floating-wpp { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .btn-comprar-inner { padding: 18px 20px; gap: 10px; }
  .btn-comprar-copy { align-items: center; text-align: center; }
  .btn-comprar-arrow { display: none; }
  .vsl-buy-trust { flex-direction: column; gap: 6px; }
  .play-btn { width: 76px; height: 76px; }
  .vsl-cta-text { font-size: 15px; }
  .footer-inner { text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 12px 20px; }
  .footer .logo { justify-content: center; }
}

@media (max-width: 480px) {
  .nav-inner { justify-content: center; }
  .logo { max-width: 100%; justify-content: center; flex: 1 1 100%; }
  .site-logo--nav { max-height: 50px; }
  .nav-right { justify-content: center; }
  .nav-wpp-btn { display: none; }
  .nav-wpp-btn[aria-label="Área do aluno"] { display: flex; }

  .hero-title { font-size: clamp(32px, 9.5vw, 40px); }
  .section-title { font-size: clamp(26px, 7vw, 32px); }
  .strip-inner { flex-direction: column; gap: 14px; }
  .urgency-inner { flex-direction: column; gap: 8px; padding: 8px 12px; }
  .ub-text { font-size: 10.5px; text-align: center; }
  .phone { transform: none; max-width: 100%; }
  .phone-wrap { padding: 0 8px; }
  .compare-table th, .compare-table td { padding: 12px 10px; font-size: 12px; }
  .compare-table th.col-gold span { font-size: 9px; }
  .site-logo--hero    { max-width: min(200px, 88vw); }
  .site-logo--section { max-width: min(175px, 88vw); }
  .site-logo--order   { max-width: min(175px, 88vw); }
  .btn-gold-lg { font-size: 14px; padding: 16px 20px; }
  .faq-question { font-size: 14px; padding: 16px 44px 16px 16px; }
  .guarantee-box { padding: 28px 18px; }
  .g-seal { width: 120px; min-width: 120px; height: 120px; }
  .g-seal .gs2 { font-size: 32px; }

  .lead-phone-row { grid-template-columns: 100px 1fr; }
}
