:root {
  --black: #050505;
  --black-2: #0c0c0d;
  --panel: #121214;
  --text: #f4f4f4;
  --muted: #b9b9bd;
  --silver: #d9d9dc;
  --red: #ed0b1f;
  --red-dark: #b90716;
  --line: rgba(255,255,255,.12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5,5,5,.91);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  width: min(calc(100% - 40px), var(--max));
  height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { width: 250px; }
.brand img { width: 100%; height: 68px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: .84rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.site-nav a { color: #dcdcdf; transition: color .2s ease; }
.site-nav a:hover { color: #fff; }
.site-nav .nav-cta { border: 1px solid var(--red); padding: 10px 14px; color: #fff; }
.menu-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 10px; }
.menu-toggle span { display: block; height: 2px; background: #fff; margin: 5px 0; }

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 25%, rgba(237,11,31,.13), transparent 27%),
    linear-gradient(135deg, #050505 0%, #080808 55%, #111 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}
.road-lines {
  position: absolute;
  right: -13vw;
  top: 17%;
  width: 58vw;
  height: 420px;
  transform: perspective(720px) rotateX(68deg) rotateZ(-19deg);
  border-left: 14px solid var(--red);
  border-right: 14px solid var(--red);
  opacity: .55;
}
.road-lines::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 8px;
  height: 100%;
  transform: translateX(-50%);
  background: repeating-linear-gradient(to bottom, #fff 0 38px, transparent 38px 78px);
  opacity: .8;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 120px 0 110px;
}
.eyebrow { margin: 0 0 16px; color: var(--red); font-weight: 800; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.08; margin-top: 0; }
h1 { font-size: clamp(3.6rem, 8vw, 7.5rem); letter-spacing: -.05em; text-transform: uppercase; max-width: 850px; margin-bottom: 24px; }
h1 span { color: transparent; -webkit-text-stroke: 1px #fff; text-stroke: 1px #fff; }
.hero-copy { max-width: 720px; color: var(--muted); font-size: clamp(1.06rem, 2vw, 1.28rem); margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; border: 1px solid transparent; font-weight: 800; font-size: .83rem; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: white; }
.btn-primary:hover { background: #ff1027; }
.btn-secondary { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; }
.btn-secondary:hover { border-color: #fff; }
.hero-points { margin-top: 64px; display: flex; gap: 40px; flex-wrap: wrap; color: #d2d2d4; font-size: .8rem; text-transform: uppercase; letter-spacing: .13em; }
.hero-points span::before { content: ""; display: inline-block; width: 24px; height: 3px; background: var(--red); margin-right: 10px; vertical-align: middle; }

.section { padding: 110px 0; }
.section-grid, .section-heading, .service-grid, .process-grid, .cta-inner, .feature-band-inner { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
h2 { font-size: clamp(2.2rem, 5vw, 4.4rem); letter-spacing: -.035em; margin-bottom: 0; }
.intro { background: #f4f4f4; color: #111; }
.intro .eyebrow { color: var(--red); }
.intro-copy { font-size: 1.08rem; color: #46464b; }
.intro-copy p:first-child { margin-top: 0; }

.services { background: var(--black-2); }
.section-heading { margin-bottom: 54px; max-width: var(--max); }
.section-heading h2 { max-width: 760px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service-card { background: var(--panel); padding: 34px 28px 38px; min-height: 330px; transition: background .2s ease; }
.service-card:hover { background: #17171a; }
.service-number { display: inline-block; color: var(--red); font-size: .77rem; letter-spacing: .15em; margin-bottom: 70px; }
.service-card h3 { font-size: 1.35rem; margin-bottom: 16px; }
.service-card p { color: var(--muted); margin: 0; font-size: .95rem; }

.feature-band { background: linear-gradient(110deg, #19191b 0%, #0b0b0c 62%, #170407 100%); border-block: 1px solid var(--line); padding: 105px 0; }
.feature-band-inner { display: grid; grid-template-columns: .92fr 1.08fr; gap: 90px; align-items: start; }
.feature-copy p:last-child { color: var(--muted); font-size: 1.02rem; max-width: 620px; }
.feature-copy h2 { margin-bottom: 22px; }
.feature-list { border-top: 1px solid var(--line); }
.feature-list > div { display: grid; grid-template-columns: 180px 1fr; gap: 26px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.feature-list strong { color: #fff; }
.feature-list span { color: var(--muted); }

.process { background: #f4f4f4; color: #111; }
.section-heading.compact { margin-bottom: 48px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.process-step { border-top: 4px solid #111; padding-top: 24px; }
.process-step > span { color: var(--red); font-size: .78rem; font-weight: 800; letter-spacing: .12em; }
.process-step h3 { margin: 30px 0 12px; font-size: 1.45rem; }
.process-step p { margin: 0; color: #55555a; }

.cta { position: relative; overflow: hidden; padding: 120px 0; background: #090909; }
.cta::after { content: ""; position: absolute; width: 420px; height: 420px; right: -90px; bottom: -230px; border: 80px solid rgba(237,11,31,.17); transform: rotate(45deg); }
.cta-inner { position: relative; z-index: 2; }
.cta h2 { max-width: 850px; margin-bottom: 20px; }
.cta p { max-width: 740px; color: var(--muted); }
.contact-options { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.contact-email { font-size: .85rem; letter-spacing: .08em; }

.site-footer { border-top: 1px solid var(--line); background: #030303; padding: 46px 0; }
.footer-inner { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 26px 50px; align-items: end; }
.footer-logo { width: 220px; margin-bottom: 8px; }
.footer-inner p { color: #88888d; margin: 0; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links { display: flex; gap: 25px; font-size: .77rem; text-transform: uppercase; letter-spacing: .09em; }
.footer-links a:hover { color: var(--red); }
.copyright { grid-column: 1 / -1; padding-top: 25px; border-top: 1px solid var(--line); }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .site-nav { display: none; position: absolute; top: 86px; left: 0; right: 0; background: #080808; border-bottom: 1px solid var(--line); padding: 24px 20px 28px; flex-direction: column; align-items: flex-start; gap: 22px; }
  .site-nav.open { display: flex; }
  .brand { width: 220px; }
  .hero { min-height: 690px; }
  .road-lines { right: -40vw; width: 95vw; opacity: .25; }
  .section-grid, .feature-band-inner { grid-template-columns: 1fr; gap: 42px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 600px) {
  .nav-wrap { width: min(calc(100% - 28px), var(--max)); height: 76px; }
  .brand { width: 185px; }
  .brand img { height: 58px; }
  .site-nav { top: 76px; }
  .hero-inner, .section-grid, .section-heading, .service-grid, .process-grid, .cta-inner, .feature-band-inner, .footer-inner { width: min(calc(100% - 28px), var(--max)); }
  .hero-inner { padding-top: 94px; }
  h1 { font-size: clamp(3.25rem, 16vw, 5rem); }
  .section { padding: 82px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-number { margin-bottom: 45px; }
  .feature-band { padding: 82px 0; }
  .feature-list > div { grid-template-columns: 1fr; gap: 6px; }
  .cta { padding: 90px 0; }
  .footer-inner { grid-template-columns: 1fr; align-items: start; }
  .footer-links { flex-wrap: wrap; }
}
