:root {
  --ink: #11110f;
  --paper: #f3f3ee;
  --muted: #6d6d65;
  --line: rgba(17, 17, 15, 0.18);
  --line-strong: rgba(17, 17, 15, 0.42);
  --lime: #dfff32;
  --orange: #ff5c2b;
  --blue: #4d7cff;
  --cyan: #2fe6ff;
  --violet: #6b4cff;
  --radius: 8px;
  --page: 32px;
  --max: 1440px;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-height: 100svh;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  cursor: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-transitioning {
  pointer-events: none;
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  min-height: 100svh;
  overflow: clip;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(140px, 1fr) auto minmax(120px, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px var(--page);
  color: var(--paper);
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease, padding 240ms ease;
}

.topbar::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(17, 17, 15, 0);
  backdrop-filter: blur(0);
  transition: background 240ms ease, backdrop-filter 240ms ease;
}

.topbar.is-scrolled,
.topbar.topbar--solid {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.topbar.is-scrolled::before,
.topbar.topbar--solid::before {
  background: rgba(243, 243, 238, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: max-content;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.nav {
  display: flex;
  gap: 4px;
  justify-content: center;
  padding: 4px;
  border: 1px solid rgba(243, 243, 238, 0.28);
  border-radius: 999px;
  background: rgba(17, 17, 15, 0.18);
  backdrop-filter: blur(10px);
  overflow-x: auto;
  scrollbar-width: none;
}

.topbar.is-scrolled .nav,
.topbar.topbar--solid .nav {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a {
  flex: 0 0 auto;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: currentColor;
  transition: background 180ms ease, color 180ms ease;
}

.nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--lime);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.header-cta .arrow,
.button .arrow,
.text-link .arrow {
  transition: transform 180ms ease;
}

.header-cta:hover .arrow,
.button:hover .arrow,
.text-link:hover .arrow {
  transform: translateX(4px);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  padding: 118px var(--page) 50px;
  color: white;
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 20%;
  right: 8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(223, 255, 50, 0.14) 0%, rgba(77, 124, 255, 0.08) 45%, transparent 70%);
  filter: blur(70px);
  pointer-events: none;
  z-index: -1;
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.7; }
  100% { transform: scale(1.18) translate(-30px, 20px); opacity: 1; }
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(223, 255, 50, 0.35);
  background: rgba(223, 255, 50, 0.07);
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(223, 255, 50, 0.7);
  animation: radarPulse 2s infinite;
}

@keyframes radarPulse {
  0% { box-shadow: 0 0 0 0 rgba(223, 255, 50, 0.7); }
  70% { box-shadow: 0 0 0 9px rgba(223, 255, 50, 0); }
  100% { box-shadow: 0 0 0 0 rgba(223, 255, 50, 0); }
}

.accent-dot {
  color: var(--lime);
  display: inline-block;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), black, transparent 44%);
  opacity: 0.55;
}

.hero-content {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.eyebrow::before {
  flex: 0 0 45px;
  width: 45px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background:
    radial-gradient(circle at 5px 50%, var(--lime) 0 4px, transparent 5px),
    radial-gradient(circle at 23px 50%, var(--orange) 0 4px, transparent 5px),
    radial-gradient(circle at 41px 50%, var(--blue) 0 4px, transparent 5px);
}

.hero-title,
.page-title {
  margin: 0;
  max-width: 980px;
  font-size: clamp(4.5rem, 8.5vw, 7.5rem);
  line-height: 0.88;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 580px) auto;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
}

.lede {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(17, 17, 15, 0.45);
  backdrop-filter: blur(10px);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.button:hover {
  color: var(--ink);
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.button--lime {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 4px 18px rgba(223, 255, 50, 0.3);
}

.button--lime:hover {
  color: var(--ink);
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.4);
}

.button .arrow {
  display: inline-block;
  font-size: 1.05rem;
  line-height: 1;
  transition: transform 200ms ease;
}

.button:hover .arrow {
  transform: translateX(5px);
}

.button--dark {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.button--dark:hover {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.button--orange {
  color: var(--ink);
  background: var(--orange);
  border-color: var(--orange);
}

.button--orange:hover {
  color: var(--ink);
  background: var(--cyan);
  border-color: var(--cyan);
}

.hero-statbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, var(--max));
  margin: 36px auto 0;
  border: none;
  background: transparent;
}

.hero-statbar div {
  min-height: 90px;
  padding: 18px 20px;
  background: rgba(17, 17, 15, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  transition: transform 200ms ease, border-color 200ms ease;
}

.hero-statbar div:hover {
  transform: translateY(-3px);
  border-color: var(--lime);
}

.metric {
  display: block;
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  color: var(--lime);
}

.metric-label {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
  user-select: none;
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee-infinite 26s linear infinite;
}

.marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.marquee-group span,
.marquee-track span {
  display: inline-block;
  padding: 18px 24px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 96px var(--page);
  border-top: 1px solid var(--line);
}

.section--wide {
  width: 100%;
  max-width: none;
}

.section--dark {
  color: var(--paper);
  background: var(--ink);
  border-top: 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.section-label {
  position: sticky;
  top: 94px;
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--muted);
}

.section--dark .section-label {
  color: rgba(243, 243, 238, 0.54);
}

.section-title {
  margin: 0;
  max-width: 900px;
  font-size: 4.4rem;
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
}

.body-large {
  margin: 22px 0 0;
  max-width: 790px;
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--muted);
}

.section--dark .body-large {
  color: rgba(243, 243, 238, 0.68);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line);
  background: var(--line);
}

.manifesto-tile {
  min-height: 230px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--paper);
  transition: transform 220ms ease, background 220ms ease;
}

.manifesto-tile:hover {
  background: white;
  transform: translateY(-5px);
}

.tile-index {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--muted);
}

.manifesto-tile h3,
.venture-card h3,
.program-card h3,
.role-card h3 {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.manifesto-tile p,
.venture-card p,
.program-card p,
.role-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.venture-card p,
.program-card p {
  padding-right: 70px;
}

.media-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  color: white;
  background: var(--ink);
}

.media-band__image {
  min-height: 420px;
  background-image: url("students-telescope-setup.jpg");
  background-position: center;
  background-size: cover;
}

.media-band__content {
  display: grid;
  align-content: end;
  padding: 56px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    var(--ink);
  background-size: 56px 56px;
}

.media-band__content h2 {
  max-width: 720px;
  margin: 0;
  font-size: 4.4rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.media-band__content p {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.14rem;
  line-height: 1.55;
}

.venture-grid,
.program-grid,
.role-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.venture-card,
.program-card,
.role-card,
.resource-link {
  position: relative;
  min-height: 220px;
  padding: 32px 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.venture-card:hover,
.program-card:hover,
.role-card:hover,
.resource-link:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  background: white;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.card-accent {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--accent, var(--lime));
  opacity: 0.92;
  z-index: 0;
  pointer-events: none;
  transition: transform 220ms ease;
}

.venture-card:hover .card-accent,
.program-card:hover .card-accent {
  transform: scale(1.28);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 28px;
  font-weight: 900;
  text-transform: uppercase;
}

.page-hero {
  min-height: 58svh;
  display: grid;
  align-items: end;
  padding: 128px var(--page) 52px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(17, 17, 15, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 15, 0.06) 1px, transparent 1px),
    var(--paper);
  background-size: 64px 64px;
}

.page-hero--image {
  color: white;
  border-bottom: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.36)), url("astronomy-equipment.jpg");
  background-size: cover;
  background-position: center;
}

.page-hero__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.page-kicker {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--muted);
}

.page-hero--image .page-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.page-lede {
  max-width: 780px;
  margin: 28px 0 0;
  font-size: 1.2rem;
  line-height: 1.52;
  color: var(--muted);
}

.page-hero--image .page-lede {
  color: rgba(255, 255, 255, 0.78);
}

.filterbar,
.tabbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}

.filterbar button,
.tabbar button {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease;
}

.filterbar button.is-active,
.tabbar button.is-active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.venture-list {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.venture-row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 190px;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: opacity 180ms ease, transform 180ms ease;
}

.venture-row[hidden] {
  display: none;
}

.venture-row:hover {
  transform: translateX(6px);
}

.venture-date {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  text-transform: uppercase;
  color: var(--muted);
}

.venture-main h2 {
  margin: 0;
  font-size: 2.25rem;
  line-height: 1;
  text-transform: uppercase;
}

.venture-main p {
  max-width: 820px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.venture-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.mini-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-link:hover {
  background: var(--lime);
  border-color: var(--lime);
}

.split-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.statement {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--ink);
}

.statement strong {
  display: block;
  font-size: 3.9rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.statement span {
  max-width: 460px;
  color: rgba(243, 243, 238, 0.68);
  line-height: 1.5;
}

.team-panel {
  min-height: 430px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.team-panel h2 {
  margin: 0;
  font-size: 3.2rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.team-panel p {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.team-panel ul,
.program-copy ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.team-panel li,
.program-copy li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.role-card {
  min-height: 230px;
}

.role-card:nth-child(1) {
  --accent: var(--lime);
}

.role-card:nth-child(2) {
  --accent: var(--orange);
}

.role-card:nth-child(3) {
  --accent: var(--blue);
}

.role-card:nth-child(4) {
  --accent: var(--cyan);
}

/* Clean Leadership Grid */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.leadership-card {
  position: relative;
  min-height: 180px;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.leadership-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.leadership-card .card-topline {
  margin-bottom: 24px;
}

.leader-name {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.leader-role {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.program-card {
  min-height: 270px;
}

.program-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 48px;
  margin-top: 42px;
}

.program-copy h2 {
  margin: 0;
  font-size: 3.5rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.tab-panel[hidden] {
  display: none;
}

.signal-board {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  border: 1px solid rgba(243, 243, 238, 0.2);
  background: rgba(243, 243, 238, 0.2);
}

.signal {
  min-height: 170px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.signal strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.signal span {
  display: block;
  margin-top: 12px;
  color: rgba(243, 243, 238, 0.62);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.15fr);
  gap: 32px;
  align-items: start;
  margin-top: 36px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px;
  margin: 0;
}

.contact-panel {
  position: relative;
  min-height: 160px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.contact-panel:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.contact-panel .card-topline {
  margin-bottom: 12px;
}

.contact-panel h3 {
  margin: 0;
  font-family: var(--font-sans) !important;
  font-size: 1.15rem !important;
  font-weight: 800;
  line-height: 1.25 !important;
  text-transform: none !important;
  color: var(--ink);
  letter-spacing: -0.02em;
  word-break: normal !important;
  overflow-wrap: normal !important;
  white-space: normal !important;
  hyphens: manual !important;
}

.contact-panel p {
  margin: 8px 0 0;
  font-size: 0.88rem !important;
  color: var(--muted);
  line-height: 1.45;
  word-break: normal !important;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-list a,
.contact-list span {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.03);
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  color: var(--ink);
  background: var(--paper);
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--ink);
  background: white;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.76rem;
}

.resource-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resource-link {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-weight: 900;
  text-transform: uppercase;
}

.resource-link span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 42px var(--page);
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.footer strong {
  display: block;
  font-size: 2.6rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.footer p {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-nav a {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: var(--cursor-w, 28px);
  height: var(--cursor-h, 28px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--cursor-r, 999px);
  background: rgba(255, 255, 255, 0.13);
  color: var(--paper);
  pointer-events: none;
  transform: translate3d(var(--cursor-x, -100px), var(--cursor-y, -100px), 0) translate(-50%, -50%);
  transition:
    width 180ms ease,
    height 180ms ease,
    border-radius 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease;
  backdrop-filter: blur(6px);
  mix-blend-mode: exclusion;
}

.cursor::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
  opacity: 0.9;
}

.cursor.is-hidden {
  opacity: 0;
}

.cursor.is-active {
  background: rgba(255, 255, 255, 0.28);
}

.cursor.is-labeled {
  display: grid;
  place-items: center;
  padding: 0 12px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  mix-blend-mode: normal;
  background: rgba(17, 17, 15, 0.86);
  border-color: rgba(17, 17, 15, 0.86);
}

.cursor.is-labeled::after {
  display: none;
}

.page-wipe {
  position: fixed;
  inset: auto 0 0;
  z-index: 500;
  height: 100%;
  background: var(--ink);
  transform: translateY(100%);
  pointer-events: none;
  transition: transform 380ms cubic-bezier(0.77, 0, 0.175, 1);
}

body.is-transitioning .page-wipe {
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

/* --- New Component & Interactive Styles --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--lime), var(--orange), var(--cyan));
  z-index: 10000;
  transition: width 80ms ease-out;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(17, 17, 15, 0.6);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 280ms ease, visibility 280ms ease;
  display: flex;
  justify-content: flex-end;
}

.drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer-panel {
  width: min(100%, 540px);
  height: 100%;
  background: var(--paper);
  color: var(--ink);
  padding: 40px var(--page);
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.drawer-overlay.is-open .drawer-panel {
  transform: translateX(0);
}

.drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: white;
  font-size: 1.5rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.drawer-close:hover {
  background: var(--lime);
  transform: rotate(90deg);
}

.drawer-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.drawer-title {
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.drawer-date {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.drawer-body {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 28px;
}

.drawer-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.drawer-meta-card {
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.drawer-meta-card strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
}

.drawer-meta-card span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
}

.drawer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-box {
  margin-bottom: 20px;
}

.search-box input {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.search-box input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(223, 255, 50, 0.4);
}

.intent-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.intent-pill {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.intent-pill.is-selected {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

@media (max-width: 1120px) {
  .hero-title,
  .page-title {
    font-size: 6rem;
  }

  .section-title,
  .media-band__content h2 {
    font-size: 3.6rem;
  }

  .venture-grid,
  .program-grid,
  .role-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  :root {
    --page: 18px;
  }

  .topbar {
    position: sticky;
    grid-template-columns: 1fr;
    gap: 10px;
    color: var(--ink);
    background: rgba(243, 243, 238, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
  }

  .topbar::before {
    display: none;
  }

  .brand,
  .header-cta {
    justify-self: start;
  }

  .nav {
    justify-content: flex-start;
    width: 100%;
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.64);
  }

  .nav a {
    padding: 8px 8px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 82svh;
    padding-top: 72px;
  }

  .hero-copy,
  .section-grid,
  .media-band,
  .split-panel,
  .program-copy,
  .contact-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-statbar,
  .manifesto-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-label {
    position: static;
  }

  .venture-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .venture-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .media-band__content {
    padding: 36px var(--page);
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .hero-title,
  .page-title {
    font-size: 3.65rem;
  }

  .section-title,
  .media-band__content h2,
  .statement strong,
  .program-copy h2,
  .team-panel h2 {
    font-size: 2.55rem;
  }

  .hero-statbar,
  .manifesto-grid,
  .venture-grid,
  .program-grid,
  .role-grid,
  .contact-grid,
  .resource-grid,
  .signal-board {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .page-hero {
    min-height: 52svh;
    padding-top: 76px;
  }

  .venture-main h2 {
    font-size: 1.95rem;
  }
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  body {
    cursor: auto;
  }

  a,
  button,
  input,
  textarea,
  select {
    cursor: pointer;
  }

  .cursor {
    display: none;
  }

  .marquee-track {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .page-wipe {
    display: none;
  }
}

/* Real Builders Photo Gallery Component */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
  grid-column: span 6;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), border-color 260ms ease, box-shadow 260ms ease;
}

.gallery-card--span-4 {
  grid-column: span 4;
}

.gallery-card--span-8 {
  grid-column: span 8;
}

.gallery-card--span-12 {
  grid-column: span 12;
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: var(--lime);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.gallery-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1), filter 300ms ease;
  filter: brightness(0.82);
}

.gallery-card:hover .gallery-card__img {
  transform: scale(1.04);
  filter: brightness(0.94);
}

.gallery-card__overlay {
  position: relative;
  z-index: 2;
  padding: 24px;
  background: linear-gradient(0deg, rgba(17, 17, 15, 0.94) 0%, rgba(17, 17, 15, 0.4) 65%, transparent 100%);
  color: white;
}

.gallery-card__tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.gallery-card__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
}

.gallery-card__desc {
  margin: 8px 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

@media (max-width: 900px) {
  .gallery-card,
  .gallery-card--span-4,
  .gallery-card--span-8,
  .gallery-card--span-12 {
    grid-column: span 12;
    min-height: 280px;
  }
}

/* ==========================================================================
   BESPOKE EDITORIAL HERO & SEAMLESS 3D DRONE
   ========================================================================== */

.wild-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background-color: #ffffff;
  color: #0a0a0a;
  padding: 24px var(--page) 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
  font-family: var(--font-sans);
}

/* Subtle Ambient Grid */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

/* Minimalist Editorial Masthead */
.wild-masthead {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.wild-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wild-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0a0a0a;
}

.wild-brand-mark {
  width: 12px;
  height: 12px;
  background: #0a0a0a;
  border-radius: 2px;
  transition: transform 300ms ease;
}
.wild-brand-link:hover .wild-brand-mark {
  transform: rotate(45deg);
}

.wild-brand-name {
  font-family: "Unbounded", var(--font-sans);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.wild-brand-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #777777;
  padding-left: 12px;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}

.wild-nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.masthead-time {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #666666;
}

.masthead-time .time-label {
  font-weight: 700;
  color: #0a0a0a;
}

.wild-menu-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 20px;
  border-radius: 999px;
  background: #0a0a0a;
  color: #ffffff;
  border: 1px solid #0a0a0a;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 180ms ease;
}

.wild-menu-pill:hover {
  background: #2a2a2a;
  transform: translateY(-1px);
}

/* Stage Split */
.wild-hero-stage {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 460px) 1fr;
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  margin: auto 0;
  padding: 16px 0;
  width: 100%;
}

/* Wild Typography Column */
.wild-type-column {
  display: flex;
  flex-direction: column;
  max-width: 460px;
  gap: 0;
}

/* Wild Main Display Title */
.wild-display-wrap {
  display: flex;
  flex-direction: column;
}

.wild-main-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  line-height: 0.92;
}

.wild-word {
  display: block;
  font-family: "Unbounded", var(--font-sans);
  font-size: clamp(2.0rem, 3.2vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.wild-word--solid {
  color: #0a0a0a;
}

.wild-word--outline {
  font-family: "Syne", "Unbounded", var(--font-sans);
  color: transparent;
  -webkit-text-stroke: clamp(1.2px, 0.12vw, 2px) #0a0a0a;
  letter-spacing: -0.03em;
}

.wild-display-wrap:hover .wild-word--solid {
  transform: translateX(5px);
}
.wild-display-wrap:hover .wild-word--outline {
  transform: translateX(-3px);
}

/* Clean Editorial Focus Index */
.editorial-index {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: clamp(20px, 2.8vh, 30px);
  font-family: var(--font-mono);
  font-size: clamp(0.72rem, 0.82vw, 0.80rem);
  color: #555555;
}

.index-entry {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.index-num {
  font-weight: 800;
  color: #0a0a0a;
}

.index-divider {
  color: rgba(0, 0, 0, 0.2);
}

/* Understated Bespoke Action Line */
.editorial-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: clamp(20px, 2.8vh, 30px);
}

.editorial-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 800;
  color: #0a0a0a;
  text-decoration: none;
  border-bottom: 2px solid #0a0a0a;
  padding-bottom: 3px;
  transition: transform 180ms ease, color 180ms ease;
}

.editorial-cta:hover {
  transform: translateX(4px);
  color: #ff5c2b;
  border-color: #ff5c2b;
}

.cta-arrow {
  transition: transform 180ms ease;
}
.editorial-cta:hover .cta-arrow {
  transform: translateX(3px);
}

.editorial-link {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: #777777;
  text-decoration: none;
  transition: color 180ms ease;
}

.editorial-link:hover {
  color: #0a0a0a;
}

/* Seamless 3D Drone Viewport Column */
.wild-drone-column {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: clamp(440px, 52vh, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.wild-drone-column::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 12%;
  top: 12%;
  bottom: 8%;
  border: 1px solid rgba(17, 17, 15, 0.08);
  border-radius: 50% 50% 46% 46% / 58% 58% 42% 42%;
  background: radial-gradient(circle at center, rgba(17, 17, 15, 0.015), rgba(17, 17, 15, 0) 72%);
  pointer-events: none;
  z-index: 0;
}

.drone-viewport {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: clamp(440px, 52vh, 600px);
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 58%);
  border: none;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 15, 0.04);
}

.drone-viewport::before {
  content: "";
  position: absolute;
  inset: 8% 18% 8% 12%;
  border: 1px solid rgba(17, 17, 15, 0.06);
  border-radius: 50% 50% 46% 46% / 58% 58% 42% 42%;
  pointer-events: none;
  z-index: 1;
}

.drone-canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  cursor: grab;
  z-index: 2;
  display: block;
  filter: drop-shadow(0 20px 24px rgba(17, 17, 15, 0.12));
}

.drone-canvas:active {
  cursor: grabbing;
}

/* Minimalist Scroll Hint */
.wild-scroll-indicator {
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  align-self: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: #888888;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 180ms ease, transform 180ms ease;
}

.wild-scroll-indicator:hover {
  color: #0a0a0a;
  transform: translateY(2px);
}

/* Full-Screen Minimal Menu Overlay */
.minimal-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #0a0a0a;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 300ms cubic-bezier(0.16, 1, 0.3, 1), visibility 300ms;
}

.minimal-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.minimal-menu-inner {
  height: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px var(--page);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.minimal-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 20px;
}

.menu-top-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.menu-top-brand .minimal-glyph {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-radius: 2px;
}

.minimal-menu-close {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 8px 18px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.minimal-menu-close:hover {
  background: #ffffff;
  color: #0a0a0a;
  border-color: #ffffff;
}

.minimal-menu-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 30px 0;
}

.minimal-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-nav-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  transition: color 200ms ease, transform 200ms ease;
}

.menu-nav-item:hover,
.menu-nav-item.is-active {
  color: #ffffff;
  transform: translateX(12px);
}

.menu-num {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
}

.menu-label {
  font-family: "Unbounded", var(--font-sans);
  font-size: clamp(1.8rem, 4.5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.minimal-menu-meta {
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 40px;
}

.menu-meta-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.meta-heading {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
}

.menu-meta-block p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}

.menu-live-clock {
  font-family: var(--font-mono);
  font-weight: 700;
  color: #dfff32 !important;
}

.menu-meta-link {
  display: inline-block;
  margin-top: 4px;
  font-weight: 800;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .wild-hero-stage {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .wild-drone-column {
    min-height: 380px;
  }
  .drone-viewport {
    min-height: 380px;
  }
  .wild-telemetry {
    display: none;
  }
}

@media (max-width: 768px) {
  .wild-word {
    font-size: clamp(2.6rem, 12vw, 4.2rem);
  }
  .wild-accent-statement {
    font-size: 1.4rem;
  }
  .wild-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .wild-action-btn {
    justify-content: center;
  }
  .minimal-menu-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .minimal-menu-meta {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
  }
}

