/**
 * FitalMx Tokenization Funnel — Design System
 * tokeniza.fitalmx.com
 * Theme: "Editorial Premium" — Stripe-level clean design
 *
 * Playfair Display for hero/headings
 * Plus Jakarta Sans for body
 * IBM Plex Mono for numbers/data
 * Orange #F97316 accent — NOT neon
 *
 * Performance: GPU-only animations (transform, opacity)
 * Accessibility: respects prefers-reduced-motion
 */

/* ═══════════════════════════════════════════════════════
   1. CUSTOM PROPERTIES
   ═══════════════════════════════════════════════════════ */
:root {
  --orange: #F97316;
  --orange-dark: #EA580C;
  --orange-light: #FB923C;
  --orange-glow: rgba(249, 115, 22, 0.15);
  --orange-dim: rgba(249, 115, 22, 0.06);

  --green: #16A34A;
  --green-dark: #15803D;
  --green-glow: rgba(22, 163, 74, 0.12);

  --red: #DC2626;
  --red-glow: rgba(220, 38, 38, 0.12);

  --bg: #F7F7F5;
  --bg-white: #FFFFFF;
  --bg-gray: #F1F1EF;
  --bg-black: #0A0A0A;
  --bg-dark: #111111;

  --text: #1A1A1A;
  --text-secondary: #525252;
  --text-light: #737373;
  --text-on-dark: #FAFAFA;
  --text-on-dark-secondary: #A3A3A3;

  --border: #E5E5E5;
  --border-light: #F0F0F0;
  --border-dark: #262626;

  --radius: 12px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.07), 0 5px 10px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.08);

  --font-display: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 300ms var(--ease-out);
  --transition-fast: 150ms var(--ease-out);

  --z-behind: -1;
  --z-base: 0;
  --z-nav: 100;
  --z-overlay: 200;
  --z-modal: 300;
  --z-progress: 9998;
  --z-noise: 9999;
}

/* ═══════════════════════════════════════════════════════
   2. 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;
  font-size: 16px;
  line-height: 1.6;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  min-height: 100vh;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }

/* ═══════════════════════════════════════════════════════
   3. NOISE TEXTURE
   ═══════════════════════════════════════════════════════ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: var(--z-noise);
  opacity: 0.012;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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-repeat: repeat;
  background-size: 256px 256px;
  mix-blend-mode: multiply;
}

/* ═══════════════════════════════════════════════════════
   4. SCROLL PROGRESS
   ═══════════════════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--orange);
  z-index: var(--z-progress);
  transform-origin: left;
  transform: scaleX(0);
  will-change: transform;
}

/* ═══════════════════════════════════════════════════════
   5. CURSOR GLOW
   ═══════════════════════════════════════════════════════ */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.04) 0%, rgba(249,115,22,0.01) 40%, transparent 70%);
  pointer-events: none;
  z-index: var(--z-behind);
  transform: translate(-50%, -50%);
  opacity: 0;
  will-change: left, top;
}
@media (hover: hover) and (min-width: 1024px) {
  .cursor-glow { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════
   6. TYPOGRAPHY
   ═══════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.625rem, 5vw + 1rem, 6rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
  letter-spacing: -0.03em;
}

h3 { font-size: clamp(1.25rem, 2vw + 0.25rem, 1.75rem); font-weight: 700; }
h4 { font-size: 1.125rem; font-weight: 700; }

p { font-size: 1rem; line-height: 1.7; color: var(--text-secondary); text-wrap: pretty; }

.text-orange { color: var(--orange); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-mono { font-family: var(--font-mono); }
.text-display { font-family: var(--font-display); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.text-center { text-align: center; }
.text-mag { color: var(--orange); }

/* ═══════════════════════════════════════════════════════
   7. LAYOUT
   ═══════════════════════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; width: 100%; }

.section { padding: 96px 0; position: relative; }
.section-white { background: var(--bg-white); }
.section-gray { background: var(--bg-gray); }
.section-black { background: var(--bg-black); color: var(--text-on-dark); }
.section-black h1, .section-black h2, .section-black h3, .section-black h4 { color: var(--text-on-dark); }
.section-black p { color: var(--text-on-dark-secondary); }
.section-dark { background: var(--bg); }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-header p { margin-top: 16px; }

.pt-8 { padding-top: 128px; }
.mb-05 { margin-bottom: 8px; }
.mb-1 { margin-bottom: 16px; }
.mb-2 { margin-bottom: 32px; }
.mb-3 { margin-bottom: 48px; }
.mt-1 { margin-top: 16px; }
.mt-3 { margin-top: 48px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-md { max-width: 640px; }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 16px; }
.gap-2 { gap: 24px; }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ═══════════════════════════════════════════════════════
   8. SKIP NAV
   ═══════════════════════════════════════════════════════ */
.skip-nav {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--orange); color: #fff; padding: 12px 24px;
  font-weight: 600; border-radius: 0 0 var(--radius) 0;
}
.skip-nav:focus { left: 0; }

/* ═══════════════════════════════════════════════════════
   9. ANNOUNCEMENT BAR
   ═══════════════════════════════════════════════════════ */
.announcement {
  background: var(--bg-black);
  color: var(--text-on-dark);
  padding: 10px 0;
  font-size: 0.875rem;
  position: relative;
  z-index: var(--z-nav);
}
.announcement a { color: var(--orange); font-weight: 600; margin-left: 8px; }
.announcement-dismiss {
  color: var(--text-on-dark-secondary);
  font-size: 1rem;
  margin-left: 16px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════════
   10. NAVIGATION
   ═══════════════════════════════════════════════════════ */
#main-nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: rgba(247, 247, 245, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
  transition: all var(--transition);
}
#main-nav.nav-scrolled { padding: 12px 0; box-shadow: var(--shadow-sm); }
#main-nav.nav-hidden { transform: translateY(-100%); }
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 32px; width: auto; }
.nav-links { display: none; gap: 32px; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--text-secondary); transition: color var(--transition-fast); }
.nav-links a:hover { color: var(--text); }
.lang-toggle {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.lang-toggle:hover { border-color: var(--orange); color: var(--orange); }
.nav-mobile-toggle { display: block; font-size: 1.5rem; color: var(--text); padding: 4px; }
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px;
  border-top: 1px solid var(--border-light);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a { padding: 12px 0; font-size: 0.938rem; color: var(--text-secondary); border-bottom: 1px solid var(--border-light); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-mobile-toggle { display: none; }
}

/* ═══════════════════════════════════════════════════════
   11. BADGE
   ═══════════════════════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  background: var(--orange-dim);
  border: 1px solid rgba(249, 115, 22, 0.12);
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════
   12. BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.938rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--transition);
  touch-action: manipulation;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn-magnetic { will-change: transform; }

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 2px 8px var(--orange-glow);
}
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 4px 16px var(--orange-glow); }

.btn-secondary {
  background: var(--bg-white);
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
}
.btn-outline:hover { background: var(--orange-dim); }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
  padding-left: 20px;
}
.btn-whatsapp::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.btn-whatsapp:hover { background: #20BA5C; box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35); }

.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.813rem; }

/* ═══════════════════════════════════════════════════════
   13. CARDS
   ═══════════════════════════════════════════════════════ */
.card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.card:hover { border-color: var(--border); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card h3 { margin-bottom: 8px; font-family: var(--font-body); }
.card p { font-size: 0.938rem; }

.card-dark {
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 32px;
  color: var(--text-on-dark);
  transition: all var(--transition);
}
.card-dark:hover { border-color: var(--orange); box-shadow: 0 0 0 1px var(--orange-dim); }
.card-dark h3 { color: var(--text-on-dark); font-family: var(--font-body); }
.card-dark p { color: var(--text-on-dark-secondary); }

/* ═══════════════════════════════════════════════════════
   14. HERO
   ═══════════════════════════════════════════════════════ */
.hero-title { margin-bottom: 24px; }
.hero-title .text-orange { color: var(--orange); }
.hero-subtitle { font-size: 1.125rem; line-height: 1.7; max-width: 560px; margin-bottom: 12px; }
.hero-qualifier {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.813rem;
  color: var(--text-light);
  margin-bottom: 32px;
}
.hero-stats { margin-top: 48px; }
.hero-stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}
.stat-card { text-align: center; }
.stat-card span:last-child { font-size: 0.813rem; color: var(--text-light); }

/* ═══════════════════════════════════════════════════════
   15. IDENTIFY CARDS
   ═══════════════════════════════════════════════════════ */
.identify-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.identify-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
}
.identify-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); }
.identify-card-icon {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  color: var(--orange);
  background: var(--orange-dim);
  margin-bottom: 16px;
}
.identify-card-featured { border-color: var(--orange); border-width: 2px; }
.identify-card h3 { font-family: var(--font-body); margin-bottom: 8px; }

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

/* ═══════════════════════════════════════════════════════
   16. PAIN CARDS
   ═══════════════════════════════════════════════════════ */
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.pain-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 3px solid var(--red);
  transition: all var(--transition);
}
.pain-card:hover { box-shadow: var(--shadow-md); }
.pain-card h4 { font-family: var(--font-body); margin-bottom: 8px; color: var(--text); }

@media (max-width: 640px) {
  .pain-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   17. CALCULATOR
   ═══════════════════════════════════════════════════════ */
.calc-panel {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.calc-slider-group { margin-bottom: 24px; }
.calc-slider-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  font-size: 0.875rem;
  font-weight: 500;
}
.calc-slider-value {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--orange);
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: var(--border-light);
  border-radius: 3px;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  border: 3px solid var(--bg-white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  transition: box-shadow var(--transition-fast);
}
input[type="range"]::-webkit-slider-thumb:hover {
  box-shadow: 0 2px 8px var(--orange-glow);
}
input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  border: 3px solid var(--bg-white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.vcg-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.vcg-pill {
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-mono);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.vcg-pill:hover { border-color: var(--orange); color: var(--orange); }
.vcg-pill.active { background: var(--orange); color: #fff; border-color: var(--orange); }

#vcg-clear {
  display: none;
  font-size: 0.75rem;
  color: var(--text-light);
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  cursor: pointer;
  margin-top: 8px;
}

.calc-results { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }

.calc-result-box {
  border-radius: var(--radius);
  padding: 24px;
}
.calc-result-box.bank {
  background: #FEF2F2;
  border: 1px solid #FECACA;
}
.calc-result-box.fital {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
}
.calc-result-box h4 { font-family: var(--font-body); margin-bottom: 16px; }
.calc-result-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.calc-result-row:last-child { border-bottom: none; font-weight: 600; }
.calc-result-row span:last-child { font-family: var(--font-mono); font-weight: 600; }

.calc-saving {
  text-align: center;
  padding: 24px;
  margin-top: 24px;
  border-radius: var(--radius);
  background: var(--orange-dim);
  border: 1px solid rgba(249, 115, 22, 0.12);
}
.calc-saving-value { font-family: var(--font-mono); font-size: 2rem; font-weight: 800; color: var(--orange); }
.calc-saving-pct { font-size: 0.875rem; color: var(--text-secondary); margin-top: 4px; }

.calc-bar-chart { margin-top: 24px; }
.calc-bar { height: 32px; border-radius: var(--radius-sm); margin-bottom: 8px; transition: width 0.6s var(--ease-out); }
.calc-bar.bank-bar { background: var(--red); }
.calc-bar.fital-bar { background: var(--green); min-width: 24px; }
.calc-bar-label { font-size: 0.75rem; color: var(--text-light); margin-bottom: 4px; }

.calc-disclaimer { font-size: 0.75rem; color: var(--text-light); text-align: center; margin-top: 16px; }

@media (max-width: 640px) {
  .calc-panel { padding: 24px; }
  .calc-results { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   18. JOURNEY STEPS
   ═══════════════════════════════════════════════════════ */
.journey-steps { display: flex; flex-direction: column; gap: 0; }
.journey-step {
  display: grid;
  grid-template-columns: 80px 1fr 120px;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-light);
}
.journey-step:last-child { border-bottom: none; }
.journey-step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  opacity: 0.3;
}
.journey-step-content h3 { font-family: var(--font-body); margin-bottom: 8px; }
.journey-step-time {
  font-family: var(--font-mono);
  font-size: 0.813rem;
  color: var(--orange);
  text-align: right;
  padding-top: 4px;
}

@media (max-width: 640px) {
  .journey-step { grid-template-columns: 48px 1fr; }
  .journey-step-num { font-size: 2rem; }
  .journey-step-time { grid-column: 2; text-align: left; padding-top: 0; }
}

/* ═══════════════════════════════════════════════════════
   19. VCG PROJECT CARDS
   ═══════════════════════════════════════════════════════ */
.vcg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.vcg-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  transition: all var(--transition);
}
.vcg-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.vcg-card-hero {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--bg-gray);
}
.vcg-card-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vcg-card-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 60%);
}
.vcg-apy-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.813rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  z-index: 1;
}
.vcg-live-dot {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 1;
}
.vcg-live-dot::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  animation: pulse-dot 2s ease-in-out infinite;
}
.vcg-live-dot span {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}
.vcg-card-body { padding: 20px; }
.vcg-card-body h3 { font-family: var(--font-body); font-size: 1.125rem; margin-bottom: 12px; }
.vcg-card-meta { display: flex; gap: 16px; font-size: 0.813rem; color: var(--text-light); }
.vcg-card-meta span { display: flex; align-items: center; gap: 4px; }

.vcg-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 48px; }
.vcg-stat { text-align: center; padding: 24px 16px; background: var(--bg-white); border: 1px solid var(--border-light); border-radius: var(--radius); }
.vcg-stat-value { font-family: var(--font-mono); font-size: 1.5rem; font-weight: 700; color: var(--orange); }
.vcg-stat-label { font-size: 0.75rem; color: var(--text-light); margin-top: 4px; }

@media (max-width: 640px) {
  .vcg-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════
   20. TRUST CARDS
   ═══════════════════════════════════════════════════════ */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trust-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}
.trust-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); }
.trust-card h4 { font-family: var(--font-body); margin-bottom: 8px; }
.trust-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   21. TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px;
}
.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-card blockquote::before { content: '\201C'; font-size: 2rem; color: var(--orange); line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-gray);
}
.testimonial-name { font-weight: 600; font-size: 0.938rem; }
.testimonial-role { font-size: 0.813rem; color: var(--text-light); }

@media (max-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   22. FAQ
   ═══════════════════════════════════════════════════════ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
}
.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--orange);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-question::after { content: '\2212'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 0.938rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════
   23. LEAD MAGNETS
   ═══════════════════════════════════════════════════════ */
.magnets-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.magnet-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}
.magnet-card h3 { color: var(--text-on-dark); font-family: var(--font-body); margin-bottom: 12px; }
.magnet-card p { color: var(--text-on-dark-secondary); }
.magnet-value { font-family: var(--font-mono); font-size: 0.875rem; color: var(--orange); margin-top: 12px; }
.coming-soon-overlay {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  border-radius: var(--radius-lg);
  z-index: 2;
}
.coming-soon-label {
  font-family: var(--font-mono);
  font-size: 0.813rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  padding: 8px 20px;
  border: 1px solid var(--orange);
  border-radius: var(--radius-full);
}
.waitlist-form { display: flex; gap: 8px; padding: 0 24px; width: 100%; max-width: 360px; }
.waitlist-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  color: var(--text-on-dark);
  font-size: 0.875rem;
}
.waitlist-form button {
  padding: 10px 18px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.813rem;
  font-weight: 600;
  white-space: nowrap;
}
.waitlist-msg { display: none; font-size: 0.813rem; color: var(--green); margin-top: 8px; text-align: center; }

@media (max-width: 768px) {
  .magnets-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   24. FINAL CTA + FORM
   ═══════════════════════════════════════════════════════ */
.cta-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.cta-proof-list { list-style: none; padding: 0; margin-top: 32px; }
.cta-proof-list li {
  padding: 10px 0;
  font-size: 0.938rem;
  color: var(--text-on-dark-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
}
.cta-proof-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lead-form .full-width { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-on-dark-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select {
  padding: 12px 16px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  color: var(--text-on-dark);
  font-size: 0.938rem;
  transition: border-color var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-dark); color: var(--text-on-dark); }

.form-msg { margin-top: 8px; font-size: 0.875rem; text-align: center; grid-column: 1 / -1; }
.form-msg-error { color: var(--red); }
.form-msg-success { color: var(--green); }

.form-privacy { font-size: 0.75rem; color: var(--text-on-dark-secondary); text-align: center; margin-top: 8px; grid-column: 1 / -1; }
.form-privacy a { color: var(--orange); text-decoration: underline; }

@media (max-width: 768px) {
  .cta-layout { grid-template-columns: 1fr; gap: 48px; }
  .lead-form { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   25. FRICTION TICKER
   ═══════════════════════════════════════════════════════ */
.friction-strip {
  overflow: hidden;
  background: var(--bg-gray);
  padding: 16px 0;
  white-space: nowrap;
}
.friction-track {
  display: inline-flex;
  gap: 48px;
  animation: ticker-scroll 30s linear infinite;
}
.friction-track span {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-light);
  opacity: 0.6;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════
   26. FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-black);
  color: var(--text-on-dark-secondary);
  padding: 48px 0 32px;
}
.footer a { transition: color var(--transition-fast); }
.footer a:hover { color: var(--orange); }
.section-title { margin-bottom: 16px; }

/* ═══════════════════════════════════════════════════════
   27. ANIMATIONS
   ═══════════════════════════════════════════════════════ */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.stagger > .visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   28. THANKS PAGE
   ═══════════════════════════════════════════════════════ */
.thanks-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.thanks-step {
  text-align: center;
  padding: 32px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--bg-white);
}
.thanks-step-num {
  font-family: var(--font-mono);
  font-size: 0.813rem;
  color: var(--orange);
  margin-bottom: 12px;
}
.thanks-step h3 { font-family: var(--font-body); margin-bottom: 8px; }
@media (max-width: 640px) { .thanks-steps { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════
   29. DEMO PAGE
   ═══════════════════════════════════════════════════════ */
.demo-props { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.demo-prop {
  text-align: center;
  padding: 24px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--bg-white);
}
.demo-prop h4 { font-family: var(--font-body); }
@media (max-width: 640px) { .demo-props { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════
   30. ACCESSIBILITY
   ═══════════════════════════════════════════════════════ */
:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .scroll-progress { display: none; }
  .cursor-glow { display: none; }
  .friction-track { animation: none !important; }
  .animate-in { opacity: 1; transform: none; }
  .stagger > * { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════
   31. RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .pt-8 { padding-top: 96px; }
  .btn { min-height: 48px; }
  h1 { font-size: clamp(2.25rem, 8vw, 3.5rem); }
}
