:root {
  --bg: #0e0e11;
  --bg-alt: #161619;
  --surface: #1e1e23;
  --accent: #ff5b00;
  --accent-warm: #ff8c3a;
  --text: #f0ede8;
  --text-dim: #8a8882;
  --text-muted: #5c5955;
  --border: #2a2a30;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 clamp(24px, 5vw, 64px);
  height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(14, 14, 17, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 300;
}

@media (max-width: 480px) {
  .nav-tagline { display: none; }
}

/* ─── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.6) saturate(0.8);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,14,17,0) 0%,
    rgba(14,14,17,0.3) 50%,
    rgba(14,14,17,0.97) 85%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(80px, 12vh, 120px) clamp(24px, 8vw, 96px) clamp(60px, 8vh, 96px);
  max-width: 900px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
  font-weight: 500;
  margin-bottom: 20px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(240, 237, 232, 0.75);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

/* ─── PROOF ───────────────────────────────────── */
.proof {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px clamp(24px, 8vw, 96px);
}

.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 48px;
  text-align: center;
}

.proof-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.proof-label {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 400;
  max-width: 180px;
  line-height: 1.4;
}

.proof-divider {
  width: 1px;
  height: 64px;
  background: var(--border);
}

@media (max-width: 640px) {
  .proof-divider { display: none; }
  .proof-stat { padding: 20px 24px; }
}

/* ─── SECTION SHARED ───────────────────────────── */
.section-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: clamp(40px, 6vh, 64px);
}

/* ─── PROCESS ──────────────────────────────────── */
.process {
  padding: clamp(80px, 10vh, 120px) clamp(24px, 8vw, 96px);
  background: var(--bg);
}

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

.process-step {
  background: var(--bg);
  padding: 40px 36px;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 24px;
}

.process-step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.process-step p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ─── FEATURES ─────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.features-left {
  padding: clamp(60px, 8vh, 100px) clamp(24px, 6vw, 80px);
  border-right: 1px solid var(--border);
}

.features-img {
  width: 100%;
  border-radius: 8px;
  margin-top: 40px;
  filter: brightness(0.85) saturate(0.9);
}

.features-right {
  padding: clamp(60px, 8vh, 100px) clamp(24px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(255, 91, 0, 0.06);
}

.feature-item h4 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features { grid-template-columns: 1fr; }
  .features-left { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ─── MANIFESTO ─────────────────────────────────── */
.manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.manifesto-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
  filter: brightness(0.7) saturate(0.8);
}

.manifesto-text {
  padding: clamp(60px, 8vh, 100px) clamp(24px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
}

.manifesto-body {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .manifesto { grid-template-columns: 1fr; }
  .manifesto-img { min-height: 280px; }
}

/* ─── CLOSING ──────────────────────────────────── */
.closing {
  padding: clamp(80px, 12vh, 140px) clamp(24px, 8vw, 96px);
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 28px;
}

.closing-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  margin-top: 40px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
}

.cta-btn:hover { background: #e04d00; }

/* ─── FOOTER ───────────────────────────────────── */
.site-footer {
  padding: 40px clamp(24px, 8vw, 96px);
  border-top: 1px solid var(--border);
  background: var(--bg);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-meta {
  font-size: 13px;
  color: var(--text-muted);
  text-align: right;
}

@media (max-width: 480px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
}
