:root {
  --bg: #0b0c0e;
  --bg-2: #14161a;
  --ink: #f4f1ec;
  --muted: #b7b3ab;
  --red: #e10600;
  --red-2: #ff2a22;
  --line: rgba(255, 255, 255, 0.12);
  --asphalt: #1a1d22;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Barlow", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2 {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-weight: 400;
  line-height: 0.95;
  margin: 0 0 0.55rem;
}
h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); max-width: 14ch; }
h2 { font-size: clamp(2rem, 5vw, 3.2rem); }

.wrap {
  width: min(1100px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.top {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: linear-gradient(180deg, rgba(11,12,14,0.92), rgba(11,12,14,0.55) 70%, transparent);
  backdrop-filter: blur(8px);
}
.top-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 1.35rem;
}
.top-brand img { width: 44px; height: 44px; object-fit: contain; }
.top-nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
}
.top-nav a:not(.btn) { opacity: 0.85; }
.top-nav a:not(.btn):hover { opacity: 1; color: var(--red-2); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.75rem;
  padding: 0.65rem 1.15rem;
  border-radius: 0.35rem;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--red-2), var(--red));
  color: #fff;
  box-shadow: 0 10px 28px rgba(225, 6, 0, 0.35);
}
.btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.28);
  color: var(--ink);
}
.btn-secondary:hover { border-color: #fff; }
.btn-ghost {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.04);
  min-height: 2.35rem;
  padding-inline: 0.9rem;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(1200px 500px at 70% 10%, rgba(225, 6, 0, 0.28), transparent 55%),
    radial-gradient(900px 600px at 10% 90%, rgba(255,255,255,0.06), transparent 50%),
    linear-gradient(165deg, #101216 0%, #0b0c0e 45%, #151820 100%);
  padding: 7rem 1.25rem 4rem;
}
.hero-glow {
  position: absolute;
  inset: auto -10% -20% -10%;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.55));
  pointer-events: none;
}
.hero-check {
  position: absolute;
  inset: 18% -5% auto;
  height: 28px;
  opacity: 0.18;
  background-image:
    linear-gradient(45deg, #fff 25%, transparent 25%),
    linear-gradient(-45deg, #fff 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #fff 75%),
    linear-gradient(-45deg, transparent 75%, #fff 75%);
  background-size: 28px 28px;
  background-position: 0 0, 0 14px, 14px -14px, -14px 0;
  transform: skewY(-3deg);
  pointer-events: none;
  animation: slideCheck 18s linear infinite;
}
@keyframes slideCheck {
  from { background-position: 0 0, 0 14px, 14px -14px, -14px 0; }
  to { background-position: 112px 0, 112px 14px, 126px -14px, 98px 0; }
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  animation: rise 0.9s ease both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
.hero-logo {
  width: min(340px, 72vw);
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.55));
  animation: floatLogo 5.5s ease-in-out infinite;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-lead {
  margin: 0;
  max-width: 38ch;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  font-weight: 500;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.6rem;
}

.section {
  padding: 5rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.section-dark { background: var(--asphalt); }
.eyebrow {
  margin: 0 0 0.4rem;
  color: var(--red-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}
.lede {
  margin: 0 0 2rem;
  max-width: 54ch;
  color: var(--muted);
  font-size: 1.08rem;
}
.pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.pillars li {
  padding: 1.2rem 0 0;
  border-top: 2px solid var(--red);
}
.pillars strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}
.pillars span { color: var(--muted); }

.contact {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}
.facts {
  margin: 0 0 1.5rem;
  display: grid;
  gap: 1.1rem;
}
.facts div {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.facts dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red-2);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.facts dd { margin: 0; font-size: 1.05rem; }
.facts a:hover { color: var(--red-2); }
.map-frame {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  overflow: hidden;
  min-height: 320px;
  background: #000;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

.foot {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2rem;
  background: #08090b;
}
.foot-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.foot-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.foot-brand img { width: 40px; height: 40px; object-fit: contain; }
.foot-brand strong { display: block; font-family: var(--font-display); letter-spacing: 0.06em; font-size: 1.2rem; }
.foot-brand span { color: var(--muted); font-size: 0.9rem; }
.copy {
  width: min(1100px, calc(100% - 2.5rem));
  margin: 1rem auto 0;
  color: #7d7972;
  font-size: 0.85rem;
}

@media (max-width: 860px) {
  .pillars { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .top-nav a:not(.btn) { display: none; }
  .hero { padding-top: 6.5rem; }
}
