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

:root {
  --midnight:      #0A0F1C;
  --deep-slate:    #121826;
  --slate:         #1D2333;
  --teal:          #2DD4BF;
  --bright-teal:   #14F1D9;
  --violet:        #8B5CF6;
  --soft-violet:   #A78BFA;
  --glow-violet:   #C4B5FD;

  --text-primary:   #E8EDF5;
  --text-secondary: #9DAFC8;
  --text-muted:     #6B7A95;
  --border-subtle:  rgba(255, 255, 255, 0.06);
  --border-mid:     rgba(255, 255, 255, 0.10);

  --font: 'Inter', sans-serif;
  --max-w: 1200px;
  --page-pad: clamp(1.5rem, 5vw, 4rem);
}

html {
  background: var(--midnight);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body { min-height: 100vh; display: flex; flex-direction: column; }

/* Teal scrollbars */
* { scrollbar-width: thin; scrollbar-color: rgba(45,212,191,0.18) transparent; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(45,212,191,0.18); border-radius: 3px; }

/* ── Subtle grid background (from timeline) ───────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--border-subtle) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

/* ── Layout ───────────────────────────────────────────────────────────── */
.page-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  flex: 1;
}

/* ── Nav ──────────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 28, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark { width: 32px; height: 32px; flex-shrink: 0; }
.nav-logo-mark svg { width: 100%; height: 100%; overflow: visible; }
.nav-logo-mark img { width: 100%; height: 100%; display: block; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.nav-logo-name {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.nav-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}

.nav-link:hover { color: var(--text-primary); background: rgba(255,255,255,0.04); }
.nav-link.active { color: var(--teal); }

.nav-link.nav-history {
  color: var(--text-muted);
}

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--midnight);
  background: var(--teal);
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.88; }

/* ── Section label (from timeline) ───────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2rem;
}

.section-label-text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(45, 212, 191, 0.72);
  white-space: nowrap;
}

.section-label-text::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 0.75em;
  background: linear-gradient(to bottom, var(--bright-teal), var(--teal));
  border-radius: 2px;
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 0 8px rgba(45,212,191,0.5);
}

.section-label-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(45,212,191,0.25), transparent);
}

/* ── Section divider ──────────────────────────────────────────────────── */
.section-divider {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin: 0;
}

/* ── Footer ───────────────────────────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-subtle);
  background: rgba(10,15,28,0.6);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem var(--page-pad);
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-logo-mark { width: 24px; height: 24px; flex-shrink: 0; }
.footer-logo-mark svg { width: 100%; height: 100%; overflow: visible; }
.footer-logo-mark img { width: 100%; height: 100%; display: block; }

.footer-brand {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.footer-tagline {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  transition: color 0.15s;
}
.footer-link:hover { color: var(--teal); }

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social-link {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
  transition: color 0.15s, border-color 0.15s;
}
.footer-social-link:hover { color: var(--teal); border-color: rgba(45,212,191,0.3); }

/* ── Home: Hero ───────────────────────────────────────────────────────── */
.hero {
  padding-top: clamp(3rem, 7vw, 6rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 640px;
  margin-left: auto;
}

#orbital-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.25rem;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  animation: pulse-dot 2.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--teal); }
  50%       { opacity: 0.4; box-shadow: 0 0 3px var(--teal); }
}

.hero-eyebrow-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.hero-headline {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--midnight);
  background: var(--teal);
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.7rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid var(--border-mid);
  border-radius: 8px;
  text-decoration: none;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.btn-secondary:hover {
  color: var(--text-primary);
  border-color: rgba(45,212,191,0.3);
  background: rgba(45,212,191,0.04);
}

/* Stats bar beneath hero fold */
.stats-bar {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  background: rgba(255,255,255,0.015);
}

.stat-card {
  flex: 1;
  text-align: center;
  padding: 1.5rem 1.75rem;
  border-right: 1px solid var(--border-subtle);
  transition: border-color 0.2s, background 0.2s;
}
.stat-card:last-child { border-right: none; }
.stat-card:hover {
  background: rgba(45,212,191,0.03);
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(45,212,191,0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── Home: Body sections ──────────────────────────────────────────────── */
.content-section {
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.content-section + .content-section {
  padding-top: 0;
}

/* ── Convictions ──────────────────────────────────────────────────────── */
.convictions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
}

.conviction-item {
  padding: 1.75rem 1.75rem;
  background: rgba(10,15,28,0.8);
  transition: background 0.2s;
}
.conviction-item:hover { background: rgba(18,24,38,0.9); }

.conviction-num {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
  opacity: 0.7;
}

.conviction-title {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.conviction-body {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Products list ────────────────────────────────────────────────────── */
.products-list { display: flex; flex-direction: column; }

.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
  gap: 1.5rem;
  color: inherit;
  border-radius: 4px;
}
.product-row:first-child { border-top: 1px solid var(--border-subtle); }

.product-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.35rem;
}

.product-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.product-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: right;
}

/* ── Signals / Insights cards ─────────────────────────────────────────── */
.signals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.signal-card {
  padding: 1.5rem;
  background: var(--deep-slate);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.signal-card:hover {
  border-color: rgba(45,212,191,0.25);
  transform: translateY(-2px);
  background: rgba(18,24,38,0.9);
}

.signal-type {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.signal-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
}

.signal-desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
}

.signal-link {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ── CTA section ──────────────────────────────────────────────────────── */
.cta-section {
  padding: clamp(3rem, 5vw, 5rem) 0 clamp(4rem, 6vw, 6rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#flow-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.cta-headline {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.cta-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Inner pages: page header ─────────────────────────────────────────── */
.page-header {
  padding: clamp(3rem, 6vw, 5rem) 0 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 3.5rem;
}

.page-header-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.page-header-headline {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-header-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.65;
}

/* ── Team page ────────────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.team-card {
  padding: 2rem 1.75rem;
  background: var(--deep-slate);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  transition: border-color 0.2s;
  text-align: center;
}
.team-card:hover { border-color: rgba(45,212,191,0.2); }

.team-photo {
  width: 132px;
  height: 132px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(45,212,191,0.35);
  box-shadow: 0 0 0 6px rgba(45,212,191,0.05);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card-role {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.team-card-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.25rem;
}

.team-card-title {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.team-card-bio {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  text-align: left;
}

.profile-links {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 0.75rem;
}

.profile-links a,
.advisor-names a {
  color: var(--bright-teal);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}

.profile-links a:hover,
.advisor-names a:hover {
  color: var(--text-primary);
}

/* Partners */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.partner-card {
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color 0.2s;
}
.partner-card:hover { border-color: rgba(45,212,191,0.18); }

.partner-marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.6;
  margin-top: 6px;
  flex-shrink: 0;
}

.partner-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.partner-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ── Products page ────────────────────────────────────────────────────── */
.product-detail {
  padding: 2.5rem;
  background: var(--deep-slate);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  transition: border-color 0.2s;
}
.product-detail:hover { border-color: rgba(45,212,191,0.2); }

.product-detail-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.product-detail-tag {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.4rem;
}

.product-detail-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.product-detail-badge {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border: 1px solid var(--border-mid);
  border-radius: 4px;
  padding: 3px 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.product-detail-body {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 1.5rem;
}

.product-detail-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.86rem;
  color: var(--text-secondary);
}

.feature-item::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  opacity: 0.7;
  position: relative;
  top: -1px;
}

/* ── Contact page ─────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.contact-tile {
  padding: 2rem;
  background: var(--deep-slate);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s, transform 0.2s;
}
.contact-tile:hover {
  border-color: rgba(45,212,191,0.28);
  transform: translateY(-2px);
}

.contact-tile-type {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.contact-tile-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-tile-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
}

.contact-tile-email {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--teal);
}

.contact-location {
  padding: 1.75rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-location strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ── Reveal animations ────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal { animation: fadeUp 0.5s ease both; }
.reveal-1 { animation-delay: 0.05s; }
.reveal-2 { animation-delay: 0.12s; }
.reveal-3 { animation-delay: 0.19s; }
.reveal-4 { animation-delay: 0.26s; }

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 4 / 3; max-width: 100%; margin: 1.5rem 0 0; order: -1; }
  .stats-bar { gap: 0; }
  .stat-card { padding: 1.25rem 1rem; }

  .signals-grid { grid-template-columns: 1fr; }
  .product-row { grid-template-columns: 1fr; gap: 0.5rem; }
  .product-meta { text-align: left; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links .nav-link:not(.nav-cta):not(.nav-history) { display: none; }
}

@media (max-width: 600px) {
  .nav-links .nav-history { display: none; }
  .stats-bar { flex-direction: column; border-radius: 12px; }
  .stat-card { border-right: none; border-bottom: 1px solid var(--border-subtle); }
  .stat-card:last-child { border-bottom: none; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ── Scenius recreation pass ──────────────────────────────────────────── */
:root {
  --midnight: #080b0e;
  --deep-slate: #11161b;
  --slate: #1a2128;
  --teal: #28d6c4;
  --bright-teal: #44f1dc;
  --violet: #8d7cf6;
  --soft-violet: #b7a9ff;
  --glow-violet: #d1c7ff;
  --brass: #d7c48f;
  --pine: #20362f;
  --ink: #080b0e;
  --text-primary: #f2f0e9;
  --text-secondary: #b8c0bd;
  --text-muted: #79837f;
  --border-subtle: rgba(242, 240, 233, 0.08);
  --border-mid: rgba(242, 240, 233, 0.16);
  --max-w: 1180px;
  --page-pad: clamp(1.1rem, 4vw, 3.5rem);
}

html {
  background: var(--midnight);
  color: var(--text-primary);
}

body {
  background:
    radial-gradient(circle at 12% 9%, rgba(45, 212, 191, 0.10), transparent 34rem),
    radial-gradient(circle at 84% 18%, rgba(139, 92, 246, 0.08), transparent 30rem),
    linear-gradient(180deg, #0a0f1c 0%, #101724 48%, #0a0f1c 100%);
  overflow-x: hidden;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: none;
}

.site-nav {
  background: rgba(10, 15, 28, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.nav-inner {
  height: 72px;
}

.nav-logo {
  gap: 12px;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
}

.nav-logo-name,
.footer-brand {
  color: #fffaf0;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.nav-links {
  gap: 0.28rem;
}

.nav-link {
  color: var(--text-muted);
  padding: 0.45rem 0.7rem;
  border-radius: 5px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.nav-link.active {
  color: var(--bright-teal);
}

.nav-cta,
.btn-primary {
  color: #07100f;
  background: var(--bright-teal);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 30px rgba(40, 214, 196, 0.14);
}

.nav-cta {
  border-radius: 5px;
  padding: 0.55rem 0.95rem;
}

.btn-primary,
.btn-secondary {
  min-height: 48px;
  border-radius: 6px;
}

.btn-secondary {
  color: var(--text-primary);
  background: rgba(242, 240, 233, 0.035);
  border-color: rgba(242, 240, 233, 0.14);
}

.btn-secondary:hover {
  background: rgba(215, 196, 143, 0.08);
  border-color: rgba(215, 196, 143, 0.28);
}

.hero {
  min-height: min(720px, calc(100svh - 72px));
  display: flex;
  align-items: center;
  padding-top: clamp(2.25rem, 5vw, 4.75rem);
  padding-bottom: clamp(1.75rem, 4vw, 3.25rem);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.84fr);
  gap: clamp(2rem, 5vw, 4.25rem);
  width: 100%;
}

.hero-copy {
  max-width: 680px;
}

.hero-eyebrow-text,
.page-header-eyebrow,
.section-label-text,
.product-tag,
.product-detail-tag,
.signal-type,
.contact-tile-type {
  color: var(--brass);
  letter-spacing: 0.16em;
}

.eyebrow-dot,
.partner-marker,
.feature-item::before,
.section-label-text::before {
  background: var(--bright-teal);
}

.hero-headline {
  max-width: 720px;
  font-size: clamp(2.55rem, 4.8vw, 4.35rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
  color: #fffaf0;
  margin-bottom: 1.25rem;
}

.hero-sub {
  max-width: 600px;
  color: rgba(242, 240, 233, 0.72);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.72;
}

.hero-visual {
  max-width: 600px;
  filter: saturate(0.9);
}

.stats-bar {
  margin-top: -0.75rem;
  margin-bottom: 2.8rem;
  background: rgba(18, 24, 38, 0.52);
  border-color: rgba(45, 212, 191, 0.12);
  border-radius: 8px;
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.stat-card {
  padding: 1.35rem 1rem;
  background: rgba(255, 255, 255, 0.012);
}

.stat-value {
  color: #fffaf0;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

.stat-label {
  color: rgba(215, 196, 143, 0.72);
  letter-spacing: 0.1em;
}

.section-divider {
  border-top-color: rgba(242, 240, 233, 0.09);
}

.content-section {
  padding: clamp(2.15rem, 4.2vw, 3.55rem) 0;
  scroll-margin-top: 96px;
}

.content-section p {
  color: rgba(242, 240, 233, 0.72) !important;
}

.section-label {
  margin-bottom: 1.25rem;
}

.section-label-line {
  background: linear-gradient(to right, rgba(215, 196, 143, 0.35), transparent);
}

.convictions-grid,
.signals-grid,
.team-grid,
.partners-grid,
.contact-grid {
  gap: 1rem;
}

.convictions-grid {
  background: transparent;
  border: 0;
  border-radius: 0;
  grid-template-columns: repeat(4, 1fr);
}

.conviction-item,
.signal-card,
.team-card,
.product-detail,
.contact-tile,
.partner-card,
.contact-location {
  background: rgba(18, 24, 38, 0.52);
  border: 1px solid rgba(45, 212, 191, 0.12);
  border-radius: 8px;
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.conviction-item {
  padding: 1.55rem;
}

.conviction-item:hover,
.signal-card:hover,
.team-card:hover,
.product-detail:hover,
.contact-tile:hover,
.partner-card:hover {
  background: rgba(18, 24, 38, 0.62);
  border-color: rgba(40, 214, 196, 0.24);
}

.conviction-num {
  color: var(--brass);
}

.conviction-title,
.signal-title,
.product-name,
.product-detail-name,
.contact-tile-name,
.partner-name,
.team-card-name {
  color: #fffaf0;
}

.conviction-body,
.signal-desc,
.product-desc,
.product-detail-body,
.feature-item,
.contact-tile-desc,
.partner-desc,
.team-card-bio,
.page-header-sub,
.cta-sub,
.footer-tagline {
  color: rgba(242, 240, 233, 0.68);
}

.products-list {
  border-top: 1px solid rgba(242, 240, 233, 0.1);
}

.product-row {
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  padding: 1.55rem 1.25rem;
  column-gap: clamp(2rem, 5vw, 4.5rem);
  border-bottom-color: rgba(242, 240, 233, 0.1);
}

.product-row:first-child {
  border-top: 0;
}

.product-meta,
.contact-tile-email,
.signal-link {
  color: var(--bright-teal);
}

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

.page-header {
  padding-top: clamp(4rem, 8vw, 7rem);
  border-bottom-color: rgba(242, 240, 233, 0.1);
}

.page-header-headline {
  max-width: 760px;
  color: #fffaf0;
  font-size: clamp(2.25rem, 5vw, 4.35rem);
  letter-spacing: 0;
  line-height: 1;
}

.page-header-sub {
  max-width: 640px;
}

.team-card {
  padding: 1rem 1rem 1.45rem;
  text-align: left;
}

.team-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0 0 1.2rem;
  border-radius: 7px;
  border: 1px solid rgba(242, 240, 233, 0.13);
  box-shadow: none;
  background: rgba(255, 255, 255, 0.012);
}

.team-card-name {
  font-size: 1.15rem;
  margin-bottom: 0.1rem;
}

.team-card-title {
  color: var(--brass);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.product-detail {
  padding: clamp(1.4rem, 3vw, 2.4rem);
}

.product-detail-badge {
  color: var(--brass);
  border-color: rgba(215, 196, 143, 0.24);
  background: rgba(215, 196, 143, 0.06);
}

.feature-item {
  padding: 0.55rem 0;
  border-top: 1px solid rgba(242, 240, 233, 0.07);
}

.contact-tile {
  min-height: 250px;
}

.contact-location {
  border-left: 3px solid rgba(40, 214, 196, 0.5);
}

.cta-section {
  margin-top: 1rem;
  padding: clamp(2.35rem, 4.4vw, 3.9rem) 0 clamp(2.9rem, 5.2vw, 4.7rem);
  scroll-margin-top: 96px;
}

.cta-inner {
  max-width: 680px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
  text-align: left;
}

.contact-copy {
  padding-top: 0.4rem;
}

.contact-copy .cta-sub {
  margin-bottom: 0;
}

.cta-headline {
  color: #fffaf0;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  letter-spacing: 0;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1.15rem, 3vw, 1.65rem);
  background: rgba(18, 24, 38, 0.52);
  border: 1px solid rgba(45, 212, 191, 0.12);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  text-align: left;
}

.form-field {
  display: grid;
  gap: 0.4rem;
  color: rgba(242, 240, 233, 0.72);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field-full,
.form-footer,
.form-status {
  grid-column: 1 / -1;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(242, 240, 233, 0.13);
  border-radius: 6px;
  background: rgba(8, 11, 14, 0.46);
  color: var(--text-primary);
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
  padding: 0.78rem 0.85rem;
  outline: none;
  transition: border-color 0.16s, background 0.16s;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(45, 212, 191, 0.48);
  background: rgba(8, 11, 14, 0.64);
}

.form-honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.form-note,
.form-status {
  margin: 0;
  color: rgba(242, 240, 233, 0.56);
  font-size: 0.78rem;
  line-height: 1.5;
}

.form-footer .btn-primary {
  border: 0;
  cursor: pointer;
  min-width: 132px;
  justify-content: center;
}

.form-footer .btn-primary:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-status.is-success {
  color: var(--bright-teal);
}

.form-status.is-error {
  color: #fca5a5;
}

.site-footer {
  background: #07090b;
  border-top-color: rgba(242, 240, 233, 0.1);
}

.footer-inner {
  padding-top: 1.35rem;
  padding-bottom: 1.35rem;
}

.footer-link {
  color: rgba(242, 240, 233, 0.54);
}

.footer-link:hover {
  color: var(--bright-teal);
}

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

  .team-grid,
  .signals-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .contact-panel,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .nav-inner {
    height: auto;
    min-height: 68px;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.1rem;
  }

  .nav-links .nav-link:not(.nav-cta):not(.nav-history) {
    display: inline-flex;
  }

  .nav-link,
  .nav-cta {
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    padding-top: clamp(1.6rem, 5vw, 2.5rem);
    padding-bottom: clamp(1.15rem, 4vw, 1.9rem);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .hero-visual {
    order: 0;
    min-height: clamp(200px, 52vw, 260px);
    max-height: 300px;
    margin-top: 0.4rem;
    opacity: 0.78;
  }

  .stats-bar {
    margin-top: 0;
  }

  .product-row {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .nav-logo-name {
    font-size: 0.82rem;
  }

  .nav-links .nav-history {
    display: inline-flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    gap: 0;
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .nav-link {
    padding: 0.38rem 0.42rem;
    font-size: 0.76rem;
  }

  .hero-headline {
    font-size: clamp(2.35rem, 15vw, 3.6rem);
    line-height: 0.98;
  }

  .hero {
    padding-bottom: 0.75rem;
  }

  .hero-grid {
    gap: 0.45rem;
  }

  .hero-visual {
    min-height: clamp(170px, 48vw, 225px);
    max-height: 240px;
    margin-top: 0;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
    width: 100%;
  }

  .convictions-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-header {
    flex-direction: column;
  }
}

/* ── One-page team and advisor section ───────────────────────────────── */
.who-section {
  display: grid;
  gap: 1.45rem;
}

.who-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  max-width: 980px;
}

.who-intro p {
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0;
}

.compact-team-grid {
  margin-bottom: 0;
}

.compact-team-grid .team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: auto;
  padding: 1.35rem 1.25rem 1.35rem;
  text-align: center;
}

.compact-team-grid .team-photo {
  width: clamp(176px, 17vw, 220px);
  height: clamp(176px, 17vw, 220px);
  aspect-ratio: 1 / 1;
  margin: 0 auto 1.05rem;
  border-radius: 50%;
  border: 3px solid rgba(255, 250, 240, 0.9);
  box-shadow:
    0 0 0 6px rgba(40, 214, 196, 0.06),
    0 16px 36px rgba(0, 0, 0, 0.24);
  background: rgba(255, 255, 255, 0.012);
}

.compact-team-grid .team-photo img {
  border-radius: 50%;
  filter: grayscale(1);
  object-fit: cover;
  object-position: center;
}

.compact-team-grid .team-card:nth-child(1) .team-photo img,
.compact-team-grid .team-card:nth-child(2) .team-photo img {
  transform: scale(1.15);
}

.advisor-strip {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  padding-top: 0.2rem;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.advisor-strip-label {
  color: var(--brass);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.advisor-names {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
}

.advisor-names a {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0;
  color: #fffaf0;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.advisor-names a + a::before {
  content: "/";
  color: rgba(215, 196, 143, 0.45);
  font-weight: 500;
  margin-right: 1.1rem;
}

.scroll-reveal,
.reveal-child {
  will-change: opacity, transform;
}

@media (max-width: 760px) {
  .who-intro,
  .advisor-strip {
    grid-template-columns: 1fr;
  }

  .advisor-names {
    display: flex;
  }
}
