:root {
  --blue: #001b5e;
  --blue-light: #0047ff;
  --red: #e4001b;
  --red-dark: #8d0011;
  --white: #ffffff;
  --ink: #071126;
  --muted: #c9d4f0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(0,71,255,.55), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(228,0,27,.55), transparent 30%),
    linear-gradient(120deg, #020817 0%, #071126 45%, #120005 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(2, 8, 23, .78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.nav {
  width: min(1180px, 92%);
  margin: auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: .4px; }
.brand img { width: 64px; height: auto; }
.nav-links { display: flex; gap: 22px; color: var(--muted); font-weight: 700; }
.nav-links a:hover { color: var(--white); }
.hero {
  width: min(1180px, 92%);
  margin: 0 auto;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 70px 0;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 10% -10%;
  background: repeating-linear-gradient(105deg, transparent 0 28px, rgba(255,255,255,.06) 29px 31px);
  pointer-events: none;
  opacity: .7;
}
.hero-content, .hero-logo { position: relative; z-index: 1; }
.eyebrow, .section-label {
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .82rem;
}
h1 {
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: .9;
  margin: 18px 0;
  text-transform: uppercase;
  text-shadow: 6px 6px 0 rgba(228,0,27,.65), 12px 12px 0 rgba(0,27,94,.85);
}
.hero-text {
  font-size: 1.18rem;
  line-height: 1.7;
  max-width: 620px;
  color: var(--muted);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 16px 35px rgba(0,0,0,.35);
}
.primary { background: var(--red); }
.secondary { border: 2px solid rgba(255,255,255,.8); }
.hero-logo img {
  width: 100%;
  filter: drop-shadow(0 30px 35px rgba(0,0,0,.55));
  transform: rotate(-3deg);
}
.section {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 90px 0;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.section h2 { font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1; margin: 0; }
.section p { color: var(--muted); line-height: 1.8; font-size: 1.08rem; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 20px 45px rgba(0,0,0,.25);
}
.card span { color: var(--red); font-weight: 900; font-size: 2rem; }
.card h3 { font-size: 1.5rem; margin-bottom: 10px; }
.quote {
  text-align: center;
  padding: 90px 20px;
  background: linear-gradient(90deg, var(--blue), var(--red));
}
.quote h2 { margin: 0; font-size: clamp(2rem, 5vw, 4.5rem); text-transform: uppercase; }
.quote p { font-weight: 900; letter-spacing: 3px; }
.social-section { text-align: center; }
.social-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.social {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  padding: 22px;
  border-radius: 18px;
  font-weight: 900;
}
.social span { display: block; color: var(--muted); margin-top: 8px; font-weight: 700; }
footer { text-align: center; padding: 34px 20px; color: var(--muted); border-top: 1px solid rgba(255,255,255,.12); }

@media (max-width: 800px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 16px 0; }
  .nav-links { flex-wrap: wrap; font-size: .92rem; }
  .hero, .split, .cards, .social-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 40px; text-align: center; }
  h1 { text-shadow: 4px 4px 0 rgba(228,0,27,.65), 8px 8px 0 rgba(0,27,94,.85); }
  .hero-actions { justify-content: center; }
}

.contact-section {
  background: #0b1020;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.contact-section h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.contact-section p {
  color: #d1d5db;
  margin-bottom: 30px;
}

.contact-email {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(90deg, #002d72, #ce1126);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  transition: transform 0.3s ease;
}

.contact-email:hover {
  transform: translateY(-3px);
}

.social-links a:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(206, 17, 38, 0.4);
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  flex-wrap: wrap;
  padding: 20px;
}

.social-links a {
  width: clamp(120px, 12vw, 120px);
  height: clamp(120px, 12vw, 120px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #002d72, #ce1126);
  color: #fff;
  text-decoration: none;
}

.social-links i {
  font-size: clamp(1.6rem, 6vw, 2.8rem);
}
