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

/* ── Tokens — Aurabora-inspired: forest green on cream, amber accent ───────── */
:root {
  --bg:       #faf6e9;   /* warm cream page background (Aura #fffef6 / #f0eade) */
  --bg-mint:  #edf3ec;   /* soft pastel section tints — used sparingly         */
  --bg-lilac: #f1eef6;
  --bg-pink:  #f9eff0;
  --bg-amber: #f8f1de;
  --ink:      #163a29;   /* deep forest green — primary text + dark fills       */
  --ink-rgb:  22, 58, 41;
  --paper:    #faf6e9;   /* cream — text/marks that sit on dark fills           */
  --paper-rgb: 250, 246, 233;
  --gold:     #b16a1c;   /* warm amber accent, legible on cream (echoes #febc3f)*/
  --gold-rgb: 177, 106, 28;
  --mute:     #6f7b68;   /* muted sage for secondary labels                     */
  --line:     rgba(22, 58, 41, 0.14);
  --pad:      clamp(24px, 5vw, 72px);
  --max:      1200px;
  --sec:      clamp(80px, 10vw, 140px);
  --r:        14px;      /* card radius */
  --r-sm:     10px;
  --r-photo:  18px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Fredoka', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
em { font-style: normal; color: var(--gold); font-weight: 600; }

/* ── Cursor ───────────────────────────────────────────────────────────────── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 44px; height: 44px;
  border: 1px solid rgba(var(--ink-rgb), 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  transition: border-color 0.3s;
}

.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
}

/* ── Nav ──────────────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px var(--pad);
  transition: background 0.5s, backdrop-filter 0.5s;
}

nav.scrolled {
  background: rgba(var(--paper-rgb), 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-name {
  font-family: 'Fredoka', sans-serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-cta {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid rgba(var(--ink-rgb), 0.3);
  border-radius: 999px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* ── Shared section layout ────────────────────────────────────────────────── */
.section-wrap {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.section-label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 500;
  margin-bottom: 14px;
}

p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(var(--ink-rgb), 0.78);
  margin-bottom: 20px;
}

/* ── Reveal ───────────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px var(--pad) 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 82% 8%, rgba(var(--gold-rgb), 0.12), transparent 55%),
    radial-gradient(100% 80% at 0% 100%, rgba(137, 197, 172, 0.18), transparent 55%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-text { will-change: transform; }

.eyebrow {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(52px, 7.5vw, 104px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}

.hero-headline .line { display: block; }
.hero-headline .italic { color: var(--gold); }

.hero-sub {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(var(--ink-rgb), 0.62);
  margin: 0;
}

/* Hero photo side */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3 / 4;
  will-change: transform;
  z-index: 2;
  overflow: hidden;
  border-radius: var(--r-photo);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.photo-stub {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(var(--ink-rgb), 0.05);
  border: 1px solid var(--line);
  border-radius: var(--r-photo);
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--mute);
  text-transform: uppercase;
}

.hero-photo-wrap.no-photo .photo-stub,
.belief-photo-inner.no-photo .photo-stub {
  display: flex;
}

.hero-ring {
  position: absolute;
  border: 1px solid rgba(var(--gold-rgb), 0.28);
  border-radius: 50%;
  will-change: transform;
  pointer-events: none;
}

.hero-ring:not(.hero-ring--sm) {
  width: 360px;
  height: 360px;
  top: 50%;
  right: -20px;
  transform: translate(0, -50%);
  z-index: 1;
}

.hero-ring--sm {
  width: 200px;
  height: 200px;
  bottom: -40px;
  left: -60px;
  z-index: 0;
  border-color: rgba(137, 197, 172, 0.5);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(var(--ink-rgb), 0.4);
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: rgba(var(--ink-rgb), 0.14);
  overflow: hidden;
  position: relative;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: dropLine 2.2s ease-in-out infinite;
}

@keyframes dropLine {
  0%   { top: -100%; }
  100% { top: 200%; }
}

/* ── Press ────────────────────────────────────────────────────────────────── */
.press {
  padding: var(--sec) var(--pad);
  border-top: 1px solid var(--line);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 40px;
}

.press-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 36px;
  background: var(--bg);
  transition: background 0.3s;
}

.press-item:hover { background: var(--bg-amber); }

.press-pub {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.press-hed {
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.4;
  color: rgba(var(--ink-rgb), 0.9);
}

.press-credit {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
  margin-top: 4px;
}

.press-era {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 32px 0 16px;
}

.press-era--archive {
  color: var(--mute);
  margin-top: 40px;
}

.press-grid--archive .press-item {
  opacity: 0.5;
}

.contract-structure {
  margin: 28px 0 32px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(var(--gold-rgb), 0.04);
}

.cs-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  display: block;
  margin-bottom: 20px;
}

.cs-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cs-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  align-items: start;
}

.cs-key {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 2px;
}

.cs-val {
  font-size: 13px;
  color: rgba(var(--ink-rgb), 0.8);
  line-height: 1.6;
}

/* ── Deliverables ─────────────────────────────────────────────────────────── */
.deliverables {
  margin: 32px 0 28px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.deliverables__intro {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.7;
  margin-bottom: 28px;
}

.deliverables__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.deliverable {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  align-items: start;
}

.deliverable__label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  padding-top: 3px;
  line-height: 1.5;
}

.deliverable__desc {
  font-size: 13px;
  color: rgba(var(--ink-rgb), 0.8);
  line-height: 1.6;
}

.deliverables__closer {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

@media (max-width: 640px) {
  .deliverable {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.program-proof {
  margin: 0 0 32px;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
  font-family: 'Fredoka', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(var(--ink-rgb), 0.92);
}

.program-proof em { color: var(--gold); font-weight: 600; }
.belief-text-col em { color: var(--gold); font-weight: 600; }

.press-collage {
  margin-top: 48px;
}

.press-collage-img {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: 0 auto;
  border-radius: var(--r);
}

/* ── Stats ────────────────────────────────────────────────────────────────── */
.stats {
  padding: var(--sec) var(--pad);
  border-top: 1px solid var(--line);
  background: var(--bg-mint);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

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

.stat-num {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.stat-sublabel {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 20px;
  margin-bottom: 2px;
}
.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ── Belief ───────────────────────────────────────────────────────────────── */
.belief {
  padding: var(--sec) var(--pad);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.belief-wrap {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 80px;
  align-items: start;
}

.belief-photo-col { will-change: transform; }

.belief-photo-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--r-photo);
  will-change: transform;
}

.belief-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.belief-photo-inner .photo-stub { position: absolute; }

.belief-text-col {
  padding-top: 48px;
  will-change: transform;
}

/* ── Pillars ──────────────────────────────────────────────────────────────── */
.pillars {
  padding: var(--sec) var(--pad);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.pillars-header { margin-bottom: 64px; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.pillar { will-change: transform; }

.pillar-num {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 20px;
}

/* ── Contracts ────────────────────────────────────────────────────────────── */
.contracts {
  padding: var(--sec) var(--pad);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.contracts-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.contracts-text, .proof-stack { will-change: transform; }

.arrow-link {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
  transition: letter-spacing 0.35s, color 0.3s;
}

.arrow-link:hover {
  letter-spacing: 0.2em;
  color: var(--ink);
}

.proof-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 48px;
}

.proof-card {
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.proof-card:hover {
  border-color: rgba(var(--gold-rgb), 0.4);
  background: var(--bg-amber);
  transform: translateY(-2px);
}

.proof-stat {
  font-family: 'Fredoka', sans-serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.proof-desc {
  font-size: 13px;
  color: rgba(var(--ink-rgb), 0.62);
  letter-spacing: 0.01em;
  margin: 0;
}

.proof-desc--confidential {
  color: rgba(var(--ink-rgb), 0.45);
}

/* ── Origin ───────────────────────────────────────────────────────────────── */
.origin {
  padding: var(--sec) var(--pad);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.origin-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}

.origin-text, .timeline { will-change: transform; }

.timeline { padding-top: 48px; }

.tl-item {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.tl-year {
  font-family: 'Fredoka', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--gold);
  min-width: 64px;
  line-height: 1;
}

.tl-event {
  font-size: 13px;
  color: rgba(var(--ink-rgb), 0.72);
  line-height: 1.55;
  margin: 0;
}

/* ── Partnership ──────────────────────────────────────────────────────────── */
.partnership {
  padding: var(--sec) var(--pad);
  border-top: 1px solid var(--line);
  background: var(--bg-pink);
}

.partnership-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.partnership-text { display: flex; flex-direction: column; }
.partnership-text h2 { margin: 24px 0 28px; }
.partnership-text p { margin-bottom: 20px; }

.partnership-photos {
  position: relative;
  display: flex;
  flex-direction: column;
}

.partnership-photo-main {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: var(--r);
}

.partnership-photo-secondary {
  width: 62%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  margin-top: -36px;
  margin-left: auto;
  border-radius: var(--r);
  outline: 5px solid var(--bg-pink);
}

/* ── Speaking ─────────────────────────────────────────────────────────────── */
.speaking {
  padding: var(--sec) var(--pad);
  border-top: 1px solid var(--line);
}

.speaking-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.topics {
  list-style: none;
  margin-top: 40px;
  counter-reset: topic;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.topics li {
  counter-increment: topic;
  display: flex;
  gap: 20px;
  align-items: baseline;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 14px;
  color: rgba(var(--ink-rgb), 0.78);
  line-height: 1.5;
  transition: background 0.3s, border-color 0.3s;
  margin: 0;
}

.topics li:hover { background: var(--bg-amber); border-color: rgba(var(--gold-rgb), 0.3); }

.topics li::before {
  content: '0' counter(topic);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  min-width: 22px;
  flex-shrink: 0;
}

/* ── Contact ──────────────────────────────────────────────────────────────── */
.contact {
  padding: var(--sec) var(--pad);
  border-top: 1px solid var(--line);
  background: var(--bg-amber);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-sub {
  color: rgba(var(--ink-rgb), 0.72);
  font-size: 15px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

input, textarea, select {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-family: 'Fredoka', sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: vertical;
  -webkit-appearance: none;
  width: 100%;
}

select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b16a1c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

select option {
  background: var(--bg);
  color: var(--ink);
}

input:focus, textarea:focus, select:focus {
  border-color: rgba(var(--gold-rgb), 0.55);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.12);
}

.submit-btn {
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: 999px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 18px 44px;
  cursor: none;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  align-self: flex-start;
}

.submit-btn:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }

.success-msg {
  display: none;
  font-family: 'Fredoka', sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--gold);
  margin-top: 16px;
}

/* ── Partner row ─────────────────────────────────────────────────────────── */
.partner-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.partner-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.partner-logo {
  object-fit: contain;
  background: var(--bg);
  border: 1px solid rgba(var(--gold-rgb), 0.3);
  padding: 6px;
}

.partner-daniel {
  object-position: center 5%;
}

.partner-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-left: 4px;
}

.partner-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}

.partner-link {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}

.partner-link:hover { opacity: 0.7; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
footer {
  padding: 36px var(--pad);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.04em;
}

.footer-socials {
  display: flex;
  gap: 14px;
  align-items: center;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--mute);
}

.footer-socials a { transition: color 0.3s; }
.footer-socials a:hover { color: var(--ink); }
.footer-dot { opacity: 0.35; }

/* ── Built-In Systems ─────────────────────────────────────────────────────── */
.systems {
  padding: var(--sec) var(--pad);
  border-top: 1px solid var(--line);
  background: var(--bg-lilac);
  overflow: hidden;
}

.systems-header {
  max-width: 760px;
  margin-bottom: 56px;
}

.systems-intro {
  font-size: 15px;
  color: rgba(var(--ink-rgb), 0.72);
  margin: 0;
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}

.systems-grid--soon { margin-top: 1px; }

.systems-grid--soon .system-card { opacity: 0.62; }
.systems-grid--soon .sys-status { color: var(--mute); }

.systems-roadmap-label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 40px 0 16px;
}

.systems .arrow-link { margin-top: 44px; }

.system-card {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}

.system-card:hover { background: var(--bg-amber); }

/* Clip / thumbnail */
.sys-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #11281c center / cover no-repeat;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sys-thumb--empty {
  background:
    radial-gradient(120% 120% at 72% 18%, rgba(var(--gold-rgb), 0.22), transparent 60%),
    #11281c;
}

.sys-thumb-num {
  position: absolute;
  top: 14px;
  left: 16px;
  font-family: 'Fredoka', sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  color: rgba(var(--paper-rgb), 0.55);
}

.sys-play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(var(--paper-rgb), 0.5);
  background: rgba(var(--ink-rgb), 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.sys-thumb:hover .sys-play {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.06);
}

.sys-play svg { width: 18px; height: 18px; margin-left: 3px; }
.sys-play svg path { fill: var(--paper); transition: fill 0.3s; }
.sys-thumb:hover .sys-play svg path { fill: var(--ink); }

.sys-thumb-soon {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(var(--paper-rgb), 0.6);
}

.sys-iframe { width: 100%; height: 100%; border: 0; display: block; }

.sys-body {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sys-status {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.sys-body h3 { margin-bottom: 10px; }

.sys-blurb {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(var(--ink-rgb), 0.72);
  margin-bottom: 20px;
  flex: 1;
}

.sys-saved {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

@media (min-width: 901px) and (max-width: 1080px) {
  .systems-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-right {
    display: flex;
    height: 320px;
    order: -1;
  }

  .belief-wrap,
  .contracts-wrap,
  .origin-wrap,
  .partnership-wrap,
  .speaking-wrap,
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .partnership-photo-secondary {
    width: 55%;
    margin-top: -24px;
  }

  .pillars-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .systems-grid { grid-template-columns: 1fr; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .proof-stack, .timeline { padding-top: 0; }
}
