/* ============================================================
   FORTITUDEFX — BASE STYLESHEET
   
   Architecture:
   - Single source of truth for all pages
   - No page-specific patches — all rules universal
   - Page container: glass card wrapping all sections
   - Three-layer glow system: top-left violet, mid-right deep,
     bottom-left mirror
   - Gold accent: hero panel, benefit items, badges only
   - Violet accent: all interactive elements
   
   File structure:
   - styles-base.css      → universal (this file)
   - styles-waitlist.css  → waitlist form components only
   
   Pages:
   - index.html
   - bootcamp.html
   - vipdiscord.html
   - waitlist.html
   - privacy.html
   ============================================================ */

@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,600,700,800,900&display=swap');


/* ============================================================
   DESIGN TOKENS
   ============================================================ */

:root {
  --bg-1: #06060a;
  --bg-2: #090910;
  --bg-3: #050509;
  --text: #ffffff;
  --muted: rgba(255,255,255,0.82);
  --muted-2: rgba(255,255,255,0.68);
  --border: rgba(255,255,255,0.09);
  --border-soft: rgba(255,255,255,0.05);

  --panel: rgba(255,255,255,0.05);
  --panel-2: rgba(255,255,255,0.02);

  /* Color family — deep to light */
  --accent-deep:        #2d1472;
  --accent-deep-soft:   rgba(45, 20, 114, 0.45);
  --accent:             #7a5cff;
  --accent-soft:        rgba(122, 92, 255, 0.14);
  --accent-soft-2:      rgba(122, 92, 255, 0.08);
  --accent-line:        rgba(167, 139, 250, 0.24);
  --accent-line-strong: rgba(167, 139, 250, 0.42);
  --accent-text:        rgba(196, 181, 253, 0.94);

  /* Warm gold accent — used sparingly on hero kicker dot, offer badges, panel badge */
  --accent-warm:        #c9a84c;
  --accent-warm-soft:   rgba(201, 168, 76, 0.16);
  --accent-warm-line:   rgba(201, 168, 76, 0.30);
  --accent-warm-text:   rgba(232, 210, 140, 0.92);

  --shadow:    0 20px 60px rgba(0,0,0,0.38);
  --shadow-lg: 0 28px 80px rgba(0,0,0,0.44);
  --shadow-violet: 0 16px 48px rgba(122, 92, 255, 0.24);

  --radius-xl: 32px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --max: 1180px;

  --font: 'Satoshi', Arial, Helvetica, sans-serif;
}


/* ============================================================
   RESET & BASE
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  color: var(--text);
  background: var(--bg-1);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Base background — page colour */
body {
  background:
    linear-gradient(180deg, #07070e 0%, #09090f 50%, #07070c 100%);
}

/* Page-flow ambient glow field — seeds glows throughout full scroll length */
/* These sit inside .ffx-bg which wraps page content in HTML */
.ffx-bg {
  position: relative;
  overflow: hidden;
}

/* Glow nodes — absolute, distributed down the page */
.ffx-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

/* Individual glow sizes and positions set via inline style in HTML */
/* Color variants */
.ffx-glow-violet {
  background: radial-gradient(circle,
    rgba(122, 92, 255, 0.52) 0%,
    rgba(122, 92, 255, 0.22) 40%,
    transparent 70%
  );
}

.ffx-glow-deep {
  background: radial-gradient(circle,
    rgba(45, 20, 114, 0.70) 0%,
    rgba(45, 20, 114, 0.30) 45%,
    transparent 70%
  );
}

.ffx-glow-mid {
  background: radial-gradient(circle,
    rgba(85, 50, 200, 0.48) 0%,
    rgba(45, 20, 114, 0.22) 45%,
    transparent 70%
  );
}

/* Grid texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: radial-gradient(ellipse 100% 100% at center, rgba(0,0,0,0.55), transparent 90%);
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}

/* Ensure all content sits above background layers */
.ffx-bg > *:not(.ffx-glow) { position: relative; z-index: 1; }
body > * { position: relative; z-index: 1; }

/* ============================================================
   PAGE CONTAINER — Macro glass card wrapping all sections
   Nav sits above (fixed), footer sits below (outside)
   ============================================================ */

.page-container {
  position: relative;
  z-index: 1;
  width: calc(100% - 48px);
  max-width: 1380px;
  margin: 0 auto;
  margin-top: 76px; /* matches nav height */
  border-radius: 32px;

  /* Visible border with violet glow */
  border: 1.5px solid rgba(122, 92, 255, 0.38);
  box-shadow:
    /* Outer glow around entire container */
    0 0 0 1px rgba(122, 92, 255, 0.12),
    0 0 32px rgba(122, 92, 255, 0.18),
    0 0 80px rgba(45, 20, 114, 0.28),
    /* Depth shadow */
    0 32px 96px rgba(0,0,0,0.48),
    /* Inner top highlight */
    inset 0 1px 0 rgba(255,255,255,0.08);

  /* Background:
     - Bright violet glow top-left (hero heading anchor)
     - Deep dark purple fade right and bottom (depth, no hard edge)
     - Subtle base gradient throughout */
  background:
    /* Top-left — bright violet anchor (hero heading) — LOCKED */
    radial-gradient(ellipse 75% 45% at 12% 8%,
      rgba(122, 92, 255, 0.18) 0%,
      rgba(45, 20, 114, 0.10) 45%,
      transparent 72%
    ),
    /* Mid-right — deep purple fade across bootcamp/faq — LOCKED */
    radial-gradient(ellipse 85% 55% at 100% 62%,
      rgba(45, 20, 114, 0.60) 0%,
      rgba(35, 14, 90, 0.38) 35%,
      rgba(20, 8, 55, 0.18) 60%,
      transparent 82%
    ),
    /* Bottom-left — mirror of mid-right, ends the page on the left */
    radial-gradient(ellipse 85% 55% at 0% 88%,
      rgba(45, 20, 114, 0.60) 0%,
      rgba(35, 14, 90, 0.38) 35%,
      rgba(20, 8, 55, 0.18) 60%,
      transparent 82%
    ),
    /* Base gradient */
    linear-gradient(160deg,
      rgba(255,255,255,0.042) 0%,
      rgba(45, 20, 114, 0.05) 50%,
      rgba(255,255,255,0.015) 100%
    );

  overflow: hidden;
}



a { color: inherit; text-decoration: none; }


/* ============================================================
   KEYFRAMES
   ============================================================ */

@keyframes glow-pulse {
  0%, 100% { opacity: 0.70; transform: scale(1); }
  50%       { opacity: 1;    transform: scale(1.10); }
}

@keyframes glow-pulse-slow {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%       { opacity: 0.85; transform: scale(1.06); }
}

@keyframes nav-slide-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes back-top-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll entrance — applied via JS IntersectionObserver */
.ffx-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.ffx-reveal-delay-1 { transition-delay: 0.10s; }
.ffx-reveal-delay-2 { transition-delay: 0.20s; }
.ffx-reveal-delay-3 { transition-delay: 0.30s; }


/* ============================================================
   BACK TO TOP — Floating button
   ============================================================ */

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--accent-line);
  background: linear-gradient(180deg, rgba(122, 92, 255, 0.22), rgba(45, 20, 114, 0.40));
  color: #efe9ff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease, transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  box-shadow: 0 8px 28px rgba(122, 92, 255, 0.28);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  animation: back-top-in 0.36s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.back-to-top:hover {
  transform: translateY(-4px);
  border-color: var(--accent-line-strong);
  box-shadow: 0 14px 40px rgba(122, 92, 255, 0.40);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ============================================================
   NAVIGATION — Standard (index, bootcamp, waitlist)
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(6, 6, 10, 0.48);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(122, 92, 255, 0.14);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.03),
    0 4px 24px rgba(0,0,0,0.24);
}

.nav-wrap {
  max-width: 1240px;
  margin: 0 auto;
  width: calc(100% - 48px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 76px;
  gap: 18px;
}

.nav-brand a {
  font-size: 12px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255,255,255,0.96);
  transition: color 0.22s ease;
}

.nav-brand a:hover { color: #ffffff; }

.nav-center {
  display: flex;
  justify-content: center;
  gap: 36px;
}

.nav .nav-center a {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.56);
  position: relative;
  transition: color 0.22s ease;
}

.nav .nav-center a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(122,92,255,0.9), rgba(167,139,250,0.5));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav .nav-center a:hover { color: rgba(255,255,255,0.96); }
.nav .nav-center a:hover::after { transform: scaleX(1); }

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

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.nav-btn:hover { transform: translateY(-1px); }

.nav-btn-primary {
  border: 1px solid var(--accent-line);
  background: linear-gradient(180deg, rgba(122, 92, 255, 0.20), rgba(45, 20, 114, 0.28));
  color: #efe9ff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 4px 18px rgba(122, 92, 255, 0.20);
}

.nav-btn-primary:hover {
  border-color: var(--accent-line-strong);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 8px 28px rgba(122, 92, 255, 0.32);
}

.nav-btn-secondary {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.82);
}

.nav-btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.20);
  color: white;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  cursor: pointer;
  padding: 9px;
  transition: border-color 0.22s ease, background 0.22s ease;
}

.nav-toggle:hover {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.05);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: rgba(255,255,255,0.72);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

/* Mobile drawer */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 16px 20px 22px;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(6, 6, 10, 0.96);
  animation: nav-slide-in 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.nav-mobile.is-open { display: flex; }

.nav-mobile a {
  display: flex;
  align-items: center;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.22s ease;
}

.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile a:hover { color: white; }

.nav-mobile-cta {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.nav-mobile-cta .nav-btn { flex: 1; justify-content: center; }


/* ============================================================
   NAVIGATION — VIP Discord page
   ============================================================ */

.vipd-page {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.vipd-page * { box-sizing: border-box; }


.vipd-container {
  width: min(calc(100% - 40px), 1240px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

















/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-warm-text);
}

.kicker::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-warm);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.70);
  flex-shrink: 0;
}



h1 {
  margin: 0 0 22px;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  font-weight: 800;
  max-width: 760px;
}

h2 { font-weight: 700; }

.gradient {
  background: linear-gradient(90deg, #ffffff 0%, #ddd6ff 45%, #9f86ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}


/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font);
  letter-spacing: 0.01em;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.btn:hover { transform: translateY(-3px); }
/* ============================================================
   BUTTON ARROWS — injected via CSS, never hardcoded in HTML
   Primary buttons always get → arrow
   Back to top buttons get ↑ arrow via .btn-back-top modifier
   ============================================================ */

.btn-primary::after,
.btn-secondary::after,
.btn-action-primary::after,
.btn-action-secondary::after,
.nav-btn-primary::after {
  content: " →";
}

/* Override — back to top uses upward arrow, not right arrow */

.btn-back-top::after {
  content: " ↑";
}


.btn-primary {
  border: 1px solid var(--accent-line-strong);
  background: linear-gradient(180deg,
    rgba(122, 92, 255, 0.26) 0%,
    rgba(45, 20, 114, 0.38) 100%
  );
  color: #efe9ff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 8px 28px rgba(122, 92, 255, 0.26),
    0 0 0 1px rgba(45, 20, 114, 0.20);
}

.btn-primary:hover {
  border-color: rgba(167, 139, 250, 0.60);
  background: linear-gradient(180deg,
    rgba(122, 92, 255, 0.36) 0%,
    rgba(45, 20, 114, 0.50) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.16),
    0 16px 48px rgba(122, 92, 255, 0.38),
    0 0 0 1px rgba(122, 92, 255, 0.16),
    0 0 60px rgba(45, 20, 114, 0.24);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.88);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.09);
  color: white;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}


/* ============================================================
   SECTION SCAFFOLDING — Tighter spacing
   ============================================================ */

.section {
  position: relative;
  padding: 56px 24px;
}

.section-wrap {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}

.section-break {
  position: relative;
  height: 48px;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}

.section-break::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1120px, calc(100% - 48px));
  height: 1px;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(45, 20, 114, 0.40) 18%,
    rgba(167, 139, 250, 0.36) 50%,
    rgba(45, 20, 114, 0.40) 82%,
    rgba(255,255,255,0) 100%
  );
}

.section-break::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 320px;
  height: 60px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse,
    rgba(122, 92, 255, 0.22) 0%,
    rgba(45, 20, 114, 0.14) 40%,
    transparent 72%
  );
  filter: blur(14px);
  opacity: 1;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 700;
  color: white;
  max-width: 620px;
}

.section-head p {
  margin: 0;
  max-width: 500px;
  font-size: 1.02rem;
  line-height: 1.90;
  color: var(--muted);
}

.vipd-section { padding: 48px 0; }


/* ============================================================
   CARD SYSTEM — Deeper, richer
   ============================================================ */

.hero-panel,
.glass-card,
.faq-card,
.vip-card,
.week-card,
.cta-shell {
  position: relative;
  border: 1px solid rgba(255,255,255,0.09);
  background: linear-gradient(160deg,
    rgba(255,255,255,0.06) 0%,
    rgba(255,255,255,0.022) 100%
  );
  box-shadow:
    0 24px 64px rgba(0,0,0,0.42),
    0 8px 24px rgba(45, 20, 114, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.07),
    inset 0 -1px 0 rgba(0,0,0,0.12);
  overflow: hidden;
}

/* Violet corner bloom */
.hero-panel::after,
.glass-card::after,
.faq-card::after,
.vip-card::after,
.week-card::after,
.cta-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg,
    rgba(122, 92, 255, 0.11) 0%,
    rgba(45, 20, 114, 0.06) 35%,
    transparent 55%
  );
  opacity: 0.9;
  pointer-events: none;
}

/* Deep purple bottom edge glow on cards */
.hero-panel::before,
.glass-card::before,
.faq-card::before,
.vip-card::before,
.week-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(45, 20, 114, 0.50) 40%,
    rgba(122, 92, 255, 0.30) 60%,
    transparent
  );
  pointer-events: none;
}

/* Hover — violet glow bloom */
.faq-card:hover,
.vip-card:hover,
.week-card:hover,
.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(167, 139, 250, 0.28);
  background: linear-gradient(160deg,
    rgba(255,255,255,0.08) 0%,
    rgba(45, 20, 114, 0.12) 100%
  );
  box-shadow:
    0 30px 72px rgba(0,0,0,0.46),
    0 12px 36px rgba(122, 92, 255, 0.20),
    0 0 60px rgba(45, 20, 114, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.10);
}


/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  padding-top: 80px;
  padding-bottom: 60px;
}

.hero-glow {
  position: absolute;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(122, 92, 255, 0.20) 0%,
    rgba(45, 20, 114, 0.28) 40%,
    transparent 68%
  );
  top: -220px;
  right: -160px;
  filter: blur(20px);
  pointer-events: none;
  animation: glow-pulse 8s ease-in-out infinite;
}

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

.hero-copy {
  margin: 0;
  max-width: 560px;
  font-size: 1.08rem;
  line-height: 1.92;
  color: var(--muted);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* Back to top row — bottom of page-container on pages without a CTA section */
.page-back-top {
  padding: 0 24px 48px;
}

/* Back to Top inside form — below submit button */
.submit-back-top {
  margin-top: 14px;
}

/* CTA row — used below section grids (VIP, Bootcamp) for consistent nudging */
.section-cta-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(122, 92, 255, 0.18);
  background: rgba(45, 20, 114, 0.16);
  color: rgba(255,255,255,0.72);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-panel {
  border-radius: 32px;
  padding: 32px;
}

.panel-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.panel-brand small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(196, 181, 253, 0.82);
  margin-bottom: 10px;
}

.panel-brand strong {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.panel-badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--accent-line-strong);
  background: linear-gradient(180deg,
    rgba(122, 92, 255, 0.22),
    rgba(45, 20, 114, 0.32)
  );
  color: #efe9ff;
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 18px rgba(122, 92, 255, 0.22);
}

/* Gold badge variant — "Best in Class", featured tier labels */
.panel-badge-gold {
  border-color: var(--accent-warm-line);
  background: linear-gradient(180deg,
    rgba(201, 168, 76, 0.20),
    rgba(150, 110, 30, 0.24)
  );
  color: var(--accent-warm-text);
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.18);
}

.benefit-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.benefit-item {
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 2px solid rgba(201, 168, 76, 0.75);
  box-shadow: -3px 0 12px rgba(201, 168, 76, 0.22);
  background: rgba(45, 20, 114, 0.10);
  border-radius: 16px;
  padding: 15px 18px;
  color: rgba(255,255,255,0.82);
  font-size: 0.97rem;
  line-height: 1.72;
  font-weight: 400;
  transition:
    transform         0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow        0.28s ease,
    background        0.28s ease,
    border-left-color 0.28s ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
  background: rgba(45, 20, 114, 0.18);
  border-left-color: rgba(201, 168, 76, 1);
  box-shadow: -4px 0 20px rgba(201, 168, 76, 0.40), 0 8px 24px rgba(45, 20, 114, 0.24);
}

.mini-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.mini-card {
  border: 1px solid rgba(122, 92, 255, 0.22);
  background: linear-gradient(180deg, rgba(122, 92, 255, 0.12), rgba(45, 20, 114, 0.18));
  border-radius: 14px;
  padding: 15px 10px;
  text-align: center;
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.90);
  text-transform: uppercase;
}


/* ============================================================
   GLASS CARD
   ============================================================ */

.glass-card {
  border-radius: 28px;
  padding: 34px;
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.36s ease,
              background 0.36s ease,
              box-shadow 0.36s ease;
}

.glass-card .tiny {
  position: relative;
  z-index: 1;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(196,181,253,0.84);
  margin-bottom: 16px;
}

.glass-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  font-size: 1.9rem;
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.glass-card ul {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

.glass-card li::marker { color: var(--accent); }


/* ============================================================
   TWO-COLUMN GRID
   ============================================================ */

.two-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}


/* ============================================================
   SPLIT SECTION
   ============================================================ */

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.sticky-left {
  position: sticky;
  top: 112px;
  padding-top: 6px;
}

.sticky-left h2 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 700;
  color: white;
  max-width: 620px;
}

.sticky-left p {
  margin: 0;
  max-width: 470px;
  font-size: 1.04rem;
  line-height: 1.90;
  color: var(--muted);
}


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

.faq-cards,
.vip-grid,
.bootcamp-grid {
  display: grid;
  gap: 16px;
}

.faq-card {
  border-radius: 28px;
  padding: 32px 32px 32px 28px;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  transition:
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.36s ease,
    background 0.36s ease,
    box-shadow 0.36s ease;
}

.faq-num {
  position: relative;
  z-index: 1;
  font-size: 0.88rem;
  color: rgba(196, 181, 253, 0.72);
  letter-spacing: 0.20em;
  font-weight: 700;
  padding-top: 4px;
}

.faq-card h3,
.vip-card h3,
.week-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: 1.18rem;
  line-height: 1.24;
  letter-spacing: -0.03em;
  color: #ffffff;
  font-weight: 700;
}

.faq-card p,
.vip-card p,
.week-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.00rem;
  line-height: 1.88;
  color: rgba(255,255,255,0.72);
}


/* ============================================================
   VIP GRID
   ============================================================ */

.vip-grid { grid-template-columns: repeat(4, 1fr); align-items: stretch; }

.vip-card {
  border-radius: 28px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  transition:
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.36s ease,
    background 0.36s ease,
    box-shadow 0.36s ease;
}

.vip-number {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg,
    rgba(122, 92, 255, 0.24),
    rgba(45, 20, 114, 0.32)
  );
  border: 1px solid rgba(122, 92, 255, 0.24);
  color: rgba(241, 234, 255, 0.96);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 18px;
  box-shadow:
    0 4px 18px rgba(122, 92, 255, 0.22),
    0 0 0 1px rgba(45, 20, 114, 0.20);
}

.vip-grid.vip-grid-3 { grid-template-columns: repeat(3, 1fr); }


/* ============================================================
   BOOTCAMP CARDS
   ============================================================ */

.bootcamp-grid { grid-template-columns: repeat(3, 1fr); }

.week-card {
  border-radius: 28px;
  padding: 30px;
  transition:
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.36s ease,
    background 0.36s ease,
    box-shadow 0.36s ease;
}

.week {
  position: relative;
  z-index: 1;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(196,181,253,0.84);
  margin-bottom: 14px;
}

.week-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.week-list div {
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(45, 20, 114, 0.10);
  border-radius: 12px;
  padding: 12px 14px;
  color: rgba(255,255,255,0.78);
  font-size: 0.93rem;
}


/* ============================================================
   CTA SHELL
   ============================================================ */

.cta-shell {
  border-radius: 32px;
  padding: 42px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(45, 20, 114, 0.55), transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(122, 92, 255, 0.18), transparent 55%),
    linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  box-shadow:
    0 28px 88px rgba(0,0,0,0.46),
    0 0 0 1px rgba(122, 92, 255, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: end;
}

.cta-grid h2 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.cta-grid p {
  margin: 0;
  max-width: 700px;
  color: var(--muted);
  line-height: 1.90;
  font-size: 1.02rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}


/* ============================================================
   PRICING — Shared
   ============================================================ */

.pricing-list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.pricing-list li {
  position: relative;
  padding-left: 20px;
  line-height: 1.80;
  color: rgba(255,255,255,0.82);
  font-size: 0.98rem;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(122, 92, 255, 0.55);
}

.price-row,
.pricing-note,
#pricing .glass-card .hero-actions,
#pricing .glass-card .tiny,
#pricing .glass-card h3 {
  position: relative;
  z-index: 1;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 18px 0 24px;
}

.price-row strong {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.price-row span {
  color: rgba(255,255,255,0.40);
  text-decoration: line-through;
}

.pricing-note {
  color: rgba(255,255,255,0.62);
  line-height: 1.84;
  font-size: 0.98rem;
}


/* ============================================================
   VIP PRICING SHELL — Shared
   ============================================================ */

.vipd-pricing-shell {
  position: relative;
  overflow: hidden;
  padding: 34px 30px 30px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.09);
  background: linear-gradient(160deg,
    rgba(255,255,255,0.06) 0%,
    rgba(45, 20, 114, 0.14) 100%
  );
  box-shadow:
    var(--shadow),
    0 8px 32px rgba(45, 20, 114, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.07),
    0 0 0 1px rgba(122,92,255,0.06);
}

.vipd-pricing-topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.vipd-pricing-title-wrap h3 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.vipd-pricing-title-wrap p {
  margin: 0;
  color: rgba(245,245,247,0.72);
  line-height: 1.84;
  max-width: 62ch;
  font-size: 0.98rem;
}

.vipd-plans {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.vipd-plan-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.vipd-plan-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 116px;
  padding: 18px 24px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s ease,
    background 0.32s ease,
    box-shadow 0.32s ease;
  cursor: pointer;
  user-select: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 4px 16px rgba(0,0,0,0.18);
}

.vipd-plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(130deg,
    rgba(122, 92, 255, 0.12),
    rgba(45, 20, 114, 0.08) 45%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.44s ease;
  pointer-events: none;
}

.vipd-plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(167, 139, 250, 0.24);
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(45, 20, 114, 0.10));
  box-shadow:
    0 16px 48px rgba(0,0,0,0.34),
    0 6px 24px rgba(122, 92, 255, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.07);
}

.vipd-plan-card:hover::before { opacity: 1; }

.vipd-plan-select {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.22);
  position: relative;
  transition: border-color 0.32s ease, background 0.32s ease, box-shadow 0.32s ease;
  background: rgba(255,255,255,0.02);
  flex-shrink: 0;
}

.vipd-plan-select::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #fff;
  transform: scale(0.2);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease;
}

.vipd-plan-main { min-width: 0; }

.vipd-plan-row-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 6px;
}

.vipd-plan-name {
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.96);
}

.vipd-plan-save {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(201,168,76,0.18), rgba(150,110,30,0.22));
  border: 1px solid rgba(201,168,76,0.30);
  color: var(--accent-warm-text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vipd-plan-price-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255,255,255,0.96);
}

.vipd-plan-price {
  font-size: clamp(1.28rem, 2.4vw, 1.68rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.vipd-plan-term {
  color: rgba(255,255,255,0.50);
  font-size: clamp(0.96rem, 1.8vw, 1.12rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.vipd-plan-meta {
  display: grid;
  justify-items: end;
  align-content: center;
  gap: 6px;
  color: rgba(245,245,247,0.46);
  font-size: 0.88rem;
  text-align: right;
}

.vipd-plan-meta strong {
  display: block;
  color: rgba(255,255,255,0.90);
  font-weight: 600;
}

.vipd-plan-code {
  display: block;
  max-width: 142px;
  font-size: 0.72rem;
  line-height: 1.44;
  color: rgba(196, 181, 253, 0.90);
}

/* Selected state */
.vipd-plan-input:checked + .vipd-plan-card {
  border-color: rgba(167, 139, 250, 0.36);
  background: linear-gradient(160deg,
    rgba(122, 92, 255, 0.10) 0%,
    rgba(45, 20, 114, 0.18) 100%
  );
  box-shadow:
    0 20px 60px rgba(0,0,0,0.38),
    0 8px 32px rgba(122, 92, 255, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.09),
    0 0 0 1px rgba(122,92,255,0.16);
  transform: translateY(-2px);
}

.vipd-plan-input:checked + .vipd-plan-card::before { opacity: 1; }

.vipd-plan-input:checked + .vipd-plan-card .vipd-plan-select {
  border-color: rgba(122,92,255,0.80);
  background: rgba(122,92,255,0.20);
  box-shadow: 0 0 0 5px rgba(122,92,255,0.10);
}

.vipd-plan-input:checked + .vipd-plan-card .vipd-plan-select::after {
  transform: scale(1);
  opacity: 1;
}

.vipd-plan-input:checked + .vipd-plan-card .vipd-plan-name,
.vipd-plan-input:checked + .vipd-plan-card .vipd-plan-price {
  color: #ffffff;
}

.vipd-plan-input:checked + .vipd-plan-card .vipd-plan-code {
  color: #ddd6ff;
}

.vipd-pricing-foot {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.vipd-pricing-foot p {
  margin: 0;
  flex: 1;
  min-width: 0;
}

.vipd-pricing-foot .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.vipd-pricing-foot p {
  margin: 0;
  color: rgba(245,245,247,0.46);
  line-height: 1.75;
  font-size: 0.92rem;
}

.vipd-selection-output {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, 0.22);
  background: linear-gradient(180deg,
    rgba(122, 92, 255, 0.16),
    rgba(45, 20, 114, 0.24)
  );
  color: rgba(255,255,255,0.92);
  font-size: 0.90rem;
  font-weight: 600;
  width: fit-content;
  min-width: 0;
  max-width: max-content;
  margin-left: auto;
  flex: 0 0 auto;
  white-space: nowrap;
}

.vipd-selection-output span { color: #ddd6ff; }


/* ============================================================
   DISCORD MOCKUP
   ============================================================ */

.vipd-discord-window {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0d0d16;
  box-shadow:
    0 28px 72px rgba(0,0,0,0.48),
    0 8px 32px rgba(45, 20, 114, 0.24),
    0 0 0 1px rgba(122,92,255,0.08);
}

.vipd-discord-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
}

.vipd-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
}

.vipd-discord-body {
  display: grid;
  grid-template-columns: 88px 1fr;
  min-height: 460px;
}

.vipd-discord-sidebar {
  padding: 18px 12px;
  border-right: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.018);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.vipd-server-pill {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(122,92,255,0.32), rgba(45,20,114,0.48));
  border: 1px solid rgba(122,92,255,0.28);
  box-shadow:
    0 0 24px rgba(122,92,255,0.22),
    0 0 48px rgba(45,20,114,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vipd-server-pill.vipd-small {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: none;
}

/* Discord Clyde logo SVG */
.vipd-discord-logo {
  width: 22px;
  height: 22px;
  fill: #efe9ff;
  opacity: 0.92;
}

.vipd-discord-main {
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vipd-server-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.vipd-server-header h3 {
  margin: 0 0 5px;
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.vipd-server-header p {
  margin: 0;
  color: rgba(245,245,247,0.46);
  font-size: 0.88rem;
}

.vipd-live-badge,
.vipd-bonus-chip,
.vipd-channel-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, 0.22);
  background: linear-gradient(180deg, rgba(122,92,255,0.14), rgba(45,20,114,0.20));
  color: #efe9ff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  white-space: nowrap;
}

.vipd-live-badge,
.vipd-bonus-chip { padding: 9px 13px; }

.vipd-channel-list { display: grid; gap: 9px; }

.vipd-channel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 15px;
  border-radius: 14px;
  background: rgba(255,255,255,0.022);
  border: 1px solid rgba(255,255,255,0.05);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s ease,
    background 0.32s ease,
    box-shadow 0.32s ease;
}

.vipd-channel:hover {
  transform: translateY(-3px);
  border-color: rgba(167, 139, 250, 0.24);
  background: linear-gradient(160deg, rgba(122,92,255,0.06), rgba(45,20,114,0.08));
  box-shadow:
    0 8px 28px rgba(0,0,0,0.28),
    0 4px 16px rgba(122,92,255,0.14);
}

.vipd-channel-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.vipd-channel-name {
  font-size: 0.94rem;
  font-weight: 600;
  color: rgba(255,255,255,0.94);
}

.vipd-channel-desc {
  font-size: 0.84rem;
  color: rgba(245,245,247,0.46);
}

/* Mock messages */
.vipd-messages {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}

.vipd-message {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.vipd-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(122,92,255,0.40), rgba(45,20,114,0.60));
  border: 1px solid rgba(122,92,255,0.22);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #efe9ff;
  letter-spacing: 0.04em;
}

.vipd-avatar.vipd-avatar-b {
  background: linear-gradient(180deg, rgba(167,139,250,0.30), rgba(45,20,114,0.50));
}

.vipd-message-body { flex: 1; min-width: 0; }

.vipd-message-meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.vipd-message-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(196,181,253,0.92);
}

.vipd-message-time {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
}

.vipd-message-text {
  font-size: 0.88rem;
  line-height: 1.62;
  color: rgba(255,255,255,0.78);
}

.vipd-chart-thumb {
  margin-top: 8px;
  height: 52px;
  border-radius: 8px;
  background: linear-gradient(160deg,
    rgba(45,20,114,0.40) 0%,
    rgba(122,92,255,0.14) 50%,
    rgba(45,20,114,0.28) 100%
  );
  border: 1px solid rgba(122,92,255,0.18);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 10px;
}

.vipd-chart-thumb-line {
  flex: 1;
  height: 28px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
}

.vipd-chart-bar {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: rgba(122,92,255,0.50);
}

.vipd-chart-thumb-label {
  font-size: 0.70rem;
  font-weight: 700;
  color: rgba(196,181,253,0.80);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Typing indicator */
.vipd-typing {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 4px 2px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.36);
}

.vipd-typing-dots {
  display: flex;
  gap: 3px;
  align-items: center;
}

.vipd-typing-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(122,92,255,0.60);
  animation: typing-bounce 1.2s ease-in-out infinite;
}

.vipd-typing-dots span:nth-child(2) { animation-delay: 0.20s; }
.vipd-typing-dots span:nth-child(3) { animation-delay: 0.40s; }

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.50; }
  30%           { transform: translateY(-5px); opacity: 1; }
}


/* ============================================================
   VIP PAGE — Scoped overrides
   ============================================================ */

.page-vip .hero-grid { align-items: stretch; }

.page-vip .hero-panel {
  display: flex;
  padding: 0;
}

.page-vip .hero-panel::after,
.page-vip .hero-panel::before { display: none; }

.page-vip .hero h1  { max-width: 11ch; }
.page-vip .section-head h2 { max-width: 12ch; }


/* ============================================================
   BOOTCAMP TEASER — Homepage
   ============================================================ */

.section-feature {
  position: relative;
}



.section-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 56px;
  align-items: center;
}



.section-feature h2 {
  margin: 0 0 22px;
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #ffffff;
}

.section-lead {
  max-width: 680px;
  margin: 0 0 18px;
  font-size: 1.06rem;
  line-height: 1.92;
  color: rgba(255,255,255,0.76);
}

.section-copy {
  max-width: 640px;
  margin: 0 0 32px;
  font-size: 0.98rem;
  line-height: 1.88;
  color: rgba(255,255,255,0.58);
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 32px;
}

.btn-action-primary,
.btn-action-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
  white-space: nowrap;
}

.btn-action-primary {
  background: linear-gradient(180deg,
    rgba(122, 92, 255, 0.28),
    rgba(45, 20, 114, 0.42)
  );
  border: 1px solid var(--accent-line-strong);
  color: #ffffff;
  box-shadow:
    0 8px 28px rgba(122, 92, 255, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.10);
}

.btn-action-primary:hover {
  transform: translateY(-3px);
  border-color: rgba(167, 139, 250, 0.60);
  box-shadow:
    0 16px 48px rgba(122, 92, 255, 0.36),
    0 0 60px rgba(45, 20, 114, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

.btn-action-secondary {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.84);
}

.btn-action-secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.09);
  color: white;
}

.feature-card {
  position: relative;
  padding: 36px 34px;
  border-radius: 30px;
  background: linear-gradient(160deg,
    rgba(255,255,255,0.06),
    rgba(45, 20, 114, 0.14)
  );
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow:
    0 24px 72px rgba(0,0,0,0.42),
    0 8px 32px rgba(45,20,114,0.22),
    inset 0 1px 0 rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
}

.bootcamp-card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.46);
}

.bootcamp-card-points {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bootcamp-card-points li {
  position: relative;
  padding: 0 0 0 18px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.84);
  line-height: 1.72;
  font-size: 0.98rem;
}

.bootcamp-card-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(122,92,255,0.55);
}

.bootcamp-card-divider {
  width: 100%;
  height: 1px;
  margin: 24px 0 20px;
  background: linear-gradient(90deg,
    transparent,
    rgba(122,92,255,0.28) 40%,
    rgba(167,139,250,0.18) 60%,
    transparent
  );
}

.bootcamp-card-note {
  margin: 0;
  color: rgba(255,255,255,0.64);
  line-height: 1.88;
  font-size: 0.97rem;
}


/* ============================================================
   BOOTCAMP PAGE
   ============================================================ */

.bootcamp-curriculum-card .panel-badge {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.bootcamp-curriculum-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}


/* ============================================================
   FOOTER
   ============================================================ */

footer {
  position: relative;
  z-index: 2;
  padding: 56px 24px 32px;
  color: rgba(255,255,255,0.34);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.footer-wrap {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.36);
  margin-bottom: 28px;
  font-style: italic;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.36);
  transition: color 0.24s ease, filter 0.24s ease, transform 0.24s ease;
}

.footer-social:hover {
  color: rgba(167, 139, 250, 0.96);
  transform: translateY(-1px);
  filter: drop-shadow(0 0 6px rgba(122, 92, 255, 0.70));
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
  padding-top: 6px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: right;
}

.footer-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.36);
  transition: color 0.24s ease;
}

.footer-nav a:hover {
  color: rgba(255,255,255,0.80);
}

.footer-bottom {
  max-width: var(--max);
  margin: 28px auto 0;
  color: rgba(255,255,255,0.22);
  font-size: 11px;
  letter-spacing: 0.06em;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1120px) {
  .vip-grid.vip-grid-3 { grid-template-columns: 1fr 1fr; }
  .vipd-pricing-topbar { display: grid; }
  .page-vip .hero h1, .page-vip .section-head h2 { max-width: none; }
}

@media (max-width: 1080px) {
  .hero-grid, .split-section, .section-head, .two-grid, .cta-grid {
    grid-template-columns: 1fr;
  }
  .section-head { align-items: start; }
  .sticky-left { position: relative; top: auto; }
  .vip-grid, .bootcamp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .section-feature { padding: 88px 0; }
  .section-split { grid-template-columns: 1fr; gap: 36px; }
  .feature-card { padding: 30px 26px; }
}

@media (max-width: 860px) {
  .vipd-plan-card {
    grid-template-columns: auto 1fr;
    align-items: start;
    padding: 18px;
    min-height: unset;
  }
  .vipd-plan-meta {
    grid-column: 2 / 3;
    justify-items: start;
    text-align: left;
    margin-top: 8px;
  }
  .vipd-pricing-foot { display: grid; }
}

@media (max-width: 820px) {
  .vip-grid, .bootcamp-grid, .vip-grid.vip-grid-3 { grid-template-columns: 1fr; }
  .faq-card { grid-template-columns: 1fr; gap: 10px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 20px; }
  .hero { padding-top: 132px; padding-bottom: 80px; }

  /* Nav */
  .nav-center, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-wrap {
    grid-template-columns: 1fr auto;
    height: auto;
    width: calc(100% - 40px);
    min-height: 64px;
    padding: 0;
  }

  /* Typography */
  h1 { font-size: clamp(2.4rem, 10vw, 3.8rem); letter-spacing: -0.04em; }
  .hero-copy { font-size: 1rem; }
  .section-head h2 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .sticky-left h2 { font-size: clamp(1.9rem, 7vw, 2.8rem); }

  /* Cards */
  .hero-panel, .glass-card, .faq-card, .vip-card, .week-card, .cta-shell {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .glass-card h3 { font-size: 1.5rem; }
  .mini-grid { grid-template-columns: 1fr; }

  /* Hero tags */
  .hero-tags { gap: 8px; }
  .hero-tags span { font-size: 0.80rem; padding: 8px 12px; }

  /* CTA shell */
  .cta-shell { padding: 28px 24px; border-radius: 24px; }
  .cta-grid { gap: 24px; }
  .cta-actions { align-items: stretch; }
  .cta-actions .btn { justify-content: center; }

  /* Buttons */
  .btn { min-height: 48px; padding: 0 20px; font-size: 0.90rem; }

  /* VIP nav */
  .vipd-container { width: min(calc(100% - 24px), 1240px); }

  /* Discord mockup */
  .vipd-discord-body { grid-template-columns: 58px 1fr; min-height: 320px; }
  .vipd-discord-sidebar { padding: 12px 6px; gap: 10px; }
  .vipd-server-pill { width: 38px; height: 38px; border-radius: 12px; }
  .vipd-server-pill.vipd-small { width: 32px; height: 32px; border-radius: 10px; }
  .vipd-discord-logo { width: 18px; height: 18px; }
  .vipd-discord-main { padding: 16px 14px; gap: 12px; }
  .vipd-server-header h3 { font-size: 1rem; }
  .vipd-message-text { font-size: 0.82rem; }
  .vipd-chart-thumb { height: 42px; }

  /* Pricing */
  .vipd-section { padding-top: 32px; }
  .vipd-pricing-shell { padding: 20px; border-radius: 24px; }
  .vipd-pricing-title-wrap h3 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .vipd-plan-card { min-height: unset; padding: 16px; }
  .vipd-plan-row-top, .vipd-plan-price-line { gap: 8px 10px; }
  .vipd-plan-save { font-size: 0.68rem; }
  .vipd-plan-price { font-size: 1.3rem; }
  .vipd-selection-output { white-space: normal; font-size: 0.84rem; }

  /* Back to top */
  .back-to-top { bottom: 20px; right: 16px; width: 40px; height: 40px; }
}

/* iPad portrait */
@media (min-width: 768px) and (max-width: 1024px) {
  .section { padding: 88px 28px; }
  .hero { padding-top: 148px; }

  .hero-grid { gap: 36px; }
  .split-section { gap: 44px; }

  .vip-grid { grid-template-columns: repeat(2, 1fr); }
  .vip-grid.vip-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .bootcamp-grid { grid-template-columns: repeat(2, 1fr); }
  .two-grid { grid-template-columns: repeat(2, 1fr); }

  .cta-grid { grid-template-columns: 1fr; gap: 24px; }
  .cta-actions { align-items: flex-start; flex-direction: row; }

  .vipd-pricing-shell { padding: 28px 24px; }
  .vipd-plan-card { min-height: 100px; }
}

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

@media (max-width: 640px) {
  .section-feature { padding: 72px 0; }
  .section-feature h2 { font-size: clamp(1.8rem, 9vw, 2.6rem); }
  .section-actions { flex-direction: column; align-items: stretch; }
  .btn-action-primary, .btn-action-secondary { justify-content: center; }
}



/* ============================================================
   GOLD CARD SYSTEM — single source of truth
   Every gold card on every page uses these exact values.
   Apply .ffx-gold to any card element to get the treatment.
   Hover is included — no separate rules needed.
   ============================================================ */

.ffx-gold {
  border-left:   2px solid rgba(201,168,76,0.85);
  border-top:    1px solid rgba(201,168,76,0.20);
  border-right:  1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  background: linear-gradient(160deg,
    rgba(201,168,76,0.10) 0%,
    rgba(45,20,114,0.14) 100%
  );
  box-shadow: -4px 0 28px rgba(201,168,76,0.40), 0 0 60px rgba(201,168,76,0.10);
  transition:
    transform         0.28s cubic-bezier(0.22,1,0.36,1),
    box-shadow        0.28s ease,
    border-left-color 0.28s ease;
}

.ffx-gold:hover {
  transform: translateY(-4px);
  border-left-color: rgba(201,168,76,1);
  box-shadow: -5px 0 40px rgba(201,168,76,0.60),
              0 12px 48px rgba(45,20,114,0.30),
              0 0 80px rgba(201,168,76,0.15);
}

/* Alias classes — all point to same treatment via shared class */
.ffx-gold-card      { }
.ffx-statement-card { padding: 16px 22px; margin-top: 8px; }

/* ============================================================
   INDEX PAGE — CUSTOM COMPONENTS
   Additions for the home page content system.
   Reusable classes marked where applicable.
   ============================================================ */

.gold { color: var(--accent-warm-text); }
.gold-line {
  display: inline-block;
  border-bottom: 1px solid rgba(201,168,76,0.50);
  padding-bottom: 2px;
}

/* ── Tagline pill ─────────────────────────────────────────────────────── */
.ffx-tagline-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,0.32);
  background: rgba(201,168,76,0.06);
  margin-bottom: 24px;
}
.ffx-tagline-pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-warm);
  box-shadow: 0 0 8px rgba(201,168,76,0.60);
  flex-shrink: 0;
}
.ffx-tagline-pill span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--accent-warm-text);
}

/* ── Two candles story block ─────────────────────────────────────────── */
.ffx-two-candles {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin: 36px 0 0;
  max-width: 760px;
}
.ffx-candle-block {
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 28px 26px;
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(45,20,114,0.12));
}
.ffx-candle-block-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 12px;
}
.ffx-candle-block-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
  line-height: 1.24;
}
.ffx-candle-block-desc {
  font-size: 1.00rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.88;
}
/* Gold card — full gold treatment matching site-wide pattern */
/* .ffx-candle-block.is-gold box model — handled by .ffx-gold class */
/* Text colour overrides specific to candle blocks */
.ffx-candle-block.is-gold .ffx-candle-block-label { color: rgba(232,210,140,0.60); }
.ffx-candle-block.is-gold .ffx-candle-block-title { color: var(--accent-warm-text); }
.ffx-candle-block.is-gold .ffx-candle-block-desc  { color: rgba(255,255,255,0.75); }
/* ── Gold statement card — reusable across pages ────────────────────── */
/* .ffx-statement-card box model — handled by .ffx-gold + padding override above */
.ffx-statement-card-title {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.72;
  color: rgba(232,210,140,0.95);
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.ffx-statement-card-body {
  font-size: 0.97rem;
  font-weight: 400;
  line-height: 1.80;
  color: rgba(255,255,255,0.68);
  margin: 0;
}

/* ── 5 models strip ──────────────────────────────────────────────────── */
.ffx-models-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 32px;
}
.ffx-model-pill {
  border: 1px solid rgba(122,92,255,0.18);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
  background: rgba(122,92,255,0.06);
  cursor: default;
  transition:
    transform     0.28s cubic-bezier(0.22,1,0.36,1),
    border-color  0.28s ease,
    background    0.28s ease,
    box-shadow    0.28s ease;
}
.ffx-model-pill:hover {
  transform: translateY(-4px);
  border-color: rgba(122,92,255,0.55);
  background: rgba(122,92,255,0.16);
  box-shadow: 0 8px 28px rgba(122,92,255,0.28), inset 0 1px 0 rgba(255,255,255,0.10);
}
.ffx-model-pill:hover .ffx-model-num  { color: rgba(196,181,253,0.90); }
.ffx-model-pill:hover .ffx-model-name { color: #ffffff; }
.ffx-model-num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: rgba(196,181,253,0.90);
  margin-bottom: 6px;
}
.ffx-model-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* ── Differentiator cards ────────────────────────────────────────────── */
.ffx-diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.ffx-diff-card {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 26px 24px;
  background: linear-gradient(160deg, rgba(255,255,255,0.03), rgba(45,20,114,0.08));
}
.ffx-diff-card.is-them {
  border-color: rgba(255,255,255,0.12);
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(45,20,114,0.10));
  opacity: 1;
}
.ffx-diff-card.is-them h3 { color: rgba(255,255,255,0.70); }
.ffx-diff-card.is-them ul li { color: rgba(255,255,255,0.55); }
.ffx-diff-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ffx-diff-card.is-them .ffx-diff-card-label { color: rgba(255,255,255,0.30); }
.ffx-diff-card.is-us   .ffx-diff-card-label { color: var(--accent-warm-text); }
/* .ffx-diff-card.is-us gold box model — handled by .ffx-gold class */
.ffx-diff-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: white;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
  line-height: 1.24;
}
.ffx-diff-card ul {
  margin: 0; padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}
.ffx-diff-card ul li {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.72;
  padding-left: 16px;
  position: relative;
  margin-bottom: 0;
}
.ffx-diff-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
}
.ffx-diff-card.is-them ul li::before { background: rgba(255,255,255,0.20); }
.ffx-diff-card.is-us   ul li::before { background: var(--accent-warm); box-shadow: 0 0 6px rgba(201,168,76,0.50); }

/* ── Timeframe adaptive section ──────────────────────────────────────── */
.ffx-tf-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-top: 28px;
}
.ffx-tf-card {
  border: 1px solid rgba(122,92,255,0.16);
  border-radius: 16px;
  padding: 18px 16px;
  background: rgba(122,92,255,0.05);
  text-align: center;
}
.ffx-tf-pair {
  font-size: 1.1rem;
  font-weight: 800;
  color: rgba(196,181,253,0.90);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.ffx-tf-desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.66;
}
  

/* ── Utility classes for index page ──────────────────────────────────── */

/* Gold treatment for hero panel benefit items */
/* .ffx-benefit-gold box model — handled by .ffx-gold class */

/* Timeframe note line */
.ffx-tf-note {
  margin-top: 20px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.58);
  text-align: center;
  letter-spacing: 0.01em;
}

/* CTA section wrapper with top spacing */
.ffx-cta-wrap {
  margin-top: 24px;
}

/* ============================================================
   FFX TESTIMONIAL CAROUSEL
   Continuous slow-slide conveyor belt — no JS dependencies.
   Cards move right-to-left at constant pace, loop seamlessly.
   Pauses on hover so the reader can finish a card.

   Structure:
   .ffx-carousel-section     — section wrapper
   .ffx-carousel-track-wrap  — overflow:hidden container with fade edges
   .ffx-carousel-track       — the moving strip (CSS animation)
   .ffx-carousel-card        — individual testimonial card
   .ffx-carousel-quote       — decorative gold quote mark
   .ffx-carousel-text        — quote body
   .ffx-carousel-attr        — anonymous attribution line
   ============================================================ */

/* ── Section wrapper ─────────────────────────────────────────────────── */
.ffx-carousel-section {
  position: relative;
  overflow: hidden;
}

/* ── Fade edges — cards emerge from and dissolve into dark ───────────── */
.ffx-carousel-track-wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,1) 12%,
    rgba(0,0,0,1) 88%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,1) 12%,
    rgba(0,0,0,1) 88%,
    transparent 100%
  );
}

/* ── Moving track ────────────────────────────────────────────────────── */
.ffx-carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: ffx-carousel-scroll 48s linear infinite;
}

/* Pause on hover — user can read the card comfortably ───────────────── */
.ffx-carousel-track:hover {
  animation-play-state: paused;
}

@keyframes ffx-carousel-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Individual card ─────────────────────────────────────────────────── */
.ffx-carousel-card {
  flex-shrink: 0;
  width: 360px;
  border-left:   2px solid rgba(201,168,76,0.75);
  border-top:    1px solid rgba(201,168,76,0.18);
  border-right:  1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  border-radius: 20px;
  background: linear-gradient(160deg,
    rgba(201,168,76,0.07) 0%,
    rgba(45,20,114,0.14) 100%
  );
  box-shadow:
    -3px 0 20px rgba(201,168,76,0.22),
    0 4px 24px rgba(0,0,0,0.28);
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.36s ease, border-left-color 0.36s ease;
}

.ffx-carousel-card:hover {
  border-left-color: rgba(201,168,76,1);
  box-shadow:
    -4px 0 32px rgba(201,168,76,0.45),
    0 8px 32px rgba(0,0,0,0.36);
}

/* ── Decorative gold quote mark ──────────────────────────────────────── */
.ffx-carousel-quote {
  font-size: 2rem;
  line-height: 1;
  color: rgba(201,168,76,0.65);
  font-family: Georgia, serif;
  margin-bottom: -4px;
  display: block;
}

/* ── Quote text ──────────────────────────────────────────────────────── */
.ffx-carousel-text {
  font-size: 1.00rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.92);
  font-style: italic;
}

/* ── Attribution ─────────────────────────────────────────────────────── */
.ffx-carousel-attr {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.65);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding-top: 12px;
  margin-top: auto;
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .ffx-carousel-card { width: 300px; padding: 22px 20px 20px; }
  .ffx-carousel-track { gap: 16px; }
  .ffx-carousel-track-wrap {
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      rgba(0,0,0,1) 6%,
      rgba(0,0,0,1) 94%,
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      rgba(0,0,0,1) 6%,
      rgba(0,0,0,1) 94%,
      transparent 100%
    );
  }
}

/* ── Testimonial grid — 2x2 on desktop, 1 col on mobile ─────────────── */
.ffx-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

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

/* ============================================================
   FFX TESTIMONIAL CAROUSEL — VIP Discord page
   Continuous slow-slide conveyor belt.
   ============================================================ */

.ffx-carousel-section { position: relative; overflow: hidden; }

.ffx-carousel-track-wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 12%, rgba(0,0,0,1) 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 12%, rgba(0,0,0,1) 88%, transparent 100%);
}

.ffx-carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: ffx-carousel-scroll 48s linear infinite;
}

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

@keyframes ffx-carousel-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ffx-carousel-card {
  flex-shrink: 0;
  width: 360px;
  border-left:   2px solid rgba(201,168,76,0.75);
  border-top:    1px solid rgba(201,168,76,0.18);
  border-right:  1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(201,168,76,0.07) 0%, rgba(45,20,114,0.14) 100%);
  box-shadow: -3px 0 20px rgba(201,168,76,0.22), 0 4px 24px rgba(0,0,0,0.28);
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.36s ease, border-left-color 0.36s ease;
}

.ffx-carousel-card:hover {
  border-left-color: rgba(201,168,76,1);
  box-shadow: -4px 0 32px rgba(201,168,76,0.45), 0 8px 32px rgba(0,0,0,0.36);
}

.ffx-carousel-quote {
  font-size: 2rem;
  line-height: 1;
  color: rgba(201,168,76,0.65);
  font-family: Georgia, serif;
  margin-bottom: -4px;
  display: block;
}

.ffx-carousel-text {
  font-size: 1.00rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.92);
  font-style: italic;
}

.ffx-carousel-attr {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.65);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding-top: 12px;
}

@media (max-width: 768px) {
  .ffx-carousel-card { width: 300px; padding: 22px 20px 20px; }
  .ffx-carousel-track { gap: 16px; }
}

/* ── Index page testimonial cards — 2x2 grid ─────────────────────────── */
.ffx-quote-card {
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 2px solid rgba(201,168,76,0.75);
  box-shadow: -3px 0 16px rgba(201,168,76,0.22);
  background: rgba(45,20,114,0.10);
  border-radius: 16px;
  padding: 22px 24px;
  transition:
    transform         0.28s cubic-bezier(0.22,1,0.36,1),
    box-shadow        0.28s ease,
    border-left-color 0.28s ease;
}

.ffx-quote-card:hover {
  transform: translateY(-3px);
  border-left-color: rgba(201,168,76,1);
  box-shadow: -4px 0 24px rgba(201,168,76,0.40), 0 8px 24px rgba(45,20,114,0.24);
}

.ffx-quote-card-text {
  font-size: 1.02rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.95);
  font-style: italic;
  font-weight: 600;
  margin: 0 0 14px;
}

.ffx-quote-card-attr {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.70);
}

.ffx-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .ffx-testimonial-grid { grid-template-columns: 1fr; }
}
/* ── FFX server badge — same style as main Discord pill ─────────────── */
.vipd-server-pill-ffx {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(122,92,255,0.32), rgba(45,20,114,0.48));
  border: 1px solid rgba(122,92,255,0.55);
  box-shadow: 0 0 24px rgba(122,92,255,0.22), 0 0 48px rgba(45,20,114,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
/* ============================================================
   PRIVACY PAGE
   ============================================================ */

.privacy-section {
  position: relative;
  padding: 120px 40px 96px;
}

.privacy-wrap {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.privacy-wrap h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: #ffffff;
  margin: 16px 0 12px;
}

.privacy-meta {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.40);
  margin-bottom: 56px;
  letter-spacing: 0.02em;
}

.privacy-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.privacy-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.privacy-block h2 {
  font-size: 1.18rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.privacy-block p {
  font-size: 0.97rem;
  line-height: 1.92;
  color: rgba(255,255,255,0.68);
  margin-bottom: 14px;
}

.privacy-block p:last-child { margin-bottom: 0; }

.privacy-block ul {
  margin: 0 0 14px 0;
  padding-left: 20px;
}

.privacy-block ul li {
  font-size: 0.97rem;
  line-height: 1.88;
  color: rgba(255,255,255,0.68);
  margin-bottom: 4px;
}

.privacy-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(167,139,250,0.30);
  background: linear-gradient(180deg, rgba(122,92,255,0.14), rgba(45,20,114,0.22));
  color: rgba(196,181,253,0.90);
  font-size: 0.90rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.24s ease, background 0.24s ease;
}

.privacy-contact:hover {
  border-color: rgba(167,139,250,0.55);
  background: linear-gradient(180deg, rgba(122,92,255,0.22), rgba(45,20,114,0.32));
}
