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

:root {
  --bg: #000000;
  --surface: #0d0d0d;
  --surface2: #141414;
  --white: #ffffff;
  --grey-1: #f5f5f5;
  --grey-2: #a3a3a3;
  --grey-3: #525252;
  --grey-4: #262626;
  --grey-5: #1a1a1a;
  --accent: #e8ff47;
  --border: rgba(255,255,255,0.08);
  --border-light: rgba(255,255,255,0.12);
  --font-sans: 'Inter', -apple-system, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
}

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── TYPOGRAPHY ───────────────────────────────── */
.label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-2);
}

.display {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
}

.display em { font-style: italic; color: var(--grey-2); }

.body-lg {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--grey-2);
  font-weight: 400;
}

.body-sm {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--grey-2);
}

/* ─── LAYOUT ───────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-ghost {
  background: transparent;
  color: var(--grey-2);
  border: 1px solid var(--border-light);
}
.btn-ghost:hover { background: var(--surface2); color: var(--white); border-color: var(--grey-3); }

.btn-primary { background: var(--white); color: var(--bg); }
.btn-primary:hover { background: var(--grey-1); }

.btn-accent { background: var(--accent); color: #000; }
.btn-accent:hover { background: #f5ff6e; }

/* ─── NAVIGATION ───────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 60px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-logo .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-center a {
  font-size: 0.875rem;
  color: var(--grey-2);
  transition: color 0.15s;
  position: relative;
  padding-bottom: 2px;
}
.nav-center a:hover { color: var(--white); }
.nav-center a.active { color: var(--white); }
.nav-center a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--white);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ─── PAGE HERO ────────────────────────────────── */
.page-hero {
  padding-top: 140px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
}

.page-hero .label { margin-bottom: 16px; display: block; }

.page-hero .display {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  max-width: 700px;
  margin-bottom: 24px;
}

.page-hero .body-lg { max-width: 520px; }

/* ─── SECTION ──────────────────────────────────── */
.section {
  padding: 88px 0;
  border-top: 1px solid var(--border);
}

.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.section-header-left { flex: 1; }

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 12px;
}
.section-title em { font-style: italic; color: var(--grey-2); }

.section-header-right { max-width: 360px; padding-top: 32px; }

/* ─── STATUS DOTS ──────────────────────────────── */
.status-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot.green { background: #22c55e; box-shadow: 0 0 6px rgba(34,197,94,.5); }
.status-dot.amber { background: #f59e0b; box-shadow: 0 0 6px rgba(245,158,11,.4); }
.status-dot.blue  { background: #60a5fa; box-shadow: 0 0 6px rgba(96,165,250,.4); }

.venture-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--grey-3);
  letter-spacing: 0.04em;
}

/* ─── CTA BAND ─────────────────────────────────── */
.cta-band {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta-band .display { font-size: clamp(2rem, 4.5vw, 4rem); margin-bottom: 20px; }
.cta-band .body-lg { margin: 0 auto 40px; max-width: 480px; }
.cta-band-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cta-band-actions .btn { font-size: 0.9375rem; padding: 11px 22px; }

/* ─── FOOTER ───────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.footer-logo .dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; }

.footer-links { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 0.8125rem; color: var(--grey-3); transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }

.footer-copy { font-size: 0.8125rem; color: var(--grey-3); }

/* ─── ANIMATIONS ───────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-1 { opacity: 0; animation: fadeUp 0.6s ease 0.05s forwards; }
.anim-2 { opacity: 0; animation: fadeUp 0.6s ease 0.15s forwards; }
.anim-3 { opacity: 0; animation: fadeUp 0.6s ease 0.25s forwards; }
.anim-4 { opacity: 0; animation: fadeUp 0.6s ease 0.35s forwards; }
.anim-5 { opacity: 0; animation: fadeUp 0.6s ease 0.45s forwards; }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── FORM ─────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.8125rem; font-weight: 500; color: var(--grey-2); }
.form-input {
  background: var(--surface);
  border: 1px solid var(--border-light);
  color: var(--white);
  padding: 10px 14px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
  width: 100%;
}
.form-input::placeholder { color: var(--grey-3); }
.form-input:focus { border-color: rgba(255,255,255,0.25); background: var(--surface2); }
textarea.form-input { resize: vertical; min-height: 120px; line-height: 1.5; }

/* ─── MOBILE ───────────────────────────────────── */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .nav-center { display: none; }
  .section { padding: 64px 0; }
  .section-header { flex-direction: column; margin-bottom: 40px; }
  .section-header-right { max-width: 100%; padding-top: 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { gap: 16px; }
}
