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

:root {
  --bg: #08080f;
  --bg-2: #0f0f1a;
  --fg: #f0e8d8;
  --accent: #ff3d1f;
  --accent-2: #ff6b35;
  --muted: #6b6580;
  --border: rgba(240, 232, 216, 0.08);
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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;
}

/* NAV */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.15em;
  color: var(--fg);
}
.tagline {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* HERO */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 80px 40px 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(255, 61, 31, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 680px; position: relative; z-index: 2; }
.hero-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 120px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 36px;
}
.hero-headline .line { display: block; }
.hero-headline .accent { color: var(--accent); }
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
}
.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  pointer-events: none;
}
.orb-stack { position: relative; width: 100%; aspect-ratio: 1; max-width: 500px; margin: 0 auto; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
}
.orb-1 {
  width: 70%;
  height: 70%;
  top: 10%;
  left: 15%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  animation: drift1 6s ease-in-out infinite alternate;
}
.orb-2 {
  width: 50%;
  height: 50%;
  top: 25%;
  left: 30%;
  background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%);
  animation: drift2 8s ease-in-out infinite alternate;
  opacity: 0.4;
}
.orb-3 {
  width: 35%;
  height: 35%;
  top: 35%;
  left: 40%;
  background: radial-gradient(circle, #ffffff 0%, transparent 60%);
  animation: drift3 5s ease-in-out infinite alternate;
  opacity: 0.15;
}
@keyframes drift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(20px,-15px) scale(1.05); } }
@keyframes drift2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-15px,20px) scale(1.08); } }
@keyframes drift3 { from { transform: translate(0,0); } to { transform: translate(10px,-10px); } }

/* PHILOSOPHY */
.philosophy {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}
.philosophy-inner { max-width: 800px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.pullquote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 40px;
  font-style: normal;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}
.philosophy-body {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}

/* CAPABILITIES */
.capabilities {
  padding: 100px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 64px;
  max-width: 700px;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}
.cap-card {
  background: var(--bg);
  padding: 40px 36px;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.cap-card:hover { border-color: var(--accent); }
.cap-icon {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}
.cap-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--fg);
  margin-bottom: 12px;
}
.cap-card p { font-size: 15px; color: var(--muted); line-height: 1.65; font-weight: 300; }
.cap-cta { display: inline-block; margin-top: 16px; font-size: 13px; color: var(--accent); text-decoration: none; font-weight: 500; }
.cap-cta:hover { text-decoration: underline; }

/* MANIFESTO */
.manifesto {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}
.manifesto-inner { max-width: 800px; margin: 0 auto; }
.manifesto-body p {
  font-size: 20px;
  color: var(--fg);
  line-height: 1.85;
  margin-bottom: 32px;
  font-weight: 300;
}
.manifesto-body p:last-child { margin-bottom: 0; }
.manifesto-body p + p::before {
  content: '';
  display: block;
  height: 1px;
  background: var(--border);
  margin-bottom: 32px;
}

/* CLOSING */
.closing {
  padding: 120px 40px;
  border-top: 1px solid var(--border);
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255, 61, 31, 0.06) 0%, transparent 70%);
}
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing .section-label { margin-bottom: 40px; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 32px;
}
.closing-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto;
}

/* FOOTER */
footer { border-top: 1px solid var(--border); padding: 32px 40px; }
.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--fg);
}
.footer-tagline { font-size: 13px; color: var(--muted); flex: 1; }
.footer-meta { font-size: 12px; color: var(--muted); letter-spacing: 0.05em; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .topbar { padding: 16px 24px; }
  .hero { padding: 60px 24px 40px; min-height: 80vh; }
  .hero-visual { display: none; }
  .philosophy, .capabilities, .manifesto, .closing { padding: 60px 24px; }
  .cap-grid { grid-template-columns: 1fr; }
  footer { padding: 24px; }
  .footer-inner { gap: 12px; }
}