/* ================================================================
   INNOVENT — Brand CSS
   Color palette: #FF6B1A (brand orange), #0A0A0A (black), #F5F5F5 (off-white)
   ================================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #FF6B1A;
  --orange-light: #FF8A45;
  --orange-dim: rgba(255, 107, 26, 0.15);
  --orange-border: rgba(255, 107, 26, 0.3);
  --black: #0A0A0A;
  --black-2: #111111;
  --black-3: #181818;
  --black-4: #222222;
  --white: #F5F5F5;
  --white-dim: rgba(245, 245, 245, 0.65);
  --white-subtle: rgba(245, 245, 245, 0.08);
  --border: rgba(255, 255, 255, 0.08);
  --nav-height: 90px;          /* ← Increased from typical ~72px */
  --section-pad: 120px;
  --container: 1200px;
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.3s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utility ── */
.text-gradient {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ================================================================
   NAVIGATION — Bigger, More Prominent
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: #000000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), height var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: #000000;
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
  height: 78px;
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ── Logo ── */
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-full {
  height: 56px;          /* ← Big logo: noticeably larger */
  width: auto;
  display: block;
  transition: height var(--transition), opacity var(--transition);
  object-fit: contain;
  filter: brightness(1.1);
}

.navbar.scrolled .logo-full { height: 46px; }

.logo-icon {
  display: none;
  height: 44px;
  width: auto;
}

/* ── Desktop menu ── */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: flex-end;
}

.nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15.5px;          /* ← Bigger font size */
  font-weight: 500;
  color: var(--white-dim);
  padding: 10px 16px;         /* ← More padding = bigger hit target */
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange);
  background: var(--orange-dim);
}

.nav-link-cta {
  color: var(--orange) !important;
  border: 1.5px solid var(--orange-border);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav-link-cta:hover {
  background: var(--orange-dim) !important;
  box-shadow: 0 0 24px rgba(255, 107, 26, 0.25);
}

/* ── Hamburger ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
}
.nav-toggle:hover { background: var(--white-subtle); }
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ================================================================
   DECORATIVE RINGS (background motif)
   ================================================================ */
.ring-deco {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--orange-border);
  pointer-events: none;
  z-index: 0;
}

.ring-hero-xl  { width: 700px; height: 700px; top: -200px; right: -200px; opacity: 0.18; }
.ring-hero-lg  { width: 420px; height: 420px; top: 60px; right: 40px; opacity: 0.12; }
.ring-hero-sm  { width: 180px; height: 180px; bottom: 80px; left: 60px; opacity: 0.2; }

.ring-section-xl { width: 600px; height: 600px; opacity: 0.1; }
.ring-section-lg { width: 400px; height: 400px; opacity: 0.12; }
.ring-section-md { width: 280px; height: 280px; opacity: 0.14; }
.ring-section-sm { width: 160px; height: 160px; opacity: 0.18; }

.ring-right { right: -150px; top: 50%; transform: translateY(-50%); }
.ring-left  { left: -150px; top: 50%; transform: translateY(-50%); }
.ring-footer { width: 500px; height: 500px; bottom: -200px; right: -150px; opacity: 0.08; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 50px;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  border: 2px solid var(--orange);
}
.btn-primary:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  box-shadow: 0 8px 32px rgba(255, 107, 26, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 4px 20px rgba(255, 107, 26, 0.15);
  transform: translateY(-2px);
}

.btn-sm { font-size: 13.5px; padding: 10px 20px; }
.btn-submit { width: 100%; justify-content: center; font-size: 16px; padding: 16px; border-radius: var(--radius); }

/* ================================================================
   SECTIONS
   ================================================================ */
.section {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-dim);
  border: 1px solid var(--orange-border);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.section-ring-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: 0.9;
}

.section-title {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 18px;
  color: var(--white-dim);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 64px;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 40%, rgba(255,107,26,0.06) 0%, transparent 60%);
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange-dim);
  border: 1px solid var(--orange-border);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}

.badge-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.hero-title {
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 28px;
  max-width: 820px;
}

.hero-subtitle {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--white-dim);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: var(--white-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  max-width: 700px;
  backdrop-filter: blur(8px);
}

.stat-item {
  flex: 1;
  min-width: 100px;
  text-align: center;
  padding: 0 20px;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  color: var(--white-dim);
  line-height: 1.4;
}

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

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  color: var(--white-dim);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ================================================================
   ABOUT / THESIS
   ================================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.pillar-card {
  background: var(--white-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: border-color var(--transition), transform var(--transition);
}

.pillar-card:hover {
  border-color: var(--orange-border);
  transform: translateY(-4px);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-dim);
  border: 1.5px solid var(--orange-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--orange);
  margin-bottom: 20px;
}

.pillar-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white);
}

.pillar-card p { font-size: 15px; color: var(--white-dim); line-height: 1.7; }

/* Factory strip */
.factory-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--black-3), var(--black-4));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  flex-wrap: wrap;
}

.factory-phase {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 160px;
}

.fp-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2.5px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--orange-dim);
}

.fp-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
}

.fp-text strong { display: block; font-size: 15px; color: var(--white); margin-bottom: 3px; }
.fp-text span { font-size: 12.5px; color: var(--white-dim); }

.factory-arrow { color: var(--orange-border); font-size: 14px; flex-shrink: 0; }

.factory-phase-result .fp-text strong { color: var(--orange); }

.fp-ring-result {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  font-size: 18px;
}

/* ================================================================
   DUAL-STUDIO
   ================================================================ */
.studios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.studio-card {
  position: relative;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.studio-card:hover {
  border-color: var(--orange-border);
  transform: translateY(-4px);
}

.studio-ring-deco {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid var(--orange-border);
  pointer-events: none;
}
.studio-ring-deco::after {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid var(--orange-border);
  opacity: 0.5;
}

.studio-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-dim);
  border: 1px solid var(--orange-border);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.studio-title { font-size: 28px; font-weight: 700; margin-bottom: 16px; }
.studio-desc { font-size: 15px; color: var(--white-dim); line-height: 1.7; margin-bottom: 28px; }

.studio-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }

.studio-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--white-dim);
}

.ring-bullet {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  flex-shrink: 0;
  position: relative;
  display: inline-block;
}
.ring-bullet::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--orange);
}

.studio-metric {
  background: var(--orange-dim);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.metric-label { font-size: 12px; color: var(--white-dim); }

/* ================================================================
   BUILD PROCESS
   ================================================================ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 48px;
}

.process-card {
  background: var(--white-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: border-color var(--transition), transform var(--transition);
}

.process-card:hover {
  border-color: var(--orange-border);
  transform: translateY(-4px);
}

.process-step-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2.5px solid var(--orange);
  background: var(--orange-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 20px;
}

.process-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.process-card h3 { font-size: 22px; font-weight: 600; margin-bottom: 12px; }
.process-card p { font-size: 14.5px; color: var(--white-dim); line-height: 1.7; margin-bottom: 20px; }

.process-outcomes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.process-outcomes li {
  font-size: 13.5px;
  color: var(--white-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}

.process-outcomes li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-border);
  font-size: 22px;
  padding-top: 40px;
}

/* Process result */
.process-result {
  display: flex;
  align-items: center;
  gap: 32px;
  background: linear-gradient(135deg, rgba(255,107,26,0.12) 0%, rgba(255,107,26,0.04) 100%);
  border: 1.5px solid var(--orange-border);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
}

.pr-icon { flex-shrink: 0; }

.pr-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid var(--orange);
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
}

.pr-content { flex: 1; }
.pr-content h3 { font-size: 24px; font-weight: 600; margin-bottom: 8px; }
.pr-content p { font-size: 15px; color: var(--white-dim); }

.pr-metric { text-align: right; flex-shrink: 0; }

/* ================================================================
   COMPETITIVE MOATS
   ================================================================ */
.moats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.moat-card {
  position: relative;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.moat-card:hover {
  border-color: var(--orange-border);
  transform: translateY(-4px);
}

.moat-ring-deco {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid rgba(255,107,26,0.15);
}

.moat-ring-deco .inner-ring {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,107,26,0.12);
}

.moat-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-dim);
  border: 1.5px solid var(--orange-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--orange);
  margin-bottom: 20px;
}

.moat-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.moat-card p { font-size: 14.5px; color: var(--white-dim); line-height: 1.7; margin-bottom: 20px; }

.moat-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  background: var(--orange-dim);
  border: 1px solid var(--orange-border);
  padding: 5px 14px;
  border-radius: 50px;
}

/* ================================================================
   INVESTMENT THESIS
   ================================================================ */
.funds-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 56px;
}

.fund-card {
  position: relative;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.fund-card:hover { border-color: var(--orange-border); }

.fund-ring-deco {
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(255,107,26,0.1);
  pointer-events: none;
}

.fund-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-dim);
  border: 1px solid var(--orange-border);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.fund-card h3 { font-size: 24px; font-weight: 600; margin-bottom: 12px; }
.fund-card p { font-size: 15px; color: var(--white-dim); line-height: 1.7; margin-bottom: 24px; }
.fund-card .fund-metric { margin-top: auto; }

/* Synergy ring */
.synergy-ring-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.synergy-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.synergy-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.synergy-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.synergy-inner span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

.spinning-ring {
  animation: spinRing 8s linear infinite;
}

@keyframes spinRing {
  from { box-shadow: 0 0 0 0 rgba(255,107,26,0.3); }
  50% { box-shadow: 0 0 32px 8px rgba(255,107,26,0.2); }
  to { box-shadow: 0 0 0 0 rgba(255,107,26,0.3); }
}

.synergy-arrows {
  display: flex;
  gap: 48px;
}

.syn-arrow {
  font-size: 18px;
  color: var(--orange);
  animation: arrowPulse 2s ease-in-out infinite;
}

.syn-arrow.mirror {
  transform: scaleX(-1);
  animation-delay: 1s;
}

@keyframes arrowPulse {
  0%, 100% { opacity: 0.4; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(4px); }
}

.syn-arrow.mirror {
  animation: arrowPulseMirror 2s ease-in-out infinite 1s;
}

@keyframes arrowPulseMirror {
  0%, 100% { opacity: 0.4; transform: scaleX(-1) translateX(0); }
  50% { opacity: 1; transform: scaleX(-1) translateX(4px); }
}

/* LP grid */
.lp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lp-card {
  background: var(--white-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color var(--transition), transform var(--transition);
}

.lp-card:hover {
  border-color: var(--orange-border);
  transform: translateY(-3px);
}

.lp-icon {
  font-size: 24px;
  color: var(--orange);
  margin-bottom: 16px;
}

.lp-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.lp-card p { font-size: 13.5px; color: var(--white-dim); line-height: 1.6; }

/* ================================================================
   CONTACT
   ================================================================ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.audience-card {
  position: relative;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.audience-card:hover {
  border-color: var(--orange-border);
  transform: translateY(-4px);
}

.aud-ring-deco {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(255,107,26,0.15);
}

.aud-icon {
  font-size: 28px;
  color: var(--orange);
  margin-bottom: 20px;
}

.audience-card h3 { font-size: 22px; font-weight: 600; margin-bottom: 12px; }
.audience-card p { font-size: 14.5px; color: var(--white-dim); line-height: 1.7; margin-bottom: 24px; }

/* Contact form */
.contact-form-wrap {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 48px;
}

.form-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.full-width { margin-bottom: 24px; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white-dim);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black-4);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: rgba(255,107,26,0.04);
}

.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  position: relative;
  background: var(--black-2);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  overflow: hidden;
}

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

.footer-logo {
  height: 42px;
  width: auto;
  margin-bottom: 20px;
  object-fit: contain;
  filter: brightness(1.05);
}

.footer-brand p {
  font-size: 14px;
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--white-subtle);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--white-dim);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--orange-dim);
  border-color: var(--orange-border);
  color: var(--orange);
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 14px;
  color: var(--white-dim);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: rgba(245,245,245,0.35);
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.7s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.65s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ================================================================
   TOAST
   ================================================================ */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--black-3);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast i { color: var(--orange); font-size: 18px; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  :root { --nav-height: 80px; }

  .nav-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(10,10,10,0.97);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 32px;
    gap: 4px;
    backdrop-filter: blur(20px);
  }

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

  .nav-link {
    font-size: 16px;
    padding: 14px 16px;
    border-radius: 10px;
  }

  .nav-link-cta {
    margin-top: 8px;
    text-align: center;
    justify-content: center;
  }

  .nav-toggle { display: flex; }
  .logo-full { height: 66px; }

  .studios-grid,
  .process-grid,
  .funds-grid {
    grid-template-columns: 1fr;
  }

  .process-connector { display: none; }
  .moats-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .factory-strip { flex-direction: column; align-items: flex-start; }
  .factory-arrow { transform: rotate(90deg); }

  .synergy-ring-container { margin: 0 auto; }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
    align-items: flex-start;
    padding: 28px 28px;
  }

  .stat-divider { width: 100%; height: 1px; }
  .stat-item { text-align: left; padding: 0; }

  .process-result {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .pr-metric { text-align: left; }
}

@media (max-width: 600px) {
  :root { --section-pad: 80px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .pillars-grid { grid-template-columns: 1fr; }
  .lp-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .hero-stats { padding: 20px 20px; }
  .logo-full { height: 40px; }
  .logo-icon { display: none; }

  .nav-menu.open .nav-link {
    font-size: 15px;
  }
}
