/* NØMAD VENTURES — The Path
   Monochrome, editorial, multi-device. Palette lifted from the live site:
   ink #f4f3f0 on near-black #0a0a0b, with a warm parchment accent #e8ddc0. */

:root {
  --bg: #0a0a0b;
  --ink: #f4f3f0;
  --accent: #e8ddc0;
  --panel: rgba(12, 12, 14, 0.55);
  --panel-soft: rgba(12, 12, 14, 0.5);
  --hair: rgba(244, 243, 240, 0.12);
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Archivo', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--ink); }
a:hover { color: var(--accent); }
::selection { background: var(--accent); color: var(--bg); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

@keyframes nvPulse { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }
@keyframes nvCue   { 0%, 100% { transform: scaleY(.4); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; }
}

/* Utility: hidden view */
[hidden] { display: none !important; }

/* ------------------------------------------------------------------ *
 * Scene
 * ------------------------------------------------------------------ */
nomad-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: block;
}
.scene-vignette {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(120% 100% at 50% 40%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.55) 100%);
}

/* ------------------------------------------------------------------ *
 * Header
 * ------------------------------------------------------------------ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 20;
  opacity: 0;
  transition: opacity 1.1s ease 0.25s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 4vw;
  background: linear-gradient(rgba(10, 10, 11, 0.72), rgba(10, 10, 11, 0));
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.site-header.is-revealed { opacity: 1; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img { width: 34px; height: 34px; object-fit: contain; }
.brand-name { font-weight: 900; letter-spacing: 0.06em; font-size: 15px; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
  text-decoration: none;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 10px 14px;
  opacity: .85;
  transition: opacity .2s, color .2s;
}
.nav-link:hover { opacity: 1; color: var(--accent); }

/* Mono buttons share nowrap + tracking */
.mono-btn {
  font-family: var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 2px;
  cursor: pointer;
}

.btn-pair-nav {
  margin-left: 10px;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid rgba(244, 243, 240, 0.35);
  color: var(--ink);
  font-size: 11px;
  transition: all .25s;
}
.btn-pair-nav:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.btn-linked {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
  padding: 9px 16px;
  background: rgba(232, 221, 192, 0.1);
  border: 1px solid rgba(232, 221, 192, 0.4);
  color: var(--accent);
  font-size: 11px;
}
.btn-linked .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  animation: nvPulse 2s infinite;
}

/* ------------------------------------------------------------------ *
 * Main / sections
 * ------------------------------------------------------------------ */
main { position: relative; z-index: 1; }

.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 16vh 6vw;
  box-sizing: border-box;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 6vw 60px;
  box-sizing: border-box;
}
.hero-reveal {
  opacity: 0;
  transform: translateY(26px);
  pointer-events: none;
  transition: opacity 1.4s ease, transform 1.4s ease;
}
.hero-reveal.is-revealed {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  transition: opacity 1.4s ease 0.15s, transform 1.4s ease 0.15s;
}
.eyebrow {
  margin: 0 0 26px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(244, 243, 240, 0.55);
}
.hero h1 {
  margin: 0;
  font-size: clamp(54px, 8.5vw, 148px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: 13ch;
  text-wrap: balance;
}
.hero-sub {
  margin: 34px 0 0;
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 400;
  color: rgba(244, 243, 240, 0.68);
  max-width: 44ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
}
.btn-primary {
  padding: 16px 30px;
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 2px;
  cursor: pointer;
  transition: all .25s;
}
.btn-primary:hover { background: var(--accent); border-color: var(--accent); }
.btn-ghost {
  padding: 16px 30px;
  background: transparent;
  border: 1px solid rgba(244, 243, 240, 0.35);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 2px;
  cursor: pointer;
  transition: all .25s;
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 6vw;
  display: flex;
  align-items: center;
  gap: 14px;
}
.scroll-cue .line {
  display: block;
  width: 1px; height: 42px;
  background: rgba(244, 243, 240, 0.6);
  transform-origin: top;
  animation: nvCue 2.2s ease-in-out infinite;
}
.scroll-cue .label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244, 243, 240, 0.5);
}

/* Shared section eyebrow + heading */
.kicker {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
}
.section h2 {
  font-size: clamp(30px, 3.6vw, 54px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

/* About */
.about-inner {
  max-width: 980px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.panel-glass {
  background: var(--panel);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--hair);
  border-radius: 3px;
  padding: clamp(28px, 4vw, 56px);
}
.panel-glass h2 { margin: 0 0 24px; }
.panel-glass .kicker { margin-bottom: 18px; }
.lead {
  margin: 0;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.65;
  color: rgba(244, 243, 240, 0.72);
  max-width: 60ch;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.card-grid.wide { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.card {
  background: var(--panel-soft);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--hair);
  border-radius: 3px;
  padding: 30px 28px;
  transition: border-color .3s;
}
.card:hover { border-color: rgba(232, 221, 192, 0.5); }
.card .idx {
  margin: 0 0 40px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(244, 243, 240, 0.45);
}
.card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(244, 243, 240, 0.6);
}

/* Approach */
.stack { width: 100%; max-width: 1100px; }
.stage {
  background: var(--panel);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--hair);
  border-radius: 3px;
  padding: 34px 30px;
  transition: border-color .3s;
}
.stage:hover { border-color: rgba(232, 221, 192, 0.5); }
.stage .idx {
  margin: 0 0 46px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(244, 243, 240, 0.45);
}
.stage h3 {
  margin: 0 0 12px;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.stage p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(244, 243, 240, 0.62);
}
.mb48 { margin-bottom: 48px; }
.max20 { max-width: 20ch; }

/* Portfolio */
.pf-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--panel);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--hair);
  border-radius: 3px;
  padding: 32px 28px;
  transition: transform .3s, border-color .3s;
}
.pf-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 221, 192, 0.55);
  color: var(--ink);
}
.pf-card img {
  width: 54px; height: 54px;
  border-radius: 4px;
  object-fit: cover;
}
.pf-card .meta { display: flex; flex-direction: column; gap: 6px; }
.pf-card .name { font-size: 21px; font-weight: 700; }
.pf-card .url {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(244, 243, 240, 0.5);
}

/* Ecosystem */
.eco-card {
  background: var(--panel);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--hair);
  border-radius: 3px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .3s;
}
.eco-card:hover { border-color: rgba(232, 221, 192, 0.5); }
.eco-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.eco-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(244, 243, 240, 0.62);
}
.eco-lead {
  margin: 0 0 48px;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.65;
  color: rgba(244, 243, 240, 0.7);
  max-width: 58ch;
}

/* Contact */
#contact { min-height: 90vh; }
.contact-inner { max-width: 900px; }
.contact-inner h2 { margin: 0 0 30px; }
.contact-mail {
  font-size: clamp(20px, 2.6vw, 36px);
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 221, 192, 0.5);
  padding-bottom: 4px;
  transition: color .25s;
}
.contact-mail:hover { color: var(--accent); }

/* Footer */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 28px 6vw 34px;
  border-top: 1px solid rgba(244, 243, 240, 0.1);
}
.site-footer span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
}
.site-footer .c { color: rgba(244, 243, 240, 0.45); }
.site-footer .c2 { color: rgba(244, 243, 240, 0.35); }

/* ------------------------------------------------------------------ *
 * Pair overlay
 * ------------------------------------------------------------------ */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(6, 6, 7, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.overlay-panel {
  position: relative;
  width: min(880px, 96vw);
  max-height: 90vh;
  overflow: auto;
  background: #0e0e10;
  border: 1px solid rgba(244, 243, 240, 0.16);
  border-radius: 4px;
  padding: clamp(28px, 4vw, 52px);
}
.overlay-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid rgba(244, 243, 240, 0.25);
  border-radius: 2px;
  color: var(--ink);
  font-size: 16px;
  cursor: pointer;
  transition: all .2s;
}
.overlay-close:hover { background: var(--ink); color: var(--bg); }
.overlay-panel h2 {
  margin: 0 0 34px;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.pair-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.pair-box {
  border: 1px solid rgba(244, 243, 240, 0.14);
  border-radius: 3px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pair-box .hint {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244, 243, 240, 0.55);
}
.pair-box .copy {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(244, 243, 240, 0.7);
}
.qr-row { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.qr {
  width: 132px; height: 132px;
  padding: 10px;
  background: var(--ink);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr img, .qr canvas { display: block; }
.code-block { display: flex; flex-direction: column; gap: 8px; }
.code-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244, 243, 240, 0.45);
}
.code-value {
  font-family: var(--mono);
  font-size: 42px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--accent);
}
.waiting {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 243, 240, 0.5);
}
.waiting .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: nvPulse 1.6s infinite;
}
.demo-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 243, 240, 0.6);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.demo-link:hover { color: var(--accent); }

.code-input-row { display: flex; gap: 10px; }
.code-input {
  flex: 1;
  min-width: 0;
  background: rgba(244, 243, 240, 0.06);
  border: 1px solid rgba(244, 243, 240, 0.25);
  border-radius: 2px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 26px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: center;
}
.join-btn {
  padding: 12px 22px;
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 2px;
  cursor: pointer;
}
.join-btn:hover { background: var(--accent); border-color: var(--accent); }
.join-error {
  margin: 0;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.proto-note {
  margin: 26px 0 0;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  line-height: 1.7;
  color: rgba(244, 243, 240, 0.38);
}

/* ------------------------------------------------------------------ *
 * Remote console
 * ------------------------------------------------------------------ */
.remote {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  padding: max(18px, 3vw);
  box-sizing: border-box;
  gap: 18px;
}
.remote-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.remote-brand { font-weight: 900; letter-spacing: 0.08em; font-size: 14px; }
.remote-brand span { color: var(--accent); }
.remote-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.remote-status .dot {
  width: 7px; height: 7px; border-radius: 50%;
  animation: nvPulse 2s infinite;
}

.remote-join {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}
.remote-join h1 {
  margin: 0;
  font-size: clamp(24px, 7vw, 34px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.remote-join .code-input {
  font-size: 32px;
  padding: 16px;
  width: 100%;
}
.remote-connect {
  padding: 18px;
  background: var(--ink);
  border: none;
  color: var(--bg);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 2px;
  cursor: pointer;
  min-height: 52px;
}
.remote-join .join-error { text-align: center; font-size: 12px; }
.remote-back {
  padding: 12px;
  background: transparent;
  border: none;
  color: rgba(244, 243, 240, 0.5);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.remote-paired {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}
.remote-heading {
  margin: 4px 0 0;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244, 243, 240, 0.5);
}
.remote-nav { display: flex; flex-direction: column; gap: 10px; }
.remote-nav-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  min-height: 56px;
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(244, 243, 240, 0.25);
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s;
  text-align: left;
}
.remote-nav-btn.is-active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.remote-nav-btn .num { font-size: 10px; opacity: .55; }

.trackpad {
  height: 180px;
  border: 1px dashed rgba(232, 221, 192, 0.45);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: none;
  cursor: grab;
  background: radial-gradient(60% 80% at 50% 50%, rgba(232, 221, 192, 0.07), transparent);
}
.trackpad:active { cursor: grabbing; }
.trackpad span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244, 243, 240, 0.55);
  pointer-events: none;
}
.remote-actions { display: flex; gap: 10px; }
.remote-recenter,
.remote-disconnect {
  flex: 1;
  padding: 14px;
  min-height: 48px;
  background: transparent;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 2px;
  cursor: pointer;
}
.remote-recenter { border: 1px solid rgba(244, 243, 240, 0.3); color: var(--ink); }
.remote-recenter:hover { background: var(--ink); color: var(--bg); }
.remote-disconnect { border: 1px solid rgba(232, 221, 192, 0.4); color: var(--accent); }
.remote-foot {
  margin: 8px 0 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  line-height: 1.7;
  color: rgba(244, 243, 240, 0.35);
  text-align: center;
}

/* ------------------------------------------------------------------ *
 * Utilities added for the expanded homepage
 * ------------------------------------------------------------------ */
.mb24 { margin-bottom: 24px; }
.mt28 { margin-top: 28px; }

.skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 100;
  background: var(--ink); color: var(--bg);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em;
  padding: 10px 16px; border-radius: 2px; text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* Hero additions */
.hero-tag {
  margin: 22px 0 0;
  font-family: var(--mono);
  font-size: clamp(12px, 1.2vw, 15px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
a.btn-primary, a.btn-ghost { text-decoration: none; display: inline-flex; align-items: center; }
.btn-ghost.solid { background: rgba(232, 221, 192, 0.08); border-color: rgba(232, 221, 192, 0.5); color: var(--accent); }
.btn-ghost.solid:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }

/* ------------------------------------------------------------------ *
 * Header: hamburger + full-screen mobile overlay
 * ------------------------------------------------------------------ */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid rgba(244, 243, 240, 0.3);
  border-radius: 3px; cursor: pointer; padding: 0;
}
.nav-toggle span {
  display: block; width: 20px; height: 1.5px; background: var(--ink);
  transition: transform .3s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-overlay {
  position: fixed; inset: 0; z-index: 40;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  gap: 10px; padding: 12vh 8vw;
  background: rgba(6, 6, 7, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .35s ease, visibility .35s;
}
.nav-overlay.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.nav-overlay nav { display: flex; flex-direction: column; gap: 4px; width: 100%; }
.nav-overlay-link {
  display: flex; align-items: baseline; gap: 16px;
  text-decoration: none; color: var(--ink);
  font-size: clamp(30px, 9vw, 46px); font-weight: 900;
  letter-spacing: -0.02em; line-height: 1.3;
  padding: 6px 0; transition: color .2s;
}
.nav-overlay-link:hover, .nav-overlay-link:focus { color: var(--accent); }
.nav-overlay-link .n {
  font-family: var(--mono); font-size: 13px; font-weight: 400;
  letter-spacing: 0.1em; color: rgba(244, 243, 240, 0.4);
}
.overlay-pair { margin: 28px 0 0; align-self: flex-start; }

/* ------------------------------------------------------------------ *
 * Model — pillars + operating detail
 * ------------------------------------------------------------------ */
.pillars { margin-top: 8px; }
.card.pillar .idx {
  margin-bottom: 20px;
  color: var(--accent);
  letter-spacing: 0.2em; text-transform: uppercase;
}
.model-detail {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px; margin-top: 40px;
}
.model-detail .stage .idx { text-transform: none; letter-spacing: 0.04em; color: var(--accent); }

/* Group label above card groups */
.group-label {
  margin: 44px 0 16px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(244, 243, 240, 0.5);
}
.group-label:first-of-type { margin-top: 8px; }

/* ------------------------------------------------------------------ *
 * Portfolio — expanded cards
 * ------------------------------------------------------------------ */
.pf-card .desc {
  font-size: 14.5px; line-height: 1.6;
  color: rgba(244, 243, 240, 0.72);
}
.pf-card .tags { display: flex; flex-wrap: wrap; gap: 6px; }
.pf-card .tag {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(244, 243, 240, 0.6);
  border: 1px solid var(--hair); border-radius: 2px;
  padding: 4px 8px;
}
.soft-note { padding: clamp(24px, 3vw, 40px); }
.soft-note .lead { max-width: 70ch; }

/* ------------------------------------------------------------------ *
 * Ecosystem flywheel
 * ------------------------------------------------------------------ */
.flywheel {
  list-style: none; margin: 8px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px 28px;
  counter-reset: fw;
}
.flywheel li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--hair);
}
.flywheel .fw-n {
  font-family: var(--mono); font-size: 12px;
  color: var(--accent); padding-top: 3px; min-width: 22px;
}
.flywheel .fw-t {
  font-size: 15px; line-height: 1.55;
  color: rgba(244, 243, 240, 0.72);
}
.flywheel .fw-t b { color: var(--ink); font-weight: 700; }

/* Initiative cards */
.init-card {
  display: flex; flex-direction: column; gap: 12px;
  text-decoration: none;
  background: var(--panel); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid var(--hair); border-radius: 3px;
  padding: 30px 28px; transition: transform .3s, border-color .3s;
}
a.init-card:hover { transform: translateY(-5px); border-color: rgba(232, 221, 192, 0.55); }
.init-card .name { font-size: 21px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.init-card .desc { font-size: 14.5px; line-height: 1.6; color: rgba(244, 243, 240, 0.66); }
.init-card .url {
  margin-top: auto;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  color: rgba(244, 243, 240, 0.5);
}
.init-card .url.muted { color: rgba(244, 243, 240, 0.35); }

/* ------------------------------------------------------------------ *
 * Places
 * ------------------------------------------------------------------ */
.place-card {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--panel); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid var(--hair); border-radius: 3px;
  padding: 30px 28px; transition: border-color .3s;
}
.place-card:hover { border-color: rgba(232, 221, 192, 0.5); }
.place-card .city {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--accent);
}
.place-card .place-name { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.place-card .desc { font-size: 14px; line-height: 1.6; color: rgba(244, 243, 240, 0.62); }
.place-card .status {
  margin-top: 6px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(244, 243, 240, 0.55);
}
.place-card.muted-card { opacity: 0.72; }

/* ------------------------------------------------------------------ *
 * Events
 * ------------------------------------------------------------------ */
.event-card {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--panel); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid var(--hair); border-radius: 3px;
  padding: 30px 28px; transition: border-color .3s;
}
.event-card:hover { border-color: rgba(232, 221, 192, 0.5); }
.event-card .ev-type {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--accent);
}
.event-card .ev-name { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.event-card .desc { font-size: 14px; line-height: 1.6; color: rgba(244, 243, 240, 0.62); }

/* ------------------------------------------------------------------ *
 * Founder
 * ------------------------------------------------------------------ */
.founder { margin-top: 8px; }
.founder-card {
  background: var(--panel); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid var(--hair); border-radius: 3px;
  padding: clamp(28px, 3.5vw, 44px);
}
.founder-card h3 { margin: 0 0 16px; font-size: 26px; font-weight: 700; letter-spacing: -0.01em; }
.founder-card p { margin: 0 0 14px; font-size: 16px; line-height: 1.65; color: rgba(244, 243, 240, 0.72); max-width: 68ch; }
.founder-card .founder-note { font-size: 14px; color: rgba(244, 243, 240, 0.55); margin-bottom: 0; }

/* ------------------------------------------------------------------ *
 * Connect — audience cards
 * ------------------------------------------------------------------ */
.connect-grid { margin-top: 8px; }
.connect-card {
  background: var(--panel); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid var(--hair); border-radius: 3px;
  padding: 30px 28px; transition: border-color .3s;
}
.connect-card:hover { border-color: rgba(232, 221, 192, 0.4); }
.connect-card h3 { margin: 0 0 18px; font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.connect-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.connect-card li a {
  text-decoration: none; font-size: 15px; line-height: 1.4;
  color: rgba(244, 243, 240, 0.78);
  border-bottom: 1px solid transparent; transition: color .2s, border-color .2s;
}
.connect-card li a:hover { color: var(--accent); border-color: rgba(232, 221, 192, 0.4); }
.connect-card.highlight { border-color: rgba(232, 221, 192, 0.35); }
.connect-card.highlight p { margin: 0 0 16px; font-size: 14.5px; line-height: 1.6; color: rgba(244, 243, 240, 0.66); }
.connect-card.highlight .contact-mail { font-size: 18px; }

/* ------------------------------------------------------------------ *
 * Responsive: hamburger takes over below 900px (8 links won't fit inline)
 * ------------------------------------------------------------------ */
@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .site-header { padding: 14px 5vw; }
}
@media (max-width: 720px) {
  .section { padding: 12vh 6vw; }
  .flywheel li { padding: 14px 0; }
}

/* Utilities + portfolio placeholder monogram / static card */
.mt20 { margin-top: 20px; }
.accent-lead {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
}
.pf-logo-ph {
  width: 54px; height: 54px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(232, 221, 192, 0.12); color: var(--accent);
  font-weight: 900; font-size: 22px;
}
.pf-card.static { cursor: default; }
.pf-card.static:hover { transform: none; border-color: var(--hair); }

/* Network status (real cross-device pairing) */
.net-status {
  margin: 0 0 20px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(244, 243, 240, 0.55);
  display: inline-flex; align-items: center; gap: 8px;
}
.net-status::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: rgba(244, 243, 240, 0.4); flex: none;
}
.net-status[data-state="ready"] { color: var(--accent); }
.net-status[data-state="ready"]::before { background: var(--accent); animation: nvPulse 2s infinite; }
.net-status[data-state="offline"] { color: rgba(244, 243, 240, 0.42); }
.net-status[data-state="offline"]::before { background: #9a6b6b; }
.remote-join .net-status { justify-content: center; }

/* Nomad Pads — compact city strip (replaces the old Places card grid) */
.pads { margin-top: 52px; max-width: 760px; }
.pads .group-label { margin-top: 0; }
.pads-line {
  margin: 0 0 22px; font-size: clamp(16px, 1.4vw, 20px); line-height: 1.6;
  color: rgba(244, 243, 240, 0.72); max-width: 56ch;
}
.pads-cities { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.pads-cities span {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(244, 243, 240, 0.82);
  border: 1px solid var(--hair); border-radius: 2px; padding: 8px 14px;
  transition: border-color .25s, color .25s;
}
.pads-cities span:hover { border-color: rgba(232, 221, 192, 0.5); color: var(--accent); }
.pads-link { font-size: 18px; }

/* Connect — single email CTA under the audience cards */
.connect-email { display: inline-block; margin-top: 40px; font-size: clamp(22px, 2.6vw, 34px); }
