:root {
  --bg: #0A0A0F;
  --surface: #111118;
  --surface-2: #18181F;
  --border: rgba(255,255,255,0.07);
  --orange: #FF5C1A;
  --orange-dim: rgba(255,92,26,0.15);
  --text: #F0EDE8;
  --text-muted: rgba(240,237,232,0.55);
  --text-dim: rgba(240,237,232,0.3);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.orange { color: var(--orange); }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 100px;
}

/* HERO */
.hero {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.hero-accent-bar {
  position: absolute;
  left: 0;
  top: 80px;
  bottom: 80px;
  width: 4px;
  background: var(--orange);
  border-radius: 2px;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}
.scroll-arrow {
  width: 16px;
  height: 16px;
  border-right: 2px solid var(--text-dim);
  border-bottom: 2px solid var(--text-dim);
  transform: rotate(45deg);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translate(0,0); }
  50% { transform: rotate(45deg) translate(4px, 4px); }
}

/* MANIFESTO */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 32px;
}
.manifesto-quote {
  font-family: var(--font-head);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 36px;
  max-width: 800px;
}
.manifesto-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 720px;
}

/* SECTION SHARED */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}

/* FEATURES */
.features {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.feature-card {
  background: var(--surface);
  padding: 36px 32px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* VERTICALS */
.verticals {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.verticals-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 32px;
}
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}
.vertical-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.vertical-icon {
  width: 36px;
  height: 36px;
  background: var(--orange-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.vertical-name {
  font-size: 15px;
  font-weight: 600;
}
.verticals-note p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 600px;
}

/* MONEY */
.money {
  background: var(--bg);
}
.money-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px;
}
.money-streams {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.stream {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.stream:first-child { border-top: 1px solid var(--border); }
.stream-number {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.05em;
  padding-top: 4px;
}
.stream-content h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.stream-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* PROCESS */
.process {
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.process-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px;
}
.process-steps {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr 48px 1fr;
  align-items: start;
}
.step { }
.step-dot {
  width: 16px;
  height: 16px;
  background: var(--orange);
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 0 0 4px var(--orange-dim);
}
.step-body h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}
.step-connector {
  height: 2px;
  background: var(--border);
  margin-top: 8px;
  margin-bottom: 44px;
}

/* CLOSING */
.closing {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 32px;
}
.closing-statement {
  margin-bottom: 40px;
}
.closing-line {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.closing-line.accent {
  color: var(--orange);
  margin-top: 8px;
}
.closing-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
}
.footer-by {
  font-size: 12px;
  color: var(--text-dim);
}
.footer-meta {
  font-size: 12px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-sep { color: var(--text-dim); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: grid; grid-template-columns: repeat(3, 1fr); }
  .stat-card { padding: 16px; }
  .stat-number { font-size: 26px; }
  .features-grid { grid-template-columns: 1fr; }
  .verticals-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; gap: 0; }
  .step-connector { display: none; }
  .stream { grid-template-columns: 40px 1fr; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: 56px 20px 56px; }
  .hero-right { grid-template-columns: 1fr 1fr; }
  .verticals-grid { grid-template-columns: 1fr; }
  .manifesto-inner, .features, .money-inner, .process-inner, .closing-inner { padding: 48px 20px; }
}