:root {
  --bg: #080808;
  --bg-2: #101010;
  --bg-3: #161616;
  --accent: #FF5200;
  --accent-dim: rgba(255, 82, 0, 0.12);
  --text: #F0EEE9;
  --text-muted: #7A7774;
  --text-dim: #3A3835;
  --font-head: 'Syne', sans-serif;
  --font-body: 'Instrument Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.nav-brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 60px 80px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,82,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 860px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-headline br { display: block; }

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  padding: 0 40px 0 0;
}

.stat:first-child { padding-left: 0; }

.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: var(--bg-3);
  margin-right: 40px;
  flex-shrink: 0;
}

/* WHAT WE DO */
.what-we-do {
  padding: 100px 60px;
  background: var(--bg-2);
}

.section-header {
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

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

.service {
  background: var(--bg-2);
  padding: 40px 36px;
}

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
}

.service h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* WHO IT'S FOR */
.who-its-for {
  padding: 100px 60px;
}

.who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.who-left h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 16px 0 20px;
}

.who-left p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.who-left p + p { margin-top: 12px; }

.verticals {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vertical-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--bg-3);
}

.vertical-item:first-child { border-top: 1px solid var(--bg-3); }

.vertical-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
}

.vertical-reason {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: right;
  max-width: 200px;
}

/* PROCESS */
.process {
  padding: 100px 60px;
  background: var(--bg-2);
}

.process h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 16px 0 64px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 72px;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--bg-3);
  align-items: start;
}

.step:first-child { border-top: 1px solid var(--bg-3); }

.step-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  opacity: 0.4;
}

.step-content h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.process-pricing {
  background: var(--accent-dim);
  border: 1px solid rgba(255, 82, 0, 0.2);
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-note {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.pricing-amount {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.pricing-amount span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-detail {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* MANIFESTO */
.manifesto {
  padding: 120px 60px;
  background: var(--bg);
}

.manifesto-inner {
  max-width: 800px;
}

.manifesto-statement {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 36px;
}

.manifesto-statement em {
  color: var(--accent);
  font-style: normal;
}

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

/* FOOTER */
.footer {
  padding: 80px 60px 60px;
  border-top: 1px solid var(--bg-3);
}

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

.footer-brand {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.footer-platforms {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.platform-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--bg-3);
  color: var(--text-muted);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar { padding: 20px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .who-inner { grid-template-columns: 1fr; gap: 48px; }
  .process { padding: 80px 24px; }
  .step { grid-template-columns: 56px 1fr; gap: 20px; }
  .what-we-do { padding: 80px 24px; }
  .who-its-for { padding: 80px 24px; }
  .manifesto { padding: 80px 24px; }
  .footer { padding: 60px 24px 48px; }
  .footer-platforms { gap: 6px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.4rem; }
  .pricing-amount { font-size: 2rem; }
}