/* ============================================================
   SULLY'S ACADEMY — PREMIUM CSS FOUNDATION
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand */
  --blue: #38B6FF;
  --blue-bright: #5EC8FF;
  --blue-dim: rgba(56,182,255,0.55);
  --blue-glow: rgba(56,182,255,0.08);
  --blue-glow-strong: rgba(56,182,255,0.15);
  --blue-border: rgba(56,182,255,0.16);
  --blue-border-strong: rgba(56,182,255,0.38);

  /* Darks */
  --dark: #080b10;
  --dark-1: #0a0d14;
  --dark-2: #0d1018;
  --dark-3: #111520;
  --dark-4: #161b28;
  --dark-5: #1c2235;

  /* Whites */
  --white: #ffffff;
  --white-90: rgba(255,255,255,0.90);
  --white-70: rgba(255,255,255,0.70);
  --white-45: rgba(255,255,255,0.45);
  --white-20: rgba(255,255,255,0.20);
  --white-10: rgba(255,255,255,0.10);
  --white-06: rgba(255,255,255,0.06);
  --white-03: rgba(255,255,255,0.03);

  /* Status */
  --green: #22C55E;
  --green-dim: rgba(34,197,94,0.15);
  --red: #EF4444;
  --gold: #F0B429;
  --purple: #8B5CF6;

  /* Spacing */
  --section-pad: clamp(72px, 8vw, 112px) 5vw;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-slow: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: auto;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* Text selection */
::selection {
  background: rgba(56,182,255,0.25);
  color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(56,182,255,0.4);
  border-radius: 2px;
}

/* Hidden images */
img[src=""] {
  display: none !important;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 68px;
  background: rgba(8,11,16,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--white-06);
  transition: height 0.35s var(--ease-out), border-color 0.35s;
}

nav.scrolled {
  height: 56px;
  border-bottom-color: var(--blue-border);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-45);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--blue);
  transition: width 0.25s var(--ease-out);
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--blue) !important;
  color: var(--dark) !important;
  padding: 9px 22px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  letter-spacing: 0.06em !important;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s !important;
  white-space: nowrap;
}

.nav-cta:hover {
  opacity: 0.9 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(56,182,255,0.35) !important;
}

.nav-cta::after {
  display: none !important;
}

/* ============================================================
   MOBILE NAV — BURGER BUTTON
   ============================================================ */

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  flex-shrink: 0;
}

.nav-burger:hover {
  background: var(--white-06);
}

.nav-burger span {
  display: block;
  height: 1.5px;
  background: var(--white-70);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-spring), opacity 0.25s, width 0.3s;
  transform-origin: center;
}

.nav-burger span:nth-child(3) {
  width: 65%;
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-burger.open span:nth-child(3) {
  width: 100%;
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================================
   MOBILE NAV — FULL SCREEN DRAWER
   ============================================================ */

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 490;
  background: rgba(8,11,16,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  padding: 80px 5vw 40px;
}

.nav-mobile.open {
  opacity: 1;
  transform: none;
}

.nav-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 360px;
}

.nav-mobile-links li {
  width: 100%;
  border-bottom: 1px solid var(--white-06);
}

.nav-mobile-links li:first-child {
  border-top: 1px solid var(--white-06);
}

.nav-mobile-links a {
  display: block;
  width: 100%;
  padding: 20px 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--white-45);
  text-decoration: none;
  text-align: center;
  transition: color 0.2s, padding-left 0.25s var(--ease-out);
}

.nav-mobile-links a:hover {
  color: var(--white);
  padding-left: 12px;
}

.nav-mobile-cta {
  margin-top: 36px;
  width: 100%;
  max-width: 360px;
}

.nav-mobile-cta a {
  display: block;
  width: 100%;
  background: var(--blue);
  color: var(--dark);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 17px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s, box-shadow 0.2s;
}

.nav-mobile-cta a:hover {
  opacity: 0.9;
  box-shadow: 0 8px 24px rgba(56,182,255,0.35);
}

.nav-mobile-footer {
  margin-top: auto;
  font-size: 11px;
  color: var(--white-20);
  letter-spacing: 0.08em;
  text-align: center;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: var(--dark);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, opacity 0.2s;
  white-space: nowrap;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s var(--ease-out);
  transform: skewX(-15deg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(56,182,255,0.35);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover::after {
  left: 150%;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white-70);
  font-size: 14px;
  font-weight: 500;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--white-20);
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, transform 0.3s var(--ease-spring);
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

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

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.tag::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--blue);
  flex-shrink: 0;
}

.h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
}

.h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 20px;
}

.h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
}

.lead {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 300;
  color: var(--white-45);
  max-width: 540px;
  line-height: 1.8;
}

.eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ============================================================
   SECTIONS
   ============================================================ */

section {
  padding: var(--section-pad);
}

.section-header {
  margin-bottom: 64px;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-border), transparent);
  margin: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid var(--blue-border);
  background: var(--blue-glow);
  padding: 7px 16px;
  border-radius: 2px;
  margin-bottom: 28px;
  width: fit-content;
  backdrop-filter: blur(8px);
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
}

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

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 8px;
  text-shadow: 0 4px 60px rgba(0,0,0,0.6);
}

.hero-title-accent {
  display: block;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright), var(--blue));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

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

.hero-sub {
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 300;
  color: var(--white-70);
  max-width: 520px;
  margin: 28px 0 44px;
  line-height: 1.8;
}

.hero-sub strong {
  color: var(--white);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-trust {
  display: flex;
  align-items: center;
  padding-top: 36px;
  border-top: 1px solid var(--white-10);
  flex-wrap: wrap;
  gap: 0;
  row-gap: 24px;
  position: relative;
}

.hero-trust::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56,182,255,0.5), transparent);
}

.trust-item {
  flex: 1;
  min-width: 100px;
}

.trust-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: var(--blue);
  line-height: 1;
  letter-spacing: 0.02em;
}

.trust-lbl {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-45);
  margin-top: 5px;
  white-space: nowrap;
}

.trust-div {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--white-20), transparent);
  margin: 0 16px;
  flex-shrink: 0;
}

.unmute-btn {
  position: absolute;
  bottom: 80px;
  right: 5vw;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(8,11,16,0.8);
  border: 1px solid var(--white-20);
  color: var(--white-70);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  backdrop-filter: blur(12px);
}

.unmute-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ============================================================
   TICKER
   ============================================================ */

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

.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--dark-2), transparent);
}

.ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--dark-2), transparent);
}

.ticker-track {
  display: flex;
  gap: 64px;
  animation: ticker 40s linear infinite;
  width: max-content;
}

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

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

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--white-45);
  white-space: nowrap;
}

.ticker-item .sym {
  color: var(--white-70);
  font-weight: 500;
}

.up {
  color: var(--green);
}

.dn {
  color: var(--red);
}

.ticker-sep {
  color: var(--blue);
  opacity: 0.25;
  font-size: 6px;
}

/* ============================================================
   PACE SECTION
   ============================================================ */

.pace-section {
  background: var(--dark-1);
  position: relative;
  overflow: hidden;
}

.pace-bg-text {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(140px, 22vw, 280px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(56,182,255,0.04);
  letter-spacing: 0.1em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.pace-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
  margin-top: 64px;
}

.pace-card {
  padding-left: 28px;
  border-left: 1px solid rgba(56,182,255,0.18);
  transition: border-color 0.4s var(--ease-out), transform 0.35s var(--ease-spring);
  cursor: default;
}

.pace-card:hover {
  border-color: var(--blue);
  transform: translateX(6px);
}

.pace-letter {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--blue);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 10px;
  transition: opacity 0.3s;
}

.pace-card:hover .pace-letter {
  opacity: 0.7;
}

.pace-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.pace-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--white-45);
  line-height: 1.8;
}

/* ============================================================
   STATS BAND
   ============================================================ */

.stats-band {
  background: var(--blue);
  padding: 64px 5vw;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 50%);
}

.stats-band::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-cell {
  text-align: center;
  padding: 0 28px;
  border-right: 1px solid rgba(8,11,16,0.15);
}

.stat-cell:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 70px;
  color: var(--dark);
  line-height: 1;
  letter-spacing: 0.02em;
}

.stat-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(8,11,16,0.45);
  margin-top: 8px;
}

/* ============================================================
   WITHDRAWAL CARDS
   ============================================================ */

.withdrawals-section {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.withdrawals-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-border), transparent);
}

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

.wd-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(139,92,246,0.15);
  cursor: pointer;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s;
  position: relative;
}

.wd-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 0 1px rgba(139,92,246,0.3);
  opacity: 0;
  transition: opacity 0.3s;
}

.wd-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(139,92,246,0.3);
}

.wd-card:hover::after {
  opacity: 1;
}

.wd-hd {
  background: linear-gradient(135deg, #7C3AED, #8B5CF6);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wd-hd-brand {
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.wd-hd-btn {
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 3px;
  padding: 5px 12px;
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.wd-body {
  padding: 24px;
}

.wd-label {
  font-size: 9.5px;
  font-weight: 700;
  color: #8B5CF6;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.wd-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: #0f0f23;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.wd-from {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.wd-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #eeeef5;
}

.wd-date {
  font-size: 10.5px;
  color: #999;
}

.wd-view {
  font-size: 10.5px;
  color: #8B5CF6;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* PROOF COLUMN — withdrawal section left side */
.wd-proof-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.wd-total-card {
  background: var(--dark-3);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
}

.wd-total-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright), var(--blue));
}

.wd-total-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  opacity: 0.7;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wd-total-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
}

.wd-total-amount sup {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--white-45);
  margin-top: 6px;
  flex-shrink: 0;
  font-style: normal;
  vertical-align: unset;
  display: inline-block;
  margin-right: 2px;
}

.wd-total-sub {
  font-size: 11px;
  font-weight: 300;
  color: var(--white-45);
  line-height: 1.5;
}

.wd-phone-wrap {
  display: flex;
  justify-content: center;
}

.wd-verified-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(34,197,94,0.05);
  border: 1px solid rgba(34,197,94,0.18);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  width: 100%;
}

.wd-verified-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.15);
}

.wd-verified-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  white-space: nowrap;
  flex-shrink: 0;
}

.wd-verified-sub {
  font-size: 11px;
  font-weight: 300;
  color: var(--white-45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

@media (max-width: 480px) {
  .wd-verified-sub { display: none; }
  .wd-total-amount { font-size: 52px; }
}

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

.lightbox-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
}

.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 28px;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.lightbox-close:hover {
  color: #fff;
}

#lightbox-img {
  max-height: 85vh;
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
  margin: 0 auto;
}

/* ============================================================
   MEMBERSHIP — WHAT'S INSIDE
   ============================================================ */

.what-section {
  background: var(--dark);
}

.membership-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}

.membership-header-img {
  border-radius: 12px;
  overflow: hidden;
}

.membership-header-img img {
  width: 100%;
  height: auto;
  display: block;
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--blue-border);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 64px;
}

.what-cell {
  background: var(--dark);
  padding: 40px 36px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.what-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(56,182,255,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.what-cell:hover {
  background: var(--dark-3);
}

.what-cell:hover::before {
  opacity: 1;
}

.what-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-glow);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.what-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.what-text {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--white-45);
  line-height: 1.8;
}

/* ============================================================
   PRICING — NEW DESIGN
   ============================================================ */

.pricing-section {
  background: var(--dark-1);
  padding-top: clamp(72px, 8vw, 112px);
  padding-bottom: clamp(72px, 8vw, 112px);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56,182,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,182,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.pricing-wrap {
  width: min(1100px, 100% - 40px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* CARD BASE */
.pc {
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  position: relative;
}

.pc:hover {
  transform: translateY(-4px);
}

/* STANDARD CARD */
.pc-standard {
  background: var(--dark-3);
  border: 1px solid var(--white-10);
}

.pc-standard:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  border-color: rgba(56,182,255,0.2);
}

/* FEATURED CARD */
.pc-featured {
  background: linear-gradient(160deg, #0f1422 0%, var(--dark-3) 100%);
  border: 1px solid var(--blue);
  box-shadow: 0 0 0 1px rgba(56,182,255,0.2), 0 24px 64px rgba(56,182,255,0.12);
}

.pc-featured:hover {
  box-shadow: 0 0 0 1px rgba(56,182,255,0.4), 0 32px 80px rgba(56,182,255,0.2);
}

.pc-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

/* BUNDLE CARD */
.pc-bundle {
  background: var(--dark-3);
  border: 1px solid rgba(240,180,41,0.2);
}

.pc-bundle:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  border-color: rgba(240,180,41,0.4);
}

/* HEADER STRIPS */
.pc-strip {
  padding: 10px 0;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pc-strip-blue {
  background: var(--blue);
  color: var(--dark);
}

.pc-strip-subtle {
  background: rgba(56,182,255,0.08);
  color: var(--blue);
  border-bottom: 1px solid rgba(56,182,255,0.12);
}

.pc-strip-gold {
  background: rgba(240,180,41,0.1);
  color: var(--gold);
  border-bottom: 1px solid rgba(240,180,41,0.15);
}

/* BODY */
.pc-body {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pc-plan {
  font-family: 'DM Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.pc-plan-gold {
  color: var(--gold);
}

.pc-price {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  margin-bottom: 4px;
}

.pc-sup {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--white-45);
  margin-top: 8px;
  margin-right: 2px;
}

.pc-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--white);
  line-height: 1;
}

.pc-period {
  font-size: 12px;
  color: var(--white-45);
  line-height: 1.5;
  margin-bottom: 20px;
}

.pc-divider {
  height: 1px;
  background: var(--white-10);
  margin: 0 0 20px;
}

.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 24px;
}

.pc-cta-wrap {
  margin-top: auto;
}

.pc-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: var(--white-70);
  font-weight: 300;
  line-height: 1.45;
}

.pc-features li::before {
  content: '✓';
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
  font-size: 11px;
  margin-top: 1px;
}

.pc-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}

.pc-btn-primary {
  background: var(--blue);
  color: var(--dark);
}

.pc-btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(56,182,255,0.35);
}

.pc-btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue-border-strong);
}

.pc-btn-outline:hover {
  background: var(--blue-glow);
}

.pc-btn-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(240,180,41,0.35);
}

.pc-btn-gold:hover {
  background: rgba(240,180,41,0.06);
}

.pc-note {
  font-size: 11px;
  color: var(--white-45);
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

.pc-social {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--green);
  margin-top: 10px;
  justify-content: center;
}

.pc-social::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}

.pricing-guarantee {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: var(--white-45);
}

.pricing-guarantee strong {
  color: var(--white-70);
}

/* Legacy price-cta — used in program section card */
.price-cta {
  display: block;
  width: 100%;
  background: var(--blue);
  color: var(--dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 15px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.price-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(56,182,255,0.3);
}

.price-cta.outline {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue-border-strong);
}

.price-cta.outline:hover {
  background: var(--blue-glow);
  box-shadow: none;
}

.price-note {
  font-size: 11.5px;
  color: var(--white-45);
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pc-featured {
    margin-bottom: 0;
    padding-bottom: 0;
    order: -1;
  }
}

@media (max-width: 640px) {
  .pc-big { font-size: 52px; }
  .pc-body { padding: 22px 18px 18px; }
}

/* ============================================================
   PROGRAM
   ============================================================ */

.program-section {
  background: var(--dark-2);
}

.program-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 64px;
  align-items: start;
}

.module-list {
  display: flex;
  flex-direction: column;
}

.module-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--white-06);
  transition: background 0.2s, padding 0.2s;
}

.module-item:first-child {
  border-top: 1px solid var(--white-06);
}

.module-item:hover {
  padding-left: 8px;
}

.module-num {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--blue);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  margin-top: 3px;
  width: 24px;
  opacity: 0.7;
}

.module-name {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.module-sub {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--white-45);
  margin-top: 4px;
  line-height: 1.55;
}

.program-side {
  position: sticky;
  top: 88px;
}

.program-card {
  background: var(--dark-4);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-xl);
  padding: 36px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright), var(--blue));
}

.program-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.program-card-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--white-45);
  margin-bottom: 28px;
  line-height: 1.65;
}

.program-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.prog-stat {
  background: var(--dark-3);
  border: 1px solid var(--white-06);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}

.prog-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  color: var(--blue);
  line-height: 1;
}

.prog-stat-lbl {
  font-size: 10px;
  font-weight: 500;
  color: var(--white-45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============================================================
   STORIES
   ============================================================ */

.stories-section {
  background: var(--dark-1);
}

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

.story-card {
  background: var(--dark-3);
  border: 1px solid var(--white-06);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s, transform 0.35s var(--ease-spring), box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.story-card:hover {
  border-color: var(--blue-border);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.story-card:hover::before {
  opacity: 1;
}

.story-result {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--blue);
  line-height: 1;
  letter-spacing: 0.02em;
}

.story-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.story-text {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--white-45);
  line-height: 1.8;
  flex: 1;
}

.story-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: gap 0.2s, opacity 0.2s;
}

.story-link:hover {
  gap: 10px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials-section {
  background: var(--dark);
}

.testi-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 24px;
}

.testi-tp-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark-3);
  border: 1px solid rgba(0,182,122,0.25);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  text-decoration: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.testi-tp-badge:hover {
  border-color: rgba(0,182,122,0.5);
  box-shadow: 0 4px 20px rgba(0,182,122,0.1);
}

.tp-stars {
  display: flex;
  gap: 2px;
}

.tp-star {
  background: #00B67A;
  color: #fff;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
}

.tp-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tp-name {
  font-size: 10px;
  font-weight: 800;
  color: #00B67A;
  letter-spacing: 0.1em;
}

.tp-rating {
  font-size: 11px;
  color: var(--white-45);
}

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

.testi-card {
  background: var(--dark-3);
  border: 1px solid var(--white-06);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s var(--ease-spring), box-shadow 0.3s;
  position: relative;
}

.testi-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 72px;
  color: var(--blue);
  opacity: 0.06;
  position: absolute;
  top: 8px;
  right: 16px;
  line-height: 1;
}

.testi-card:hover {
  border-color: var(--blue-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
}

.testi-stars-sm {
  font-size: 11px;
  color: var(--blue);
  margin-bottom: 12px;
  letter-spacing: 3px;
}

.testi-text {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 18px;
}

.testi-author {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--blue);
  opacity: 0.7;
}

.testi-more {
  text-align: center;
  margin-top: 40px;
}

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

.faq-section {
  background: var(--dark-2);
}

.faq-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-sticky {
  position: sticky;
  top: 88px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid var(--white-06);
  cursor: pointer;
  transition: padding 0.3s var(--ease-out);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--white-06);
}

.faq-item.open {
  border-left: 2px solid var(--blue);
  padding-left: 16px;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--white-70);
  gap: 20px;
  user-select: none;
  line-height: 1.4;
  transition: color 0.2s;
}

.faq-item.open .faq-q,
.faq-item:hover .faq-q {
  color: var(--white);
}

.faq-plus {
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
  transition: transform 0.35s var(--ease-spring);
  flex-shrink: 0;
  opacity: 0.6;
}

.faq-item.open .faq-plus {
  transform: rotate(45deg);
  opacity: 1;
}

.faq-a {
  font-size: 14px;
  font-weight: 300;
  color: var(--white-45);
  line-height: 1.85;
  padding-bottom: 22px;
  display: none;
  max-width: 520px;
}

.faq-item.open .faq-a {
  display: block;
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
  background: var(--dark-3);
  border-top: 1px solid var(--blue-border);
  border-bottom: 1px solid var(--blue-border);
  padding: var(--section-pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(56,182,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 40% 60% at 30% 80%, rgba(56,182,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}

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

footer {
  background: var(--dark-1);
  padding: 64px 5vw 36px;
  border-top: 1px solid var(--white-06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}

.footer-brand-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--white-45);
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-socials a {
  font-size: 12.5px;
  color: var(--white-45);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.footer-socials a:hover {
  color: var(--blue);
}

.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-45);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13.5px;
  color: var(--white-45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--white-06);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  font-size: 11px;
  color: rgba(255,255,255,0.18);
  line-height: 1.7;
  max-width: 480px;
}

.disclaimer {
  background: var(--white-03);
  border: 1px solid var(--white-06);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin-top: 36px;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  line-height: 1.8;
}

/* ============================================================
   ANIMATIONS — SCROLL REVEAL
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.reveal-fade.visible {
  opacity: 1;
}

.reveal-up {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-up.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.06s; }
.stagger > *:nth-child(3) { transition-delay: 0.12s; }
.stagger > *:nth-child(4) { transition-delay: 0.18s; }
.stagger > *:nth-child(5) { transition-delay: 0.24s; }
.stagger > *:nth-child(6) { transition-delay: 0.30s; }

/* ============================================================
   RESPONSIVE — 1024px and below
   ============================================================ */

@media (max-width: 1024px) {

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid .price-card:last-child {
    grid-column: auto;
  }

  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .program-layout {
    gap: 40px;
  }

  .faq-layout {
    grid-template-columns: 260px 1fr;
    gap: 48px;
  }

}

/* ============================================================
   RESPONSIVE — 960px and below
   ============================================================ */

@media (max-width: 960px) {

  :root {
    --section-pad: clamp(56px, 7vw, 80px) 5vw;
  }

  nav {
    padding: 0 5vw;
    height: 60px;
  }

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

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

  .membership-header-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .membership-header-img {
    order: -1;
  }

  .hero {
    min-height: 100vh;
    padding: 80px 5vw 52px;
  }

  .hero-video-wrap iframe {
    min-width: 100vw;
    min-height: 100vh;
  }

  .hero-content {
    max-width: 100%;
  }

  .pace-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .stat-cell {
    border-right: none;
    padding: 0 16px;
  }

  .stat-num {
    font-size: 56px;
  }

  .what-grid {
    grid-template-columns: 1fr;
  }

  .wd-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .wd-amount {
    font-size: 36px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-grid .price-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  .program-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .program-side {
    position: static;
  }

  .program-card {
    margin-bottom: 0;
  }

  .stories-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testi-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testi-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-sticky {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero-trust {
    gap: 0;
    row-gap: 16px;
  }

  .trust-div {
    margin: 0 14px;
  }

  .trust-val {
    font-size: 28px;
  }

  section {
    padding: var(--section-pad);
  }

}

/* ============================================================
   RESPONSIVE — 768px and below (mobile video fallback)
   ============================================================ */

@media (max-width: 768px) {

  .hero-video-wrap {
    display: none;
  }

  .hero-mobile-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #0a0d12 0%, #0d1520 50%, #080b10 100%);
  }

  .hero-mobile-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 30% 60%, rgba(56,182,255,0.07) 0%, transparent 70%);
  }

  .unmute-btn {
    display: none;
  }

}

/* ============================================================
   RESPONSIVE — 640px and below
   ============================================================ */

@media (max-width: 640px) {

  :root {
    --section-pad: 52px 4.5vw;
  }

  .price-period {
    min-height: auto;
  }

  .price-features li {
    text-align: left;
  }

  .hero {
    padding: 76px 4.5vw 44px;
  }

  .hero-title {
    font-size: clamp(40px, 11vw, 68px);
  }

  .hero-sub {
    font-size: 15px;
    margin: 18px 0 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 12px;
    padding-top: 24px;
    border-top: 1px solid var(--white-10);
  }

  .trust-div {
    display: none;
  }

  .trust-item {
    min-width: auto;
    flex: none;
  }

  .h2 {
    font-size: clamp(34px, 8.5vw, 52px);
  }

  .lead {
    font-size: 15px;
  }

  .stat-num {
    font-size: 48px;
  }

  .stat-lbl {
    font-size: 10px;
  }

  .stats-band {
    padding: 44px 4.5vw;
  }

  .pace-letter {
    font-size: 44px;
  }

  .pace-card {
    padding-left: 18px;
  }

  .what-cell {
    padding: 28px 24px;
  }

  .what-icon {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }

  .wd-card {
    max-width: 440px;
    margin: 0 auto;
  }

  .wd-amount {
    font-size: 32px;
  }

  .price-big {
    font-size: 58px;
  }

  .price-body {
    padding: 24px 20px 20px;
  }

  .module-item {
    gap: 12px;
    padding: 14px 0;
  }

  .story-card {
    padding: 26px;
  }

  .story-result {
    font-size: 34px;
  }

  .testi-card {
    padding: 22px;
  }

  .faq-q {
    font-size: 14px;
    padding: 18px 0;
  }

  .faq-a {
    font-size: 13px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cta-section {
    padding: 64px 4.5vw;
  }

  .tag {
    font-size: 10px;
  }

  .btn-primary {
    font-size: 14px;
    padding: 14px 24px;
  }

  .btn-ghost {
    font-size: 13px;
    padding: 13px 22px;
  }

  .section-header {
    margin-bottom: 44px;
  }

  .program-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .prog-stat {
    padding: 10px 12px;
  }

  .prog-stat-num {
    font-size: 26px;
  }

  .testi-more {
    margin-top: 28px;
  }

  .testi-tp-badge {
    padding: 12px 16px;
    gap: 10px;
  }

}

/* ============================================================
   RESPONSIVE — 380px and below
   ============================================================ */

@media (max-width: 380px) {

  .hero-title {
    font-size: clamp(34px, 10vw, 52px);
  }

  .trust-val {
    font-size: 26px;
  }

  .stat-num {
    font-size: 44px;
  }

  .h2 {
    font-size: clamp(30px, 9vw, 44px);
  }

  .price-big {
    font-size: 52px;
  }

}

/* ============================================================
   HERO — PAIN COPY / PROOF STRIP / PATHS
   ============================================================ */

.hero-pain { font-size: clamp(14px, 1.4vw, 17px); font-weight: 300; color: var(--white-45); line-height: 1.8; max-width: 540px; margin-bottom: 28px; padding-left: 20px; border-left: 2px solid rgba(56,182,255,0.25); }
.hero-pain strong { color: rgba(255,255,255,0.8); font-weight: 500; }
.hero-proof-strip { display: flex; align-items: center; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.hero-proof-item { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--white-45); }
.hero-proof-item::before { content: '✓'; color: var(--green); font-size: 11px; font-weight: 700; }
.hero-paths { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-path-col { display: flex; flex-direction: column; gap: 8px; }
.hero-path-label { font-family: 'DM Mono', monospace; font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white-45); }
.hero-path-or { font-size: 11px; color: var(--white-20); letter-spacing: 0.08em; text-transform: uppercase; padding: 0 4px; margin-top: 20px; }
@media (max-width: 640px) { .hero-paths { flex-direction: column; align-items: flex-start; width: 100%; } .hero-path-col { width: 100%; } .hero-path-col .btn-primary, .hero-path-col .btn-ghost { width: 100%; justify-content: center; } .hero-path-or { margin-top: 0; } }

/* ============================================================
   HERO — LAYOUT + DISCORD MOCKUP
   ============================================================ */

.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 100px 5vw 80px; overflow: hidden; background: var(--dark); isolation: isolate; }

/* Hero content is always in viewport — never rely on scroll reveal */
.hero .reveal,
.hero .reveal-fade,
.hero .reveal-up,
.hero .reveal-left,
.hero .reveal-scale {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.hero-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; width: 100%; max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; }
.hero-left { max-width: 580px; min-width: 0; }
.hero-two-col .hero-title { font-size: clamp(40px, 3.8vw, 76px); }
.hero-two-col .hero-sub { font-size: clamp(14px, 1.1vw, 17px); }
.hero-two-col .hero-pain { font-size: clamp(13px, 1vw, 16px); max-width: 480px; }
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; height: 520px; min-width: 0; overflow: visible; }
.sa-laptop { position: relative; width: min(100%, 380px); max-width: 380px; }
.hero-static-bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse 70% 60% at 5% 70%, rgba(56,182,255,0.07) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 90% 15%, rgba(56,182,255,0.04) 0%, transparent 60%), linear-gradient(160deg, #0a0d14 0%, #080b10 50%, #0d1018 100%); }
.hero-static-bg::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(56,182,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(56,182,255,0.025) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(ellipse 80% 80% at 10% 60%, black 0%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse 80% 80% at 10% 60%, black 0%, transparent 70%); }
@media (min-width: 1440px) {
  .hero { padding-left: max(5vw, calc(50% - 700px)); padding-right: max(5vw, calc(50% - 700px)); }
}
.sa-laptop-screen { background: #0d1018; border: 2px solid #1c2235; border-radius: 10px 10px 0 0; padding: 12px 12px 0; position: relative; overflow: hidden; box-shadow: 0 0 0 1px rgba(56,182,255,0.08), 0 24px 64px rgba(0,0,0,0.6); }
.sa-laptop-screen::before { content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 6px; height: 6px; background: #1c2235; border-radius: 50%; }
.sa-laptop-body { height: 14px; background: linear-gradient(to bottom, #1a1f2e, #141824); border-radius: 0 0 8px 8px; border: 1px solid #1c2235; border-top: none; position: relative; }
.sa-laptop-body::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: #1c2235; border-radius: 0 0 4px 4px; }
.sa-discord { display: grid; grid-template-columns: 48px 1fr; border-radius: 6px 6px 0 0; overflow: hidden; font-family: 'DM Sans', sans-serif; }
.sa-discord-sidebar { background: #111520; display: flex; flex-direction: column; align-items: center; padding: 10px 0; gap: 6px; }
.sa-server-icon { width: 32px; height: 32px; background: var(--blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 10px; color: #080b10; flex-shrink: 0; }
.sa-sidebar-sep { width: 20px; height: 1px; background: rgba(255,255,255,0.06); }
.sa-sidebar-icon { width: 32px; height: 32px; background: rgba(255,255,255,0.04); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.sa-discord-main { display: grid; grid-template-columns: 120px 1fr; overflow: hidden; }
.sa-channels { background: #0d1018; display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,0.03); }
.sa-channels-header { padding: 9px 10px; border-bottom: 1px solid rgba(255,255,255,0.04); display: flex; align-items: center; justify-content: space-between; }
.sa-server-name { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.85); }
.sa-live-pill { font-size: 7px; font-weight: 700; color: #22C55E; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2); border-radius: 8px; padding: 2px 6px; letter-spacing: 0.06em; }
.sa-channel-group { padding: 7px 8px 3px; font-size: 8.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.22); }
.sa-channel { display: flex; align-items: center; gap: 5px; padding: 3px 8px; font-size: 10px; color: rgba(255,255,255,0.35); margin: 1px 4px; border-radius: 3px; }
.sa-channel.active { background: rgba(56,182,255,0.08); color: rgba(255,255,255,0.85); }
.sa-channel-hash { color: rgba(255,255,255,0.18); font-size: 11px; flex-shrink: 0; }
.sa-channel.active .sa-channel-hash { color: var(--blue); opacity: 0.6; }
.sa-notif { margin-left: auto; background: var(--blue); color: #080b10; font-size: 7.5px; font-weight: 700; padding: 1px 5px; border-radius: 8px; flex-shrink: 0; }
.sa-chat { background: #080b10; display: flex; flex-direction: column; overflow: hidden; }
.sa-chat-header { padding: 8px 10px; border-bottom: 1px solid rgba(255,255,255,0.04); display: flex; align-items: center; gap: 5px; }
.sa-chat-hash { font-size: 12px; color: var(--blue); opacity: 0.6; }
.sa-chat-name { font-size: 10.5px; font-weight: 600; color: rgba(255,255,255,0.85); }
.sa-messages { flex: 1; padding: 8px 10px; display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.sa-msg { display: flex; gap: 7px; align-items: flex-start; }
.sa-avatar { width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 8.5px; font-weight: 700; color: #080b10; }
.sa-msg-body { flex: 1; min-width: 0; }
.sa-msg-name { font-size: 9px; font-weight: 600; margin-bottom: 2px; }
.sa-msg-name.sully { color: var(--blue); }
.sa-msg-name.member { color: rgba(255,255,255,0.55); }
.sa-msg-text { font-size: 10px; color: rgba(255,255,255,0.5); line-height: 1.5; }
.sa-trade-card { background: rgba(56,182,255,0.06); border: 1px solid rgba(56,182,255,0.15); border-radius: 5px; padding: 7px 9px; margin-top: 4px; }
.sa-trade-pair { font-family: 'DM Mono', monospace; font-size: 9px; font-weight: 600; color: var(--blue); margin-bottom: 4px; letter-spacing: 0.05em; }
.sa-trade-details { display: flex; gap: 10px; }
.sa-trade-detail { display: flex; flex-direction: column; gap: 1px; }
.sa-trade-lbl { font-size: 7.5px; color: rgba(255,255,255,0.28); text-transform: uppercase; letter-spacing: 0.08em; }
.sa-trade-val { font-family: 'DM Mono', monospace; font-size: 9.5px; color: rgba(255,255,255,0.75); }
.sa-trade-val.green { color: var(--green); }
.sa-trade-val.red { color: var(--red); }
.sa-result-badge { display: inline-flex; align-items: center; gap: 5px; background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2); border-radius: 4px; padding: 4px 8px; margin-top: 4px; font-family: 'DM Mono', monospace; font-size: 9px; color: var(--green); font-weight: 600; }
.sa-live-badge { position: absolute; top: -18px; right: -18px; background: #111520; border: 1px solid rgba(34,197,94,0.3); border-radius: 20px; padding: 6px 14px; display: flex; align-items: center; gap: 7px; font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.7); letter-spacing: 0.04em; box-shadow: 0 4px 16px rgba(0,0,0,0.4); white-space: nowrap; }
.sa-live-dot { width: 7px; height: 7px; background: #22C55E; border-radius: 50%; animation: blink 2s ease-in-out infinite; flex-shrink: 0; }
.sa-float-stat { position: absolute; background: #111520; border: 1px solid var(--blue-border); border-radius: 10px; padding: 12px 16px; white-space: nowrap; box-shadow: 0 8px 32px rgba(0,0,0,0.5); }
.sa-float-stat-label { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 4px; }
.sa-float-stat-value { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--blue); line-height: 1; }
.sa-float-stat-sub { font-size: 10px; color: rgba(255,255,255,0.3); margin-top: 2px; }
.sa-phone { background: #111520; border: 2px solid #1c2235; border-radius: 28px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(56,182,255,0.06); position: relative; width: 220px; flex-shrink: 0; }
.sa-phone::before { content: ''; position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 50px; height: 5px; background: #1c2235; border-radius: 3px; z-index: 2; }
.sa-phone-screen { background: #080b10; padding: 28px 12px 12px; min-height: 360px; display: flex; flex-direction: column; }
.sa-phone-header { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.sa-phone-channel-name { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.8); }
.membership-mockup-wrap { position: relative; display: flex; align-items: center; justify-content: center; height: 420px; }

/* WITHDRAWALS TWO-COL */
.wd-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 64px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.wd-two-col-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wd-two-col-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card.bundle {
  background: var(--dark-3);
}

/* MOBILE — hide desktop two-col, show compact strip */
.wd-mobile-strip { display: none; }

@media (max-width: 960px) {
  .wd-two-col { display: none !important; }
  .wd-mobile-strip {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
  }
  .wd-mobile-stat {
    background: var(--dark-3);
    border: 1px solid var(--blue-border);
    border-radius: var(--radius-xl);
    padding: 20px 24px;
    position: relative;
    overflow: hidden;
  }
  .wd-mobile-stat::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), transparent);
  }
  .wd-mobile-stat-label {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue);
    opacity: 0.7;
    margin-bottom: 8px;
  }
  .wd-mobile-stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
  }
  .wd-mobile-stat-sub {
    font-size: 11px;
    font-weight: 300;
    color: var(--white-45);
    line-height: 1.5;
  }
  .wd-mobile-verified {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(34,197,94,0.05);
    border: 1px solid rgba(34,197,94,0.18);
    border-radius: var(--radius-lg);
    padding: 14px 20px;
  }
  .wd-mobile-verified-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.15);
  }
  .wd-mobile-verified-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
  }
}

/* HERO + WITHDRAWAL responsive collapse */
@media (max-width: 1024px) {
  .hero-two-col { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 400px; order: -1; }
  .sa-laptop { max-width: 380px; }
  .wd-two-col { grid-template-columns: 1fr; gap: 40px; }
  .wd-two-col-left { order: 1; }
  .membership-mockup-wrap { height: 360px; }
}
@media (max-width: 768px) {
  .hero-visual { display: none; }
  .hero { justify-content: flex-end; padding: 80px 5vw 52px; }
  .hero-two-col { grid-template-columns: 1fr; }
  .membership-header-grid { grid-template-columns: 1fr; gap: 32px; }
  .membership-mockup-wrap { display: none; }
  .wd-two-col-left { display: none; }
  .wd-two-col { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   LEGAL PAGES — placeholder layout
---------------------------------------------------------- */
.legal-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 6vw 100px;
}
.legal-wrap {
  max-width: 640px;
  width: 100%;
}
.legal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 7vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
  margin: 18px 0 24px;
}
.legal-lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 18px;
}
.legal-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--white-45);
  margin-bottom: 36px;
}
.legal-back {
  display: inline-flex;
}
