@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  --bg-primary: #0a0e17;
  --bg-secondary: #111827;
  --bg-card: #151d2e;
  --fg-primary: #e8edf5;
  --fg-secondary: #8b95a8;
  --fg-muted: #4a5568;
  --accent: #10b981;
  --accent-glow: rgba(16, 185, 129, 0.15);
  --accent-warm: #f59e0b;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
}

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

body {
  background: var(--bg-primary);
  color: var(--fg-primary);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 820px;
  text-align: left;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--fg-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero .lede {
  font-size: 1.25rem;
  color: var(--fg-secondary);
  max-width: 600px;
  line-height: 1.8;
}

/* ---- TICKER STRIP ---- */
.ticker-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.ticker-item {
  text-align: center;
}

.ticker-item .label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-bottom: 0.3rem;
}

.ticker-item .value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

/* ---- PHILOSOPHY ---- */
.philosophy {
  padding: 6rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.philosophy h2 {
  font-size: 2.2rem;
  color: var(--fg-primary);
  position: sticky;
  top: 2rem;
}

.philosophy h2 .thin {
  font-weight: 400;
  color: var(--fg-secondary);
}

.philosophy-text p {
  color: var(--fg-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.philosophy-text p strong {
  color: var(--fg-primary);
  font-weight: 500;
}

/* ---- PILLARS ---- */
.pillars {
  padding: 5rem 2rem;
  background: var(--bg-secondary);
}

.pillars-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.pillars h2 {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--fg-primary);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.3s;
}

.pillar-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
}

.pillar-card .number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pillar-card h3 {
  font-size: 1.15rem;
  color: var(--fg-primary);
  margin-bottom: 0.75rem;
}

.pillar-card p {
  font-size: 0.92rem;
  color: var(--fg-secondary);
  line-height: 1.7;
}

/* ---- EDGE ---- */
.edge {
  padding: 6rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.edge h2 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: var(--fg-primary);
}

.edge-list {
  list-style: none;
  padding: 0;
}

.edge-list li {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.edge-list li:last-child {
  border-bottom: none;
}

.edge-list .marker {
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.edge-list .text {
  color: var(--fg-secondary);
  font-size: 1rem;
}

.edge-list .text strong {
  color: var(--fg-primary);
  font-weight: 500;
}

/* ---- CLOSING ---- */
.closing {
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.closing blockquote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--fg-primary);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.closing .attribution {
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* ---- FOOTER ---- */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
}

footer .footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

footer .brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--fg-primary);
  margin-bottom: 0.5rem;
}

footer .location {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 1.5rem 3rem;
    min-height: 70vh;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .philosophy h2 {
    position: static;
  }

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

  .ticker-strip {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .ticker-strip {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}