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

:root {
  --black:    #080808;
  --surface:  #101010;
  --surface2: #181818;
  --border:   #232323;
  --gold:     #C9A227;
  --gold-dim: #7A601A;
  --red:      #C84B31;
  --white:    #F0EDEA;
  --muted:    #686868;
  --green:    #2DB87D;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  color: var(--white); text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex; gap: 2rem; list-style: none;
}
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--gold); color: var(--black);
  padding: 0.5rem 1.25rem; border-radius: 2px;
  font-size: 0.8rem; font-weight: 700;
  text-decoration: none; letter-spacing: 0.06em;
  text-transform: uppercase; transition: background 0.15s;
}
.nav-cta:hover { background: #E0B42A; }

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--gold); color: var(--black);
  padding: 0.85rem 2rem;
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  border-radius: 2px; transition: background 0.15s;
}
.btn-primary:hover { background: #E0B42A; }
.btn-outline {
  display: inline-block;
  background: transparent; color: var(--white);
  padding: 0.85rem 2rem;
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; border: 1px solid var(--border); cursor: pointer;
  border-radius: 2px; transition: border-color 0.15s, color 0.15s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-red {
  display: inline-block;
  background: var(--red); color: var(--white);
  padding: 0.85rem 2rem;
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  border-radius: 2px; transition: opacity 0.15s;
}
.btn-red:hover { opacity: 0.85; }

/* SECTIONS */
section { padding: 5rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem; color: var(--gold);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.section-sub {
  color: var(--muted); font-size: 1.05rem;
  max-width: 600px; line-height: 1.7;
}

/* DIVIDER */
.rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* RESERVATION BAR — signature element */
.reservation-block {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.reservation-label {
  font-family: var(--font-mono);
  font-size: 0.72rem; color: var(--muted);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.reservation-count {
  font-family: var(--font-mono);
  font-size: 1.1rem; color: var(--white);
  font-weight: 600; margin-bottom: 0.75rem;
}
.reservation-count .filled { color: var(--gold); }
.reservation-track {
  height: 6px;
  background: var(--border);
  border-radius: 1px;
  overflow: hidden;
}
.reservation-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 1px;
  transition: width 0.8s ease;
}
.reservation-urgency {
  font-family: var(--font-mono);
  font-size: 0.65rem; color: var(--gold);
  letter-spacing: 0.08em; margin-top: 0.5rem;
}

/* PRODUCT CARDS */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.product-card {
  background: var(--surface);
  padding: 2rem;
  text-decoration: none; color: inherit;
  transition: background 0.15s;
  display: flex; flex-direction: column;
}
.product-card:hover { background: var(--surface2); }
.product-brand {
  font-family: var(--font-mono);
  font-size: 0.65rem; color: var(--gold);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  line-height: 1.3; margin-bottom: 0.5rem;
}
.product-desc {
  color: var(--muted); font-size: 0.9rem;
  line-height: 1.6; margin-bottom: 1.5rem; flex: 1;
}
.product-meta {
  display: flex; gap: 1rem; align-items: center;
  border-top: 1px solid var(--border); padding-top: 1rem;
}
.product-status {
  font-family: var(--font-mono);
  font-size: 0.65rem; letter-spacing: 0.1em;
  padding: 0.3rem 0.6rem; border-radius: 2px;
}
.status-open { background: rgba(201,162,39,0.15); color: var(--gold); }
.status-coming { background: rgba(255,255,255,0.06); color: var(--muted); }
.product-delivery {
  font-family: var(--font-mono);
  font-size: 0.65rem; color: var(--muted);
  letter-spacing: 0.06em;
}

/* STARTUP CARDS */
.startup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.startup-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column;
}
.startup-badge {
  font-family: var(--font-mono);
  font-size: 0.6rem; color: var(--muted);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.startup-badge::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%; background: var(--green);
}
.startup-name {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  margin-bottom: 0.5rem;
}
.startup-tagline {
  color: var(--muted); font-size: 0.9rem;
  line-height: 1.6; margin-bottom: 1.5rem; flex: 1;
}
.startup-link {
  font-family: var(--font-mono);
  font-size: 0.72rem; color: var(--gold);
  text-decoration: none; letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 0.5rem;
}
.startup-link:hover { color: var(--white); }

/* PROCESS STEPS */
.process-track {
  display: flex;
  overflow-x: auto;
  gap: 0;
  border: 1px solid var(--border);
}
.process-step {
  flex: 1; min-width: 140px;
  padding: 1.5rem 1.25rem;
  border-right: 1px solid var(--border);
  position: relative;
}
.process-step:last-child { border-right: none; }
.step-num {
  font-family: var(--font-mono);
  font-size: 0.65rem; color: var(--gold-dim);
  letter-spacing: 0.1em; margin-bottom: 0.75rem;
}
.step-name {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 600;
  color: var(--white);
}

/* FORM */
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem; color: var(--muted);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-family: var(--font-body); font-size: 0.95rem;
  border-radius: 2px;
  outline: none; transition: border-color 0.15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-select option { background: var(--surface2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* HERO */
.hero {
  min-height: 92vh;
  display: flex; align-items: center;
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(201,162,39,0.04), transparent);
  pointer-events: none;
}
.hero-content { max-width: 700px; position: relative; }
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem; color: var(--gold);
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 1.75rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before {
  content: ''; display: inline-block;
  width: 32px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700; line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 1.75rem;
}
.hero-title em { font-style: normal; color: var(--gold); }
.hero-sub {
  color: var(--muted); font-size: 1.15rem;
  line-height: 1.75; max-width: 520px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* STATS BAR */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem;
  display: flex; flex-wrap: wrap; gap: 0;
}
.stat-item {
  flex: 1; min-width: 160px;
  padding: 1rem 2rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700; color: var(--gold);
}
.stat-desc {
  font-family: var(--font-mono);
  font-size: 0.65rem; color: var(--muted);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-top: 0.25rem;
}

/* INFO BLOCK */
.info-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}

/* FOOTER */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 2rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700; color: var(--white);
}
.footer-brand span { color: var(--gold); }
.footer-nav {
  display: flex; gap: 2rem; list-style: none; flex-wrap: wrap;
}
.footer-nav a {
  font-family: var(--font-mono);
  font-size: 0.7rem; color: var(--muted);
  text-decoration: none; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-nav a:hover { color: var(--white); }
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.65rem; color: var(--muted);
  letter-spacing: 0.06em;
}
.footer-links {
  display: flex; gap: 1.5rem; list-style: none;
}
.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.65rem; color: var(--muted);
  text-decoration: none;
}
.footer-links a:hover { color: var(--gold); }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 0 1rem; }
  .nav-links { display: none; }
  section { padding: 3rem 1rem; }
  .info-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 3rem 1rem; min-height: 80vh; }
  .stats-bar { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 1rem; }
  .process-track { flex-direction: column; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
