:root {
  --bg: #060606;
  --panel: #0d0d0f;
  --panel-strong: #121214;
  --text: #ffffff;
  --muted: #d4d4d8;
  --soft: #a1a1aa;
  --line: rgba(255, 255, 255, 0.1);
  --red: #dc2626;
  --red-bright: #ef4444;
  --red-dark: #450a0a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

::selection {
  background: var(--red);
  color: #ffffff;
}

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

img {
  display: block;
  max-width: 100%;
}

a:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100% - 40px, 1180px);
  min-height: 72px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(239, 68, 68, 0.75);
  background: rgba(220, 38, 38, 0.18);
  color: #fee2e2;
  font-size: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.nav-links a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid var(--red-bright);
  padding: 12px 18px;
  background: var(--red);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.nav-cta:hover,
.button-primary:hover {
  background: var(--red-bright);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 88svh;
  overflow: hidden;
  align-items: flex-end;
  padding: 118px 0 46px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  z-index: -1;
  background:
    radial-gradient(circle at 18% 72%, rgba(220, 38, 38, 0.28), transparent 30%),
    linear-gradient(
      90deg,
      #050505 0%,
      rgba(5, 5, 5, 0.95) 30%,
      rgba(5, 5, 5, 0.68) 60%,
      rgba(5, 5, 5, 0.9) 100%
    );
}

.hero-inner,
.section,
.standard,
.fit,
.contact {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: end;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: #fca5a5;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  border: 1px solid rgba(239, 68, 68, 0.62);
  padding: 9px 12px;
  background: rgba(69, 10, 10, 0.58);
  color: #fee2e2;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: 88px;
  font-weight: 950;
  line-height: 0.94;
}

h2 {
  margin-bottom: 0;
  color: var(--text);
  font-size: 48px;
  font-weight: 950;
  line-height: 1.03;
}

h3 {
  margin-bottom: 0;
  color: var(--text);
  font-size: 25px;
  font-weight: 950;
  line-height: 1.08;
}

.hero-lede {
  max-width: 680px;
  margin: 28px 0 0;
  color: #e4e4e7;
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-stats article,
.service-card,
.process-list article,
.fit-lead,
.fit-grid span,
.contact-panel {
  border: 1px solid var(--line);
  background: rgba(13, 13, 15, 0.92);
}

.hero-stats article {
  min-height: 100px;
  padding: 18px;
  backdrop-filter: blur(12px);
}

.hero-stats strong {
  display: block;
  color: #f87171;
  font-size: 28px;
  font-weight: 950;
}

.hero-stats span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-strip {
  border-top: 1px solid rgba(127, 29, 29, 0.75);
  border-bottom: 1px solid rgba(127, 29, 29, 0.75);
  background: rgba(69, 10, 10, 0.28);
}

.signal-strip div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 22px;
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: 16px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 780px;
}

.section-heading h2,
.standard-copy h2,
.fit-lead h2,
.contact-copy h2 {
  margin-top: 14px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.service-card {
  min-height: 250px;
  padding: 28px;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.service-card:hover {
  border-color: rgba(239, 68, 68, 0.75);
  background: var(--panel-strong);
  transform: translateY(-2px);
}

.service-card h3 {
  margin-top: 0;
}

.service-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.standard {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  padding: 96px 0;
}

.standard-copy p:not(.section-kicker) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.process-list {
  display: grid;
  gap: 12px;
}

.process-list article {
  min-height: 86px;
  padding: 22px;
  background: #050505;
}

.process-list p {
  margin: 0;
  color: #e4e4e7;
  font-size: 16px;
  line-height: 1.65;
}

.fit {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 16px;
  padding: 96px 0;
}

.fit-lead {
  padding: 28px;
  border-color: rgba(239, 68, 68, 0.55);
  background: rgba(69, 10, 10, 0.34);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.fit-grid span {
  display: flex;
  min-height: 82px;
  align-items: center;
  padding: 22px;
  color: #f4f4f5;
  font-size: 16px;
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 42px;
  align-items: end;
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.contact-copy h2 {
  max-width: 760px;
  font-size: 58px;
}

.contact-panel {
  padding: 28px;
}

.contact-panel p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.contact-panel .button {
  width: 100%;
}

.discord-line {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  border: 1px solid var(--line);
  background: #050505;
  color: #e4e4e7;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-inner,
  .standard,
  .fit,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    max-width: 760px;
  }

  h1 {
    font-size: 68px;
  }

  h2,
  .contact-copy h2 {
    font-size: 42px;
  }
}

@media (max-width: 720px) {
  .nav {
    width: min(100% - 28px, 1180px);
  }

  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    padding-inline: 14px;
    font-size: 12px;
  }

  .hero {
    min-height: 92svh;
    padding-top: 104px;
  }

  .hero-inner,
  .section,
  .standard,
  .fit,
  .contact,
  .signal-strip div {
    width: min(100% - 28px, 1180px);
  }

  .hero-stats,
  .service-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 52px;
  }

  h2,
  .contact-copy h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 22px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .service-card,
  .fit-lead,
  .contact-panel {
    padding: 22px;
  }

  .process-list article {
    padding: 18px;
  }
}
