:root {
  --bg: #050505;
  --bg-elevated: #0d0d0d;
  --bg-card: #111111;
  --fg: #f5f5f5;
  --fg-muted: #888888;
  --accent: #FF4D00;
  --accent-glow: rgba(255, 77, 0, 0.15);
  --accent-border: rgba(255, 77, 0, 0.3);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 8vw;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(255,77,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  background: var(--accent-glow);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

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

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

.orbital-container {
  position: relative;
  width: 380px;
  height: 380px;
}

.orbital-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--accent-border);
}

.orbital-ring-1 {
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  animation: rotate 20s linear infinite;
  border-style: dashed;
}

.orbital-ring-2 {
  width: 75%;
  height: 75%;
  top: 12.5%; left: 12.5%;
  animation: rotate 14s linear infinite reverse;
}

.orbital-ring-3 {
  width: 50%;
  height: 50%;
  top: 25%; left: 25%;
  animation: rotate 9s linear infinite;
  border-color: var(--accent);
  border-width: 1.5px;
  opacity: 0.6;
}

.orbital-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, rgba(255,77,0,0.3) 40%, transparent 70%);
  box-shadow: 0 0 60px rgba(255,77,0,0.4), 0 0 120px rgba(255,77,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-inner {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.orbital-nodes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  animation: rotate 25s linear infinite;
}

.node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.node-1 { top: -5px; left: 50%; transform: translateX(-50%); }
.node-2 { top: 50%; right: -5px; transform: translateY(-50%); }
.node-3 { bottom: -5px; left: 50%; transform: translateX(-50%); }
.node-4 { top: 50%; left: -5px; transform: translateY(-50%); }
.node-5 { top: 15%; right: 20%; }
.node-6 { bottom: 20%; left: 20%; }

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

/* HERO STATS */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.stat { display: flex; flex-direction: column; }

.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 0.2rem;
}

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

/* MANIFESTO */
.manifesto {
  padding: 8rem 8vw;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 50%, var(--bg) 100%);
}

.manifesto-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.manifesto-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.manifesto-label-right {
  align-self: flex-end;
}

.manifesto-text {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 600px;
}

.manifesto-text-right {
  align-self: flex-end;
  text-align: right;
}

.manifesto-divider {
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.4;
  text-align: center;
}

/* SERVICES */
.services {
  padding: 8rem 8vw;
}

.services-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 2.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  border-color: var(--accent-border);
  box-shadow: 0 0 40px var(--accent-glow);
}

.service-visual {
  margin-bottom: 1.5rem;
}

.service-visual svg {
  width: 80px;
  height: 80px;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service-tag {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

/* PROCESS */
.process {
  padding: 8rem 8vw;
  background: var(--bg-elevated);
}

.process-header {
  text-align: center;
  margin-bottom: 5rem;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  padding: 2rem;
}

.step-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.step-connector {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--accent-border), transparent);
  margin-top: 3rem;
  align-self: center;
}

/* OUTCOMES */
.outcomes {
  padding: 6rem 8vw;
  background: linear-gradient(135deg, rgba(255,77,0,0.04) 0%, transparent 60%);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.outcome {
  text-align: center;
  padding: 2rem;
}

.outcome-stat {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.outcome-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  padding: 10rem 8vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(255,77,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.closing-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg-muted);
}

.closing-tag-divider {
  color: var(--accent);
}

/* FOOTER */
.footer {
  padding: 3rem 8vw;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand { display: flex; flex-direction: column; gap: 0.3rem; }

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--fg);
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.footer-links {
  display: flex;
  gap: 2rem;
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { padding: 5rem 6vw; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .stat-divider { width: 40px; height: 1px; }
}