/* ============================================================
   LP — Tráfego na Gringa
   Page-specific styles. Reads tokens from colors_and_type.css.
   ============================================================ */

:root {
  --page-dark:     #0a0618;
  --page-dark-2:   #120a26;
  --page-cream:    #f6f1e6;
  --page-cream-2:  #efe7d5;
  --page-light:    #ffffff;
  --lime:          #bef264;
  --lime-text:     #1a2e04;
  --violet:        #8b5cf6;
  --violet-deep:   #4c1d95;
  --ease-out:      cubic-bezier(.16,1,.3,1);
  --ease-std:      cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background: var(--page-dark);
  color: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* containers */
.container {
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding: 0 32px;
}
.container-tight {
  width: 100%; max-width: 920px; margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(190,242,100,0.95);
  background: rgba(190,242,100,0.08);
  border: 1px solid rgba(190,242,100,0.28);
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(190,242,100,0.85);
  box-shadow: 0 0 0 3px rgba(190,242,100,0.12);
}
.eyebrow--dark {
  color: #4d7c0f;
  background: rgba(190,242,100,0.18);
  border-color: rgba(101,163,13,0.35);
}
.eyebrow--dark::before {
  background: #65a30d;
  box-shadow: 0 0 0 3px rgba(101,163,13,0.15);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-anim] {
  opacity: 0;
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  will-change: opacity, transform;
}
[data-anim="up"]    { transform: translateY(28px); }
[data-anim="left"]  { transform: translateX(-32px); }
[data-anim="right"] { transform: translateX(32px); }
[data-anim="scale"] { transform: scale(0.94); }
[data-anim].in,
[data-anim][data-anim-instant] {
  opacity: 1;
  transform: none;
}
[data-anim-delay="1"] { transition-delay: 80ms; }
[data-anim-delay="2"] { transition-delay: 160ms; }
[data-anim-delay="3"] { transition-delay: 240ms; }
[data-anim-delay="4"] { transition-delay: 320ms; }
[data-anim-delay="5"] { transition-delay: 400ms; }
[data-anim-delay="6"] { transition-delay: 480ms; }

@media (prefers-reduced-motion: reduce) {
  [data-anim] { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav-wrap {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,6,24,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  max-width: 1200px; margin: 0 auto;
  padding: 14px 32px;
}
.nav-left { display: flex; align-items: center; gap: 16px; }
.nav-brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; }
.nav-brand-mark {
  width: 38px; height: 38px;
  filter: drop-shadow(0 4px 12px rgba(139,92,246,0.4));
}
.nav-brand-text { font-weight: 700; font-size: 16px; letter-spacing: -0.015em; }
.nav-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.1); }
.nav-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px 5px 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-family: 'DM Mono', monospace; font-size: 11px;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
}
.nav-badge svg { color: rgba(190,242,100,0.85); }
.nav-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(190,242,100,0.85);
  box-shadow: 0 0 0 3px rgba(190,242,100,0.18);
  animation: navDot 2.4s ease-in-out infinite;
}
@keyframes navDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(190,242,100,0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(190,242,100,0.04); }
}

/* ============================================================
   CTA BUTTON
   ============================================================ */
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--lime); color: var(--lime-text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: 15px; letter-spacing: -0.005em;
  padding: 14px 22px; border-radius: 12px;
  text-decoration: none; border: none; cursor: pointer;
  position: relative; overflow: hidden;
  box-shadow:
    0 8px 24px rgba(190,242,100,0.28),
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 -1px 0 rgba(0,0,0,0.06) inset;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.btn-cta::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.6) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 700ms var(--ease-out);
  pointer-events: none;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 36px rgba(190,242,100,0.4),
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 -1px 0 rgba(0,0,0,0.06) inset;
}
.btn-cta:hover::after { transform: translateX(110%); }
.btn-cta svg { transition: transform 220ms var(--ease-out); position: relative; z-index: 1; }
.btn-cta:hover svg { transform: translateX(3px); }
.btn-cta > * { position: relative; z-index: 1; }
.btn-cta--lg {
  font-size: 17px; padding: 18px 28px; border-radius: 14px;
}
.nav .btn-cta { padding: 11px 18px; font-size: 14px; border-radius: 10px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 78% 30%, rgba(139,92,246,0.35), transparent 60%),
    radial-gradient(700px 400px at 8% 80%, rgba(190,242,100,0.08), transparent 60%),
    var(--page-dark);
  padding: 80px 0 120px;
}
/* ambient grid backdrop */
.hero::before {
  content: ""; 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: 56px 56px;
  mask-image: radial-gradient(800px 500px at 60% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(800px 500px at 60% 40%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 64px; align-items: center;
}
.hero-eyebrow-row { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.hero-title {
  font-weight: 700; font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.02; letter-spacing: -0.03em;
  margin: 0 0 24px;
  color: #fff;
  text-wrap: balance;
}
.hero-title em {
  font-style: normal; color: var(--lime);
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  position: relative;
  display: inline-block;
}
.hero-title em::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 4px; height: 8px;
  background: rgba(190,242,100,0.18);
  border-radius: 8px;
  z-index: -1;
  animation: heroHighlight 2.6s var(--ease-out) 0.6s both;
  transform-origin: left;
}
@keyframes heroHighlight {
  0% { transform: scaleX(0); opacity: 0; }
  100% { transform: scaleX(1); opacity: 1; }
}
.hero-sub {
  font-size: 18px; line-height: 1.55; color: rgba(255,255,255,0.7);
  max-width: 540px; margin: 0 0 36px;
}
.hero-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-trust {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'DM Mono', monospace; font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.hero-trust-dot {
  width: 6px; height: 6px; border-radius: 50%; background: rgba(190,242,100,0.7);
  animation: navDot 2.4s ease-in-out infinite;
}

/* ===== HERO VISUAL — Stack of recruiter DMs (no logo) ===== */
.hero-visual {
  position: relative;
  width: 100%; max-width: 480px;
  margin-left: auto;
  aspect-ratio: 1 / 1.05;
}
.dm-deck {
  position: absolute; inset: 0;
  perspective: 1400px;
  perspective-origin: 50% 50%;
}
.dm-card {
  position: absolute; left: 0; right: 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border-radius: 18px;
  padding: 20px 22px;
  display: flex; gap: 14px;
  box-shadow:
    0 24px 48px rgba(10,6,24,0.4),
    0 2px 0 rgba(255,255,255,0.6) inset;
  color: #111827;
  transform-style: preserve-3d;
  transition: transform 600ms var(--ease-out);
}
/* card stacking */
.dm-card.c-1 { top: 0;    transform: translate3d(-22px, 0, 0) rotate(-5deg); z-index: 4; opacity: 0.6; filter: blur(0.5px); }
.dm-card.c-2 { top: 78px;  transform: translate3d(18px, 0, 0) rotate(3.5deg); z-index: 5; opacity: 0.85; }
.dm-card.c-3 { top: 168px; transform: translate3d(-8px, 0, 0) rotate(-1.5deg); z-index: 6; }
.dm-card.c-4 { top: 280px; transform: translate3d(12px, 0, 0) rotate(2deg);   z-index: 7; }

.dm-card.c-3 {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  box-shadow:
    0 0 0 1.5px rgba(190,242,100,0.6),
    0 30px 60px rgba(139,92,246,0.35),
    0 2px 0 rgba(255,255,255,0.7) inset;
}
.dm-card.c-3::after {
  content: "Nova";
  position: absolute; top: -10px; right: 18px;
  background: var(--lime); color: var(--lime-text);
  font-family: 'DM Mono', monospace; font-size: 10px;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px;
  box-shadow: 0 6px 14px rgba(190,242,100,0.4);
}

.dm-avatar {
  flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 13px;
  letter-spacing: 0.02em;
}
.dm-avatar.a-1 { background: linear-gradient(135deg, #f97316, #ea580c); }
.dm-avatar.a-2 { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.dm-avatar.a-3 { background: linear-gradient(135deg, #ec4899, #be185d); }
.dm-avatar.a-4 { background: linear-gradient(135deg, #14b8a6, #0f766e); }

.dm-body { min-width: 0; flex: 1; }
.dm-row1 { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.dm-name { font-weight: 700; font-size: 13px; color: #111827; letter-spacing: -0.005em; }
.dm-time { font-family: 'DM Mono', monospace; font-size: 10px; color: #9ca3af; }
.dm-role { font-size: 11px; color: #6b7280; margin: 1px 0 6px; font-family: 'DM Mono', monospace; }
.dm-msg {
  font-size: 13px; line-height: 1.45; color: #2a2a2a;
  margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.dm-msg .hl { background: rgba(190,242,100,0.4); padding: 0 3px; border-radius: 3px; }

/* floating animation */
.dm-deck { animation: deckFloat 7s ease-in-out infinite; }
@keyframes deckFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* notification badge on top */
.dm-pulse {
  position: absolute; top: -18px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: rgba(10,6,24,0.8);
  border: 1px solid rgba(190,242,100,0.3);
  border-radius: 999px;
  font-family: 'DM Mono', monospace; font-size: 11px;
  color: rgba(190,242,100,0.95);
  letter-spacing: 0.08em; text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  z-index: 10;
}
.dm-pulse-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(190,242,100,0.6);
  animation: pulseDot 1.8s ease-out infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(190,242,100,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(190,242,100,0); }
  100% { box-shadow: 0 0 0 0 rgba(190,242,100,0); }
}

/* ============================================================
   PAIN SECTION
   ============================================================ */
.pain {
  background: var(--page-cream);
  color: #1a1a1a;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
/* removed: dotted world-map backdrop */
.pain-lead {
  font-weight: 700; font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15; letter-spacing: -0.025em;
  margin: 18px 0 56px;
  color: #111827;
  text-wrap: balance;
  position: relative;
}
.pain-lead span { color: var(--violet-deep); }
.pain-list {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 64px;
  position: relative;
}
.pain-item {
  display: grid; grid-template-columns: 72px 1fr auto; gap: 24px;
  padding: 32px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  align-items: start;
  transition: padding-left 300ms var(--ease-out);
}
.pain-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); }
.pain-item:hover { padding-left: 8px; }
.pain-num {
  font-family: 'DM Mono', monospace; font-size: 13px; font-weight: 500;
  color: var(--violet-deep); letter-spacing: 0.02em;
  padding-top: 8px;
  display: flex; align-items: center; gap: 8px;
}
.pain-num::after {
  content: ""; flex: 1; height: 1px; background: rgba(76,29,149,0.2);
  max-width: 32px;
}
.pain-text {
  font-size: 19px; line-height: 1.5; color: #2a2a2a; margin: 0;
  text-wrap: pretty;
}
.pain-text strong { color: #7c3aed; font-weight: 600; }
.pain-pivot p strong { color: #7c3aed; }
.community-intro strong, .community-sub strong { color: #7c3aed; }
.cstack-card strong { color: #7c3aed; }
.bonus-card > p strong { color: #7c3aed; }
.about-content p strong { color: #7c3aed; }
.pain-icon {
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(139,92,246,0.08);
  color: var(--violet-deep);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 300ms var(--ease-out), transform 300ms var(--ease-out);
}
.pain-item:hover .pain-icon {
  background: rgba(190,242,100,0.3);
  color: var(--lime-text);
  transform: rotate(-6deg);
}

.pain-pivot {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px; padding: 40px 44px;
  margin-bottom: 40px;
  position: relative;
  box-shadow: 0 24px 48px rgba(76,29,149,0.06);
}
.pain-pivot::before {
  content: ""; position: absolute; left: -1px; top: 32px; bottom: 32px;
  width: 3px; background: var(--lime); border-radius: 3px;
}
.pain-pivot-kicker {
  font-family: 'DM Mono', monospace; font-size: 11px;
  color: #65a30d; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-flex; align-items: center; gap: 8px;
}
.pain-pivot-kicker::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: #65a30d;
}
.pain-pivot p {
  font-size: 19px; line-height: 1.55; margin: 0 0 14px; color: #2a2a2a;
}
.pain-pivot p:last-child { margin-bottom: 0; }
.pain-pivot strong { color: #111827; font-weight: 600; }

.pain-cta-row { display: flex; justify-content: center; }
.btn-pain {
  background: #111827; color: #fff;
  box-shadow:
    0 8px 24px rgba(17,24,39,0.18),
    0 1px 0 rgba(255,255,255,0.08) inset;
}
.btn-pain::after {
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
}
.btn-pain:hover {
  box-shadow:
    0 14px 36px rgba(17,24,39,0.26),
    0 1px 0 rgba(255,255,255,0.08) inset;
}

/* ============================================================
   MODULES
   ============================================================ */
.modules {
  background:
    radial-gradient(800px 400px at 50% -10%, rgba(139,92,246,0.18), transparent 60%),
    var(--page-dark);
  padding: 120px 0;
}
.modules-head { text-align: center; margin-bottom: 64px; }
.modules-title {
  font-weight: 700; font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05; letter-spacing: -0.025em;
  margin: 18px 0 16px;
  color: #fff;
  text-wrap: balance;
}
.modules-sub {
  font-size: 17px; line-height: 1.6; color: rgba(255,255,255,0.65);
  max-width: 680px; margin: 0 auto;
  text-wrap: balance;
}
.modules-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 56px;
}
.module {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 0;
  display: flex; flex-direction: column;
  transition: border-color 320ms var(--ease-out), transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
  overflow: hidden;
}
.module::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% -20%, rgba(190,242,100,0.18), transparent 60%);
  opacity: 0;
  transition: opacity 320ms var(--ease-out);
  pointer-events: none;
}
.module:hover {
  border-color: rgba(190,242,100,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(139,92,246,0.18);
}
.module:hover::before { opacity: 1; }
.module-body {
  padding: 24px 28px 32px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative; z-index: 1;
}
.module-head { display: flex; align-items: baseline; justify-content: space-between; }
.module-num {
  font-family: 'DM Mono', monospace; font-size: 11px; font-weight: 500;
  color: rgba(190,242,100,0.7); letter-spacing: 0.14em; text-transform: uppercase;
}
.module-big {
  font-family: 'DM Mono', monospace;
  font-weight: 500; font-size: 64px;
  line-height: 0.85; letter-spacing: -0.04em;
  color: rgba(255,255,255,0.95);
  transition: transform 400ms var(--ease-out), color 400ms var(--ease-out);
}
.module:hover .module-big { transform: translateY(-2px); color: var(--lime); }
.module-name {
  font-weight: 700; font-size: 22px; letter-spacing: -0.02em;
  color: #fff; margin: 0;
  line-height: 1.15;
  position: relative;
}
.module-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
}
.module-list li {
  display: grid; grid-template-columns: 16px 1fr; gap: 12px;
  font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.72);
}
.module-list li::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime);
  margin-top: 8px;
  box-shadow: 0 0 0 3px rgba(190,242,100,0.12);
}
.modules-cta-row { display: flex; justify-content: center; }

/* ===== Module thumbnails ===== */
.module-thumb {
  position: relative;
  height: 180px;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(139,92,246,0.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.module-thumb::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 75%);
  opacity: 0.6;
  pointer-events: none;
}
.module:hover .module-thumb-inner { transform: translateY(-4px) scale(1.02); }
.module-thumb-inner {
  position: relative; z-index: 1;
  transition: transform 400ms var(--ease-out);
}

/* THUMB 1 — mini LinkedIn profile card */
.thumb-li {
  width: 230px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 20px 40px rgba(10,6,24,0.55),
    0 1px 0 rgba(255,255,255,0.6) inset;
  color: #111827;
  transform: rotate(-2deg);
}
.thumb-li-banner {
  height: 38px;
  background: linear-gradient(120deg, #1d4ed8, #6366f1, #8b5cf6);
}
.thumb-li-row {
  display: flex; align-items: center; gap: 10px;
  padding: 0 12px;
  margin-top: -16px;
}
.thumb-li-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border: 2.5px solid #fff;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 12px;
  flex-shrink: 0;
}
.thumb-li-otw {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--lime); color: var(--lime-text);
  font-family: 'DM Mono', monospace; font-size: 7px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 6px; border-radius: 4px;
  margin-left: auto;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(190,242,100,0.4);
}
.thumb-li-body { padding: 6px 12px 12px; }
.thumb-li-name { font-weight: 700; font-size: 11px; color: #111827; margin: 6px 0 2px; }
.thumb-li-role { font-size: 9px; color: #6b7280; margin: 0 0 8px; line-height: 1.3; }
.thumb-li-chips { display: flex; flex-wrap: wrap; gap: 4px; }
.thumb-li-chip {
  background: #f3f4f6; color: #374151;
  font-size: 8px; font-weight: 500;
  padding: 3px 6px; border-radius: 4px;
}

/* THUMB 2 — mini chat conversation */
.thumb-chat {
  width: 230px;
  display: flex; flex-direction: column; gap: 6px;
  transform: rotate(1.5deg);
}
.thumb-chat-bubble {
  background: #fff; color: #111827;
  border-radius: 12px 12px 12px 4px;
  padding: 8px 11px;
  font-size: 10px; line-height: 1.35;
  max-width: 75%; box-shadow: 0 8px 20px rgba(10,6,24,0.4);
}
.thumb-chat-bubble.b-out {
  align-self: flex-end;
  background: var(--lime); color: var(--lime-text);
  border-radius: 12px 12px 4px 12px;
  box-shadow: 0 8px 20px rgba(190,242,100,0.25);
  font-weight: 500;
}
.thumb-chat-bubble.b-typing {
  display: inline-flex; align-items: center; gap: 3px;
  padding: 9px 12px;
}
.thumb-chat-bubble.b-typing span {
  width: 4px; height: 4px; border-radius: 50%; background: #9ca3af;
  animation: typingDot 1.4s ease-in-out infinite;
}
.thumb-chat-bubble.b-typing span:nth-child(2) { animation-delay: 0.2s; }
.thumb-chat-bubble.b-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30%           { transform: translateY(-3px); opacity: 1; }
}

/* THUMB 3 — mini job listings */
.thumb-jobs {
  width: 250px;
  display: flex; flex-direction: column; gap: 6px;
  transform: rotate(-1.5deg);
}
.thumb-jobs-search {
  background: #fff;
  border-radius: 8px;
  padding: 6px 10px;
  display: flex; align-items: center; gap: 6px;
  font-size: 9px; color: #6b7280;
  box-shadow: 0 4px 12px rgba(10,6,24,0.3);
}
.thumb-jobs-search svg { color: #9ca3af; flex-shrink: 0; }
.thumb-job {
  background: #fff;
  border-radius: 8px;
  padding: 8px 10px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 14px rgba(10,6,24,0.35);
}
.thumb-job-logo {
  width: 22px; height: 22px; border-radius: 5px;
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 9px;
}
.thumb-job-logo.l1 { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.thumb-job-logo.l2 { background: linear-gradient(135deg, #f97316, #ea580c); }
.thumb-job-logo.l3 { background: linear-gradient(135deg, #14b8a6, #0f766e); }
.thumb-job-meta { flex: 1; min-width: 0; }
.thumb-job-name { font-weight: 700; font-size: 10px; color: #111827; line-height: 1.2; margin-bottom: 2px; }
.thumb-job-co { font-family: 'DM Mono', monospace; font-size: 8px; color: #6b7280; }
.thumb-job-pay {
  font-family: 'DM Mono', monospace; font-size: 8px; font-weight: 700;
  background: rgba(190,242,100,0.25); color: #4d7c0f;
  padding: 2px 6px; border-radius: 4px;
  white-space: nowrap;
}

/* ============================================================
   COMMUNITY — stacked cards
   ============================================================ */
.community {
  background: var(--page-light);
  color: #1a1a1a;
  padding: 120px 0;
  overflow: clip;
}
.community-head { text-align: center; margin-bottom: 56px; max-width: 760px; margin-left: auto; margin-right: auto; }
.community-title {
  font-weight: 700; font-size: clamp(32px, 3.8vw, 46px);
  line-height: 1.1; letter-spacing: -0.025em;
  margin: 18px 0 18px; color: #111827;
  text-wrap: balance;
}
.community-sub {
  font-size: 17px; line-height: 1.6; color: #4b5563; margin: 0;
  text-wrap: pretty;
}
.community-sub strong { color: #111827; font-weight: 600; }

/* ===== Vertical timeline — cards reveal as you scroll ===== */
.community-stack {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  padding-left: 56px;
}
/* connecting line */
.community-stack::before {
  content: ""; position: absolute;
  top: 8px; bottom: 8px; left: 19px;
  width: 2px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(190,242,100,0.4) 8%,
    rgba(139,92,246,0.35) 50%,
    rgba(190,242,100,0.4) 92%,
    transparent 100%);
  border-radius: 2px;
}
.cstack-card {
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 24px 28px 26px;
  display: grid; grid-template-columns: 44px 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 22px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 16px 36px rgba(17,24,39,0.06);
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out), border-color 320ms var(--ease-out);
}
.cstack-card:last-child { margin-bottom: 0; }
.cstack-card:hover {
  transform: translateY(-3px);
  border-color: rgba(190,242,100,0.5);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 24px 48px rgba(76,29,149,0.1);
}
/* timeline node */
.cstack-node {
  position: absolute;
  left: -56px; top: 22px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(255,255,255,0.6));
  border: 1.5px solid rgba(190,242,100,0.5);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'DM Mono', monospace;
  font-weight: 600; font-size: 13px;
  color: var(--lime-text);
  box-shadow:
    0 6px 16px rgba(190,242,100,0.25),
    0 0 0 4px #fff,
    0 0 0 5px rgba(190,242,100,0.2);
  z-index: 1;
  transition: transform 320ms var(--ease-out), background 320ms var(--ease-out);
}
.cstack-card:hover .cstack-node {
  transform: scale(1.08);
  background: var(--lime);
}
.cstack-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(190,242,100,0.32), rgba(139,92,246,0.1));
  color: var(--lime-text);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cstack-card h3 {
  font-weight: 700; font-size: 18px; letter-spacing: -0.01em;
  margin: 4px 0 8px; color: #111827;
}
.cstack-card p {
  font-size: 15px; line-height: 1.55; color: #4b5563; margin: 0;
}
.cstack-card strong { color: #111827; font-weight: 600; }
.cstack-tag { display: none; } /* not used in timeline */

/* scroll-reveal — slide from right */
.cstack-card {
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity 600ms var(--ease-out),
    transform 600ms var(--ease-out),
    box-shadow 320ms var(--ease-out),
    border-color 320ms var(--ease-out);
}
.cstack-card.in {
  opacity: 1;
  transform: translateX(0);
}
.cstack-card.in:hover {
  transform: translateY(-3px);
}
/* node fades in alongside */
.cstack-node {
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out), background 320ms var(--ease-out);
}
.cstack-card.in .cstack-node {
  opacity: 1;
  transform: scale(1);
  transition-delay: 200ms;
}

/* ============================================================
   BÔNUS
   ============================================================ */
.bonus {
  background:
    radial-gradient(900px 400px at 100% 0%, rgba(139,92,246,0.08), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(190,242,100,0.1), transparent 60%),
    var(--page-cream);
  color: #1a1a1a;
  padding: 120px 0;
  position: relative;
  overflow: clip;
}
.bonus::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(76,29,149,0.08) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000, transparent 75%);
  pointer-events: none;
}
.bonus > .container { position: relative; z-index: 1; }
.bonus-head { text-align: center; margin-bottom: 56px; }
.bonus-title {
  font-weight: 700; font-size: clamp(32px, 3.8vw, 44px);
  line-height: 1.1; letter-spacing: -0.025em;
  margin: 16px 0 12px; color: #111827;
  text-wrap: balance;
}
.bonus-sub {
  font-size: 17px; line-height: 1.55; color: #4b5563; margin: 0 auto;
  max-width: 560px; text-wrap: balance;
}
.bonus-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.bonus-card {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 24px;
  padding: 36px 36px 40px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 400ms var(--ease-out), box-shadow 400ms var(--ease-out);
  isolation: isolate;
}
.bonus-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(139,92,246,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 400ms var(--ease-out);
  pointer-events: none;
}
.bonus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 70px rgba(76,29,149,0.16);
}
.bonus-card:hover::before { opacity: 1; }

.bonus-card-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
}
.bonus-card-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(139,92,246,0.1); color: var(--violet-deep);
}
.bonus-card-file {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 10px; color: #6b7280;
}
.bonus-card-filetype {
  font-weight: 700; font-size: 9px;
  padding: 3px 7px;
  border-radius: 4px;
  background: #111827; color: #fff;
  letter-spacing: 0.08em;
}
.bonus-card-filetype.pdf { background: #dc2626; }
.bonus-card-filetype.xlsx { background: #16a34a; }

.bonus-card h3 {
  font-weight: 700; font-size: 24px; letter-spacing: -0.015em;
  margin: 4px 0 0; color: #111827; line-height: 1.2;
}
.bonus-card > p {
  font-size: 15px; line-height: 1.55; color: #4b5563; margin: 0;
}

.bonus-card-visual {
  margin-top: 12px;
  position: relative;
  height: 240px;
  display: flex; align-items: center; justify-content: center;
  perspective: 1000px;
}
.bonus-card-visual::before {
  content: ""; position: absolute; inset: 12% 8% 0;
  background: radial-gradient(ellipse, rgba(76,29,149,0.12), transparent 60%);
  filter: blur(20px);
  z-index: 0;
}

/* ----- realistic resume preview ----- */
.doc {
  position: relative; z-index: 1;
  width: 220px;
  background: #fff;
  border-radius: 4px;
  padding: 22px 20px 24px;
  box-shadow:
    0 24px 48px rgba(10,6,24,0.18),
    0 2px 0 rgba(0,0,0,0.04);
  display: flex; flex-direction: column; gap: 12px;
  transform: rotate(-3deg) translateY(-4px);
  transform-style: preserve-3d;
  transition: transform 500ms var(--ease-out), box-shadow 500ms var(--ease-out);
}
.bonus-card:hover .doc {
  transform: rotate(-1.5deg) translateY(-8px) scale(1.04);
  box-shadow:
    0 36px 64px rgba(10,6,24,0.22),
    0 2px 0 rgba(0,0,0,0.04);
}
.doc-header {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f3f4f6;
}
.doc-photo {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #d1d5db, #9ca3af);
  flex-shrink: 0;
}
.doc-h1 { font-weight: 800; font-size: 11px; color: #111827; letter-spacing: -0.01em; margin-bottom: 2px; line-height: 1.1; }
.doc-h2 { font-family: 'DM Mono', monospace; font-size: 7.5px; color: #6b7280; letter-spacing: 0.04em; }
.doc-section { display: flex; flex-direction: column; gap: 5px; }
.doc-sec-title {
  font-family: 'DM Mono', monospace;
  font-size: 7px; font-weight: 700;
  color: #4d7c0f; letter-spacing: 0.18em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
}
.doc-sec-title::before { content: ""; width: 8px; height: 1.5px; background: var(--lime); }
.doc-row { height: 3.5px; border-radius: 2px; background: #e5e7eb; }
.doc-row.r-l { width: 100%; }
.doc-row.r-m { width: 75%; }
.doc-row.r-s { width: 50%; }
.doc-row.r-name { display: none; }
.doc-row.r-sub  { display: none; }
.doc-row.r-sep  { display: none; }
.doc-bullets { display: flex; flex-direction: column; gap: 4px; padding-left: 8px; }
.doc-bullet { display: flex; align-items: center; gap: 5px; }
.doc-bullet::before { content: ""; width: 3px; height: 3px; border-radius: 50%; background: #9ca3af; flex-shrink: 0; }
.doc-bullet .doc-row { flex: 1; }

/* ----- realistic spreadsheet ----- */
.sheet {
  position: relative; z-index: 1;
  width: 280px;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    0 24px 48px rgba(10,6,24,0.18),
    0 2px 0 rgba(0,0,0,0.04);
  transform: rotate(2deg) translateY(-2px);
  transform-style: preserve-3d;
  font-family: 'DM Mono', monospace;
  transition: transform 500ms var(--ease-out), box-shadow 500ms var(--ease-out);
}
.bonus-card:hover .sheet {
  transform: rotate(1deg) translateY(-8px) scale(1.04);
  box-shadow:
    0 36px 64px rgba(10,6,24,0.22),
    0 2px 0 rgba(0,0,0,0.04);
}
.sheet-tabs {
  display: flex; gap: 0;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  padding: 0 6px;
}
.sheet-tab {
  font-size: 8px; color: #6b7280;
  padding: 6px 10px;
  border-bottom: 1.5px solid transparent;
}
.sheet-tab.active {
  color: #16a34a; font-weight: 700;
  border-bottom-color: #16a34a;
  background: #fff;
}
.sheet-row {
  display: grid; grid-template-columns: 32px 1.4fr 0.8fr 0.7fr 0.7fr;
  border-bottom: 1px solid #f3f4f6;
  font-size: 9px;
}
.sheet-row:last-child { border-bottom: none; }
.sheet-cell {
  padding: 6px 8px;
  border-right: 1px solid #f3f4f6;
  color: #4b5563;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sheet-cell:first-child {
  background: #f9fafb;
  color: #9ca3af;
  text-align: center;
  font-weight: 600;
}
.sheet-cell:last-child { border-right: none; }
.sheet-row--head .sheet-cell {
  background: #f9fafb; font-weight: 700; color: #111827;
  letter-spacing: 0.04em; text-transform: uppercase; font-size: 7.5px;
}
.sheet-cell.num { color: #16a34a; font-weight: 600; }
.sheet-cell.up::after {
  content: "↑"; color: #16a34a; margin-left: 4px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background:
    radial-gradient(700px 300px at 80% 0%, rgba(139,92,246,0.18), transparent 60%),
    radial-gradient(600px 300px at 20% 100%, rgba(190,242,100,0.05), transparent 60%),
    var(--page-dark);
  padding: 120px 0;
}
.testimonials-head { text-align: center; margin-bottom: 56px; }
.testimonials-title {
  font-weight: 700; font-size: clamp(32px, 3.8vw, 46px);
  line-height: 1.1; letter-spacing: -0.025em;
  margin: 18px 0 0;
  color: #fff;
  text-wrap: balance;
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 56px;
}
.quote {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 24px;
  position: relative;
  transition: border-color 320ms var(--ease-out), transform 320ms var(--ease-out);
}
.quote:hover {
  transform: translateY(-4px);
  border-color: rgba(190,242,100,0.25);
}
.quote-mark {
  font-family: 'DM Mono', monospace;
  font-size: 56px; line-height: 0.7;
  color: rgba(190,242,100,0.5);
  margin: 0;
}
.quote-body {
  font-size: 16px; line-height: 1.55;
  color: rgba(255,255,255,0.88);
  margin: 0;
  flex: 1;
  text-wrap: pretty;
}
.quote-body .hl { color: var(--lime); font-weight: 600; }
.quote-meta {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.quote-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-deep) 100%);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #fff;
  flex-shrink: 0;
}
.quote-name { font-weight: 600; font-size: 14px; color: #fff; margin: 0; line-height: 1.2; }
.quote-role { font-family: 'DM Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.5); margin: 3px 0 0; }
.testimonials-cta-row { display: flex; justify-content: center; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--page-light);
  color: #1a1a1a;
  padding: 120px 0;
}
.about-grid {
  display: grid; grid-template-columns: 0.9fr 1.2fr;
  gap: 72px; align-items: start;
}
.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(139,92,246,0.35), transparent 60%),
    linear-gradient(180deg, #1e1147 0%, #0a0618 100%);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 24px 60px rgba(17,24,39,0.18);
}
.about-photo-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-photo-id {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: rgba(10,6,24,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2;
}
.about-photo-id-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(190,242,100,0.18);
  flex-shrink: 0;
}
.about-photo-id-meta { flex: 1; min-width: 0; }
.about-photo-id-name {
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  font-size: 14px; color: #fff;
  letter-spacing: -0.005em; line-height: 1.15;
  margin: 0 0 3px;
}
.about-photo-id-role {
  font-family: 'DM Mono', monospace; font-size: 11px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
  margin: 0;
}
.about-photo-id-pill {
  font-family: 'DM Mono', monospace; font-size: 10px; font-weight: 700;
  background: rgba(190,242,100,0.2);
  color: var(--lime);
  padding: 4px 8px; border-radius: 6px;
  letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid rgba(190,242,100,0.28);
}
.about-content h2 {
  font-weight: 700; font-size: clamp(32px, 3.8vw, 46px);
  line-height: 1.08; letter-spacing: -0.025em;
  margin: 18px 0 28px; color: #111827;
  text-wrap: balance;
}
.about-content p {
  font-size: 17px; line-height: 1.65; color: #2a2a2a;
  margin: 0 0 18px;
  text-wrap: pretty;
}
.about-content p strong { color: #111827; font-weight: 600; }

/* ============================================================
   PRICING — v2: checkout-style card with metric tiles + offer bar
   ============================================================ */
.pricing {
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(139,92,246,0.32), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(190,242,100,0.12), transparent 60%),
    var(--page-dark);
  padding: 120px 0;
  position: relative;
  overflow: clip;
}
.pricing > .container { position: relative; z-index: 2; }

/* ===== Dotted world map background ===== */
.pricing-map {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pricing-map-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  animation: mapDrift 40s ease-in-out infinite alternate;
}
.pricing-map-img::before {
  content: "";
  width: 100%; height: 100%;
  max-width: 1800px;
  background: rgba(167,139,250,0.30);
  -webkit-mask: url("assets/world-dots.svg") center / contain no-repeat;
          mask: url("assets/world-dots.svg") center / contain no-repeat;
  -webkit-mask-composite: source-in;
  mask-mode: alpha;
  filter: drop-shadow(0 0 8px rgba(167,139,250,0.15));
}
.pricing-map-img img { display: none; }
.pricing-map {
  mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, #000 30%, transparent 85%);
}
@keyframes mapDrift {
  0%   { transform: translateX(-8px) scale(1); }
  100% { transform: translateX(8px) scale(1.02); }
}

/* Glowing pings layered over continents */
.pricing-pings {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
}
.pricing-ping {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  --ping-color: rgba(190,242,100,1);
  background: var(--ping-color);
  box-shadow: 0 0 14px var(--ping-color);
}
.pricing-ping::before {
  content: "";
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--ping-color);
  opacity: 0.6;
  animation: pingExpand 3.4s cubic-bezier(0.16,1,0.3,1) infinite;
  animation-delay: var(--ping-delay, 0s);
}
.pricing-ping::after {
  content: "";
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--ping-color);
  opacity: 0;
  animation: pingExpand 3.4s cubic-bezier(0.16,1,0.3,1) infinite;
  animation-delay: calc(var(--ping-delay, 0s) + 1.7s);
}
@keyframes pingExpand {
  0%   { transform: scale(0.4); opacity: 0.8; }
  100% { transform: scale(4.5); opacity: 0; }
}
.pricing-ping--violet { --ping-color: rgba(167,139,250,1); }

.pricing-head { text-align: center; margin-bottom: 48px; position: relative; }
.pricing-title {
  font-weight: 700; font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05; letter-spacing: -0.025em;
  margin: 18px 0 16px; color: #fff;
  text-wrap: balance;
}
.pricing-sub {
  font-size: 17px; line-height: 1.6; color: rgba(255,255,255,0.7);
  max-width: 620px; margin: 0 auto;
  text-wrap: balance;
}

/* Outer wrap with stars + horizon */
.price-card-wrap {
  position: relative;
  max-width: 720px; margin: 0 auto;
  padding: 24px 2px 2px;
}
.price-stars {
  position: absolute;
  inset: -40px -50px -40px -50px;
  z-index: 0;
  pointer-events: none;
  border-radius: 36px;
  overflow: hidden;
  mask-image: radial-gradient(ellipse 92% 88% at 50% 50%, #000 32%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 92% 88% at 50% 50%, #000 32%, transparent 78%);
}
.price-stars canvas { width: 100%; height: 100%; display: block; }
.price-glow-line {
  position: absolute;
  bottom: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.65) 30%, rgba(190,242,100,0.55) 50%, rgba(139,92,246,0.65) 70%, transparent);
  z-index: 2;
  pointer-events: none;
}

.price-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(139,92,246,0.16) 0%, rgba(0,0,0,0.55) 30%),
    rgba(15,10,30,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(167,139,250,0.22);
  border-radius: 26px;
  padding: 0;
  box-shadow:
    0 32px 80px rgba(76,29,149,0.5),
    0 1px 0 rgba(255,255,255,0.08) inset;
  overflow: hidden;
  z-index: 1;
}

/* TOP RIBBON — offer / urgency */
.price-ribbon {
  position: relative;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 20px;
  background: linear-gradient(90deg, rgba(190,242,100,0.18), rgba(167,139,250,0.18));
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: 'DM Mono', monospace;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff;
}
.price-ribbon-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(190,242,100,0.55);
  animation: pulseDot 1.8s ease-out infinite;
}
.price-ribbon .accent { color: var(--lime); }

.price-body {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 0;
  position: relative;
}

/* LEFT side — the price + value summary */
.price-left {
  padding: 36px 36px 32px;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.price-left-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price-tag {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: inline-flex; align-items: center; gap: 6px;
}
.price-tag::before {
  content: ""; width: 14px; height: 1px; background: rgba(255,255,255,0.25);
}
.price-deal-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'DM Mono', monospace; font-size: 10px; font-weight: 700;
  background: rgba(190,242,100,0.18);
  color: var(--lime);
  padding: 4px 9px; border-radius: 6px;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid rgba(190,242,100,0.28);
}

.price-strike {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: 'DM Mono', monospace; font-size: 14px;
  color: rgba(255,255,255,0.45);
}
.price-strike s {
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(239,68,68,0.75);
}
.price-amount-row {
  display: inline-flex; align-items: baseline; gap: 8px;
  margin: 0;
}
.price-currency {
  font-family: 'DM Mono', monospace;
  font-size: 28px; font-weight: 500;
  color: rgba(255,255,255,0.65);
  align-self: flex-start;
  padding-top: 18px;
}
.price-amount {
  font-family: 'DM Mono', monospace;
  font-size: clamp(88px, 11vw, 124px); font-weight: 500;
  color: #fff;
  letter-spacing: -0.06em; line-height: 0.85;
}
.price-installments {
  font-family: 'DM Mono', monospace;
  font-size: 13px; color: rgba(255,255,255,0.62);
  display: inline-flex; align-items: center; gap: 6px;
}
.price-installments strong { color: #fff; font-weight: 600; }
.price-once {
  font-family: 'DM Mono', monospace;
  font-size: 12px; color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

/* metric tiles row */
.price-tiles {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: 6px;
}
.price-tile {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex; flex-direction: column; gap: 2px;
}
.price-tile-k {
  font-family: 'DM Mono', monospace;
  font-size: 16px; font-weight: 500;
  color: #fff; letter-spacing: -0.01em;
  line-height: 1.1;
}
.price-tile-k .lime { color: var(--lime); }
.price-tile-k .violet { color: #c4b5fd; }
.price-tile-l {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: rgba(255,255,255,0.48);
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* RIGHT side — what's included + checkout */
.price-right {
  padding: 36px 36px 32px;
  display: flex; flex-direction: column; gap: 18px;
  background:
    radial-gradient(400px 200px at 100% 0%, rgba(167,139,250,0.12), transparent 60%);
}
.price-right-title {
  font-family: 'DM Mono', monospace; font-size: 11px;
  color: rgba(190,242,100,0.85);
  letter-spacing: 0.14em; text-transform: uppercase;
  margin: 0;
  display: inline-flex; align-items: center; gap: 8px;
}
.price-right-title::before {
  content: ""; width: 14px; height: 1px; background: rgba(190,242,100,0.5);
}
.price-includes-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.price-includes-list li {
  display: grid; grid-template-columns: 22px 1fr;
  gap: 10px;
  font-size: 14px; line-height: 1.4;
  color: rgba(255,255,255,0.85);
}
.price-includes-list li strong { color: #fff; font-weight: 600; }
.price-includes-list li svg {
  flex-shrink: 0; color: var(--lime);
  margin-top: 3px;
}
.price-includes-bonus {
  display: flex; align-items: center; gap: 10px;
  margin-top: 4px;
  padding: 10px 12px;
  border: 1px dashed rgba(167,139,250,0.35);
  border-radius: 10px;
  background: rgba(139,92,246,0.06);
}
.price-includes-bonus svg { color: #c4b5fd; flex-shrink: 0; }
.price-includes-bonus-text {
  font-size: 13px; line-height: 1.4; color: rgba(255,255,255,0.85);
  margin: 0;
}
.price-includes-bonus-text strong { color: #fff; font-weight: 600; }
.price-includes-bonus-text .violet { color: #c4b5fd; font-weight: 600; }

/* CHECKOUT BAR — button + trust */
.price-checkout {
  padding: 24px 36px 32px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  z-index: 1;
}
.price-card .btn-cta {
  width: 100%; padding: 20px 28px; font-size: 18px;
  position: relative; z-index: 1;
}
.price-trust {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  flex-wrap: wrap;
  font-family: 'DM Mono', monospace; font-size: 11px;
  color: rgba(255,255,255,0.58);
}
.price-trust-item { display: inline-flex; align-items: center; gap: 6px; }
.price-trust-item svg { color: rgba(190,242,100,0.75); }
.price-trust-sep { color: rgba(255,255,255,0.18); }

/* Payment methods removed per request */

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--page-light);
  color: #1a1a1a;
  padding: 120px 0;
}
.faq-head { text-align: center; margin-bottom: 56px; }
.faq-title {
  font-weight: 700; font-size: clamp(32px, 3.8vw, 46px);
  line-height: 1.05; letter-spacing: -0.025em;
  margin: 16px 0 0; color: #111827;
}
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-top: 1px solid #e5e7eb; padding: 4px 0; }
.faq-item:last-child { border-bottom: 1px solid #e5e7eb; }
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 4px;
  font-weight: 600; font-size: 18px; color: #111827;
  letter-spacing: -0.01em;
  transition: color 200ms var(--ease-out);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--violet-deep); }
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px;
  border-radius: 50%; background: #f3f4f6;
  display: inline-flex; align-items: center; justify-content: center;
  color: #111827;
  transition: transform 240ms var(--ease-out), background 240ms var(--ease-out), color 240ms var(--ease-out);
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--lime);
  color: var(--lime-text);
}
.faq-body {
  padding: 0 4px 28px;
  font-size: 16px; line-height: 1.65; color: #4b5563;
  max-width: 720px;
  text-wrap: pretty;
}
.faq-body p { margin: 0 0 12px; }
.faq-body p:last-child { margin-bottom: 0; }
.faq-item[open] .faq-body { animation: faqIn 320ms var(--ease-out); }
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--page-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 36px 0;
  color: rgba(255,255,255,0.5);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  font-family: 'DM Mono', monospace; font-size: 12px;
}
.footer-brand { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.7); }
.footer-brand img { width: 22px; height: 22px; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.5); transition: color 150ms; }
.footer-links a:hover { color: var(--lime); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .modules-grid { grid-template-columns: 1fr 1fr; }
  .modules-grid > :last-child { grid-column: span 2; max-width: 540px; justify-self: center; width: 100%; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid > :last-child { grid-column: span 2; max-width: 540px; justify-self: center; width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { max-width: 380px; }
}

@media (max-width: 720px) {
  .container, .container-tight { padding: 0 20px; }
  .nav { padding: 12px 20px; }
  .nav-divider, .nav-badge { display: none; }
  .nav-brand-text { font-size: 14px; }
  .nav .btn-cta { padding: 10px 14px; font-size: 13px; }
  .nav .btn-cta svg { width: 12px; height: 12px; }

  .hero { padding: 48px 0 72px; }
  .hero-title { font-size: clamp(32px, 9vw, 44px); }
  .hero-sub { font-size: 16px; }
  .hero-cta-row .btn-cta--lg { width: 100%; padding: 16px 22px; font-size: 16px; }
  .hero-cta-row { gap: 16px; }
  .hero-trust { font-size: 11px; }
  .hero-visual { max-width: 340px; }
  .dm-card { padding: 16px 18px; border-radius: 16px; }
  .dm-msg { font-size: 12px; }
  .dm-name { font-size: 12px; }
  .dm-role { font-size: 10px; }
  .dm-avatar { width: 36px; height: 36px; font-size: 12px; }

  .pain, .modules, .community, .bonus, .testimonials, .about, .pricing, .faq { padding: 72px 0; }
  .pain-lead { font-size: clamp(24px, 6vw, 32px); margin-bottom: 40px; }
  .pain-item { grid-template-columns: 56px 1fr; gap: 16px; padding: 24px 0; }
  .pain-icon { display: none; }
  .pain-text { font-size: 16px; }
  .pain-pivot { padding: 28px 24px; }
  .pain-pivot p { font-size: 16px; }
  .pain-cta-row .btn-cta { width: 100%; }

  .modules-head { margin-bottom: 40px; }
  .modules-grid { grid-template-columns: 1fr; gap: 16px; }
  .modules-grid > :last-child { grid-column: auto; max-width: none; }
  .module { padding: 0; }
  .module-body { padding: 22px 22px 26px; }
  .module-big { font-size: 52px; }
  .module-name { font-size: 20px; }
  .modules-cta-row .btn-cta { width: 100%; }

  .community-stack { padding-left: 40px; }
  .community-stack::before { left: 13px; }
  .cstack-card {
    grid-template-columns: 40px 1fr;
    gap: 14px; padding: 20px 20px 22px;
    border-radius: 16px;
    margin-bottom: 16px;
  }
  .cstack-node {
    left: -40px; top: 18px;
    width: 28px; height: 28px;
    font-size: 11px;
    box-shadow:
      0 4px 12px rgba(190,242,100,0.22),
      0 0 0 3px #fff,
      0 0 0 4px rgba(190,242,100,0.2);
  }
  .cstack-icon { width: 38px; height: 38px; border-radius: 10px; }

  .bonus-grid { grid-template-columns: 1fr; gap: 16px; }
  .bonus-card { padding: 28px 24px; }
  .bonus-card-visual { height: 200px; }
  .doc { width: 180px; padding: 18px 16px 20px; }
  .sheet { width: 240px; }

  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonials-grid > :last-child { grid-column: auto; max-width: none; }
  .quote { padding: 26px 24px; }
  .quote-body { font-size: 15px; }
  .testimonials-cta-row .btn-cta { width: 100%; }

  .about-photo { max-width: 100%; aspect-ratio: 4 / 4; }
  .about-content h2 { font-size: clamp(28px, 7vw, 36px); margin-top: 8px; }
  .about-content p { font-size: 16px; }

  .price-body { grid-template-columns: 1fr; }
  .price-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 28px 22px; }
  .price-right { padding: 28px 22px; background: none; }
  .price-checkout { padding: 22px 22px 26px; }
  .price-amount { font-size: 84px; }
  .price-currency { font-size: 22px; padding-top: 10px; }
  .price-tiles { grid-template-columns: 1fr 1fr 1fr; }
  .price-card .btn-cta { padding: 16px 22px; font-size: 16px; }
  .price-trust { flex-wrap: wrap; gap: 8px 12px; font-size: 10px; }
  .price-trust-sep { display: none; }

  .faq-item summary { font-size: 16px; gap: 16px; padding: 20px 4px; }
  .faq-body { font-size: 15px; }

  .footer { padding: 28px 0; }
  .footer-inner { font-size: 11px; }
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.wa-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 22px 6px 6px;
  background: #25D366;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'DM Sans', system-ui, sans-serif;
  box-shadow:
    0 0 0 6px rgba(37, 211, 102, 0.14),
    0 18px 44px rgba(37, 211, 102, 0.38),
    0 6px 16px rgba(15, 10, 30, 0.18);
  transition:
    transform 260ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 260ms cubic-bezier(0.4, 0, 0.2, 1);
  animation: wa-fab-in 600ms cubic-bezier(0.16, 1, 0.3, 1) 800ms both;
}
.wa-fab:hover,
.wa-fab:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 8px rgba(37, 211, 102, 0.20),
    0 22px 52px rgba(37, 211, 102, 0.50),
    0 8px 20px rgba(15, 10, 30, 0.22);
  outline: none;
}
.wa-fab-avatar {
  width: 48px;
  height: 48px;
  flex: none;
}
.wa-fab-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #f3f4f6;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(15, 10, 30, 0.15);
}
.wa-fab-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.wa-fab-text-eyebrow {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.wa-fab-text-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-top: 4px;
}
.wa-fab-text-main svg {
  transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1);
}
.wa-fab:hover .wa-fab-text-main svg {
  transform: translateX(3px);
}
@keyframes wa-fab-in {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 600px) {
  .wa-fab {
    right: 14px;
    bottom: 14px;
    gap: 10px;
    padding: 5px 18px 5px 5px;
  }
  .wa-fab-avatar { width: 44px; height: 44px; }
  .wa-fab-text-eyebrow { font-size: 10px; }
  .wa-fab-text-main { font-size: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-fab { animation: none; transition: none; }
  .wa-fab-text-main svg { transition: none; }
}
