:root {
  --bg: #050505;
  --bg-2: #0d0d0d;
  --fg: #f0ede8;
  --fg-dim: #8a8580;
  --accent: #ff4d00;
  --accent-dim: rgba(255, 77, 0, 0.12);
  --border: rgba(240, 237, 232, 0.08);
  --mono-font: 'JetBrains Mono', monospace;
  --display-font: 'Syne', sans-serif;
}

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

html { font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--display-font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.mono { font-family: var(--mono-font); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,77,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,77,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 880px; position: relative; z-index: 1; }
.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-headline {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-dim);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 40px;
  font-family: var(--display-font);
  font-weight: 400;
}
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 10px 16px;
  background: var(--accent-dim);
  font-size: 0.8rem;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* SECTION LABEL */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
  font-family: var(--mono-font);
  font-weight: 500;
}

/* HOW IT WORKS */
.hiw {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.hiw-inner { max-width: 1200px; margin: 0 auto; }
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.hiw-step {
  padding: 40px 36px 40px 0;
  border-right: 1px solid var(--border);
  padding-right: 40px;
}
.hiw-step:last-child { border-right: none; }
.hiw-step + .hiw-step { padding-left: 40px; }
.step-num {
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.hiw-step h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.hiw-step p {
  font-size: 0.95rem;
  color: var(--fg-dim);
  line-height: 1.7;
  font-family: var(--display-font);
  font-weight: 400;
}

/* COVERAGE */
.coverage {
  padding: 100px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.coverage-inner { max-width: 1200px; margin: 0 auto; }
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.coverage-col {
  padding: 0 40px 0 0;
  border-right: 1px solid var(--border);
}
.coverage-col:last-child { border-right: none; }
.coverage-col + .coverage-col { padding-left: 40px; }
.coverage-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--fg);
}
.coverage-col ul { list-style: none; }
.coverage-col ul li {
  font-size: 0.9rem;
  color: var(--fg-dim);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--display-font);
  font-weight: 400;
}
.coverage-col ul li:last-child { border-bottom: none; }

/* PHILOSOPHY */
.philosophy {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.philosophy-inner { max-width: 880px; margin: 0 auto; }
.philosophy-quote {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--fg);
  border-left: 3px solid var(--accent);
  padding-left: 28px;
  margin-bottom: 36px;
  font-style: normal;
}
.philosophy-body {
  font-size: 1.05rem;
  color: var(--fg-dim);
  line-height: 1.75;
  margin-bottom: 20px;
  font-family: var(--display-font);
  font-weight: 400;
}
.philosophy-body:last-child { margin-bottom: 0; }

/* FOOTER */
.footer {
  padding: 60px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-name {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 0.9rem;
  color: var(--fg-dim);
  font-family: var(--display-font);
  font-weight: 400;
}
.footer-meta {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-meta span {
  font-size: 0.75rem;
  color: var(--fg-dim);
  font-family: var(--mono-font);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero, .hiw, .coverage, .philosophy, .footer { padding-left: 24px; padding-right: 24px; }
  .hero { padding-top: 80px; }
  .hiw-grid, .coverage-grid { grid-template-columns: 1fr; }
  .hiw-step { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 0; }
  .hiw-step:last-child { border-bottom: none; }
  .hiw-step + .hiw-step { padding-left: 0; }
  .coverage-col { border-right: none; border-bottom: 1px solid var(--border); padding: 24px 0; }
  .coverage-col:last-child { border-bottom: none; }
  .coverage-col + .coverage-col { padding-left: 0; }
  .footer-inner { flex-direction: column; gap: 28px; }
  .footer-meta { text-align: left; }
  .hero-headline { font-size: 2.4rem; }
}