:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --bg-card: #161616;
  --fg: #e8e8e8;
  --fg-muted: #888888;
  --fg-dim: #555555;
  --accent: #FF8C00;
  --accent-glow: rgba(255, 140, 0, 0.15);
  --blue: #4A9EFF;
  --blue-glow: rgba(74, 158, 255, 0.15);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1120px;
  --section-pad: clamp(80px, 10vw, 140px);
}

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

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

/* ---- HERO ---- */
.hero {
  padding: var(--section-pad) 24px 60px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.hero-tag {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 24px;
}

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

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}

/* Forge graphic */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.forge-graphic {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.forge-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.ring-1 {
  width: 100%;
  height: 100%;
  border-color: rgba(255, 140, 0, 0.12);
  animation: spin 20s linear infinite;
}

.ring-2 {
  width: 75%;
  height: 75%;
  border-color: rgba(74, 158, 255, 0.15);
  animation: spin 15s linear infinite reverse;
}

.ring-3 {
  width: 50%;
  height: 50%;
  border-color: rgba(255, 140, 0, 0.2);
  animation: spin 10s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.forge-core svg {
  width: 80px;
  height: 80px;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-dim);
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.08);
}

/* ---- PROOF ---- */
.proof {
  padding: var(--section-pad) 24px;
  background: var(--bg-alt);
}

.proof-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  max-width: 720px;
  text-align: center;
}

.proof-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

.proof h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 24px;
}

.proof-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* ---- SERVICES ---- */
.services {
  padding: var(--section-pad) 24px;
}

.services-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-tag {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.services h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 36px 32px;
  transition: border-color 0.3s;
}

.service-card:hover {
  border-color: rgba(255, 140, 0, 0.25);
}

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

.service-icon svg {
  width: 40px;
  height: 40px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

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

/* ---- PROCESS ---- */
.process {
  padding: var(--section-pad) 24px;
  background: var(--bg-alt);
}

.process-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.process h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 60px;
}

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

.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 140, 0, 0.2);
  line-height: 1;
  min-width: 80px;
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

.step-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  margin-left: 0;
  opacity: 0.3;
}

/* ---- VERTICALS ---- */
.verticals {
  padding: var(--section-pad) 24px;
}

.verticals-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.verticals h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 60px;
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
}

.vertical-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.vertical-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
  flex-shrink: 0;
}

.vertical-dot.dot-blue {
  background: var(--blue);
}

.vertical-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.vertical-item p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ---- OUTCOMES ---- */
.outcomes {
  padding: var(--section-pad) 24px;
  background: var(--bg-alt);
}

.outcomes-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.outcomes h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 60px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.outcome-block {
  padding: 32px 24px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.outcome-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.outcome-block p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ---- PHILOSOPHY ---- */
.philosophy {
  padding: var(--section-pad) 24px;
  position: relative;
}

.philosophy-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.philosophy-accent {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  margin-bottom: 32px;
}

.philosophy h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 24px;
}

.philosophy p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.philosophy-closer {
  color: var(--fg) !important;
  font-weight: 500;
  font-style: italic;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 48px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--fg-dim);
}

.footer-meta p {
  font-size: 0.8rem;
  color: var(--fg-dim);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    display: none;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

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

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

  .outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

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

  .step {
    flex-direction: column;
    gap: 12px;
  }

  .step-num {
    font-size: 2rem;
    min-width: auto;
  }
}