/* ═══════════════════════════════════════════════════════
   369FORECAST — WALL STREET SMASHER
   Design: Dark Luxury Fintech × Institutional Power
   ═══════════════════════════════════════════════════════ */

:root {
  --gold: #D4A849;
  --gold-bright: #F5CE62;
  --gold-dark: #A67C2E;
  --electric: #00D4FF;
  --electric-dim: #0099BB;
  --green-profit: #00FF88;
  --red-loss: #FF3366;
  --bg-void: #05080D;
  --bg-deep: #080C14;
  --bg-card: #0C1220;
  --bg-card-hover: #111B2E;
  --border-subtle: rgba(212, 168, 73, 0.12);
  --border-glow: rgba(212, 168, 73, 0.3);
  --text-primary: #F0ECE2;
  --text-secondary: #8A94A6;
  --text-muted: #4A5568;
  --glass: rgba(12, 18, 32, 0.7);
  --glass-border: rgba(212, 168, 73, 0.08);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-void);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-void); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ── Selection ── */
::selection { background: rgba(212, 168, 73, 0.3); color: var(--gold-bright); }

/* ── Utility ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ══════════════════════════════════════════
   ANIMATED BACKGROUND — MARKET GRID
   ══════════════════════════════════════════ */
.market-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(212, 168, 73, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 73, 0.5) 1px, transparent 1px);
  background-size: 80px 80px;
}

.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform, opacity;
  transform: translateZ(0);
  pointer-events: none;
  z-index: 0;
}
.glow-orb-1 { width: 600px; height: 600px; background: rgba(212, 168, 73, 0.06); top: -200px; right: -200px; animation: orbFloat 20s ease-in-out infinite; }
.glow-orb-2 { width: 500px; height: 500px; background: rgba(0, 212, 255, 0.04); bottom: -100px; left: -100px; animation: orbFloat 25s ease-in-out infinite reverse; }
.glow-orb-3 { width: 400px; height: 400px; background: rgba(0, 255, 136, 0.03); top: 50%; left: 50%; transform: translate(-50%, -50%); animation: orbPulse 15s ease-in-out infinite; }

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(50px, -30px); }
  66% { transform: translate(-30px, 50px); }
}
@keyframes orbPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

/* ══════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav.scrolled {
  background: rgba(5, 8, 13, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.6rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--bg-void);
  position: relative;
  overflow: hidden;
}
.nav-logo-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}
.nav-logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.nav-logo-text span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--bg-void) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  font-size: 0.82rem !important;
  transition: all 0.3s !important;
  box-shadow: 0 4px 20px rgba(212, 168, 73, 0.2);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 30px rgba(212, 168, 73, 0.35) !important;
}
.nav-cta::after { display: none !important; }

/* Mobile menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

/* ══════════════════════════════════════════
   HERO SECTION — CINEMATIC
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 4rem;
  z-index: 1;
  overflow: hidden;
}

/* Animated price tape */
.price-tape {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  overflow: hidden;
  height: 36px;
  background: rgba(12, 18, 32, 0.6);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 2;
}
.price-tape-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: tickerScroll 40s linear infinite;
  white-space: nowrap;
  padding: 0.5rem 0;
}
.tape-item {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.tape-sym { color: var(--text-secondary); }
.tape-up { color: var(--green-profit); }
.tape-down { color: var(--red-loss); }
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero-content {
  text-align: center;
  max-width: 960px;
  padding: 0 2rem;
  position: relative;
  z-index: 3;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(212, 168, 73, 0.08);
  border: 1px solid rgba(212, 168, 73, 0.2);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: fadeInDown 0.8s ease-out;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green-profit);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(0, 255, 136, 0); }
}

/* Hero headline */
.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease-out 0.2s both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}
.hero-title .gold { color: var(--gold); }
.hero-title .electric { color: var(--electric); }
.hero-title .line { display: block; }

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  animation: fadeInUp 1s ease-out 0.6s both;
}
.hero-sub strong { color: var(--text-primary); font-weight: 600; }

/* Hero stats row */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.8s both;
}
.hero-stat {
  text-align: center;
}
.hero-stat-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}
.hero-stat-number .plus { color: var(--green-profit); font-weight: 300; }
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Hero buttons */
.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 1s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-void);
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 40px rgba(212, 168, 73, 0.25), inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 50px rgba(212, 168, 73, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--gold);
  padding: 1rem 2.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-glow);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: rgba(212, 168, 73, 0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeInUp 1s ease-out 1.4s both;
}
.scroll-hint-text {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.scroll-hint-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   LIVE PERFORMANCE BANNER
   ══════════════════════════════════════════ */
.performance-banner {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.03), rgba(212, 168, 73, 0.03));
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 3rem 0;
}
.perf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.perf-item {
  padding: 1.5rem;
  border-right: 1px solid var(--border-subtle);
}
.perf-item:last-child { border-right: none; }
.perf-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green-profit);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.perf-value.gold-val { color: var(--gold-bright); }
.perf-value.electric-val { color: var(--electric); }
.perf-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}
.perf-note {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  font-style: italic;
}

/* ══════════════════════════════════════════
   SECTION STYLING
   ══════════════════════════════════════════ */
section {
  position: relative;
  z-index: 1;
  padding: 7rem 0;
}

.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}
.section-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   WHY F369 — EDGE SECTION
   ══════════════════════════════════════════ */
.edge-section { background: var(--bg-deep); }
.edge-header { text-align: center; margin-bottom: 4rem; }
.edge-header .section-subtitle { margin: 0 auto; }

.edge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.edge-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.edge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.edge-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}
.edge-card:hover::before { opacity: 1; }

.edge-icon {
  width: 52px;
  height: 52px;
  background: rgba(212, 168, 73, 0.08);
  border: 1px solid rgba(212, 168, 73, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.edge-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.edge-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}
.edge-tag {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: var(--gold);
  background: rgba(212, 168, 73, 0.06);
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   PACKAGES SECTION
   ══════════════════════════════════════════ */
.packages-section { background: var(--bg-void); }
.packages-header { text-align: center; margin-bottom: 4rem; }
.packages-header .section-subtitle { margin: 0 auto; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.pkg-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.pkg-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--electric));
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}
.pkg-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.pkg-card:hover::after { transform: scaleX(1); }

.pkg-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.pkg-name {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.pkg-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.pkg-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 1rem;
}
.pkg-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--electric);
  font-weight: 500;
}
.pkg-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--gold-bright);
  margin-top: 0.6rem;
}
.pkg-pdf {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.8rem;
  padding: 0.4rem 1rem;
  background: rgba(212, 168, 73, 0.08);
  border: 1px solid rgba(212, 168, 73, 0.25);
  border-radius: 6px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.3s;
}
.pkg-pdf:hover {
  background: rgba(212, 168, 73, 0.18);
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-1px);
}
.pkg-details {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 6px;
  color: var(--electric);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.3s;
  cursor: pointer;
}
.pkg-details:hover {
  background: rgba(0, 212, 255, 0.18);
  border-color: var(--electric);
  color: #fff;
  transform: translateY(-1px);
}

/* ── Package Detail Modal ── */
.pkg-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 8, 13, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.pkg-modal {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  max-width: 780px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 30px 100px rgba(0,0,0,0.6);
}
.pkg-modal::-webkit-scrollbar { width: 6px; }
.pkg-modal::-webkit-scrollbar-track { background: transparent; }
.pkg-modal::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
.pkg-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: rgba(212, 168, 73, 0.1);
  border: 1px solid rgba(212, 168, 73, 0.25);
  border-radius: 8px;
  color: var(--gold);
  font-size: 1.2rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.pkg-modal-close:hover { background: rgba(212, 168, 73, 0.25); color: #fff; }
.pkg-modal h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.pkg-modal .modal-subtitle {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.pkg-modal .modal-category {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--electric);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin: 1.8rem 0 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border-subtle);
}
.pkg-modal .modal-item {
  margin-bottom: 0.9rem;
  padding-left: 0.5rem;
}
.pkg-modal .modal-item strong {
  color: var(--text-primary);
  font-weight: 600;
}
.pkg-modal .modal-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 300;
  margin: 0.2rem 0 0;
}
@media (max-width: 768px) {
  .pkg-modal { padding: 1.5rem; max-height: 90vh; }
  .pkg-modal h2 { font-size: 1.3rem; }
}

/* Featured package */
.pkg-card.featured {
  border-color: var(--gold-dark);
  background: linear-gradient(135deg, rgba(212, 168, 73, 0.05), var(--bg-card));
}
.pkg-card.featured .pkg-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-void);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   TECHNOLOGY / PLATFORM
   ══════════════════════════════════════════ */
.tech-section {
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.tech-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0, 212, 255, 0.03), transparent 70%);
  pointer-events: none;
}

.tech-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.tech-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.tech-feature {
  background: rgba(12, 18, 32, 0.5);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s;
}
.tech-feature:hover {
  border-color: var(--border-glow);
  background: var(--bg-card);
}
.tech-feature-icon {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}
.tech-feature h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.tech-feature p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
}

/* Terminal mock */
.terminal {
  background: #0a0f1a;
  border: 1px solid rgba(212, 168, 73, 0.15);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.terminal-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  background: rgba(212, 168, 73, 0.04);
  border-bottom: 1px solid rgba(212, 168, 73, 0.1);
}
.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.terminal-dot.red { background: #ff5f57; }
.terminal-dot.yellow { background: #febc2e; }
.terminal-dot.green { background: #28c840; }
.terminal-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
}
.terminal-body {
  padding: 1.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  line-height: 1.8;
  color: var(--text-secondary);
}
.terminal-body .cmd { color: var(--gold); }
.terminal-body .success { color: var(--green-profit); }
.terminal-body .info { color: var(--electric); }
.terminal-body .comment { color: var(--text-muted); }
.terminal-line {
  opacity: 0;
  animation: typeLine 0.3s ease forwards;
}

/* ══════════════════════════════════════════
   BUNDLE / PRICING
   ══════════════════════════════════════════ */
.bundle-section {
  background: var(--bg-void);
  text-align: center;
}
.bundle-card {
  max-width: 720px;
  margin: 3rem auto 0;
  background: linear-gradient(135deg, rgba(212, 168, 73, 0.05), rgba(0, 212, 255, 0.02));
  border: 1px solid var(--gold-dark);
  border-radius: 20px;
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
}
.bundle-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright), var(--gold-dark));
}
.bundle-crown {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.bundle-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.bundle-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.bundle-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  text-align: left;
  margin-bottom: 2.5rem;
}
.bundle-feature {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 400;
}
.bundle-check {
  color: var(--green-profit);
  font-weight: 700;
  font-size: 1.1rem;
}

.bundle-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.bundle-price {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold-bright);
}
.bundle-price-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}
.bundle-savings {
  display: inline-block;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.2);
  color: var(--green-profit);
  padding: 0.3rem 1rem;
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
}

/* ══════════════════════════════════════════
   TESTIMONIAL / SOCIAL PROOF
   ══════════════════════════════════════════ */
.proof-section { background: var(--bg-deep); }
.proof-header { text-align: center; margin-bottom: 4rem; }
.proof-header .section-subtitle { margin: 0 auto; }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.proof-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 2rem;
  position: relative;
}
.proof-quote {
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}
.proof-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.proof-pnl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-profit);
  margin-bottom: 1rem;
}
.proof-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
}
.proof-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ══════════════════════════════════════════
   CONTACT / CTA
   ══════════════════════════════════════════ */
.contact-section {
  background: var(--bg-void);
  text-align: center;
}
.contact-header { margin-bottom: 3rem; }
.contact-header .section-subtitle { margin: 0 auto; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.contact-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}
.contact-item:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}
.contact-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.contact-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.contact-value {
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 500;
  word-break: break-all;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  position: relative;
  z-index: 1;
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
  margin-top: 1rem;
  max-width: 320px;
}
.footer-col-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--gold); }

.footer-divider {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.footer-legal {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 900px;
}
.footer-legal strong { color: var(--text-secondary); font-weight: 600; }
.footer-copyright {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ══════════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .edge-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-layout { grid-template-columns: 1fr; gap: 3rem; }
  .proof-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 8, 13, 0.98);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
  }
  .nav-links.open a { font-size: 1.2rem; }
  .hero { padding: 7rem 0 3rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-stat-number { font-size: 1.8rem; }
  .perf-grid { grid-template-columns: repeat(2, 1fr); }
  .perf-item { border-right: none; border-bottom: 1px solid var(--border-subtle); padding: 1rem; }
  .edge-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .tech-features-grid { grid-template-columns: 1fr; }
  .bundle-features { grid-template-columns: 1fr; }
  .bundle-card { padding: 2rem; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  section { padding: 4rem 0; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .perf-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}