@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  --black: #f7f2e8;
  --white: #1c1610;
  --grey: #8a7a6a;
  --grey-light: #a89888;
  --blue: #5a82a8;
  --blue-mid: #7aaabf;
  --accent: #5a82a8;
  --border: rgba(28, 22, 16, 0.13);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}


/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  transition: background 0.4s;
}

nav.scrolled {
  background: rgba(247, 242, 232, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--white);
}

.nav-logo span {
  color: var(--blue);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}

/* ── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 0.72rem;
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--white);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--blue);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(28,22,16,0.32);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(28,22,16,0.06);
}

/* ── SECTION BASE ─────────────────────────────────────── */
section {
  padding: 100px 48px;
  position: relative;
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 60px;
  background: var(--border);
}

h2.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}


/* ── NONOISE ACCENT ───────────────────────────────────── */
.nn-accent { color: #5a82a8; }

/* ── STAT HEADLINE ────────────────────────────────────── */
.nn-stat {
  font-size: 1rem;
  font-weight: 300;
  color: var(--grey-light);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}

.nn-stat-num {
  font-family: 'Space Mono', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: #3a6a9a;
  text-decoration: underline;
}

.nn-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #5a82a8;
  margin-bottom: 20px;
}

/* ── HERO BAND ────────────────────────────────────────── */
.nn-hero {
  padding: 160px 48px 90px;
  background: linear-gradient(135deg, #d0e4f5 0%, #c8dded 55%, #d4e8e0 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.nn-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.nn-wordmark {
  font-family: 'Space Mono', monospace;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 6px;
}

.nn-wordmark span { color: #5a82a8; }

.nn-intro {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
  font-style: italic;
}

.nn-tagline {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #5a82a8;
  margin-bottom: 32px;
}

.nn-hero-desc {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--grey-light);
  max-width: 600px;
}

/* ── FEATURE GRID ─────────────────────────────────────── */
.nn-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 64px;
}

.nn-feature {
  background: var(--black);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nn-feature-icon {
  font-family: 'Space Mono', monospace;
  font-size: 1.4rem;
  color: #5a82a8;
  margin-bottom: 4px;
}

.nn-feature-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
}

.nn-feature-body {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--grey-light);
  font-weight: 300;
}

/* ── PHILOSOPHY SECTION ───────────────────────────────── */
.nn-philosophy {
  max-width: 820px;
}

.nn-philosophy p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--grey-light);
  margin-bottom: 28px;
}

.nn-philosophy p strong {
  color: var(--white);
  font-weight: 500;
}

.nn-philosophy h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin: 52px 0 20px;
  letter-spacing: -0.01em;
}

/* ── PIPELINE STEPS ───────────────────────────────────── */
.nn-pipeline {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 40px;
}

.nn-step {
  background: var(--black);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nn-step-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: #5a82a8;
}

.nn-step-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.nn-step-body {
  font-size: 0.82rem;
  color: var(--grey-light);
  line-height: 1.65;
  font-weight: 300;
}

/* ── STATUS BAND ──────────────────────────────────────── */
.nn-status {
  background: linear-gradient(90deg, #c8dded 0%, #d0e4f5 50%, #d4e8e0 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.nn-status-text {}

.nn-status-text h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 10px;
}

.nn-status-text p {
  font-size: 0.95rem;
  color: var(--grey-light);
  max-width: 480px;
  line-height: 1.7;
}

.nn-status-cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.nn-pill {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5a82a8;
  border: 1px solid #5a82a8;
  padding: 6px 16px;
  display: inline-block;
}

/* ── PRODUCT SPOTLIGHT ────────────────────────────────── */
.nn-product-spotlight {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 80px 0 40px;
}

.nn-product-image {
  flex: 0 0 auto;
  width: clamp(220px, 30vw, 360px);
}

.nn-product-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(28,22,16,0.18);
}

.nn-product-text { flex: 1; }

.nn-product-text h3 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.nn-product-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--grey-light);
  margin-bottom: 20px;
  font-weight: 300;
}

.nn-product-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #5a82a8;
  border: 1px solid #5a82a8;
  padding: 5px 14px;
  display: inline-block;
  margin-top: 8px;
}

/* ── PAGE HEADER ──────────────────────────────────────── */
.page-header {
  padding: 160px 48px 80px;
  border-bottom: 1px solid var(--border);
}

.page-header-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

.page-header h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.page-header-desc {
  margin-top: 24px;
  font-size: 1rem;
  color: var(--grey-light);
  max-width: 560px;
  line-height: 1.7;
}

/* ── PLACEHOLDER ──────────────────────────────────────── */
.placeholder-block {
  border: 1px dashed var(--border);
  padding: 80px 48px;
  text-align: center;
  color: var(--grey);
}

.placeholder-block span {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  padding: 64px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--white);
}

.footer-logo span {
  color: var(--blue);
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--grey);
  margin-top: 8px;
  max-width: 280px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--grey-light);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  width: 100%;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom span {
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ── TEAM ─────────────────────────────────────────────── */
.team-headline {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 64px;
  max-width: 600px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.team-card {
  background: var(--black);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.team-card--wide {
  grid-column: span 2;
}

.team-card-role {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue);
}

.team-card-name {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 4px;
}

.team-card-body {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--grey-light);
  font-weight: 300;
  margin-top: 8px;
}

.team-card-body strong {
  color: var(--white);
  font-weight: 500;
}

.team-card-members {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}

.team-card-member {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 400;
}

.team-card-member span {
  color: var(--grey-light);
  font-weight: 300;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-card--wide { grid-column: span 1; }
  .team-card { padding: 36px 24px; }
}

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

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── HAMBURGER / MOBILE MENU ─────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 201;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(247, 242, 232, 0.98);
  backdrop-filter: blur(16px);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding: 14px 0;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--blue);
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.mobile-menu-close:hover {
  opacity: 1;
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 900px) {
  .nn-feature-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
  section { padding: 72px 24px; }
  .nn-hero { padding: 120px 24px 60px; }
  .nn-feature-grid { grid-template-columns: 1fr; }
  .nn-status { padding: 48px 24px; }
  .nn-product-spotlight { flex-direction: column; gap: 40px; padding: 48px 0 24px; }
  .nn-product-image { width: 100%; max-width: 320px; margin: 0 auto; }
  footer { padding: 48px 24px; flex-direction: column; }
  .page-header { padding: 120px 24px 60px; }
}
