:root {
  --bg: #0b0a0f;
  --bg-alt: #13101a;
  --ink: #f7f1e1;
  --muted: #c3b9a3;
  --gold: #f3c43b;
  --red: #d7383a;
  --steel: #2b2437;
  --stroke: rgba(255, 255, 255, 0.1);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  --radius: 22px;
  --font-display: "Alfa Slab One", serif;
  --font-body: "Assistant", sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: radial-gradient(circle at 10% 10%, #251a2e 0%, var(--bg) 45%, #050409 100%);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 90vw);
  margin: 0 auto;
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  opacity: 0.15;
  pointer-events: none;
  z-index: -1;
}

.spotlight {
  position: fixed;
  inset: -20% auto auto -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(243, 196, 59, 0.3), rgba(11, 10, 15, 0));
  filter: blur(10px);
  z-index: -2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 10, 15, 0.88);
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 1px;
  padding: 8px 12px;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 30px rgba(215, 56, 58, 0.35);
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand-tag {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 26px;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--stroke);
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.hero {
  padding: 90px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 18px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.6rem, 3vw + 1.4rem, 4.4rem);
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(2rem, 2vw + 1rem, 3rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 26px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--gold);
  color: #1a1303;
  box-shadow: 0 16px 40px rgba(243, 196, 59, 0.3);
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  border-color: var(--stroke);
  color: var(--ink);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.stat-number {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-panel {
  background: linear-gradient(145deg, rgba(215, 56, 58, 0.15), rgba(19, 16, 26, 0.95));
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(243, 196, 59, 0.25);
  box-shadow: var(--shadow);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.panel-badge {
  background: var(--red);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
}

.setlist {
  margin: 20px 0 24px;
  display: grid;
  gap: 12px;
  color: var(--muted);
  list-style: decimal-leading-zero;
  padding-left: 20px;
}

.panel-footer {
  font-size: 0.95rem;
  color: var(--gold);
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-lead {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 24px;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: #14101c;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 196, 59, 0.3);
}

.stage-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.stage-card {
  padding: 26px;
  border-radius: 18px;
  border: 1px solid rgba(243, 196, 59, 0.2);
  background: linear-gradient(180deg, rgba(243, 196, 59, 0.08), rgba(19, 16, 26, 0.9));
  box-shadow: var(--shadow);
}

.pill {
  display: inline-flex;
  margin-top: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(215, 56, 58, 0.25);
  color: #ffd2d2;
  font-size: 0.8rem;
}

.process-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: rgba(20, 16, 28, 0.85);
}

.step-number {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
}

.capability-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.capability {
  padding: 22px;
  border-radius: 16px;
  background: var(--steel);
  border: 1px solid var(--stroke);
}

.contact {
  background: linear-gradient(135deg, rgba(215, 56, 58, 0.18), rgba(19, 16, 26, 0.9));
}

.contact-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.contact-details {
  margin-top: 20px;
  display: grid;
  gap: 8px;
}

.contact-form {
  background: rgba(11, 10, 15, 0.8);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 26px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--ink);
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(243, 196, 59, 0.4);
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 10px;
}

.site-footer {
  border-top: 1px solid var(--stroke);
  padding: 28px 0;
  background: #09080d;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 5vw;
    background: rgba(11, 10, 15, 0.95);
    border: 1px solid var(--stroke);
    padding: 16px 20px;
    border-radius: 16px;
    flex-direction: column;
    gap: 14px;
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 60px;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
}
