@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400;1,500&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ═══════════════════════════════════════
   DESIGN TOKENS — Light Mode (default)
   Ryan Logistics Brand + Premium Engine
   ═══════════════════════════════════════ */
:root {
  --bg: #FFFFFF;
  --bg-white: #FFFFFF;
  --bg-subtle: #F5F5F5;
  --bg-muted: #EBEBEB;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --accent: #002684;
  --accent-light: rgba(0,38,132,0.06);
  --accent-dark: #001A5E;
  --green: #17CE6A;
  --green-light: rgba(23,206,106,0.08);
  --sky: #46C6FF;
  --sky-light: rgba(70,198,255,0.08);
  --purple: #8958FE;
  --purple-light: rgba(137,88,254,0.08);
  --orange: #F59E0B;
  --orange-light: #FEF3C7;
  --border: #E2E8F0;
  --border-light: #F1F5F9;

  --nav-bg: rgba(255,255,255,0.92);
  --card-bg: var(--bg-white);
  --dark-card-bg-start: #0B0E1A;
  --dark-card-bg-end: #151929;
  --dark-card-radial-1: rgba(0,38,132,0.2);
  --dark-card-radial-2: rgba(23,206,106,0.12);

  --section-alt-bg: linear-gradient(180deg, #F5F5F5 0%, #FFFFFF 100%);
  --footer-bg: #FFFFFF;
  --divider-gradient: rgba(0,0,0,0.06);

  --hero-meta-bg: var(--bg-subtle);

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.1);

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

  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;

  --theme-transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* ═══════════════════════════════════════
   DARK MODE TOKENS
   ═══════════════════════════════════════ */
[data-theme="dark"] {
  --bg: #0B0E1A;
  --bg-white: #151929;
  --bg-subtle: #1A1F33;
  --bg-muted: #232842;
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --accent: #3B6AE8;
  --accent-light: rgba(59,106,232,0.12);
  --accent-dark: #5B8AFF;
  --green: #17CE6A;
  --green-light: rgba(23,206,106,0.12);
  --sky: #46C6FF;
  --sky-light: rgba(70,198,255,0.12);
  --purple: #8958FE;
  --purple-light: rgba(137,88,254,0.12);
  --orange: #F59E0B;
  --orange-light: rgba(245,158,11,0.12);
  --border: #1E2A4A;
  --border-light: #1A1F33;

  --nav-bg: rgba(11,14,26,0.85);
  --card-bg: #151929;
  --dark-card-bg-start: #080A14;
  --dark-card-bg-end: #101425;
  --dark-card-radial-1: rgba(59,106,232,0.25);
  --dark-card-radial-2: rgba(23,206,106,0.18);

  --section-alt-bg: linear-gradient(180deg, #0E1224 0%, #0B0E1A 100%);
  --footer-bg: linear-gradient(180deg, #0B0E1A 0%, #080A14 100%);
  --divider-gradient: linear-gradient(90deg, transparent 0%, var(--accent) 20%, var(--green) 50%, var(--accent) 80%, transparent 100%);

  --hero-meta-bg: #151929;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.3);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.4);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.5);
}

/* ═══════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  background: var(--accent);
  color: #FFFFFF;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden;
  transition: var(--theme-transition);
  padding-bottom: 64px; /* space for sticky CTA bar */
}

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

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

/* ═══════════════════════════════════════
   AB TEST VARIANT VISIBILITY
   ═══════════════════════════════════════ */
/* Default: hide all variant-specific blocks */
.variant-a-only,
.variant-b-only,
.variant-c-only,
.variant-d-only {
  display: none !important;
}

/* Show only the active variant's blocks */
body.variant-a .variant-a-only { display: block !important; }
body.variant-b .variant-b-only { display: block !important; }
body.variant-c .variant-c-only { display: block !important; }
body.variant-d .variant-d-only { display: block !important; }

/* For sections that are variant-specific, override section display */
body.variant-b section.variant-b-only { display: block !important; }

/* ═══════════════════════════════════════
   CONTAINER
   ═══════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 68px;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  transition: box-shadow 0.3s ease, background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--border-light);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pe-logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  transition: color 0.4s ease;
}

.pe-logo-text strong {
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .pe-logo-text strong {
  background: linear-gradient(135deg, #3B6AE8, #17CE6A);
  -webkit-background-clip: text;
  background-clip: text;
}

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

/* Theme Toggle Button */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-secondary);
  padding: 0;
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-light);
}

.theme-icon {
  width: 18px;
  height: 18px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sun-icon { display: none; }
.moon-icon { display: block; }

[data-theme="dark"] .sun-icon { display: block; }
[data-theme="dark"] .moon-icon { display: none; }

/* ═══════════════════════════════════════
   SECTION PATTERNS
   ═══════════════════════════════════════ */
.section {
  padding: 80px 0;
  transition: background 0.4s ease;
}

.section-alt {
  background: var(--section-alt-bg);
}

.section-number {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 12px;
  display: block;
  line-height: 1;
  transition: color 0.4s ease;
}

/* When inside an eyebrow flex row, reset block behavior */
.value-header-eyebrow .section-number {
  display: inline;
  margin-bottom: 0;
  line-height: 1;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 16px;
  transition: color 0.4s ease;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
  transition: color 0.4s ease;
}

/* Section Divider */
.section-divider {
  height: 1px;
  background: rgba(0,0,0,0.06);
  opacity: 1;
  max-width: 80%;
  margin: 0 auto;
}

[data-theme="dark"] .section-divider {
  background: rgba(255,255,255,0.08);
  opacity: 1;
}

/* Gradient text utility */
.gradient-text {
  background: linear-gradient(135deg, #002684, #17CE6A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .gradient-text {
  background: linear-gradient(135deg, #3B6AE8, #17CE6A);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Card materialize — scale + blur clear */
.card.reveal,
.testimonial-card.reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  filter: blur(4px);
}

.card.reveal.visible,
.testimonial-card.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

/* Hero headline word styling */
.hero-headline .word {
  display: inline-block;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--sky));
  z-index: 1001;
  width: 0%;
  transition: none;
  pointer-events: none;
}

.pulse-dot-green {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  vertical-align: middle;
  margin-right: 2px;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 24px 48px;
  position: relative;
  overflow: hidden;
  background: #0B0E1A;
}

/* Hero background image layer */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('./assets/hero-trading.jpg') center center / cover no-repeat;
  opacity: 0.18;
  z-index: 0;
}

/* Dark vignette overlay for text readability */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 45%, rgba(11,14,26,0.85) 0%, transparent 100%),
    linear-gradient(to top, rgba(11,14,26,1) 0%, rgba(11,14,26,0.6) 20%, transparent 50%);
  z-index: 0;
}

/* Hero mesh gradient overlay — animated breathing */
@property --mesh-x1 { syntax: '<percentage>'; initial-value: 20%; inherits: false; }
@property --mesh-y1 { syntax: '<percentage>'; initial-value: 30%; inherits: false; }
@property --mesh-x2 { syntax: '<percentage>'; initial-value: 80%; inherits: false; }
@property --mesh-y2 { syntax: '<percentage>'; initial-value: 70%; inherits: false; }
@property --mesh-x3 { syntax: '<percentage>'; initial-value: 50%; inherits: false; }

.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at var(--mesh-x1) var(--mesh-y1), rgba(59,106,232,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at var(--mesh-x2) var(--mesh-y2), rgba(23,206,106,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at var(--mesh-x3) 20%, rgba(137,88,254,0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  animation: meshBreathe 12s ease-in-out infinite alternate;
}

@keyframes meshBreathe {
  0% {
    --mesh-x1: 20%; --mesh-y1: 30%;
    --mesh-x2: 80%; --mesh-y2: 70%;
    --mesh-x3: 50%;
  }
  33% {
    --mesh-x1: 35%; --mesh-y1: 20%;
    --mesh-x2: 65%; --mesh-y2: 80%;
    --mesh-x3: 40%;
  }
  66% {
    --mesh-x1: 15%; --mesh-y1: 45%;
    --mesh-x2: 75%; --mesh-y2: 55%;
    --mesh-x3: 60%;
  }
  100% {
    --mesh-x1: 30%; --mesh-y1: 25%;
    --mesh-x2: 70%; --mesh-y2: 75%;
    --mesh-x3: 45%;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-name {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 12px;
}

/* Brand name — smaller, above headline */
.hero-brand-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-brand-name .gradient-text {
  -webkit-text-fill-color: unset;
  background: none;
  color: rgba(255,255,255,0.6);
}

/* Main headline — the value prop */
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero .gradient-text {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #FFFFFF;
  background-clip: unset;
  color: #FFFFFF;
}

.hero-tagline,
.hero-headline + .hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.85);
}

.hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

/* Hero email form (Variant A) */
.hero-email-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  align-items: center;
}

.hero-email-input {
  flex: 1;
  padding: 15px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  color: #FFFFFF;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.hero-email-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.hero-email-input:focus {
  border-color: var(--green);
  background: rgba(255,255,255,0.1);
}

.hero-form-hint {
  margin-top: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.hero-form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 20px;
  padding: 32px 28px;
  background: rgba(23,206,106,0.08);
  border: 1px solid rgba(23,206,106,0.2);
  border-radius: var(--radius-xl);
  color: #17CE6A;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.success-confetti {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.success-check-anim {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.check-circle {
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  animation: drawCircle 0.6s 0.1s cubic-bezier(0.16,1,0.3,1) forwards;
}

.check-mark {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: drawCheck 0.4s 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
}

.success-headline {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  opacity: 0;
  animation: successFadeUp 0.5s 0.6s cubic-bezier(0.16,1,0.3,1) forwards;
  position: relative;
  z-index: 1;
}

.success-body {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 8px 0 20px;
  opacity: 0;
  animation: successFadeUp 0.5s 0.75s cubic-bezier(0.16,1,0.3,1) forwards;
  position: relative;
  z-index: 1;
}

.hero-success-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--green);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(23,206,106,0.25);
  text-decoration: none;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: successFadeUp 0.5s 0.9s cubic-bezier(0.16,1,0.3,1) forwards, ctaPulse 2s 1.4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.hero-success-book:hover {
  background: #14B85E;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(23,206,106,0.35);
}

.hero-form-success.show {
  display: flex;
  animation: successPop 0.4s cubic-bezier(0.16,1,0.3,1);
}

/* Celebration keyframes */
@keyframes drawCircle { to { stroke-dashoffset: 0; } }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
@keyframes successFadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes successPop { 0% { transform: scale(0.92); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
@keyframes ctaPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.03); } }

/* Hero price pill (Variant B) */
.hero-price-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  background: rgba(23,206,106,0.1);
  border: 1px solid rgba(23,206,106,0.25);
  border-radius: 100px;
  padding: 10px 28px;
  margin-bottom: 24px;
}

.price-amount {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: #17CE6A;
}

.price-period {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #17CE6A;
  color: #000000;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: none;
  white-space: nowrap;
}

.hero-cta-primary:hover {
  background: #14B85E;
  box-shadow: none;
}

.hero-cta-primary svg {
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   SOCIAL PROOF STRIP
   ═══════════════════════════════════════ */
.proof-strip {
  padding: 48px 0;
  transition: background 0.4s ease;
}

.proof-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 36px;
}

.proof-item-active {
  background: var(--green-light);
  border-radius: var(--radius-md);
  border: 1px solid rgba(23,206,106,0.15);
}

.proof-value {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
  transition: color 0.4s ease;
}

.proof-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  transition: color 0.4s ease;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  transition: background 0.4s ease;
}

/* ═══════════════════════════════════════
   VALUE GRID (Bento Layout) — Redesigned
   ═══════════════════════════════════════ */
.value-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* ── Section header: left-aligned, commanding ── */
.value-header {
  text-align: left;
  margin-bottom: 36px;
  max-width: 560px;
}

.value-header-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.value-accent-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(23,206,106,0.5);
}

.value-section-title {
  letter-spacing: -0.04em !important;
  line-height: 1.1 !important;
}

/* ── The Grid ── */
.value-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  grid-template-rows: auto auto;
  gap: 14px;
  max-width: 1040px;
  margin: 0 auto;
}

/* ── Tile base: glassmorphism ── */
.value-tile {
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Light mode tile styles */
:root .value-tile,
html:not([data-theme="dark"]) .value-tile {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

[data-theme="dark"] .value-tile {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.06);
}

/* Hover glow sweep */
.value-tile-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(600px circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(23,206,106,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.value-tile:hover .value-tile-glow {
  opacity: 1;
}

.value-tile:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

[data-theme="dark"] .value-tile:hover {
  border-color: rgba(255,255,255,0.12);
}

html:not([data-theme="dark"]) .value-tile:hover {
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.value-tile-inner {
  padding: 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.value-tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.value-tile-signals .value-tile-icon {
  background: rgba(70,198,255,0.1);
  color: var(--sky);
  border: 1px solid rgba(70,198,255,0.12);
}

.value-tile-community .value-tile-icon {
  background: rgba(137,88,254,0.1);
  color: var(--purple);
  border: 1px solid rgba(137,88,254,0.12);
}

.value-tile-education .value-tile-icon {
  background: rgba(245,158,11,0.1);
  color: var(--orange);
  border: 1px solid rgba(245,158,11,0.12);
}

.value-tile-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
  transition: color 0.4s ease;
}

.value-tile-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  transition: color 0.4s ease;
}

.value-tile-content {
  flex: 1;
}

/* ═══════ SIGNALS TILE (featured, largest) ═══════ */
.value-tile-signals {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.value-tile-signals .value-tile-inner {
  display: flex;
  flex-direction: column;
}

.signals-preview {
  margin-top: 24px;
}

.signal-card-mock {
  background: linear-gradient(145deg, rgba(11,14,26,0.6) 0%, rgba(21,25,41,0.4) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

html:not([data-theme="dark"]) .signal-card-mock {
  background: linear-gradient(145deg, rgba(0,38,132,0.04) 0%, rgba(70,198,255,0.04) 100%);
  border-color: rgba(0,0,0,0.06);
}

/* Shimmer sweep across signal card */
.signal-card-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(70,198,255,0.07) 50%, transparent 60%);
  animation: shimmerSweep 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmerSweep {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

.signal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.signal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
}

.signal-badge-live {
  background: rgba(23,206,106,0.12);
  color: #17CE6A;
  border: 1px solid rgba(23,206,106,0.15);
}

/* Pulse animation on LIVE badge */
.signal-badge-live .pulse-dot-green {
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(23,206,106,0.4); }
  50%      { opacity: 0.6; transform: scale(0.85); box-shadow: 0 0 0 4px rgba(23,206,106,0); }
}

.signal-time {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
}

[data-theme="dark"] .signal-time { color: rgba(255,255,255,0.3); }

.signal-body {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}

.signal-ticker {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

[data-theme="dark"] .signal-ticker { color: #FFFFFF; }

.signal-action {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

[data-theme="dark"] .signal-action { color: rgba(255,255,255,0.55); }

/* Signal detail rows */
.signal-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 14px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.04);
}

html:not([data-theme="dark"]) .signal-details {
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.04);
}

.signal-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

html:not([data-theme="dark"]) .signal-detail-row {
  border-bottom-color: rgba(0,0,0,0.04);
}

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

.signal-detail-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

[data-theme="dark"] .signal-detail-label { color: rgba(255,255,255,0.35); }

.signal-detail-value {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
}

[data-theme="dark"] .signal-detail-value { color: rgba(255,255,255,0.8); }

.signal-detail-green {
  color: #17CE6A !important;
}

.signal-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.signal-meta-item {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 5px 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.04);
}

html:not([data-theme="dark"]) .signal-meta-item {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.04);
  color: var(--text-muted);
}

[data-theme="dark"] .signal-meta-item {
  color: rgba(255,255,255,0.35);
}

.signal-meta-green {
  color: #17CE6A !important;
  background: rgba(23,206,106,0.08);
  border-color: rgba(23,206,106,0.12);
}

/* ═══════ COMMUNITY TILE (tall, right) ═══════ */
.value-tile-community {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}

/* Chat bubble — replaced by chat feed */
.community-chat-feed {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  overflow: hidden;
}

.chat-msg {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

html:not([data-theme="dark"]) .chat-msg {
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.05);
}

.chat-msg.visible {
  opacity: 1;
  transform: translateY(0);
}

.chat-msg-1 { transition-delay: 0s; }
.chat-msg-2 { transition-delay: 0.4s; }
.chat-msg-3 { transition-delay: 0.8s; }
.chat-msg-4 { transition-delay: 1.2s; }
.chat-msg-5 { transition-delay: 1.6s; }

.chat-msg-avatar {
  flex-shrink: 0;
}

.chat-msg-avatar img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.chat-msg-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.chat-msg-name {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
}

.chat-msg-text {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

[data-theme="dark"] .chat-msg-text { color: rgba(255,255,255,0.6); }

.community-avatars {
  margin-top: auto;
  padding-top: 28px;
}

.avatar-stack {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.avatar-ring {
  position: relative;
  margin-right: -10px;
}

.avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--card-bg);
  object-fit: cover;
}

[data-theme="dark"] .avatar-img {
  border-color: rgba(21,25,41,1);
}

html:not([data-theme="dark"]) .avatar-img {
  border-color: #FFFFFF;
}

.avatar-online {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #17CE6A;
  border: 2px solid var(--card-bg);
  z-index: 2;
}

[data-theme="dark"] .avatar-online {
  border-color: rgba(21,25,41,1);
}

html:not([data-theme="dark"]) .avatar-online {
  border-color: #FFFFFF;
}

.avatar-count {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(137,88,254,0.12);
  border: 3px solid var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--purple);
}

[data-theme="dark"] .avatar-count {
  border-color: rgba(21,25,41,1);
}

html:not([data-theme="dark"]) .avatar-count {
  border-color: #FFFFFF;
}

.community-status {
  display: flex;
  align-items: center;
  gap: 6px;
}

.community-online-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #17CE6A;
  animation: livePulse 1.5s ease-in-out infinite;
}

.community-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

[data-theme="dark"] .community-label { color: rgba(255,255,255,0.35); }

/* ═══════ EDUCATION TILE ═══════ */
.value-tile-education {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.value-tile-price {
  display: none;
}

/* Education progress UI */
.edu-progress {
  margin-top: 20px;
}

.edu-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.edu-progress-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

[data-theme="dark"] .edu-progress-label { color: rgba(255,255,255,0.4); }

.edu-progress-pct {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--orange);
}

.edu-progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 16px;
}

html:not([data-theme="dark"]) .edu-progress-bar {
  background: rgba(0,0,0,0.06);
}

.edu-progress-fill {
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #FBBF24);
  border-radius: 100px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.edu-chapter-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.edu-chapter {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 10px;
  border-radius: 8px;
  background: transparent;
  transition: background 0.2s ease;
}

[data-theme="dark"] .edu-chapter { color: rgba(255,255,255,0.4); }

.edu-chapter.completed {
  color: var(--text-secondary);
}

[data-theme="dark"] .edu-chapter.completed { color: rgba(255,255,255,0.55); }

.edu-chapter.active {
  background: rgba(245,158,11,0.08);
  color: var(--orange);
  font-weight: 600;
}

.edu-chapter-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(245,158,11,0.4);
}

/* ═══════ PRICE TILE (accent glow) ═══════ */
.value-tile-price {
  border-color: rgba(23,206,106,0.15);
  position: relative;
}

[data-theme="dark"] .value-tile-price {
  background: linear-gradient(145deg, rgba(23,206,106,0.04) 0%, rgba(23,206,106,0.01) 100%);
  border-color: rgba(23,206,106,0.15);
}

html:not([data-theme="dark"]) .value-tile-price {
  background: linear-gradient(145deg, rgba(23,206,106,0.04) 0%, rgba(255,255,255,0.8) 100%);
  border-color: rgba(23,206,106,0.2);
}

/* Animated gradient border on price tile */
@property --price-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.value-tile-price-glow {
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: conic-gradient(from var(--price-angle), rgba(23,206,106,0.3), rgba(70,198,255,0.15), rgba(23,206,106,0.05), rgba(23,206,106,0.3));
  z-index: 0;
  animation: priceGlowRotate 6s linear infinite;
  opacity: 0.6;
}

@keyframes priceGlowRotate {
  to { --price-angle: 360deg; }
}

.value-tile-price::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 19px;
  background: var(--card-bg);
  z-index: 0;
}

[data-theme="dark"] .value-tile-price::after {
  background: linear-gradient(145deg, rgba(15,20,35,1) 0%, rgba(18,24,42,1) 100%);
}

html:not([data-theme="dark"]) .value-tile-price::after {
  background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(245,255,250,0.95) 100%);
}

.value-tile-price:hover {
  border-color: transparent;
}

.value-tile-price:hover .value-tile-price-glow {
  opacity: 1;
}

.value-tile-price-inner {
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.price-tag {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}

.price-dollar {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green);
  align-self: flex-start;
  margin-top: 8px;
}

.price-amount-big {
  font-family: var(--font-mono);
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(180deg, var(--text-primary) 30%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .price-amount-big {
  background: linear-gradient(180deg, #FFFFFF 30%, #17CE6A 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.price-period-text {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

[data-theme="dark"] .price-period-text { color: rgba(255,255,255,0.4); }

.price-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
}

[data-theme="dark"] .price-tagline { color: rgba(255,255,255,0.4); }

.price-includes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.price-check-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-secondary);
}

[data-theme="dark"] .price-check-item { color: rgba(255,255,255,0.55); }

/* ═══════ VALUE GRID RESPONSIVE ═══════ */
@media (max-width: 768px) {
  .value-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .value-tile-signals,
  .value-tile-community,
  .value-tile-education,
  .value-tile-price {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
  }

  .value-header {
    text-align: left;
    max-width: none;
  }

  .value-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .value-tile-inner {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .value-tile-inner {
    padding: 24px;
  }

  .price-amount-big {
    font-size: 2.8rem;
  }

  .signal-meta {
    flex-wrap: wrap;
    gap: 6px;
  }

  .signal-details {
    padding: 10px 12px;
  }

  .value-section-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem) !important;
  }
}

/* ═══════════════════════════════════════
   PRICING CARD (Variant B)
   ═══════════════════════════════════════ */
.pricing-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--green));
}

.pricing-card-header {
  margin-bottom: 32px;
}

.pricing-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  margin-top: 8px;
}

.pricing-card-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pricing-amount {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  transition: color 0.4s ease;
}

.pricing-period {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.4s ease;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.92rem;
  color: var(--text-secondary);
  transition: color 0.4s ease, border-color 0.4s ease;
}

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

.pricing-feature svg {
  flex-shrink: 0;
}

.pricing-cta {
  width: 100%;
  justify-content: center;
  border-radius: 100px;
}

/* ═══════════════════════════════════════
   CARDS GRID (What You Get)
   ═══════════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.35s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, #002684, #17CE6A);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

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

.card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-icon {
  margin-bottom: 16px;
  display: block;
}

.card-step-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-light);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23,206,106,0.2);
  margin-bottom: 12px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--text-primary);
  transition: color 0.4s ease;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  transition: color 0.4s ease;
}

/* ═══════════════════════════════════════
   TRADES — EXAMPLE TRADES
   ═══════════════════════════════════════ */
.trades-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.trade-card {
  background: linear-gradient(145deg, #1A1F35 0%, #212842 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 28px;
  color: #F1F5F9;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Trade card rotation — slide transitions */
.trade-slot {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.trade-slot.fade-out {
  opacity: 0;
  transform: translateX(-16px);
}

.trade-slot.fade-in {
  animation: slideInRight 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.trade-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #002684, #17CE6A);
  opacity: 0.6;
}

.trade-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.trade-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.trade-type-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 100px;
}

.trade-type-bullish {
  background: rgba(23,206,106,0.12);
  color: #17CE6A;
  border: 1px solid rgba(23,206,106,0.2);
}

.trade-type-neutral {
  background: rgba(70,198,255,0.12);
  color: #46C6FF;
  border: 1px solid rgba(70,198,255,0.2);
}

.trade-type-income {
  background: rgba(137,88,254,0.12);
  color: #8958FE;
  border: 1px solid rgba(137,88,254,0.2);
}

.trade-type-accumulation {
  background: rgba(245,158,11,0.12);
  color: #F59E0B;
  border: 1px solid rgba(245,158,11,0.2);
}

.trade-result {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 100px;
}

.trade-result-win {
  background: rgba(23,206,106,0.15);
  color: #17CE6A;
}

.trade-result-assigned {
  background: rgba(245,158,11,0.15);
  color: #F59E0B;
}

.trade-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.trade-setup {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin-bottom: 20px;
}

.trade-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.04);
}

.trade-stat {
  flex: 1;
  text-align: center;
}

.trade-stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}

.trade-stat-value {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: #17CE6A;
}

.trade-outcome {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.trades-disclaimer {
  margin-top: 28px;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Light mode trade card overrides */
html:not([data-theme="dark"]) .trade-card {
  background: linear-gradient(145deg, #F0F1F5 0%, #E8EAF0 100%);
  border-color: rgba(0,0,0,0.1);
  color: #1E293B;
}

html:not([data-theme="dark"]) .trade-card::before {
  opacity: 0.8;
}

html:not([data-theme="dark"]) .trade-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

html:not([data-theme="dark"]) .trade-title {
  color: #0B0E1A;
}

html:not([data-theme="dark"]) .trade-setup {
  color: rgba(0,0,0,0.5);
}

html:not([data-theme="dark"]) .trade-stats {
  background: rgba(255,255,255,0.6);
  border-color: rgba(0,0,0,0.06);
}

html:not([data-theme="dark"]) .trade-stat-label {
  color: rgba(0,0,0,0.4);
}

html:not([data-theme="dark"]) .trade-stat-value {
  color: #17CE6A;
}

html:not([data-theme="dark"]) .trade-outcome {
  color: rgba(0,0,0,0.6);
  border-top-color: rgba(0,0,0,0.08);
}

html:not([data-theme="dark"]) .trade-type-bullish {
  background: rgba(23,206,106,0.08);
  color: #0fa94f;
  border-color: rgba(23,206,106,0.18);
}

html:not([data-theme="dark"]) .trade-type-neutral {
  background: rgba(70,198,255,0.08);
  color: #1a8fbd;
  border-color: rgba(70,198,255,0.18);
}

html:not([data-theme="dark"]) .trade-type-income {
  background: rgba(137,88,254,0.08);
  color: #6a3fd6;
  border-color: rgba(137,88,254,0.18);
}

html:not([data-theme="dark"]) .trade-type-accumulation {
  background: rgba(245,158,11,0.08);
  color: #c07c09;
  border-color: rgba(245,158,11,0.18);
}

html:not([data-theme="dark"]) .trade-result-win {
  background: rgba(23,206,106,0.1);
  color: #0fa94f;
}

html:not([data-theme="dark"]) .trade-result-assigned {
  background: rgba(245,158,11,0.1);
  color: #c07c09;
}

/* ═══════════════════════════════════════
   IMAGE BREAK — FULL BLEED
   ═══════════════════════════════════════ */
.image-break {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 300px;
  overflow: hidden;
}

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

.image-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(0,38,132,0.7) 0%,
    rgba(0,38,132,0.45) 30%,
    rgba(23,206,106,0.35) 60%,
    rgba(0,38,132,0.55) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-break-overlay-dark {
  background: linear-gradient(135deg,
    rgba(0,10,30,0.8) 0%,
    rgba(0,38,132,0.55) 30%,
    rgba(137,88,254,0.3) 60%,
    rgba(0,10,30,0.75) 100%
  );
}

[data-theme="dark"] .image-break-overlay {
  background: linear-gradient(135deg,
    rgba(0,10,30,0.85) 0%,
    rgba(0,38,132,0.6) 30%,
    rgba(23,206,106,0.3) 60%,
    rgba(0,10,30,0.8) 100%
  );
}

[data-theme="dark"] .image-break-overlay-dark {
  background: linear-gradient(135deg,
    rgba(0,5,15,0.9) 0%,
    rgba(0,20,60,0.7) 30%,
    rgba(137,88,254,0.25) 60%,
    rgba(0,5,15,0.85) 100%
  );
}

.image-break-text {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  padding: 0 24px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ═══════════════════════════════════════
   ABOUT / FOUNDER
   ═══════════════════════════════════════ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.about-image img {
  border-radius: var(--radius-xl);
  width: 100%;
  height: 280px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s ease;
}

.about-image img:hover {
  transform: scale(1.02);
}

.founder-sig {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════
   WHY SELL PREMIUM SECTION
   ═══════════════════════════════════════ */
.why-sell-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.why-sell-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

/* ── Comparison Grid ── */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto 56px;
}

.compare-card {
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.compare-card:hover {
  transform: translateY(-3px);
}

.compare-buying {
  background: linear-gradient(145deg, #1A1520 0%, #1E1828 100%);
  border: 1px solid rgba(239,68,68,0.12);
}

.compare-selling {
  background: linear-gradient(145deg, #0F1A14 0%, #132018 100%);
  border: 1px solid rgba(23,206,106,0.15);
  animation: sellingPulse 3s ease-in-out infinite;
}

@keyframes sellingPulse {
  0%, 100% {
    box-shadow:
      0 0 20px rgba(23,206,106,0.08),
      0 0 40px rgba(23,206,106,0.04);
    border-color: rgba(23,206,106,0.15);
  }
  50% {
    box-shadow:
      0 0 30px rgba(23,206,106,0.18),
      0 0 60px rgba(23,206,106,0.08),
      0 0 90px rgba(23,206,106,0.04);
    border-color: rgba(23,206,106,0.35);
  }
}

html:not([data-theme="dark"]) .compare-buying {
  background: linear-gradient(145deg, #FEF2F2 0%, #FFFFFF 100%);
  border-color: rgba(239,68,68,0.15);
}

html:not([data-theme="dark"]) .compare-selling {
  background: linear-gradient(145deg, #F0FDF4 0%, #FFFFFF 100%);
  border-color: rgba(23,206,106,0.2);
  animation: sellingPulseLight 3s ease-in-out infinite;
}

@keyframes sellingPulseLight {
  0%, 100% {
    box-shadow:
      0 0 20px rgba(23,206,106,0.06),
      0 0 40px rgba(23,206,106,0.03);
    border-color: rgba(23,206,106,0.2);
  }
  50% {
    box-shadow:
      0 0 25px rgba(23,206,106,0.14),
      0 0 50px rgba(23,206,106,0.06),
      0 0 80px rgba(23,206,106,0.03);
    border-color: rgba(23,206,106,0.4);
  }
}

.compare-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(23,206,106,0.15);
  color: #17CE6A;
  border: 1px solid rgba(23,206,106,0.2);
}

.compare-card-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

html:not([data-theme="dark"]) .compare-card-label {
  color: rgba(0,0,0,0.4);
}

.compare-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.compare-icon-red {
  background: rgba(239,68,68,0.1);
  color: #ef4444;
  border: 1px solid rgba(239,68,68,0.15);
}

.compare-icon-green {
  background: rgba(23,206,106,0.1);
  color: #17CE6A;
  border: 1px solid rgba(23,206,106,0.15);
}

.compare-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
}

html:not([data-theme="dark"]) .compare-card-title {
  color: #0B0E1A;
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compare-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
}

.compare-item svg {
  flex-shrink: 0;
  margin-top: 3px;
}

html:not([data-theme="dark"]) .compare-item {
  color: rgba(0,0,0,0.65);
}

.compare-stat {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

html:not([data-theme="dark"]) .compare-stat {
  border-top-color: rgba(0,0,0,0.08);
}

.compare-stat-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.compare-stat-red { color: #ef4444; }
.compare-stat-green { color: #17CE6A; }

.compare-stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

html:not([data-theme="dark"]) .compare-stat-label {
  color: rgba(0,0,0,0.45);
}

/* ── Theta Decay Mini ── */
.theta-visual.theta-mini {
  max-width: 800px;
  margin: 0 auto 32px;
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
}

html:not([data-theme="dark"]) .theta-visual.theta-mini {
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.06);
}

.theta-mini-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.theta-mini-chart {
  flex: 0 0 160px;
  position: relative;
}

.theta-mini-chart #thetaCanvas {
  width: 160px;
  height: 56px;
  display: block;
}

.theta-mini-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.theta-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  align-self: flex-start;
}

.theta-mini-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

html:not([data-theme="dark"]) .theta-mini-desc {
  color: rgba(0,0,0,0.5);
}

@media (max-width: 500px) {
  .theta-mini-row {
    flex-direction: column;
    text-align: center;
  }
  .theta-mini-text { align-items: center; }
  .theta-tag { align-self: center; }
}

/* ── Earnings Calculator (HERO) ── */
.calc-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 44px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.calc-section-hero:hover {
  border-color: rgba(245,158,11,0.45);
  box-shadow:
    0 0 40px rgba(245,158,11,0.12),
    0 0 80px rgba(245,158,11,0.06),
    inset 0 0 60px rgba(245,158,11,0.04);
}

/* Gold gradient glow layer — visible on hover */
.calc-gold-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(245,158,11,0.18) 0%, rgba(245,158,11,0.06) 35%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 20% 100%, rgba(245,158,11,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(212,175,55,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.calc-section-hero:hover .calc-gold-glow {
  opacity: 1;
}

html:not([data-theme="dark"]) .calc-section {
  background: rgba(255,255,255,0.8);
  border-color: rgba(0,0,0,0.08);
}

html:not([data-theme="dark"]) .calc-section-hero:hover {
  border-color: rgba(245,158,11,0.5);
  box-shadow:
    0 0 40px rgba(245,158,11,0.10),
    0 0 80px rgba(245,158,11,0.05),
    inset 0 0 60px rgba(245,158,11,0.03);
}

html:not([data-theme="dark"]) .calc-gold-glow {
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(245,158,11,0.14) 0%, rgba(245,158,11,0.05) 35%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 20% 100%, rgba(245,158,11,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(212,175,55,0.04) 0%, transparent 60%);
}

.calc-section > *:not(.calc-gold-glow) {
  position: relative;
  z-index: 1;
}

.calc-header {
  text-align: center;
  margin-bottom: 32px;
}

.calc-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 6px;
}

html:not([data-theme="dark"]) .calc-title {
  color: #0B0E1A;
}

.calc-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

html:not([data-theme="dark"]) .calc-sub {
  color: rgba(0,0,0,0.5);
}

.calc-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.calc-field {
  margin-bottom: 20px;
}

.calc-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}

html:not([data-theme="dark"]) .calc-label {
  color: rgba(0,0,0,0.45);
}

.calc-slider-wrap {
  position: relative;
}

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

html:not([data-theme="dark"]) .calc-slider {
  background: rgba(0,0,0,0.1);
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  border: 3px solid #0B0E1A;
  box-shadow: 0 2px 8px rgba(23,206,106,0.3);
  transition: transform 0.15s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

html:not([data-theme="dark"]) .calc-slider::-webkit-slider-thumb {
  border-color: #FFFFFF;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  background: #F5A623;
  box-shadow:
    0 0 12px rgba(245,166,35,0.5),
    0 0 28px rgba(245,166,35,0.2);
  border-color: rgba(245,166,35,0.3);
}

.calc-slider:active::-webkit-slider-thumb {
  transform: scale(1.2);
  background: #F5A623;
  box-shadow:
    0 0 16px rgba(245,166,35,0.6),
    0 0 36px rgba(245,166,35,0.25);
  border-color: rgba(245,166,35,0.4);
}

.calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  border: 3px solid #0B0E1A;
  transition: transform 0.15s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.calc-slider::-moz-range-thumb:hover {
  transform: scale(1.15);
  background: #F5A623;
  box-shadow:
    0 0 12px rgba(245,166,35,0.5),
    0 0 28px rgba(245,166,35,0.2);
}

.calc-slider-val {
  text-align: center;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

html:not([data-theme="dark"]) .calc-slider-val {
  color: #0B0E1A;
}

.calc-strategies {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.calc-strat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 8px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

html:not([data-theme="dark"]) .calc-strat {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.08);
}

.calc-strat:hover {
  border-color: rgba(23,206,106,0.3);
  background: rgba(23,206,106,0.05);
}

.calc-strat.active {
  border-color: var(--green);
  background: rgba(23,206,106,0.1);
  box-shadow: 0 0 0 1px var(--green);
}

.calc-strat-name {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: #FFFFFF;
  display: block;
}

html:not([data-theme="dark"]) .calc-strat-name {
  color: #0B0E1A;
}

.calc-strat-range {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--green);
  font-weight: 600;
}

.calc-results {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Primary result: monthly income — full width hero */
.calc-result-card-primary {
  background: rgba(23,206,106,0.04);
  border: 1px solid rgba(23,206,106,0.12);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

html:not([data-theme="dark"]) .calc-result-card-primary {
  background: rgba(23,206,106,0.04);
  border-color: rgba(23,206,106,0.12);
}

/* Secondary results: side by side, minimal style */
.calc-results-secondary {
  display: flex;
  gap: 12px;
}

.calc-result-card {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
}

html:not([data-theme="dark"]) .calc-result-card {
  background: transparent;
  border-color: rgba(0,0,0,0.06);
}

.calc-result-card-primary .calc-result-label,
.calc-result-card-primary .calc-result-value {
  position: relative;
  z-index: 1;
}

.calc-result-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}

html:not([data-theme="dark"]) .calc-result-label {
  color: rgba(0,0,0,0.4);
}

.calc-result-value {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
}

/* Hero-sized monthly income number */
.calc-result-hero {
  font-size: 2rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

/* Shimmer sweep on the income number */
.calc-shimmer {
  position: relative;
  background: linear-gradient(
    90deg,
    var(--green) 0%,
    var(--green) 35%,
    #A3F5C5 50%,
    var(--green) 65%,
    var(--green) 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.calc-shimmer.shimmer-active {
  animation: shimmerSweep 2s ease-in-out forwards;
}

@keyframes shimmerSweep {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* Dollar sign particle container */
.dollar-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}

.dollar-particle {
  position: absolute;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--green);
  opacity: 0;
  pointer-events: none;
  user-select: none;
  will-change: transform, opacity;
  text-shadow: 0 0 8px rgba(23,206,106,0.4);
}

.dollar-particle.animate {
  animation: dollarFloat var(--dur) var(--delay) ease-out forwards;
}

@keyframes dollarFloat {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.5) rotate(0deg);
  }
  15% {
    opacity: var(--peak-opacity, 0.7);
    transform: translate(var(--dx1), var(--dy1)) scale(0.9) rotate(var(--rot1));
  }
  70% {
    opacity: var(--peak-opacity, 0.7);
    transform: translate(var(--dx2), var(--dy2)) scale(1) rotate(var(--rot2));
  }
  100% {
    opacity: 0;
    transform: translate(var(--dx3), var(--dy3)) scale(0.6) rotate(var(--rot3));
  }
}

.calc-result-annual {
  color: var(--sky);
}

.calc-result-pct {
  color: var(--purple);
}

.calc-disclaimer {
  margin-top: 20px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  line-height: 1.6;
  font-style: italic;
}

html:not([data-theme="dark"]) .calc-disclaimer {
  color: rgba(0,0,0,0.35);
}

/* Responsive: Why Sell Section */
@media (max-width: 700px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }

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

  .calc-results {
    grid-template-columns: 1fr;
  }

  .calc-results-secondary {
    flex-direction: column;
  }

  .calc-result-card {
    flex: auto;
  }

  .calc-section {
    padding: 32px 20px;
  }

  .calc-result-hero {
    font-size: 1.6rem;
  }
}

/* ── The Engine Room (unified card) ── */
.engine-room {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.engine-room-header {
  margin-bottom: 28px;
}

.engine-room-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.engine-room-sub {
  margin-top: 6px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

html:not([data-theme="dark"]) .engine-room-sub {
  color: rgba(0,0,0,0.5);
}

.engine-unified-card {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}

html:not([data-theme="dark"]) .engine-unified-card {
  background: rgba(0,0,0,0.02);
}

.engine-member {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 12px;
}

.engine-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

.engine-member-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--green);
  flex-shrink: 0;
}

.engine-member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.engine-member-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.engine-member-name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

html:not([data-theme="dark"]) .engine-member-name {
  color: #0B0E1A;
}

.engine-member-role {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}

.engine-member-detail {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
}

html:not([data-theme="dark"]) .engine-member-detail {
  color: rgba(0,0,0,0.4);
}

@media (max-width: 700px) {
  .engine-unified-card {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }

  .engine-member {
    padding: 12px 4px;
  }

  .engine-divider {
    width: 100%;
    height: 1px;
  }
}

/* ═══════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════ */
.faq-list {
  max-width: 720px;
  margin-top: 24px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  transition: border-color 0.4s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  transition: color 0.2s ease;
  gap: 16px;
}

.faq-question:hover {
  color: var(--green);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 0 20px 0;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  transition: color 0.4s ease;
}

/* ═══════════════════════════════════════
   BOTTOM CTA
   ═══════════════════════════════════════ */
.bottom-cta-section {
  padding: 48px 0 64px;
}

.bottom-cta-card {
  background: linear-gradient(135deg, rgba(0,38,132,0.04), rgba(23,206,106,0.04));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  text-align: center;
  transition: all 0.4s ease;
}

[data-theme="dark"] .bottom-cta-card {
  background: linear-gradient(135deg, rgba(59,106,232,0.08), rgba(23,206,106,0.06));
  border-color: var(--border);
}

.bottom-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  transition: color 0.4s ease;
}

.bottom-cta-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  transition: color 0.4s ease;
}

.bottom-email-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  align-items: center;
}

.bottom-email-form .hero-email-input {
  background: var(--bg-subtle);
  border-color: var(--border);
  color: var(--text-primary);
}

.bottom-email-form .hero-email-input::placeholder {
  color: var(--text-muted);
}

.bottom-email-form .hero-email-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23,206,106,0.1);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */

/* ─── HOW IT WORKS ─── */
.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step-card {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 0 20px;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-light);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  border: 1px solid rgba(23,206,106,0.2);
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.35s ease;
}

.step-card:hover .step-icon {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(23,206,106,0.12);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  transition: color 0.4s ease;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  transition: color 0.4s ease;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 54px;
  flex-shrink: 0;
}

/* ─── COMPACT STEPS (streamlined) ─── */
.steps-compact {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step-compact {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 24px;
}

.step-compact-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-light);
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23,206,106,0.2);
  margin-top: 2px;
}

.step-compact-body {
  flex: 1;
}

.step-compact-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  transition: color 0.4s ease;
}

.step-compact-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  transition: color 0.4s ease;
}

.step-compact-line {
  width: 1px;
  align-self: stretch;
  background: var(--border);
  flex-shrink: 0;
}

/* 2-column cards variant */
.cards-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* ─── DISCORD MOCKUP ─── */
.discord-mockup {
  display: flex;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  max-width: 900px;
  margin: 0 auto;
  min-height: 420px;
  background: #2B2D31;
}

.discord-sidebar {
  width: 220px;
  background: #1E1F22;
  padding: 16px 0;
  flex-shrink: 0;
}

.discord-server-name {
  padding: 0 16px 16px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.discord-channels {
  padding: 12px 8px;
}

.discord-category {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6D6F78;
  padding: 12px 8px 4px;
}

.discord-channel {
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 0.82rem;
  color: #80848E;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: default;
  transition: background 0.15s ease;
}

.discord-channel.active {
  background: rgba(255,255,255,0.06);
  color: #FFFFFF;
}

.discord-hash {
  color: #6D6F78;
  font-size: 1rem;
  font-weight: 500;
}

.discord-channel.active .discord-hash {
  color: #80848E;
}

.discord-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.discord-header {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 6px;
}

.discord-header .discord-hash {
  color: #6D6F78;
}

.discord-messages {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.discord-msg {
  display: flex;
  gap: 12px;
}

.discord-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  color: #FFFFFF;
}

.discord-avatar-bot {
  background: linear-gradient(135deg, #002684, #17CE6A);
}

.discord-avatar-member {
  background: #5865F2;
}

.discord-avatar-member2 {
  background: #EB459E;
}

.discord-msg-content {
  flex: 1;
  min-width: 0;
}

.discord-msg-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.discord-msg-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #FFFFFF;
}

.discord-msg-name-member {
  color: #B5BAC1;
}

.discord-msg-badge {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 700;
  background: #5865F2;
  color: #FFFFFF;
  padding: 1px 6px;
  border-radius: 3px;
  letter-spacing: 0.02em;
}

.discord-msg-time {
  font-size: 0.7rem;
  color: #6D6F78;
}

.discord-msg-text {
  font-size: 0.88rem;
  color: #B5BAC1;
  line-height: 1.5;
}

.discord-alert-card {
  margin-top: 6px;
  padding: 14px 16px;
  border-radius: 8px;
  border-left: 3px solid;
}

.discord-alert-open {
  background: rgba(23,206,106,0.08);
  border-left-color: #17CE6A;
}

.discord-alert-close {
  background: rgba(70,198,255,0.08);
  border-left-color: #46C6FF;
}

.discord-alert-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #17CE6A;
  margin-bottom: 6px;
}

.discord-alert-tag-close {
  color: #46C6FF;
}

.discord-alert-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.discord-alert-detail {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #B5BAC1;
  margin-bottom: 6px;
}

.discord-alert-meta {
  font-size: 0.72rem;
  color: #6D6F78;
  margin-bottom: 6px;
}

.discord-alert-thesis {
  font-size: 0.8rem;
  color: #B5BAC1;
  font-style: italic;
  line-height: 1.5;
}

/* ─── VIDEO PLACEHOLDER ─── */
.video-placeholder {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.video-placeholder-inner {
  background: linear-gradient(145deg, #0B0E1A 0%, #151929 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 60px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.video-placeholder-inner:hover {
  border-color: rgba(23,206,106,0.3);
}

.video-placeholder-text {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-top: 16px;
  font-weight: 500;
}

.video-placeholder-hint {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.35s ease;
}

/* Testimonial subtle parallax float */
.testimonial-card:nth-child(1) { animation: floatCard 6s ease-in-out infinite; }
.testimonial-card:nth-child(2) { animation: floatCard 6s ease-in-out 1s infinite; }
.testimonial-card:nth-child(3) { animation: floatCard 6s ease-in-out 2s infinite; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  transition: color 0.4s ease;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.1);
  transition: border-color 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
  border-color: var(--green);
}

.testimonial-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.4s ease;
}

.testimonial-role {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: color 0.4s ease;
}

/* ─── STICKY CTA BAR ─── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(11,14,26,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  pointer-events: none;
}

.sticky-cta.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-cta-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}

.sticky-cta-text strong {
  color: #FFFFFF;
  font-weight: 700;
}

.sticky-cta-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.sticky-cta-price {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: #17CE6A;
}

.sticky-cta-price small {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}

.sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: #17CE6A;
  color: #000000;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.sticky-cta-btn::before {
  display: none;
}

.sticky-cta-btn::after {
  display: none;
}

@property --glow-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotateConic {
  to { --glow-angle: 360deg; }
}

.sticky-cta-btn:hover {
  background: #14B85E;
}

.sticky-cta-btn:hover::before {
  display: none;
}

.footer {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 28px 0;
  background: var(--footer-bg);
  transition: background 0.4s ease, border-color 0.4s ease;
}

[data-theme="dark"] .footer {
  border-top-color: rgba(255,255,255,0.06);
}

.footer-inner {
  text-align: center;
}

.footer-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  transition: color 0.4s ease;
}

.footer-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.7;
  transition: color 0.4s ease;
}

/* ═══════════════════════════════════════
   CHECKOUT MODAL
   ═══════════════════════════════════════ */
.checkout-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.checkout-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.checkout-modal {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  max-width: 460px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.checkout-overlay.open .checkout-modal {
  transform: translateY(0) scale(1);
}

[data-theme="dark"] .checkout-modal {
  background: #151929;
  border-color: #1E2A4A;
}

.checkout-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
  cursor: pointer;
  color: var(--text-secondary);
  padding: 0;
  transition: all 0.2s ease;
}

.checkout-close:hover {
  border-color: var(--text-muted);
  color: var(--text-primary);
  background: var(--bg-muted);
}

.checkout-header {
  text-align: center;
  margin-bottom: 28px;
}

.checkout-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 12px;
}

.checkout-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  transition: color 0.4s ease;
}

.checkout-subtitle {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  transition: color 0.4s ease;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checkout-label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.4s ease;
}

.checkout-input {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-subtle);
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.4s ease, color 0.4s ease;
}

.checkout-input::placeholder {
  color: var(--text-muted);
}

.checkout-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23,206,106,0.1);
}

.checkout-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  transition: color 0.4s ease;
}

.checkout-summary {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: all 0.4s ease;
}

.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}

.checkout-summary-price {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.4s ease;
}

.checkout-summary-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
  transition: background 0.4s ease;
}

.checkout-summary-total {
  font-weight: 600;
  color: var(--text-primary);
}

.checkout-summary-total .checkout-summary-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
}

.checkout-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 32px;
  background: var(--green);
  color: #000000;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: none;
}

.checkout-submit:hover {
  background: #14B85E;
  box-shadow: none;
}

.checkout-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.checkout-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: -4px;
  transition: color 0.4s ease;
}

.checkout-secure svg {
  flex-shrink: 0;
  color: var(--green);
}

/* ═══════════════════════════════════════
   ANIMATION UPGRADES
   ═══════════════════════════════════════ */

/* Magnetic CTA buttons */
.hero-cta-primary,
.sticky-cta-btn,
.checkout-submit,
.pricing-cta {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

/* Count-up number animation shimmer */
.count-up-animated {
  display: inline-block;
}

/* Proof strip value highlight on reveal */
.proof-value .count-up {
  display: inline;
}

/* ═══════════════════════════════════════
   RESPONSIVE — 1024px
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .proof-item {
    padding: 16px 24px;
  }

  .about-layout {
    gap: 32px;
  }

  .engine-room-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .trades-grid {
    gap: 16px;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — 768px
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 120px 20px 60px;
  }

  .hero-name,
  .hero-headline {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

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

  .about-image img {
    height: 240px;
  }

  .engine-room-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .section {
    padding: 52px 0;
  }

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

  .hero-email-form,
  .bottom-email-form {
    flex-direction: column;
  }

  .hero-email-form .hero-cta-primary,
  .bottom-email-form .hero-cta-primary {
    width: 100%;
    justify-content: center;
  }

  .proof-grid {
    flex-wrap: wrap;
    gap: 8px;
  }

  .proof-divider {
    display: none;
  }

  .proof-item {
    flex: 1 1 calc(50% - 8px);
    padding: 14px 16px;
  }

  .image-break {
    height: 220px;
  }

  .bottom-cta-card {
    padding: 40px 24px;
  }

  .pricing-card {
    padding: 36px 28px;
  }

  .footer-inner {
    text-align: center;
  }

  /* Steps — stack vertically */
  .steps-grid {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .step-card {
    max-width: 400px;
  }

  .step-connector {
    display: none;
  }

  /* Compact steps — stack vertically */
  .steps-compact {
    flex-direction: column;
    gap: 24px;
  }

  .step-compact-line {
    width: 100%;
    height: 1px;
    align-self: auto;
  }

  /* 2-col cards — stack */
  .cards-grid-2 {
    grid-template-columns: 1fr;
  }

  /* Discord mockup — hide sidebar */
  .discord-sidebar {
    display: none;
  }

  .discord-mockup {
    min-height: 360px;
  }

  /* Testimonials — stack */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Sticky CTA — hide descriptive text */
  .sticky-cta-text {
    display: none;
  }

  .sticky-cta-inner {
    justify-content: center;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — 480px
   ═══════════════════════════════════════ */
@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .hero {
    padding: 100px 16px 48px;
  }

  .hero-name,
  .hero-headline {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-brand-name {
    font-size: 0.85rem;
  }

  .section {
    padding: 40px 0;
  }

  .card {
    padding: 24px 20px;
  }

  .image-break {
    height: 180px;
  }

  .image-break-text {
    font-size: 1.2rem;
  }

  .theme-toggle {
    width: 32px;
    height: 32px;
  }

  .theme-icon {
    width: 16px;
    height: 16px;
  }

  .trade-card {
    padding: 22px 18px;
  }

  .trade-stats {
    gap: 8px;
    padding: 12px;
  }

  .trade-stat-value {
    font-size: 0.8rem;
  }

  .proof-item {
    flex: 1 1 calc(50% - 6px);
    padding: 12px 10px;
  }

  .proof-value {
    font-size: 0.95rem;
  }

  .proof-label {
    font-size: 0.6rem;
  }

  .bottom-cta-card {
    padding: 32px 18px;
  }

  .hero-cta-primary {
    padding: 14px 24px;
    font-size: 0.85rem;
  }

  /* Steps — tighter on small screens */
  .step-card {
    padding: 0 12px;
  }

  .step-icon {
    width: 48px;
    height: 48px;
  }

  /* Discord mockup — smaller */
  .discord-mockup {
    min-height: 300px;
  }

  .discord-messages {
    padding: 12px;
    gap: 14px;
  }

  .discord-header {
    padding: 10px 12px;
  }

  /* Testimonials — tighter padding */
  .testimonial-card {
    padding: 22px 18px;
  }

  /* Sticky CTA — full width button */
  .sticky-cta {
    padding: 10px 16px;
  }

  .sticky-cta-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .sticky-cta-price {
    font-size: 0.95rem;
  }

  /* Checkout modal — tighter on small screens */
  .checkout-modal {
    padding: 28px 20px;
  }

  .checkout-title {
    font-size: 1.3rem;
  }

  .checkout-overlay {
    padding: 16px;
    align-items: flex-end;
  }
}

/* FORCE WORDS VISIBLE - OVERRIDE */
.hero-headline .word {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  display: inline-block !important;
}

/* Performance: content-visibility for below-fold sections */
#trades, #testimonials, #faq, #founder, #bottom-cta, .footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

/* ═══════════════════════════════════════
   PROMO POPUP — Free Month Offer
   ═══════════════════════════════════════ */
.promo-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.promo-popup {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px 28px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.04);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-overlay.open .promo-popup {
  transform: translateY(0) scale(1);
}

[data-theme="dark"] .promo-popup {
  background: #151929;
  border-color: #1E2A4A;
  box-shadow: 0 25px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04);
}

.promo-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
  cursor: pointer;
  color: var(--text-secondary);
  padding: 0;
  transition: all 0.18s ease;
}

.promo-close:hover {
  border-color: var(--text-muted);
  color: var(--text-primary);
  background: var(--bg-muted);
}

/* ── Promo Icon / Celebration Graphic ── */
.promo-icon-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(245,158,11,0.25);
  animation: promoRingPulse 2.5s ease-in-out infinite;
}

.promo-icon-ring--2 {
  inset: -8px;
  border-color: rgba(23,206,106,0.15);
  animation-delay: 0.6s;
}

@keyframes promoRingPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.5; }
}

.promo-icon-gift {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 8px rgba(245,158,11,0.3));
  animation: promoGiftBounce 2s ease-in-out infinite;
}

@keyframes promoGiftBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Sparkle dots */
.promo-sparkle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #F59E0B;
  animation: promoSparklePop 2s ease-in-out infinite;
}

.promo-sparkle--1 { top: 2px; left: 12px; animation-delay: 0s; }
.promo-sparkle--2 { top: 6px; right: 6px; animation-delay: 0.3s; background: #17CE6A; }
.promo-sparkle--3 { bottom: 8px; left: 4px; animation-delay: 0.6s; width: 4px; height: 4px; }
.promo-sparkle--4 { bottom: 2px; right: 10px; animation-delay: 0.9s; background: #17CE6A; width: 4px; height: 4px; }
.promo-sparkle--5 { top: 50%; left: -4px; animation-delay: 0.4s; width: 3px; height: 3px; }
.promo-sparkle--6 { top: 50%; right: -4px; animation-delay: 0.7s; background: #8958FE; width: 3px; height: 3px; }

@keyframes promoSparklePop {
  0%, 100% { transform: scale(0); opacity: 0; }
  20% { transform: scale(1.3); opacity: 1; }
  50% { transform: scale(1); opacity: 0.8; }
  80% { transform: scale(0.6); opacity: 0; }
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F59E0B;
  margin-bottom: 16px;
}

.promo-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #F59E0B;
  animation: promoPulse 2s ease-in-out infinite;
}

@keyframes promoPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(245,158,11,0); }
}

.promo-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
  line-height: 1.25;
}

.promo-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 20px;
}

.promo-reasons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.promo-reason {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-primary);
  line-height: 1.4;
}

.promo-reason svg {
  flex-shrink: 0;
}

.promo-input-row {
  display: flex;
  gap: 8px;
}

.promo-input {
  flex: 1;
  height: 44px;
  padding: 0 14px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-primary);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.promo-input:focus {
  border-color: #17CE6A;
  box-shadow: 0 0 0 3px rgba(23,206,106,0.12);
}

.promo-input::placeholder {
  color: var(--text-muted);
}

[data-theme="dark"] .promo-input {
  background: #0D1220;
  border-color: #1E2A4A;
  color: #E5E7EB;
}

[data-theme="dark"] .promo-input:focus {
  border-color: #17CE6A;
  box-shadow: 0 0 0 3px rgba(23,206,106,0.15);
}

.promo-submit {
  height: 44px;
  padding: 0 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: #17CE6A;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.18s ease, transform 0.18s ease;
}

.promo-submit:hover {
  background: #14B85E;
  transform: translateY(-1px);
}

.promo-submit:active {
  transform: translateY(0);
}

.promo-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.promo-error {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #EF4444;
  margin: 8px 0 0;
}

.promo-success {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.promo-confetti {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.promo-success-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  background: rgba(23,206,106,0.08);
  border: 1px solid rgba(23,206,106,0.2);
  border-radius: var(--radius-sm);
}

[data-theme="dark"] .promo-success-inner {
  background: rgba(23,206,106,0.1);
  border-color: rgba(23,206,106,0.25);
}

.promo-success-icon {
  flex-shrink: 0;
}

.promo-success-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0;
}

.promo-fine {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin: 14px 0 0;
}

/* Promo popup mobile */
@media (max-width: 640px) {
  .promo-overlay {
    padding: 16px;
    align-items: flex-end;
  }

  .promo-popup {
    padding: 28px 22px 22px;
    border-radius: var(--radius-lg) var(--radius-lg) var(--radius-sm) var(--radius-sm);
  }

  .promo-title {
    font-size: 1.3rem;
  }

  .promo-input-row {
    flex-direction: column;
  }

  .promo-submit {
    width: 100%;
  }
}
