/* SquishyAI Theme — Main Stylesheet */

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

:root {
  --black:        #080808;
  --black-soft:   #111111;
  --black-card:   #161616;
  --cream:        #f2ede5;
  --cream-dark:   #e8e1d6;
  --warm-white:   #faf8f4;
  --gold:         #c8a96e;
  --gold-light:   #dfc08a;
  --gold-dark:    #8a6a38;
  --text-dark:    #1a1a1a;
  --text-mid:     #4a4a4a;
  --text-muted:   #8a8a8a;
  --border-dark:  rgba(255,255,255,0.08);
  --border-light: rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.cream-page {
  background: var(--cream);
  color: var(--text-dark);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.serif { font-family: 'Playfair Display', serif; }
.mono  { font-family: 'Space Mono', monospace; }

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

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: block;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  border: none;
  line-height: 1;
}
.btn-gold         { background: var(--gold); color: var(--black); }
.btn-gold:hover   { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline-white { background: transparent; border: 1px solid rgba(255,255,255,0.22); color: rgba(255,255,255,0.7); }
.btn-outline-white:hover { border-color: rgba(255,255,255,0.55); color: #fff; }
.btn-outline-dark { background: transparent; border: 1px solid rgba(0,0,0,0.22); color: rgba(0,0,0,0.7); }
.btn-outline-dark:hover { border-color: rgba(0,0,0,0.55); color: var(--black); }
.btn-dark         { background: var(--black); color: #fff; }
.btn-dark:hover   { background: #222; }

/* ── NAV ──────────────────────────────────────────────────── */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 3rem;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
#site-nav.scrolled {
  background: rgba(8,8,8,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border-dark);
}
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.nav-logo img,
.nav-logo-img,
.nav-logo .custom-logo,
.nav-logo .custom-logo-link img {
  width: 44px !important;
  height: 44px !important;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(200,169,110,0.25);
}
/* WordPress wraps custom logo in an <a> — strip its default styles */
.nav-logo .custom-logo-link {
  display: flex;
  line-height: 0;
}
.nav-logo-placeholder {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: #1a1a1a;
  border: 1px solid rgba(200,169,110,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-actions { display: flex; gap: 12px; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.6);
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(20px);
  padding: 2rem 3rem;
  border-bottom: 1px solid var(--border-dark);
  z-index: 99;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-dark);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: #fff; }

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}
.hero-left {
  padding: 80px 0 80px 3rem;
  max-width: 600px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2rem;
}
.hero-eyebrow-line { width: 32px; height: 1px; background: var(--gold); }
.hero-eyebrow span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.8rem;
  color: #fff;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 2.8rem;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-right {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spiral-wrapper {
  position: relative;
  width: 540px;
  height: 540px;
}
.spiral-svg { width: 100%; height: 100%; opacity: 0.85; }
.spiral-grid {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(200,169,110,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,0.4) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.spiral-equation {
  position: absolute;
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  color: rgba(200,169,110,0.35);
  white-space: nowrap;
  pointer-events: none;
}
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 3rem;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.3;
}
.scroll-hint span { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; }
.scroll-line {
  width: 40px; height: 1px;
  background: #fff;
  animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleX(1); opacity: 0.3; }
  50%       { transform: scaleX(0.4); opacity: 0.1; }
}

/* ── MANIFESTO ────────────────────────────────────────────── */
#manifesto {
  background: var(--cream);
  padding: 110px 0;
}
.manifesto-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.manifesto-left { position: sticky; top: 110px; }
.manifesto-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}
.manifesto-left h2 em { font-style: italic; color: var(--gold-dark); }
.manifesto-divider { width: 48px; height: 1px; background: var(--gold-dark); margin: 2rem 0; }
.manifesto-left > p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.8; }
.manifesto-right { display: flex; flex-direction: column; gap: 0; }
.manifesto-point {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-light);
}
.manifesto-point:first-child { padding-top: 0; }
.manifesto-point:last-child  { border-bottom: none; }
.manifesto-point-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
}
.manifesto-point h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.manifesto-point p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; }

/* ── MOONSHOTS ────────────────────────────────────────────── */
#moonshots { background: var(--black); padding: 110px 0; }
.moonshots-header { text-align: center; margin-bottom: 72px; }
.moonshots-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}
.moonshots-header p {
  font-size: 1rem;
  color: rgba(255,255,255,0.42);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 300;
}
.moonshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.moonshot-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.moonshot-bg {
  position: absolute; inset: 0;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.moonshot-card:hover .moonshot-bg { transform: scale(1.06); }
.moonshot-thumb {
  position: absolute; inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.moonshot-card:hover .moonshot-thumb { transform: scale(1.06); }

/* Gradient bg fallbacks */
.bg-bci     { background: radial-gradient(ellipse at 30% 70%, rgba(180,120,60,0.6), transparent 50%), radial-gradient(ellipse at 70% 30%, rgba(100,60,20,0.8), transparent 50%), linear-gradient(135deg, #1a0f05, #0d0a0a 50%, #050810); }
.bg-synbio  { background: radial-gradient(ellipse at 50% 50%, rgba(60,140,80,0.3), transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(180,140,60,0.4), transparent 40%), linear-gradient(160deg, #050f07, #0a0a08 50%, #0f0c05); }
.bg-energy  { background: radial-gradient(ellipse at 50% 40%, rgba(200,100,30,0.5), transparent 50%), radial-gradient(ellipse at 50% 80%, rgba(150,60,20,0.6), transparent 50%), linear-gradient(180deg, #0a0505, #0f0806); }
.bg-robotics{ background: radial-gradient(ellipse at 50% 30%, rgba(160,160,180,0.25), transparent 50%), radial-gradient(ellipse at 30% 70%, rgba(100,120,160,0.3), transparent 50%), linear-gradient(135deg, #080810, #0a0a12); }
.bg-spatial { background: radial-gradient(ellipse at 60% 40%, rgba(60,120,200,0.4), transparent 50%), radial-gradient(ellipse at 30% 60%, rgba(200,80,120,0.25), transparent 50%), linear-gradient(135deg, #050810, #0a0812); }
.bg-climate { background: radial-gradient(ellipse at 50% 50%, rgba(40,100,140,0.5), transparent 55%), radial-gradient(ellipse at 60% 80%, rgba(60,140,80,0.3), transparent 40%), linear-gradient(180deg, #050a10, #080f0a); }

.card-art {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  opacity: 0.18;
  transition: opacity 0.4s;
  pointer-events: none;
}
.moonshot-card:hover .card-art { opacity: 0.3; }
.moonshot-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  transition: background 0.4s;
}
.moonshot-card:hover .moonshot-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.42) 60%, rgba(0,0,0,0.08) 100%);
}
.moonshot-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 32px;
}
.moonshot-number {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease 0.05s;
}
.moonshot-card:hover .moonshot-number { opacity: 1; transform: translateY(0); }
.moonshot-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}
.moonshot-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s, margin 0.3s;
  opacity: 0;
  margin-top: 0;
}
.moonshot-card:hover .moonshot-desc { max-height: 120px; opacity: 1; margin-top: 12px; }
.moonshot-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease 0.1s;
}
.moonshot-card:hover .moonshot-arrow { opacity: 1; transform: translateX(0); }

/* ── APPROACH ─────────────────────────────────────────────── */
#approach { background: var(--cream); padding: 110px 0; }
.approach-header { margin-bottom: 64px; }
.approach-header .section-label { color: var(--gold-dark); }
.approach-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.approach-card {
  background: var(--warm-white);
  padding: 48px 36px;
  transition: background 0.25s;
}
.approach-card:hover { background: #fff; }
.approach-num {
  font-family: 'Space Mono', monospace;
  font-size: 2.4rem;
  font-weight: 400;
  color: rgba(0,0,0,0.06);
  line-height: 1;
  margin-bottom: 24px;
}
.approach-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.approach-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.8; }
.approach-tag {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold-dark);
  padding-bottom: 2px;
}

/* ── RESEARCH ─────────────────────────────────────────────── */
#research { background: var(--black-soft); padding: 110px 0; }
.research-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.research-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.research-left p { font-size: 0.95rem; color: rgba(255,255,255,0.42); line-height: 1.8; margin-bottom: 2rem; font-weight: 300; }
.research-right { display: flex; flex-direction: column; gap: 14px; }
.research-card {
  background: var(--black-card);
  border: 1px solid var(--border-dark);
  padding: 26px 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.25s, background 0.25s;
  cursor: pointer;
  text-decoration: none;
}
.research-card:hover { border-color: rgba(200,169,110,0.25); background: #1a1a1a; }
.research-card-icon {
  width: 40px; height: 40px;
  background: rgba(200,169,110,0.08);
  border: 1px solid rgba(200,169,110,0.14);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.research-card-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}
.research-card-body p { font-size: 0.8rem; color: rgba(255,255,255,0.38); line-height: 1.6; }
.coming-soon {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
}

/* ── ABOUT ────────────────────────────────────────────────── */
#about-sq { background: var(--black); padding: 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.about-visual {
  background: var(--black-card);
  border-right: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}
.about-visual-glow {
  position: absolute;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(200,169,110,0.1), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.about-logo-large {
  position: relative;
  z-index: 2;
  text-align: center;
}
.about-logo-large img,
.about-logo-large .custom-logo,
.about-logo-large .custom-logo-link img {
  width: 140px !important;
  height: 140px !important;
  border-radius: 24px;
  object-fit: cover;
  border: 1px solid rgba(200,169,110,0.2);
  box-shadow: 0 0 60px rgba(200,169,110,0.15);
  margin: 0 auto 16px;
}
.about-logo-large .custom-logo-link {
  display: flex;
  justify-content: center;
}
.about-logo-large .logo-fallback {
  width: 140px; height: 140px;
  border-radius: 24px;
  background: #1a1a1a;
  border: 1px solid rgba(200,169,110,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  margin: 0 auto 16px;
  box-shadow: 0 0 60px rgba(200,169,110,0.12);
}
.about-logo-large p {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.about-text {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.6rem;
}
.about-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.8;
  margin-bottom: 1.1rem;
  font-weight: 300;
}
.about-text p strong { color: var(--gold); font-weight: 500; }

/* ── WAITLIST ─────────────────────────────────────────────── */
#waitlist { background: var(--cream); padding: 110px 0; }
.waitlist-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.waitlist-left .section-label { color: var(--gold-dark); }
.waitlist-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.waitlist-left h2 em { font-style: italic; color: var(--gold-dark); }
.waitlist-left > p { font-size: 0.93rem; color: var(--text-mid); line-height: 1.8; max-width: 400px; }
.waitlist-perks { margin-top: 2rem; display: flex; flex-direction: column; gap: 14px; }
.waitlist-perk { display: flex; gap: 12px; align-items: flex-start; }
.waitlist-perk-arrow { color: var(--gold-dark); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.waitlist-perk p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; }
.waitlist-form-card { background: #fff; padding: 52px; border: 1px solid var(--border-light); }
.waitlist-form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.waitlist-form-card > p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.6; }
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.form-row input,
.form-row select {
  width: 100%;
  padding: 13px 15px;
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-row input:focus,
.form-row select:focus { border-color: var(--gold-dark); }
.form-row input::placeholder { color: var(--text-muted); }
.form-submit {
  width: 100%;
  justify-content: center;
  padding: 15px;
  margin-top: 8px;
  font-size: 0.82rem;
}
.form-note { font-size: 0.72rem; color: var(--text-muted); margin-top: 12px; line-height: 1.5; }
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
}
.form-success p { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--text-dark); }

/* ── FOOTER ───────────────────────────────────────────────── */
#site-footer {
  background: var(--black);
  border-top: 1px solid var(--border-dark);
  padding: 72px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: 32px;
}
.footer-brand p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.32);
  line-height: 1.75;
  max-width: 280px;
  margin: 16px 0 24px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 14px;
  transition: all 0.2s;
  line-height: 1;
}
.footer-social a:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
.footer-col h5 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.84rem; color: rgba(255,255,255,0.42); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.18); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.76rem; color: rgba(255,255,255,0.18); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }
.footer-disclaimer {
  margin-top: 24px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.14);
  line-height: 1.7;
  max-width: 720px;
}

/* ── INNER PAGES ──────────────────────────────────────────── */
.page-hero {
  padding: 150px 0 80px;
  background: var(--black);
  border-bottom: 1px solid var(--border-dark);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  max-width: 560px;
  line-height: 1.8;
  font-weight: 300;
}
.page-content {
  background: var(--warm-white);
  padding: 80px 0;
  min-height: 60vh;
}
.page-content-inner {
  max-width: 800px;
}
.page-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.page-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 2rem 0 0.8rem;
  letter-spacing: -0.01em;
}
.page-content p { font-size: 0.97rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 1.2rem; }
.page-content ul, .page-content ol { margin: 1rem 0 1.2rem 1.4rem; color: var(--text-mid); }
.page-content li { font-size: 0.97rem; line-height: 1.75; margin-bottom: 6px; }
.page-content a { color: var(--gold-dark); text-decoration: underline; }
.page-content blockquote {
  border-left: 3px solid var(--gold-dark);
  padding: 12px 0 12px 24px;
  margin: 1.5rem 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-dark);
}

/* Single moonshot */
.moonshot-single-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 60px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.moonshot-single-bg {
  position: absolute; inset: 0;
  opacity: 0.5;
}

/* Blog / Archive */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.post-card {
  background: var(--black-card);
  border: 1px solid var(--border-dark);
  text-decoration: none;
  display: block;
  transition: border-color 0.25s, background 0.25s;
}
.post-card:hover { border-color: rgba(200,169,110,0.2); background: #1a1a1a; }
.post-card-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--black-soft);
}
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.post-card:hover .post-card-thumb img { transform: scale(1.04); }
.post-card-body { padding: 28px; }
.post-card-cat {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.post-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.post-card-body p { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.6; }
.post-card-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border-dark); }
.post-card-meta span { font-size: 0.72rem; color: rgba(255,255,255,0.25); font-family: 'Space Mono', monospace; }

/* 404 */
.not-found {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 24px;
}
.not-found h1 {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  font-weight: 400;
  color: rgba(255,255,255,0.06);
  letter-spacing: -0.04em;
}
.not-found h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 500; }
.not-found p { font-size: 0.95rem; color: rgba(255,255,255,0.4); max-width: 400px; line-height: 1.7; }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  #hero { grid-template-columns: 1fr; min-height: auto; padding: 120px 2rem 60px; }
  .hero-right { display: none; }
  .hero-left { padding: 0; max-width: 100%; }
  .moonshots-grid { grid-template-columns: 1fr 1fr; }
  .approach-grid { grid-template-columns: 1fr 1fr; }
  .research-inner, .waitlist-inner, .about-inner, .manifesto-inner { grid-template-columns: 1fr; }
  .manifesto-left { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-visual { min-height: 300px; }
  .about-text { padding: 48px 40px; }
  nav { padding: 0 1.5rem; }
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .posts-grid { grid-template-columns: 1fr 1fr; }
  .waitlist-form-card { padding: 36px; }
}
@media (max-width: 640px) {
  .moonshots-grid, .approach-grid, .posts-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .about-text { padding: 40px 24px; }
  .waitlist-form-card { padding: 28px 20px; }
  #site-nav { padding: 0 1.2rem; }
  .scroll-hint { display: none; }
}
