/* ==========================================================================
   THE PROFIT ACADEMY · Design System
   ========================================================================== */

:root {
  /* Surfaces */
  --bg: #0a0807;
  --bg-2: #0f0c0a;
  --panel: #15110e;
  --panel-2: #1c1815;
  --panel-3: #25201c;
  --line: #2e2620;
  --line-soft: #1f1a16;

  /* Text */
  --text: #f4ece2;
  --text-2: #c9bdb1;
  --muted: #8d8076;
  --muted-soft: #5b524a;

  /* Rose-gold / copper palette · matches logo */
  --rose: #c9a47e;            /* primary rose-gold */
  --rose-soft: #e8d0b6;       /* light champagne */
  --rose-deep: #9c6b4a;       /* deep copper */
  --rose-pink: #d4a8a0;       /* soft rose pink (accent only) */
  --rose-glow: rgba(201, 164, 126, 0.45);
  --rose-line: rgba(201, 164, 126, 0.22);

  /* Aliases for backwards-compat with components written before rebrand */
  --gold: var(--rose);
  --gold-soft: var(--rose-soft);
  --gold-deep: var(--rose-deep);
  --gold-glow: var(--rose-glow);

  /* Status */
  --green: #5fb487;
  --green-soft: #7cc69e;
  --red: #d97a6c;
  --blue: #6b8caf;

  /* Layout */
  --max-w: 1240px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-card: 0 30px 80px -40px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(201, 164, 126, 0.05);
  --shadow-rose: 0 0 60px -10px rgba(201, 164, 126, 0.35);
  --shadow-gold: var(--shadow-rose);
}

* { box-sizing: border-box; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

/* Selection */
::selection { background: var(--gold); color: #000; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--line); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

/* ==========================================================================
   Layout primitives
   ========================================================================== */

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-tight { padding: 60px 0; }

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .wrap { padding: 0 18px; }
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5 {
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-weight: 800;
}

h1 { font-size: clamp(40px, 6.4vw, 80px); font-weight: 900; letter-spacing: -0.035em; }
h2 { font-size: clamp(30px, 4.4vw, 56px); font-weight: 800; letter-spacing: -0.03em; }
h3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }

p { line-height: 1.65; color: var(--text-2); margin: 0 0 16px; font-size: 16px; }
.lead { font-size: clamp(17px, 1.4vw, 20px); color: var(--text-2); line-height: 1.6; }

a { color: var(--gold); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--gold-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.gold-text, .rose-text {
  background: linear-gradient(90deg, var(--rose-deep) 0%, var(--rose) 25%, var(--rose-soft) 50%, var(--rose) 75%, var(--rose-deep) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 5s linear infinite;
}

@keyframes shine {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: #000;
  font-weight: 700;
  box-shadow: 0 12px 30px -10px rgba(255, 194, 61, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-gold:hover {
  transform: translateY(-1px);
  color: #000;
  box-shadow: 0 16px 40px -10px rgba(255, 194, 61, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255, 194, 61, 0.05);
}

.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 13px; }

.btn-arrow::after {
  content: '→';
  transition: transform 0.2s ease;
}

.btn-arrow:hover::after { transform: translateX(3px); }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(8, 8, 10, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(8, 8, 10, 0.95);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.logo-mark {
  position: relative;
  width: 42px;
  height: 42px;
  background: url('../img/profit-academy-mark-tight.png') center/contain no-repeat;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 14px rgba(201, 164, 126, 0.25));
}

.logo-mark.large {
  width: 56px;
  height: 56px;
}

.logo strong { color: var(--text); font-weight: 800; }
.logo span { color: var(--muted); font-weight: 400; font-size: 13px; }

/* Fully featured logo (transparent, with wordmark) used in hero corner */
.logo-display {
  position: relative;
  width: 100%;
  height: 100%;
  background: url('../img/profit-academy-logo-transparent.png') center/contain no-repeat;
  filter: drop-shadow(0 14px 30px rgba(201, 164, 126, 0.25));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover { color: var(--text); }

.nav-links a.active { color: var(--gold); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lang-switch a {
  padding: 6px 8px;
  border-radius: 6px;
  color: var(--muted);
}

.lang-switch a.active { color: var(--gold); }
.lang-switch a:hover { color: var(--text); }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-toggle span {
  width: 18px; height: 2px;
  background: var(--text);
  position: relative;
}
.menu-toggle span::before, .menu-toggle span::after {
  content: ''; position: absolute; left: 0; width: 100%; height: 2px; background: var(--text);
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-cta .btn-ghost { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: 180px 0 120px;
  overflow: hidden;
  isolation: isolate;
  min-height: 760px;
  display: flex;
  align-items: center;
}

/* Hero background image (trader home office at golden hour) */
.hero-photo {
  position: absolute;
  inset: 0;
  background: url('../img/hero-trader-office.jpg') center/cover no-repeat;
  z-index: -3;
  transform: scale(1.04);
}

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Strong fade on left (where headline sits) */
    linear-gradient(90deg, rgba(10, 8, 7, 0.96) 0%, rgba(10, 8, 7, 0.78) 35%, rgba(10, 8, 7, 0.45) 70%, rgba(10, 8, 7, 0.55) 100%),
    /* Top-bottom fade for header area + content area */
    linear-gradient(180deg, rgba(10, 8, 7, 0.6) 0%, transparent 25%, transparent 65%, rgba(10, 8, 7, 0.85) 100%),
    /* Warm rose-gold tint */
    radial-gradient(ellipse at 80% 50%, rgba(201, 164, 126, 0.15), transparent 60%);
}

@media (max-width: 768px) {
  .hero-photo::after {
    background:
      linear-gradient(180deg, rgba(10, 8, 7, 0.7) 0%, rgba(10, 8, 7, 0.85) 50%, rgba(10, 8, 7, 0.95) 100%);
  }
}

/* Floating logo emblem in hero corner */
/* Hero emblem is decorative; suppressed everywhere because the header logo
   already establishes the brand mark in the same viewport. */
.hero-emblem { display: none; }

/* Hero text alignment override when photo background is used */
.hero.has-photo .hero-inner {
  text-align: left;
  margin: 0;
  max-width: 720px;
}

.hero.has-photo .hero-inner .lead {
  margin-left: 0;
  margin-right: 0;
}

.hero.has-photo .hero-cta {
  justify-content: flex-start;
}

.hero.has-photo .hero-trust {
  justify-content: flex-start;
}

.hero.has-photo .hero-pill {
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .hero.has-photo .hero-inner { text-align: center; max-width: 100%; }
  .hero.has-photo .hero-cta { justify-content: center; }
  .hero.has-photo .hero-trust { justify-content: center; }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 194, 61, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 194, 61, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  z-index: -2;
}

.hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 800px;
  background: radial-gradient(ellipse at center top, rgba(255, 194, 61, 0.18), transparent 60%);
  pointer-events: none;
  z-index: -1;
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero .lead {
  max-width: 720px;
  margin: 0 auto 36px;
}

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

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-trust .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

/* Hero status pill */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--green);
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

.hero-pill::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Hero visual / video placeholder */
.hero-visual {
  margin-top: 60px;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #0e0e14 0%, #16161e 100%);
  box-shadow: var(--shadow-card), var(--shadow-gold);
  border: 1px solid var(--line);
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 30px 30px;
}

.hero-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
}

.hero-visual .play-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 26px;
  margin: 0 auto 20px;
  box-shadow: 0 0 40px rgba(255, 194, 61, 0.5);
  animation: pulseGlow 2.6s ease-in-out infinite;
  cursor: pointer;
}

.hero-visual h4 { color: var(--text); margin-bottom: 6px; }
.hero-visual p { color: var(--muted); font-size: 14px; margin: 0; }

/* ==========================================================================
   Trust ticker
   ========================================================================== */

.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  background: var(--bg-2);
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: tickerScroll 60s linear infinite;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.ticker-item .label { color: var(--muted); text-transform: uppercase; font-size: 11px; }
.ticker-item .value { color: var(--text); font-weight: 700; }
.ticker-item .delta-up { color: var(--green); }
.ticker-item .delta-down { color: var(--red); }

/* ==========================================================================
   Stats / metrics
   ========================================================================== */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

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

.stat {
  padding: 28px 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.stat:hover {
  border-color: var(--gold-deep);
  transform: translateY(-2px);
}

.stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.stat-num {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-num .accent { color: var(--gold); }

.stat-label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Card grid
   ========================================================================== */

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-head .lead { margin-top: 14px; }

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

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

.card {
  padding: 32px 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: var(--gold-deep);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 194, 61, 0.18) 0%, rgba(184, 132, 42, 0.05) 100%);
  border: 1px solid rgba(255, 194, 61, 0.25);
  color: var(--gold);
  margin-bottom: 22px;
  font-size: 22px;
}

.card h3 { margin-bottom: 12px; }
.card p { font-size: 15px; color: var(--text-2); }

.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 20px;
}

/* ==========================================================================
   Steps / how-it-works
   ========================================================================== */

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

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

.step {
  padding: 32px 28px;
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.step-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--line);
  letter-spacing: -0.03em;
}

.step h3 { font-size: 21px; margin-top: 8px; }
.step p { font-size: 15px; }

.step-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 194, 61, 0.08);
  border: 1px solid rgba(255, 194, 61, 0.2);
}

/* ==========================================================================
   Feature row (alternating)
   ========================================================================== */

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.feature-row:last-child { margin-bottom: 0; }

.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

@media (max-width: 960px) {
  .feature-row { grid-template-columns: 1fr; gap: 30px; margin-bottom: 60px; }
  .feature-row.reverse { direction: ltr; }
}

.feature-text h2 { font-size: clamp(28px, 3vw, 42px); margin-bottom: 20px; }

.feature-list {
  list-style: none;
  margin: 24px 0 32px;
  padding: 0;
}

.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.55;
}

.feature-list li:last-child { border-bottom: none; }

.feature-list .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  margin-top: 2px;
}

.feature-visual {
  position: relative;
  aspect-ratio: 1.1 / 1;
  background: linear-gradient(135deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 28px;
}

/* ==========================================================================
   Track record / chart preview
   ========================================================================== */

.tape {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.tape-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.tape-row {
  display: grid;
  grid-template-columns: 90px 1fr 100px 100px 110px;
  align-items: center;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line-soft);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
}

.tape-row:last-child { border-bottom: none; }

.tape-row .pair { font-weight: 700; color: var(--text); }
.tape-row .side-buy { color: var(--green); }
.tape-row .side-sell { color: var(--red); }
.tape-row .pnl-pos { color: var(--green); font-weight: 700; }
.tape-row .pnl-neg { color: var(--red); font-weight: 700; }
.tape-row .time { color: var(--muted); font-size: 12px; }

@media (max-width: 768px) {
  .tape-row { grid-template-columns: 70px 1fr 80px; gap: 8px; font-size: 12px; padding: 12px 16px; }
  .tape-row .time, .tape-row .side-col { display: none; }
}

/* ==========================================================================
   Testimonial / quote
   ========================================================================== */

.quote {
  position: relative;
  padding: 50px 40px;
  background: linear-gradient(135deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}

.quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-size: 110px;
  line-height: 1;
  color: var(--gold);
  font-family: Georgia, serif;
  opacity: 0.6;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  color: #000;
  font-size: 14px;
  flex-shrink: 0;
}

.quote-author strong { display: block; font-size: 15px; color: var(--text); font-weight: 700; }
.quote-author span { font-size: 13px; color: var(--muted); }

/* ==========================================================================
   FAQ
   ========================================================================== */

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

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
  padding: 6px 0;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--panel-2);
  border: 1px solid var(--line);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.faq-item[open] summary::after {
  content: '−';
  background: var(--gold);
  color: #000;
}

.faq-item summary:hover { color: var(--gold); }

.faq-item p {
  margin-top: 14px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.65;
}

/* ==========================================================================
   CTA banner
   ========================================================================== */

.cta-banner {
  position: relative;
  padding: 72px 50px;
  border-radius: 22px;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(255, 194, 61, 0.18), transparent 50%),
    radial-gradient(ellipse at 80% 90%, rgba(184, 132, 42, 0.15), transparent 50%),
    linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--line);
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
}

.cta-banner > * { position: relative; }
.cta-banner h2 { margin-bottom: 18px; }
.cta-banner .lead { max-width: 580px; margin: 0 auto 30px; }

@media (max-width: 768px) {
  .cta-banner { padding: 50px 24px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  padding: 80px 0 30px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

.footer-brand p {
  margin: 18px 0 24px;
  font-size: 14px;
  color: var(--muted);
  max-width: 320px;
}

.footer-col h4 {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
  font-family: 'JetBrains Mono', monospace;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: var(--text-2);
  font-size: 14px;
  font-weight: 400;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
}

.disclaimer {
  margin-top: 36px;
  padding: 22px 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.disclaimer strong { color: var(--text-2); display: block; margin-bottom: 6px; }

/* ==========================================================================
   Blog
   ========================================================================== */

.blog-hero {
  padding: 160px 0 60px;
  text-align: center;
  position: relative;
}

.blog-hero h1 { margin-bottom: 18px; }
.blog-hero .lead { max-width: 660px; margin: 0 auto; }

.blog-categories {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 36px 0 50px;
}

.cat-pill {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--text-2);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cat-pill:hover, .cat-pill.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255, 194, 61, 0.06);
}

.blog-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

@media (max-width: 960px) { .blog-featured { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--gold-deep);
  transform: translateY(-3px);
}

.blog-card .cover {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1a1a22 0%, #0f0f15 100%);
  position: relative;
  overflow: hidden;
}

.blog-card .cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 194, 61, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 194, 61, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.blog-card .cover.cover-1 {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255, 194, 61, 0.3), transparent 60%),
    linear-gradient(135deg, #1a1208 0%, #0f0a04 100%);
}
.blog-card .cover.cover-2 {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(16, 185, 129, 0.25), transparent 60%),
    linear-gradient(135deg, #08130f 0%, #050a07 100%);
}
.blog-card .cover.cover-3 {
  background:
    radial-gradient(ellipse at 50% 60%, rgba(59, 130, 246, 0.2), transparent 60%),
    linear-gradient(135deg, #0a1018 0%, #05080d 100%);
}
.blog-card .cover.cover-4 {
  background:
    radial-gradient(ellipse at 20% 70%, rgba(184, 132, 42, 0.3), transparent 60%),
    linear-gradient(135deg, #150d04 0%, #0a0703 100%);
}
.blog-card .cover.cover-5 {
  background:
    radial-gradient(ellipse at 80% 80%, rgba(239, 68, 68, 0.2), transparent 60%),
    linear-gradient(135deg, #170808 0%, #0a0404 100%);
}
.blog-card .cover.cover-6 {
  background:
    radial-gradient(ellipse at 40% 40%, rgba(255, 214, 107, 0.25), transparent 60%),
    linear-gradient(135deg, #1a1208 0%, #0a0703 100%);
}

.blog-card .cover-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(8, 8, 10, 0.7);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(255, 194, 61, 0.3);
}

.blog-card .cover-meta {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.blog-card .body {
  padding: 26px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card h3 {
  font-size: 21px;
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--gold); }

.blog-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}

.blog-card .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
}

.blog-card .meta a { color: var(--gold); font-weight: 600; }

.blog-card.featured {
  display: grid;
  grid-template-columns: 1fr;
}

.blog-card.featured .cover { aspect-ratio: 16 / 10; }
.blog-card.featured h3 { font-size: clamp(24px, 2.4vw, 32px); }

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

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

/* Article body (single post) */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 24px 60px;
}

.article-header { margin-bottom: 50px; text-align: left; }
.article-header .meta {
  display: flex;
  gap: 14px;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.article-header .meta .cat { color: var(--gold); }

.article-header h1 {
  font-size: clamp(36px, 4.4vw, 56px);
  margin-bottom: 22px;
  line-height: 1.05;
}

.article-cover {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  margin-bottom: 50px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #1a1208 0%, #0f0a04 100%);
  position: relative;
}

.article-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255, 194, 61, 0.3), transparent 60%);
}

.article-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 194, 61, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 194, 61, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

.article-body { font-size: 17px; line-height: 1.78; color: var(--text-2); }
.article-body h2 { font-size: clamp(24px, 2.6vw, 32px); margin: 48px 0 18px; color: var(--text); }
.article-body h3 { font-size: 22px; margin: 36px 0 14px; color: var(--text); }
.article-body p { margin-bottom: 22px; }
.article-body strong { color: var(--text); font-weight: 600; }
.article-body em { color: var(--gold-soft); font-style: normal; font-weight: 500; }
.article-body ul, .article-body ol { margin: 0 0 22px; padding-left: 22px; }
.article-body li { margin-bottom: 10px; line-height: 1.65; }
.article-body blockquote {
  margin: 28px 0;
  padding: 22px 28px;
  border-left: 3px solid var(--gold);
  background: var(--panel);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 18px;
  color: var(--text);
  font-weight: 500;
}
.article-body code {
  background: var(--panel-2);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--gold-soft);
}

.article-cta {
  margin-top: 50px;
  padding: 32px;
  background: var(--panel);
  border: 1px solid var(--gold-deep);
  border-radius: var(--radius);
  text-align: center;
}
.article-cta h3 { margin-bottom: 12px; }
.article-cta p { margin-bottom: 22px; }

/* ==========================================================================
   Animations / utilities
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

.float-anim { animation: float 6s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Live mini chart (visual only) */
.mini-chart {
  height: 200px;
  position: relative;
  margin-top: 20px;
}

.mini-chart svg { width: 100%; height: 100%; }

/* ==========================================================================
   Special: 0 LOSS callout
   ========================================================================== */

.zero-loss {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 4px 14px 6px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--green-soft);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.7em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}

/* ==========================================================================
   Real proof screenshot gallery
   ========================================================================== */

.proof-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media (max-width: 1000px) { .proof-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .proof-gallery { grid-template-columns: 1fr; } }

.proof-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.proof-card:hover {
  border-color: var(--rose-deep);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.proof-shot {
  position: relative;
  background: #0a0807;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-bottom: 1px solid var(--line);
}

.proof-shot img {
  object-position: top center;
}

.proof-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.proof-shot .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  backdrop-filter: blur(10px);
  background: rgba(8, 8, 10, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-shot .badge.win { color: var(--green-soft); border-color: rgba(95, 180, 135, 0.3); }
.proof-shot .badge.loss { color: var(--red); border-color: rgba(217, 122, 108, 0.3); }
.proof-shot .badge.mix { color: var(--rose-soft); border-color: rgba(201, 164, 126, 0.3); }

.proof-info {
  padding: 16px 18px;
}

.proof-info h4 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.proof-info p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
}

.proof-info .pnl-pos { color: var(--green-soft); font-weight: 700; }
.proof-info .pnl-neg { color: var(--red); font-weight: 700; }

/* Testimonial screenshot card */
.testimonial-shot {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

@media (max-width: 720px) {
  .testimonial-shot { grid-template-columns: 1fr; padding: 18px; }
}

.testimonial-shot .shot-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-shot .shot-frame img { display: block; width: 100%; height: auto; }

/* Bot chart screenshot frame (phone mockup) */
.bot-chart-frame {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
  border-radius: 32px;
  padding: 8px;
  background: linear-gradient(135deg, #2a2620, #15110e);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7), inset 0 0 0 1px rgba(201, 164, 126, 0.15);
}

.bot-chart-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
}

/* ==========================================================================
   Lifestyle / cinematic full-bleed section
   ========================================================================== */

.lifestyle {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lifestyle-bg {
  position: absolute;
  inset: 0;
  background: url('../img/villa-rooftop.jpg') center/cover no-repeat;
  background-attachment: fixed;
  z-index: -2;
  transform: scale(1.05);
}

.lifestyle::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 8, 7, 0.92) 0%, rgba(10, 8, 7, 0.7) 45%, rgba(10, 8, 7, 0.3) 100%),
    radial-gradient(ellipse at 20% 50%, rgba(201, 164, 126, 0.18), transparent 50%);
  z-index: -1;
}

.lifestyle-inner {
  max-width: 580px;
  padding: 80px 0;
}

.lifestyle h2 {
  font-size: clamp(34px, 4.5vw, 58px);
  margin-bottom: 22px;
}

.lifestyle p {
  font-size: 17px;
  color: rgba(244, 236, 226, 0.88);
  line-height: 1.65;
}

.lifestyle .stat-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.lifestyle .stat-row > div {
  border-left: 1px solid rgba(201, 164, 126, 0.4);
  padding-left: 18px;
}

.lifestyle .stat-row strong {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  color: var(--rose-soft);
  letter-spacing: -0.02em;
  font-weight: 700;
}

.lifestyle .stat-row span {
  font-size: 12px;
  color: rgba(244, 236, 226, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  display: block;
}

@media (max-width: 768px) {
  .lifestyle-bg { background-attachment: scroll; }
  .lifestyle::before {
    background:
      linear-gradient(180deg, rgba(10, 8, 7, 0.4) 0%, rgba(10, 8, 7, 0.92) 60%, rgba(10, 8, 7, 0.95) 100%);
  }
  .lifestyle-inner { padding: 60px 0; }
}

/* Responsive nav menu open state */
body.menu-open { overflow: hidden; }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 100px 24px 40px;
  display: none;
}

body.menu-open .mobile-menu { display: block; }

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li { padding: 14px 0; border-bottom: 1px solid var(--line); }
.mobile-menu a {
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
  display: block;
}
.mobile-menu .btn { margin-top: 30px; width: 100%; }

.mobile-menu .lang-switch-mobile {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-menu .lang-switch-mobile a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  border: 0;
  padding: 0;
  display: inline;
}

.mobile-menu .lang-switch-mobile a.active { color: var(--gold); }
.mobile-menu .lang-switch-mobile span { color: var(--muted-soft); }

/* ==========================================================================
   Newsletter card / form
   ========================================================================== */

.newsletter-card {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.newsletter-card p {
  max-width: 520px;
  margin: 0 auto 24px;
  color: var(--text-2);
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1 1 220px;
  min-width: 0;
  padding: 14px 18px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  font-size: 15px;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.newsletter-form input:focus {
  border-color: var(--gold);
}

.newsletter-form .btn {
  flex-shrink: 0;
}

@media (max-width: 540px) {
  .newsletter-card { padding: 28px 18px; margin-top: 40px; }
  .newsletter-form { flex-direction: column; gap: 12px; }
  .newsletter-form input,
  .newsletter-form .btn { width: 100%; flex-basis: auto; }
  .newsletter-form .btn { padding: 14px 24px; }
}

/* ==========================================================================
   Mobile responsiveness · phone-size fixes (320–540px)
   ========================================================================== */

/* Compact header on small phones. The lang-switch stays visible as a
   pill (NL / ES / EN) so visitors can immediately see translation is
   available without opening the burger menu. The Start CTA + hamburger
   shrink so everything fits cleanly on a 360px screen. */
@media (max-width: 540px) {
  .nav { gap: 10px; }
  .nav-cta { gap: 8px; }
  /* Lang-switch as a tiny pill, always visible */
  .nav-cta .lang-switch {
    display: flex;
    font-size: 10px;
    gap: 1px;
    letter-spacing: 0.06em;
    padding: 2px 4px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.02);
  }
  .nav-cta .lang-switch a { padding: 3px 5px; border-radius: 4px; }
  .nav-cta .lang-switch span { font-size: 9px; padding: 0 1px; color: var(--muted-soft); }
  .nav-cta .btn-sm {
    padding: 8px 10px;
    font-size: 11.5px;
    letter-spacing: 0;
    white-space: nowrap;
  }
  /* The "→" arrow on the small header CTA eats horizontal space. Drop it. */
  .nav-cta .btn-sm.btn-arrow::after { display: none; }
  /* Tighten the logo so the brand mark + nav-cta always fit on 320px. */
  .nav .logo { gap: 10px; min-width: 0; }
  .nav .logo strong { font-size: 14px; }
  .nav .logo span { display: none; }
  .logo-mark { width: 36px; height: 36px; }
  .menu-toggle { width: 40px; height: 40px; }
}

/* Even-tighter fallback for very small screens (<360px). */
@media (max-width: 360px) {
  .wrap { padding: 0 14px; }
  .nav-cta .btn-sm { padding: 8px 12px; font-size: 11.5px; }
  /* At sub-360px the lang-switch + Start CTA + burger can collide.
     Drop the pill border to claw back a few pixels but keep it visible. */
  .nav-cta .lang-switch { padding: 0; border: none; background: transparent; }
  .nav-cta .lang-switch a { padding: 2px 3px; }
}

/* Hero text + CTAs: prevent overflow and make tap targets full-width on phones. */
@media (max-width: 600px) {
  .hero { padding: 140px 0 80px; min-height: 0; }
  h1 { font-size: clamp(30px, 9vw, 44px); letter-spacing: -0.025em; }
  .hero h1 { line-height: 1.12; margin-bottom: 20px; }
  .hero .lead { font-size: 16px; margin-bottom: 28px; }

  .hero-cta { gap: 10px; width: 100%; }
  .hero-cta .btn { width: 100%; max-width: 360px; }
  .hero.has-photo .hero-cta { flex-direction: column; align-items: center; }

  .hero-trust { gap: 14px 18px; font-size: 12px; }

  /* Section / banner CTA buttons full-width on phones for tap-friendliness. */
  .cta-banner { padding: 44px 20px; }
  .cta-banner > div[style*="flex"] { flex-direction: column !important; align-items: center !important; }
  .cta-banner .btn { width: 100%; max-width: 340px; }

  /* Generic large buttons: cap at container width so long labels never clip. */
  .btn-lg { padding: 16px 22px; font-size: 15px; max-width: 100%; }
  .btn { max-width: 100%; }
  .btn-arrow { white-space: normal; }
}

/* Long-label buttons (e.g. "Open Vantage account", "Bekijk volledige track record")
   need to stay on a single line; allow them to break on very small phones. */
@media (max-width: 380px) {
  .btn { white-space: normal; line-height: 1.25; }
  .btn-lg { padding: 14px 18px; font-size: 14.5px; }
}

/* Contact-page card grid: 2-col was inline-styled, force single column on mobile. */
@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr !important; }
}

/* Lifestyle stat-row: stack neatly on phones so numbers don't wrap awkwardly. */
@media (max-width: 540px) {
  .lifestyle .stat-row { gap: 22px; }
  .lifestyle .stat-row > div { padding-left: 14px; }
  .lifestyle .stat-row strong { font-size: 24px; }
}

/* Footer: ensure text never overflows on very narrow screens. */
@media (max-width: 540px) {
  .footer-grid { gap: 32px; }
  .footer-bottom { font-size: 11px; gap: 10px; }
  .disclaimer { padding: 18px 18px; font-size: 11.5px; }
}

/* Quote block: reduce padding so the giant " glyph doesn't push the text. */
@media (max-width: 540px) {
  .quote { padding: 36px 24px 30px; font-size: 17px; }
  .quote::before { font-size: 80px; left: 18px; }
}

/* Testimonial shot: make the screenshot reasonable on phones. */
@media (max-width: 540px) {
  .testimonial-shot { padding: 16px; gap: 18px; }
  .testimonial-shot p { font-size: 16px !important; }
}

/* Steps: tighter padding so numbered headings stay inside cards. */
@media (max-width: 540px) {
  .step { padding: 26px 22px; }
  .step-num { font-size: 44px; top: 16px; right: 18px; }
  .feature-visual { padding: 20px; aspect-ratio: auto; }
}

/* Bot Status visual: drop the fixed aspect-ratio when the row stacks so the
   chart + stat cards aren't clipped on phones. */
@media (max-width: 980px) {
  .feature-visual { aspect-ratio: auto; }
}

/* Section heads on mobile: pull the eyebrow + heading tighter. */
@media (max-width: 540px) {
  .section-head { margin-bottom: 40px; }
  h2 { font-size: clamp(26px, 7.5vw, 38px); }
}

/* ==========================================================================
   Calculator : Bot vs Manual
   ========================================================================== */

.calc-section {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.calc-shell {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  padding: 28px;
  background: linear-gradient(135deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-top: 50px;
}

@media (max-width: 920px) {
  .calc-shell { grid-template-columns: 1fr; padding: 20px; gap: 22px; }
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 24px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.calc-row label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 8px;
}

.calc-amount {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--rose-deep), var(--rose), var(--rose-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.calc-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: var(--line);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-soft), var(--rose));
  cursor: grab;
  box-shadow: 0 0 0 4px var(--bg), 0 0 20px var(--rose-glow);
  transition: transform 0.15s ease;
}

.calc-slider::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.1);
}

.calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-soft), var(--rose));
  border: none;
  cursor: grab;
  box-shadow: 0 0 0 4px var(--bg), 0 0 20px var(--rose-glow);
}

.calc-marks {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

@media (max-width: 540px) {
  .calc-marks {
    font-size: 9px;
    letter-spacing: 0;
  }
}

.calc-toggle {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.toggle-pill {
  flex: 1;
  padding: 10px 14px;
  background: transparent;
  color: var(--muted);
  border: none;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.toggle-pill.active {
  background: linear-gradient(135deg, var(--rose), var(--rose-soft));
  color: #000;
  box-shadow: 0 4px 12px -4px var(--rose-glow);
}

/* Versus output */
.calc-versus {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
}

@media (max-width: 720px) {
  .calc-versus { grid-template-columns: 1fr; gap: 18px; }
  .vs-divider { display: none; }
}

.vs-col {
  padding: 28px 26px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 22px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.vs-col::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.vs-col::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  pointer-events: none;
}

.vs-bot {
  background: linear-gradient(180deg, rgba(201, 164, 126, 0.10) 0%, transparent 55%), var(--panel);
  border-color: var(--rose-line);
}

.vs-bot::before {
  background: radial-gradient(ellipse at 50% -20%, var(--rose-glow) 0%, transparent 70%);
  opacity: 0.55;
}

.vs-bot::after {
  background: linear-gradient(90deg, transparent 0%, var(--rose) 50%, transparent 100%);
  opacity: 0.7;
}

.vs-manual {
  background: linear-gradient(180deg, rgba(217, 122, 108, 0.08) 0%, transparent 55%), var(--panel);
  border-color: rgba(217, 122, 108, 0.22);
}

.vs-manual::before {
  background: radial-gradient(ellipse at 50% -20%, rgba(217, 122, 108, 0.22) 0%, transparent 70%);
  opacity: 0.5;
}

.vs-manual::after {
  background: linear-gradient(90deg, transparent 0%, var(--red) 50%, transparent 100%);
  opacity: 0.55;
}

.vs-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.vs-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-icon-bot {
  background: linear-gradient(135deg, rgba(201, 164, 126, 0.18) 0%, rgba(201, 164, 126, 0.04) 100%);
  border: 1px solid var(--rose-line);
  color: var(--rose);
  box-shadow: 0 0 24px -8px var(--rose-glow);
}

.vs-icon-manual {
  background: linear-gradient(135deg, rgba(217, 122, 108, 0.16) 0%, rgba(217, 122, 108, 0.04) 100%);
  border: 1px solid rgba(217, 122, 108, 0.3);
  color: var(--red);
}

.vs-tag {
  display: block;
  position: relative;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--rose);
}

.vs-manual .vs-tag { color: var(--red); }

.vs-status {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-2);
  letter-spacing: 0.01em;
}

.vs-status-on { color: var(--green-soft); }
.vs-status-off { color: var(--muted); }

.vs-bar-note {
  display: block;
  margin-top: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-soft);
}

.vs-bar-note.warn { color: var(--red); }

.vs-stat-hero {
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}

.vs-bar-auto {
  width: 100% !important;
  background: linear-gradient(90deg, var(--green) 0%, var(--rose) 100%) !important;
  position: relative;
  overflow: hidden;
}

.vs-bar-auto::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  animation: vs-bar-shine 2.4s ease-in-out infinite;
}

@keyframes vs-bar-shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.vs-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.vs-stat-label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vs-stat-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  display: block;
  transition: color 0.25s ease;
}

.vs-stat-value.big { font-size: 34px; line-height: 1.05; }
.vs-stat-value.warn { color: var(--red); }

.vs-bar {
  margin-top: 10px;
  height: 5px;
  background: var(--line);
  border-radius: 3px;
  overflow: hidden;
}

.vs-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rose), var(--rose-soft));
  border-radius: 3px;
  transition: width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.vs-bar.warn .vs-bar-fill {
  background: linear-gradient(90deg, var(--red), #ff8a7a);
}

.vs-tag-foot {
  position: relative;
  margin-top: auto;
  font-size: 12.5px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-style: italic;
  line-height: 1.5;
}

.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.18em;
  font-weight: 800;
  position: relative;
  text-transform: uppercase;
}

.vs-divider::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, var(--line) 20%, var(--line) 80%, transparent 100%);
  transform: translateX(-50%);
  opacity: 0.6;
}

.vs-divider span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--rose-line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--bg-2), 0 0 24px -6px var(--rose-glow);
}

.pnl-pos { color: var(--green-soft); }
.pnl-neg { color: var(--red); }

/* Number flash on update */
.flash { animation: flash-glow 0.45s ease; }

@keyframes flash-glow {
  0% { transform: scale(1); }
  40% { transform: scale(1.04); text-shadow: 0 0 24px var(--rose-glow); }
  100% { transform: scale(1); }
}

/* Reality check (manual disaster vs member success) */
.reality-check {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 56px;
}

@media (max-width: 720px) {
  .reality-check { grid-template-columns: 1fr; }
}

.reality-card {
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.reality-card h4 {
  font-size: 18px;
  margin: 22px 22px 8px;
}

.reality-card p {
  margin: 0 22px 22px;
  font-size: 14px;
  color: var(--text-2);
}

.reality-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 22px 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 40%);
  cursor: zoom-in;
  overflow: hidden;
}

.reality-img-wrap img {
  width: 100%;
  max-width: 320px;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #0a0807;
  box-shadow: 0 24px 60px -24px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.03);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.reality-img-wrap:hover img {
  transform: translateY(-4px);
  box-shadow: 0 32px 70px -24px rgba(0,0,0,0.8), 0 0 0 1px var(--rose-line);
}

.reality-badge {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
  z-index: 2;
  white-space: nowrap;
}

.reality-badge.good {
  background: rgba(95, 180, 135, 0.18);
  color: var(--green-soft);
  border: 1px solid rgba(95, 180, 135, 0.4);
}

.reality-badge.bad {
  background: rgba(217, 122, 108, 0.18);
  color: var(--red);
  border: 1px solid rgba(217, 122, 108, 0.4);
}

.reality-bad .reality-img-wrap {
  background: linear-gradient(180deg, rgba(217,122,108,0.06) 0%, transparent 60%);
}

.reality-good .reality-img-wrap {
  background: linear-gradient(180deg, rgba(201,164,126,0.06) 0%, transparent 60%);
}

.calc-disclaimer {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 32px;
  line-height: 1.6;
}

/* ==========================================================================
   Member Results Strip (WhatsApp + member screenshots)
   ========================================================================== */

.member-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
  margin-top: 50px;
}

@media (max-width: 980px) {
  .member-strip { grid-template-columns: 1fr 1fr; }
}

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

.member-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.member-card:hover {
  transform: translateY(-3px);
  border-color: var(--rose-line);
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--rose-line);
}

.member-shot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 22px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 50%);
  overflow: hidden;
  cursor: zoom-in;
}

.member-shot img {
  width: 100%;
  max-width: 260px;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #0a0807;
  box-shadow: 0 24px 60px -24px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.03);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.member-shot:not(.video-slot):hover img {
  transform: translateY(-4px);
  box-shadow: 0 32px 70px -24px rgba(0,0,0,0.8), 0 0 0 1px var(--rose-line);
}

.member-shot.video-slot {
  height: 460px;
  padding: 0;
  background: linear-gradient(135deg, var(--panel-2), var(--panel-3));
  flex-direction: column;
  gap: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.member-shot.video-slot .play-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  box-shadow: 0 0 40px var(--rose-glow);
}

.member-shot.video-slot .play-icon::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 18px solid #000;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 6px;
}

.member-shot.video-slot small {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.member-info {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.member-info .meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--rose);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.member-info h4 {
  margin: 4px 0;
  font-size: 17px;
  color: var(--text);
}

.member-info .pnl {
  font-family: 'JetBrains Mono', monospace;
  color: var(--green-soft);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.member-info .pnl strong { color: var(--text); font-weight: 800; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(20px);
}

.lightbox.open { display: flex; }

.lightbox img,
.lightbox video {
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.7);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover { background: rgba(255, 255, 255, 0.16); }

/* ==========================================================================
   Urgency Banner (weekend activation + spots left + countdown)
   ========================================================================== */

.urgency-section {
  position: relative;
  padding: 40px 0;
  background: linear-gradient(180deg, transparent, rgba(201, 164, 126, 0.04));
}

.urgency-banner {
  background: linear-gradient(135deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--rose-line);
  border-radius: var(--radius);
  padding: 30px 36px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-rose);
}

.urgency-banner::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, var(--rose), transparent 40%, transparent 60%, var(--rose));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.4;
  pointer-events: none;
  animation: shine-border 6s linear infinite;
}

@keyframes shine-border {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

@media (max-width: 820px) {
  .urgency-banner { grid-template-columns: 1fr; gap: 22px; padding: 26px 24px; text-align: left; }
}

.urgency-pulse {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--rose-soft), var(--rose) 60%, var(--rose-deep));
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 0 30px var(--rose-glow);
}

.urgency-pulse::before,
.urgency-pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--rose);
  animation: urgency-pulse 2.4s ease-out infinite;
}

.urgency-pulse::after { animation-delay: 1.2s; }

@keyframes urgency-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}

.urgency-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.urgency-text .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--rose);
  font-weight: 700;
}

.urgency-text h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  margin: 0;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.urgency-text p {
  margin: 0;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}

.urgency-meta {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.urgency-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  min-width: 90px;
}

.urgency-stat .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 26px;
  font-weight: 800;
  color: var(--rose);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.urgency-stat .lbl {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 6px;
  font-family: 'JetBrains Mono', monospace;
}

.urgency-spots {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: rgba(95, 180, 135, 0.08);
  border: 1px solid rgba(95, 180, 135, 0.32);
  border-radius: var(--radius-sm);
  min-width: 220px;
  box-shadow: 0 0 24px -8px rgba(95, 180, 135, 0.25);
}

.urgency-spots .spots-bar {
  flex: 1;
  height: 8px;
  background: rgba(95, 180, 135, 0.12);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.urgency-spots .spots-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-soft));
  box-shadow: 0 0 10px rgba(95, 180, 135, 0.5);
  transition: width 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.urgency-spots .spots-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.urgency-spots .spots-text strong {
  color: var(--green-soft);
  text-shadow: 0 0 12px rgba(124, 198, 158, 0.4);
}

/* ==========================================================================
   Game Bridge (link to play.theprofitacademy.nl)
   ========================================================================== */

.game-bridge {
  margin-top: 40px;
  padding: 36px;
  border-radius: var(--radius);
  background: radial-gradient(ellipse at top right, rgba(201, 164, 126, 0.08) 0%, transparent 60%), var(--panel);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 26px;
}

@media (max-width: 720px) {
  .game-bridge { grid-template-columns: 1fr; padding: 26px; text-align: left; }
}

.game-bridge h3 {
  margin: 0 0 6px;
  font-size: clamp(20px, 2.4vw, 24px);
  color: var(--text);
}

.game-bridge p {
  margin: 0;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.5;
  max-width: 540px;
}

.game-bridge .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--rose);
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

/* ==========================================================================
   Sticky weekend banner (top of page, dismissible)
   ========================================================================== */

.weekend-strip {
  background: linear-gradient(90deg, var(--rose-deep), var(--rose), var(--rose-deep));
  background-size: 200% auto;
  animation: shine 8s linear infinite;
  color: #1a120a;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 9px 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  z-index: 60;
  font-family: 'Inter', sans-serif;
}

.weekend-strip a {
  color: #1a120a;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 800;
}

.weekend-strip a:hover { color: #000; }

.weekend-strip .ws-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a120a;
  animation: ws-blink 1.6s infinite;
}

@keyframes ws-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.weekend-strip .ws-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #1a120a;
  cursor: pointer;
  font-size: 16px;
  opacity: 0.6;
}

.weekend-strip .ws-close:hover { opacity: 1; }

@media (max-width: 540px) {
  .weekend-strip { font-size: 11.5px; padding: 8px 36px 8px 14px; gap: 8px; }
  .weekend-strip strong { display: block; }
}

body.weekend-hidden .weekend-strip { display: none; }

/* ==========================================================================
   Poll Reality (community poll data)
   ========================================================================== */

.poll-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-bottom: 1px solid var(--line);
}

.poll-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
}

@media (max-width: 880px) {
  .poll-grid { grid-template-columns: 1fr; gap: 32px; }
}

.poll-shot {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #0a0807;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px -24px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.03);
  aspect-ratio: 9 / 19.5;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  cursor: zoom-in;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.poll-shot:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 80px -24px rgba(0,0,0,0.8), 0 0 0 1px var(--rose-line);
}

.poll-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.poll-shot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.poll-shot .poll-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: rgba(0, 0, 0, 0.6);
  color: var(--rose-soft);
  border: 1px solid var(--rose-line);
  backdrop-filter: blur(10px);
  z-index: 2;
}

.poll-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0 20px;
}

.poll-num {
  padding: 22px 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.poll-num:hover {
  border-color: var(--rose-line);
  transform: translateY(-2px);
}

.poll-num.warn {
  background: linear-gradient(180deg, rgba(217, 122, 108, 0.06) 0%, transparent 70%), var(--panel);
  border-color: rgba(217, 122, 108, 0.22);
}

.poll-num .big-num {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(90deg, var(--rose-soft), var(--rose));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.poll-num.warn .big-num {
  background: linear-gradient(90deg, #ff8a7a, var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.poll-num .lbl {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.45;
}

.poll-takeaway {
  margin-top: 24px;
  padding: 22px 24px;
  border-left: 3px solid var(--rose);
  background: rgba(201, 164, 126, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.poll-takeaway p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}

.poll-takeaway p strong {
  color: var(--rose);
  font-weight: 700;
}


/* ── FIT-GRID: good-fit / skip-this comparison section ──────────── */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 8px;
}

.fit-card {
  padding: 40px 36px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.fit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px -30px rgba(0,0,0,0.7);
}

.fit-card--yes { border-color: rgba(95,180,135,0.28); }
.fit-card--no  { border-color: rgba(217,122,108,0.25); }
.fit-card--yes:hover { border-color: rgba(95,180,135,0.55); }
.fit-card--no:hover  { border-color: rgba(217,122,108,0.5); }

.fit-card__topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.fit-card--yes .fit-card__topbar {
  background: linear-gradient(90deg, var(--green) 0%, rgba(95,180,135,0) 100%);
}
.fit-card--no .fit-card__topbar {
  background: linear-gradient(90deg, var(--red) 0%, rgba(217,122,108,0) 100%);
}

.fit-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.fit-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
}
.fit-card--yes .fit-card__icon {
  background: rgba(95,180,135,0.12);
  border: 1px solid rgba(95,180,135,0.3);
  color: var(--green);
}
.fit-card--no .fit-card__icon {
  background: rgba(217,122,108,0.12);
  border: 1px solid rgba(217,122,108,0.3);
  color: var(--red);
}

.fit-card__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
}
.fit-card--yes .fit-card__eyebrow { color: var(--green-soft); }
.fit-card--no  .fit-card__eyebrow { color: var(--red); }

.fit-card__title {
  margin: 4px 0 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.fit-card .feature-list { margin: 0; }

/* Tablet / mobile: stack vertically full-width */
@media (max-width: 900px) {
  .fit-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .fit-card {
    padding: 32px 26px;
  }
}

@media (max-width: 480px) {
  .fit-card {
    padding: 28px 22px;
  }
  .fit-card__title { font-size: 19px; }
  .fit-card__head { margin-bottom: 18px; }
}

/* ==========================================================================
   Free Trading Tips section (Oliver videos)
   ========================================================================== */

.tips-section {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.tips-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(201,164,126,0.08) 0%, transparent 35%),
    radial-gradient(circle at 85% 75%, rgba(201,164,126,0.06) 0%, transparent 40%);
  pointer-events: none;
}

.tips-section > .wrap { position: relative; z-index: 1; }

.tips-byline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(201,164,126,0.08);
  border: 1px solid var(--rose-line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rose);
  font-weight: 600;
  margin-top: 14px;
}

.tips-byline .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 10px var(--rose-glow);
}

.tips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}

@media (max-width: 880px) {
  .tips-grid { grid-template-columns: 1fr; gap: 22px; }
}

.tip-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.tip-card:hover {
  transform: translateY(-3px);
  border-color: var(--rose-line);
  box-shadow: 0 24px 60px -28px rgba(0,0,0,0.6), 0 0 0 1px var(--rose-line);
}

.tip-video-wrap {
  position: relative;
  background: #000;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.tip-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}

/* "EN" chip on the tip video to flag that the audio is still in English
   while the surrounding copy is NL/ES. Sits top-left so it never overlaps
   the native video controls (which usually live bottom-center). */
.tip-lang-chip {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--rose-soft);
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid var(--rose-line);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.tips-lang-note {
  display: flex;
  justify-content: center;
  margin: 6px 0 28px;
}
.tips-lang-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--rose-line);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-2);
}
.tips-lang-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 4px rgba(201, 164, 126, 0.18);
  flex-shrink: 0;
}

.tip-card__info {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tip-card__meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--rose);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tip-card__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin: 4px 0;
  line-height: 1.3;
}

.tip-card__desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
}

.tips-soon {
  padding: 60px 30px;
  margin-top: 56px;
  border: 1px dashed var(--rose-line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(201,164,126,0.04), transparent);
  text-align: center;
}

.tips-soon h3 {
  margin: 0 0 12px;
  font-size: clamp(20px, 2.4vw, 26px);
}

.tips-soon p {
  margin: 0 auto;
  max-width: 520px;
  color: var(--text-2);
  font-size: 15px;
}

.tips-soon .pill-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--rose);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.tips-soon .pill-hint:hover {
  border-color: var(--rose);
  color: var(--rose-soft);
}

/* ==========================================================================
   Floating WhatsApp widget
   ========================================================================== */

.wa-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 95;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: transform 0.25s ease;
}

.wa-widget:hover { transform: translateY(-2px); }

.wa-widget__bubble {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.wa-widget:hover .wa-widget__bubble {
  opacity: 1;
  transform: translateX(0);
}

.wa-widget__btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 4px rgba(37, 211, 102, 0.18);
  position: relative;
  flex-shrink: 0;
}

.wa-widget__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: wa-pulse 2.4s ease-out infinite;
  opacity: 0.6;
}

@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

.wa-widget__btn svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

@media (max-width: 540px) {
  .wa-widget { bottom: 18px; right: 18px; }
  .wa-widget__btn { width: 54px; height: 54px; }
  .wa-widget__btn svg { width: 28px; height: 28px; }
  .wa-widget__bubble { display: none; }
}

body.wa-hidden .wa-widget { display: none; }

/* ==========================================================================
   Team section (Over Ons / About / Sobre Nosotros)
   ========================================================================== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 50px;
}

@media (max-width: 1280px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (max-width: 880px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

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

.team-card {
  position: relative;
  aspect-ratio: 3 / 4;
  background-color: var(--bg-2);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.team-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(10, 8, 7, 0.96) 0%,
    rgba(10, 8, 7, 0.78) 16%,
    rgba(10, 8, 7, 0.30) 38%,
    transparent 62%);
  pointer-events: none;
  z-index: 1;
}

.team-card:hover {
  transform: translateY(-3px);
  border-color: var(--rose-line);
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.7), var(--shadow-rose);
  color: inherit;
}

.team-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 20px 22px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.team-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.team-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.team-card:hover .team-handle {
  border-color: var(--rose-line);
  color: var(--rose-soft);
  background: rgba(201, 164, 126, 0.18);
}

.team-handle svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.team-card-profile {
  position: absolute;
  top: 4.2%;
  left: 4.5%;
  width: 22%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 0 0 3px rgba(0, 0, 0, 0.5),
    0 6px 20px -4px rgba(0, 0, 0, 0.7);
}

.team-card-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.team-card.no-photo {
  background-image:
    radial-gradient(ellipse at 50% 25%, var(--rose-glow) 0%, transparent 55%),
    linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
}

.team-card.no-photo::before {
  content: attr(data-initial);
  position: absolute;
  top: 36%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  font-size: clamp(96px, 24vw, 140px);
  background: linear-gradient(135deg, var(--rose-soft) 0%, var(--rose) 50%, var(--rose-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.04em;
  z-index: 0;
}

/* ==========================================================================
   Social strip (footer Instagram links)
   ========================================================================== */

.social-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.social-strip__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-right: 4px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-2);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.social-link:hover {
  border-color: var(--rose);
  color: var(--rose);
  background: rgba(201, 164, 126, 0.06);
}

.social-link svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* ==========================================================================
   VSL section (homepage mindset video)
   ========================================================================== */

.vsl-section {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.vsl-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, var(--rose-glow) 0%, transparent 55%);
  opacity: 0.16;
  pointer-events: none;
}

.vsl-grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}

@media (max-width: 860px) {
  .vsl-section { padding: 80px 0; }
  .vsl-grid { grid-template-columns: 1fr; gap: 44px; }
}

.vsl-player {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--rose-line);
  box-shadow:
    0 40px 80px -30px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(201, 164, 126, 0.06),
    0 0 70px -10px var(--rose-glow);
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
}

.vsl-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vsl-unmute {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--rose-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
  padding: 0;
}

.vsl-unmute:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: scale(1.06);
  color: #fff;
}

.vsl-unmute svg {
  width: 20px;
  height: 20px;
}

.vsl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
}

.vsl-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--rose);
}

.vsl-title {
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  font-weight: 800;
  color: var(--text);
}

.vsl-title em {
  font-style: normal;
  color: var(--rose);
}

.vsl-copy {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 0 28px;
}

.vsl-byline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 10px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.vsl-byline:hover {
  border-color: var(--rose-line);
  color: var(--rose-soft);
  background: rgba(201, 164, 126, 0.07);
}

.vsl-byline-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-soft) 0%, var(--rose) 55%, var(--rose-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  color: #1a120a;
  font-size: 13px;
  letter-spacing: -0.02em;
  box-shadow: 0 0 0 1px var(--rose-line);
  overflow: hidden;
  flex-shrink: 0;
}

.vsl-byline-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

/* ==========================================================================
   Trip section (community page · Vietnam Aug/Sep)
   ========================================================================== */

.trip-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
  position: relative;
}

.trip-card {
  position: relative;
  padding: clamp(36px, 5vw, 64px) clamp(28px, 4vw, 56px);
  background:
    radial-gradient(circle at 18% 0%, rgba(201, 164, 126, 0.18) 0%, transparent 55%),
    linear-gradient(135deg, rgba(20, 14, 10, 0.85) 0%, rgba(8, 6, 5, 0.9) 100%);
  border: 1px solid var(--rose-line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 40px 90px -30px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(201, 164, 126, 0.06),
    0 0 80px -10px var(--rose-glow);
}

.trip-card::after {
  content: '';
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, var(--rose-glow) 0%, transparent 65%);
  opacity: 0.55;
  pointer-events: none;
}

.trip-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--rose-line);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.trip-pulse {
  width: 8px;
  height: 8px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: tripPulse 2s ease-in-out infinite;
}

@keyframes tripPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.trip-card h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.trip-card .lead {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.trip-video {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: start;
  margin: 36px 0 32px;
  position: relative;
  z-index: 1;
}

@media (max-width: 860px) {
  .trip-video { grid-template-columns: 1fr; gap: 22px; }
}

.trip-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--rose-line);
  box-shadow:
    0 30px 70px -25px rgba(0, 0, 0, 0.75),
    0 0 50px -10px var(--rose-glow);
}

.trip-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.trip-video-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}

.trip-video-meta .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
}

.trip-video-meta p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
}

.trip-video-meta strong {
  color: var(--text);
  font-weight: 700;
}

.trip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 36px 0 36px;
  position: relative;
  z-index: 1;
}

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

.trip-feature {
  padding: 18px 18px 16px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.trip-feature strong {
  display: block;
  font-size: 22px;
  color: var(--rose-soft);
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
  font-family: 'Inter', system-ui, sans-serif;
}

.trip-feature span {
  font-size: 11px;
  color: var(--text-2);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trip-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.trip-cta-meta {
  font-size: 13px;
  color: var(--muted);
}

/* ==========================================================================
   Cursor glow halo (native cursor stays normal, soft rose-gold halo follows it)
   ========================================================================== */

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(245, 175, 110, 0.40) 0%,
    rgba(220, 130, 60, 0.18) 35%,
    transparent 70%);
  transform: translate3d(-9999px, -9999px, 0);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  will-change: transform;
  transition: opacity 0.25s ease;
  opacity: 0;
}

.cursor-glow.is-active { opacity: 1; }

.cursor-glow.is-pointer {
  background: radial-gradient(circle,
    rgba(255, 200, 140, 0.55) 0%,
    rgba(220, 130, 60, 0.22) 40%,
    transparent 70%);
  width: 72px;
  height: 72px;
}

@media (hover: none) and (pointer: coarse) {
  .cursor-glow { display: none; }
}

/* ==========================================================================
   Cards swipe variant — turns a desktop 2x2 (or N-col) grid of .card panels
   into a horizontal swipe carousel on phones so each card is wide enough
   to read comfortably.
   ========================================================================== */

.cards-swipe-wrap { position: relative; }

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

@media (max-width: 760px) {
  .cards-swipe-wrap {
    margin-left: -16px;
    margin-right: -16px;
  }
  .cards-swipe {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 8px 16px 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--rose) transparent;
  }
  .cards-swipe::-webkit-scrollbar { height: 4px; }
  .cards-swipe::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); border-radius: 2px; }
  .cards-swipe::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 2px; }
  .cards-swipe > .card {
    flex: 0 0 82%;
    max-width: 320px;
    scroll-snap-align: center;
    padding: 26px 22px;
  }
  .cards-swipe-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 20px;
    width: 28px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent 0%, var(--bg) 100%);
  }
  .cards-swipe-hint {
    margin-top: 8px;
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
  }
}

.cards-swipe-hint { display: none; }
@media (max-width: 760px) { .cards-swipe-hint { display: block; } }

/* ==========================================================================
   Language strip (community page · 7 languages)
   Desktop: 7-col grid · Tablet: wrapped · Phone: horizontal swipe carousel
   ========================================================================== */

.lang-strip-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.lang-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
}

.lang-card {
  text-align: center;
  padding: 24px 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.lang-card:hover {
  border-color: var(--rose-line);
  transform: translateY(-2px);
}

.lang-card-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 24px;
  font-weight: 700;
  color: var(--rose);
  letter-spacing: 0.02em;
}

.lang-card-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
  white-space: nowrap;
}

.lang-strip-hint {
  display: none;
  margin-top: 10px;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 900px) {
  .lang-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .lang-strip-wrap {
    position: relative;
    margin-left: -16px;
    margin-right: -16px;
    max-width: none;
  }
  .lang-strip {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding: 8px 16px 18px;
    max-width: none;
    margin: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--rose) transparent;
  }
  .lang-strip::-webkit-scrollbar { height: 4px; }
  .lang-strip::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); border-radius: 2px; }
  .lang-strip::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 2px; }
  .lang-card {
    flex: 0 0 auto;
    width: 116px;
    scroll-snap-align: start;
    padding: 20px 10px;
  }
  .lang-card-code { font-size: 22px; }
  /* Fade-out gradient on the right edge to hint at more content */
  .lang-strip-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 18px;
    width: 36px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent 0%, var(--bg) 100%);
  }
  .lang-strip-hint { display: block; }
}


/* ============================================================ HOT-LEAD CALL-REQUEST FORM */
.callform-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 48px 40px;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(217, 167, 110, 0.08) 0%, transparent 60%),
    var(--surface-1);
  border: 1px solid var(--rose-line);
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.callform-header {
  text-align: center;
  margin-bottom: 36px;
}
.callform-header .eyebrow { justify-content: center; }
.callform-header h2 { margin: 14px 0 12px; }
.callform-header .lead { max-width: 640px; margin: 0 auto; }

.callform { display: grid; gap: 22px; }
.callform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.callform-field { display: grid; gap: 8px; }
.callform-fieldset { border: 0; padding: 0; margin: 0; display: grid; gap: 10px; }
.callform-label {
  font-family: var(--mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
}
.callform-optional { font-style: normal; color: var(--muted); text-transform: none; letter-spacing: 0; font-size: 11px; margin-left: 4px; }
.callform-help { font-size: 12px; color: var(--muted); margin: 2px 0 0; line-height: 1.5; }

.callform input[type="text"],
.callform input[type="email"],
.callform input[type="tel"],
.callform textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--surface-2, rgba(255,255,255,0.02));
  color: var(--text);
  border: 1px solid var(--rose-line);
  border-radius: 12px;
  font: inherit;
  font-size: 15px;
  transition: border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}
.callform input:focus,
.callform textarea:focus {
  outline: none;
  border-color: var(--rose);
  background: var(--surface-2, rgba(255,255,255,0.04));
  box-shadow: 0 0 0 3px rgba(217, 167, 110, 0.16);
}
.callform textarea { resize: vertical; min-height: 90px; }

.chk-row { display: flex; gap: 14px; flex-wrap: wrap; }
.chk {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--surface-2, rgba(255,255,255,0.02));
  border: 1px solid var(--rose-line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  user-select: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.chk:hover { border-color: rgba(217, 167, 110, 0.55); }
.chk input[type="checkbox"] { accent-color: var(--rose); width: 16px; height: 16px; cursor: pointer; }
.chk:has(input:checked) {
  border-color: var(--rose);
  background: rgba(217, 167, 110, 0.10);
  box-shadow: inset 0 0 0 1px rgba(217, 167, 110, 0.35);
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}
.chk-card {
  border-radius: 14px;
  padding: 14px 16px;
  align-items: flex-start;
  text-align: left;
  background: rgba(255,255,255,0.015);
}
.chk-card span { display: grid; gap: 4px; line-height: 1.3; }
.chk-card strong { font-weight: 600; font-size: 14px; }
.chk-card em {
  font-style: normal;
  font-family: var(--mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.callform-cta {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin-top: 8px;
}
.callform-trust {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-align: center;
}
.callform-status {
  margin-top: 6px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  text-align: center;
  border: 1px solid transparent;
}
.callform-status.is-success {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.4);
  color: #6ee7b7;
}
.callform-status.is-error {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

@media (max-width: 720px) {
  .callform-wrap { padding: 32px 22px; border-radius: 18px; }
  .callform-row { grid-template-columns: 1fr; gap: 18px; }
  .time-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .time-grid { grid-template-columns: 1fr; }
}

/* ============================================================ HOT-LEAD SUCCESS STATE */
.callform-success {
  text-align: center;
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 12px 0 4px;
  animation: callformFadeIn 0.5s ease-out;
}
@keyframes callformFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.callform-success__check {
  display: inline-grid;
  place-items: center;
  margin-bottom: 4px;
  filter: drop-shadow(0 0 18px rgba(217, 167, 110, 0.45));
  animation: callformCheckPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes callformCheckPop {
  0%   { transform: scale(0.6); opacity: 0; }
  60%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.callform-success__title {
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 700;
  color: var(--text);
  margin: 0;
  max-width: 480px;
  line-height: 1.4;
}
.callform-success__chat {
  margin-top: 14px;
  padding: 24px 22px 22px;
  background:
    radial-gradient(60% 100% at 50% 0%, rgba(217, 167, 110, 0.08) 0%, transparent 70%),
    rgba(217, 167, 110, 0.04);
  border: 1px solid var(--rose-line, rgba(217, 167, 110, 0.32));
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  display: grid;
  gap: 14px;
  justify-items: center;
}
.callform-success__lead {
  margin: 0;
  color: var(--text-2, #cfc4b1);
  font-size: 14px;
  line-height: 1.55;
  max-width: 440px;
}
.callform-success__lead strong { color: var(--text); display: block; margin-bottom: 4px; font-size: 15px; }
.callform-success__btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25d366 0%, #1eb854 100%) !important;
  color: #03220e !important;
  border-color: rgba(37, 211, 102, 0.4) !important;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: callformChatPulse 2.6s ease-out infinite;
}
.callform-success__btn:hover {
  background: linear-gradient(135deg, #2cdf6c 0%, #25d366 100%) !important;
  transform: translateY(-1px);
}
@keyframes callformChatPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.callform-success__note {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0;
}
