/* ===================================================
   SY SIMONS — PREMIUM PERSONAL BRAND WEBSITE
   Version 4.0 — Full Rebuild
   =================================================== */

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --dark-0: #050608;
  --dark-1: #0a0c10;
  --dark-2: #0f1117;
  --dark-3: #141720;
  --dark-4: #1a1e28;
  --dark-5: #222736;

  --accent: #3b82f6;
  --accent-bright: #60a5fa;
  --accent-dim: rgba(59, 130, 246, 0.15);
  --accent-glow: rgba(59, 130, 246, 0.35);

  --gold: #d4a843;
  --gold-bright: #f0c060;
  --gold-dim: rgba(212, 168, 67, 0.15);
  --gold-glow: rgba(212, 168, 67, 0.35);

  --text-primary: #f0f2f8;
  --text-secondary: #8892a4;
  --text-muted: #4a5568;

  --border: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(59, 130, 246, 0.3);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--dark-1);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-1); }
::-webkit-scrollbar-thumb { background: var(--dark-5); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(10, 12, 16, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  position: relative;
}

.nav-logo::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 2px;
}

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

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
  background: var(--accent-bright);
  box-shadow: 0 0 50px rgba(59, 130, 246, 0.6);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-glow);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.accent-text { color: var(--accent); }

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-0);
}

/* ===== PARTICLE CANVAS ===== */
.particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

.hero:hover .particle-canvas {
  pointer-events: auto;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

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

.hero-glow {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  filter: blur(120px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, transparent 70%);
  top: -100px; right: 5%;
}

.hero-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.1) 0%, transparent 70%);
  bottom: 10%; left: 5%;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-bright);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-subheadline {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.stat-prefix, .stat-suffix {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===== HERO IMAGE ===== */
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.2);
  animation: ring-pulse 4s ease-in-out infinite;
}

.hero-image-ring:nth-child(1) {
  width: 420px; height: 420px;
  animation-delay: 0s;
}

.hero-image-ring-2 {
  width: 480px; height: 480px;
  border-color: rgba(59, 130, 246, 0.1);
  animation-delay: 1s;
}

.hero-image-ring-3 {
  width: 540px; height: 540px;
  border-color: rgba(59, 130, 246, 0.05);
  animation-delay: 2s;
}

@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.6; }
}

.hero-photo {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background-image: url('assets/headshot.png');
  background-size: 110%;
  background-position: center 15%;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  border: 3px solid rgba(59, 130, 246, 0.4);
  box-shadow:
    0 0 0 8px rgba(59, 130, 246, 0.08),
    0 0 80px rgba(59, 130, 246, 0.25),
    0 30px 80px rgba(0,0,0,0.6);
}

.hero-image-badge {
  position: absolute;
  bottom: 30px;
  right: -10px;
  background: rgba(10, 12, 16, 0.9);
  border: 1px solid var(--border-accent);
  backdrop-filter: blur(20px);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-bright);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.hero-image-stat {
  position: absolute;
  top: 30px;
  left: -10px;
  background: rgba(10, 12, 16, 0.9);
  border: 1px solid rgba(212, 168, 67, 0.3);
  backdrop-filter: blur(20px);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  z-index: 3;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.his-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.his-label {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.hero-scroll-indicator {
  position: absolute;
  z-index: 2;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 1rem 0;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.marquee-track .sep {
  color: var(--accent);
  font-weight: 800;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== ABOUT SECTION ===== */
.about {
  background: var(--dark-1);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: start;
}

.about-lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.about-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.pillar:hover {
  border-color: var(--border-accent);
  background: var(--dark-4);
}

.pillar-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.pillar-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== ABOUT METRICS ===== */
.about-card-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 100px;
}

.about-metric-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.about-metric-card:hover {
  border-color: var(--border-accent);
  transform: translateX(4px);
}

.amc-primary {
  background: linear-gradient(135deg, rgba(59,130,246,0.12), var(--dark-3));
  border-color: rgba(59,130,246,0.25);
}

.metric-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.accent-bg { background: var(--accent-dim); border: 1px solid var(--accent-glow); color: var(--accent); }
.gold-bg { background: var(--gold-dim); border: 1px solid var(--gold-glow); color: var(--gold); }

.metric-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.metric-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===== VENTURES SECTION ===== */
.ventures {
  background: var(--dark-0);
  position: relative;
  overflow: hidden;
}

.ventures-bg-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
}

.ventures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ===== VENTURE CARDS ===== */
.venture-card {
  position: relative;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.venture-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.venture-card-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.venture-card:hover .venture-card-glow { opacity: 1; }

/* Brand-specific card styles */
.brand-rpp {
  border-color: rgba(212, 168, 67, 0.3);
  background: linear-gradient(160deg, rgba(30, 22, 5, 0.95) 0%, var(--dark-3) 60%);
  border-top: 2px solid rgba(212, 168, 67, 0.6);
}
.brand-rpp .venture-card-glow { background: radial-gradient(circle, rgba(212, 168, 67, 0.4), transparent); }
.brand-rpp:hover { border-color: rgba(212, 168, 67, 0.6); box-shadow: 0 30px 80px rgba(212, 168, 67, 0.12); }

.brand-gg {
  border-color: rgba(180, 130, 40, 0.3);
  background: linear-gradient(160deg, rgba(20, 15, 3, 0.98) 0%, var(--dark-3) 60%);
  border-top: 2px solid rgba(180, 130, 40, 0.6);
}
.brand-gg .glow-gold { background: radial-gradient(circle, rgba(180, 130, 40, 0.4), transparent); }
.brand-gg:hover { border-color: rgba(180, 130, 40, 0.6); box-shadow: 0 30px 80px rgba(180, 130, 40, 0.12); }

.brand-jdr {
  border-color: rgba(37, 99, 235, 0.3);
  background: linear-gradient(160deg, rgba(5, 10, 25, 0.98) 0%, var(--dark-3) 60%);
  border-top: 2px solid rgba(37, 99, 235, 0.6);
}
.brand-jdr .glow-blue { background: radial-gradient(circle, rgba(37, 99, 235, 0.4), transparent); }
.brand-jdr:hover { border-color: rgba(37, 99, 235, 0.6); box-shadow: 0 30px 80px rgba(37, 99, 235, 0.15); }

/* ===== VENTURE LOGO AREA ===== */
.venture-logo-area {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
  min-height: 64px;
}

.venture-logo {
  max-height: 52px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

/* RPP logo is white on transparent — show on dark bg */
.rpp-logo-area {
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  border: 1px solid rgba(212, 168, 67, 0.15);
}
.rpp-logo { max-height: 44px; filter: brightness(1.1); }

/* GG logo — the shield */
.gg-logo-area { padding: 0; }
.gg-logo { max-height: 64px; }

/* JDR logo */
.jdr-logo-area {
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  border: 1px solid rgba(37, 99, 235, 0.15);
}
.jdr-logo { max-height: 44px; filter: brightness(1.1); }

/* ===== VENTURE CARD INTERNALS ===== */
.venture-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.venture-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  line-height: 1;
}

.venture-role-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
  border: 1px solid rgba(212, 168, 67, 0.3);
}

.gold-badge {
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
  border-color: rgba(212, 168, 67, 0.3);
}

.blue-badge {
  background: rgba(59, 130, 246, 0.12);
  color: var(--accent-bright);
  border-color: rgba(59, 130, 246, 0.3);
}

.venture-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.venture-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.venture-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.7rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-secondary);
}

.venture-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.03em;
  transition: var(--transition);
  margin-top: auto;
}

.venture-link:hover { gap: 0.75rem; color: var(--gold-bright); }

.gold-link { color: var(--gold); }
.gold-link:hover { color: var(--gold-bright); }

.blue-link { color: var(--accent-bright); }
.blue-link:hover { color: #93c5fd; }

/* ===== PHILOSOPHY SECTION ===== */
.philosophy {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.philosophy-quote {
  position: relative;
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 0.7;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: -1rem;
}

blockquote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.quote-attr {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.philosophy-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.phi-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.phi-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
  min-width: 28px;
  padding-top: 2px;
}

.phi-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.phi-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== CONNECT SECTION ===== */
.connect {
  background: var(--dark-1);
}

.connect-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.connect-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 640px;
}

.connect-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  cursor: pointer;
}

.connect-card:hover {
  border-color: var(--border-accent);
  background: var(--dark-4);
  transform: translateX(6px);
}

.connect-icon-wrap {
  width: 48px; height: 48px;
  min-width: 48px;
  background: #0a66c2;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.connect-info { flex: 1; }

.connect-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.connect-handle {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.connect-arrow {
  color: var(--text-muted);
  transition: var(--transition);
}

.connect-card:hover .connect-arrow {
  color: var(--accent);
  transform: translate(2px, -2px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-0);
  border-top: 1px solid var(--border);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.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; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-content { order: 1; }
  .hero-image-wrap { order: 0; }
  .hero-subheadline { margin: 0 auto 2.5rem; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-card-stack { position: static; flex-direction: row; flex-wrap: wrap; }
  .about-metric-card { flex: 1; min-width: 200px; }
  .ventures-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(10,12,16,0.98); border-bottom: 1px solid var(--border); padding: 1.5rem 2rem; gap: 1.25rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-photo { width: 280px; height: 280px; background-size: 110%; background-position: center 15%; }
  .hero-image-ring:nth-child(1) { width: 320px; height: 320px; }
  .hero-image-ring-2 { width: 370px; height: 370px; }
  .hero-image-ring-3 { width: 420px; height: 420px; }
  .section-container { padding: 4rem 1.25rem; }
  .philosophy-inner { padding: 3rem 1.25rem; }
  .footer-container { flex-direction: column; gap: 1.5rem; }
  blockquote { font-size: 1.15rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 1.25rem; }
  .stat-number, .stat-prefix, .stat-suffix { font-size: 1.4rem; }
}

/* ===== FADE-IN ANIMATION (used by script.js) ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   SYNDICATIVE WAITLIST SECTION
   =================================================== */

.waitlist-section {
  position: relative;
  background: linear-gradient(180deg, var(--dark-1) 0%, #080c14 50%, var(--dark-1) 100%);
  overflow: hidden;
  padding: 0;
}

.waitlist-bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.waitlist-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 0;
}

.waitlist-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-blue);
  border: 1px solid rgba(59, 130, 246, 0.35);
  padding: 0.4rem 1.2rem;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.waitlist-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.waitlist-subheadline {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.waitlist-subheadline em {
  color: var(--text-primary);
  font-style: italic;
  font-weight: 600;
}

.waitlist-supporting {
  font-size: 1rem;
  color: var(--accent-blue);
  font-weight: 500;
  margin-bottom: 2.5rem;
  letter-spacing: 0.01em;
}

/* Form */
.waitlist-form-wrap {
  margin-bottom: 3rem;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.waitlist-input-row {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 560px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.1);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.waitlist-input-row:focus-within {
  border-color: rgba(59, 130, 246, 0.8);
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.2);
}

.waitlist-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: none;
  outline: none;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  min-width: 0;
}

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

.waitlist-btn {
  background: var(--accent-blue);
  color: #fff;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: background 0.2s, opacity 0.2s;
  letter-spacing: 0.01em;
}

.waitlist-btn:hover {
  background: #2563eb;
}

.waitlist-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.waitlist-privacy {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

/* Thank you state */
.waitlist-thankyou {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 8px;
  background: rgba(59, 130, 246, 0.06);
  max-width: 480px;
  margin: 0 auto;
  animation: fadeInUp 0.5s ease;
}

.thankyou-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
}

.thankyou-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

/* Book meta strip */
.waitlist-book-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.book-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.book-meta-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.book-meta-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.book-meta-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Responsive */
@media (max-width: 600px) {
  .waitlist-input-row {
    flex-direction: column;
    border-radius: 6px;
    overflow: visible;
    border: none;
    box-shadow: none;
  }

  .waitlist-input {
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
  }

  .waitlist-btn {
    border-radius: 6px;
    justify-content: center;
    width: 100%;
    padding: 1rem;
  }

  .book-meta-divider { display: none; }
}
