:root {
  --black: #030303;
  --near-black: #090909;
  --panel: rgba(18, 18, 20, 0.78);
  --panel-strong: rgba(8, 8, 10, 0.92);
  --white: #f7f7f7;
  --muted: #b7b7b7;
  --red: #e10600;
  --red-dark: #8a0500;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.65);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 12%, rgba(225, 6, 0, 0.28), transparent 26rem),
    radial-gradient(circle at 82% 0%, rgba(255, 255, 255, 0.10), transparent 22rem),
    linear-gradient(180deg, #000 0%, #080808 48%, #020202 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 45%, rgba(225, 6, 0, 0.08) 45% 46%, transparent 46% 100%),
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 30%);
  z-index: -2;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.075;
  z-index: -1;
  background-image:
    repeating-radial-gradient(circle at 0 0, rgba(255,255,255,0.65) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(16px);
}

.brand img {
  display: block;
  width: clamp(150px, 22vw, 260px);
  height: auto;
}

.nav {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}

.nav a:hover {
  color: #fff;
}

.hero {
  width: min(1280px, 100%);
  min-height: calc(100svh - 82px);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 500px);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.hero-copy {
  min-width: 0;
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.kicker {
  margin: 0 0 0.8rem;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 10ch;
  margin-bottom: 1rem;
  font-size: clamp(3.1rem, 7vw, 7.1rem);
  line-height: 0.86;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: normal;
  text-shadow:
    0 2px 0 rgba(255,255,255,0.09),
    0 18px 50px rgba(0,0,0,0.85);
}

h1::after {
  content: "";
  display: block;
  width: min(360px, 70vw);
  height: 5px;
  margin-top: 1.2rem;
  background: linear-gradient(90deg, var(--red), transparent);
  box-shadow: 0 0 30px rgba(225, 6, 0, 0.65);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
}

.lead {
  max-width: 680px;
  margin-bottom: 1.7rem;
  color: #e5e5e5;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.72;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button.primary {
  border-color: rgba(225, 6, 0, 0.85);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 14px 35px rgba(225, 6, 0, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(225, 6, 0, 0.36);
  border-radius: 999px;
  color: #fff;
  background: rgba(225, 6, 0, 0.10);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 rgba(225, 6, 0, 0.8);
  animation: pulse 1.8s infinite;
}

.poster-wrap {
  position: relative;
  display: grid;
  place-items: center;
}

.poster-glow {
  position: absolute;
  inset: 5%;
  border-radius: 32px;
  background: radial-gradient(circle, rgba(225, 6, 0, 0.42), transparent 62%);
  filter: blur(34px);
}

.poster {
  position: relative;
  display: block;
  width: min(500px, 100%);
  max-width: 100%;
  height: auto;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  box-shadow:
    0 35px 100px rgba(0,0,0,0.78),
    0 0 60px rgba(225, 6, 0, 0.22);
}

.content-section,
.contact-section {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 3rem);
}

.section-title {
  max-width: 760px;
  margin-bottom: 2rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    var(--panel);
  box-shadow: var(--shadow);
}

.card {
  min-height: 220px;
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 8rem;
  height: 8rem;
  border-radius: 999px;
  background: rgba(225, 6, 0, 0.13);
}

.card-number {
  display: inline-block;
  margin-bottom: 2.4rem;
  color: rgba(255,255,255,0.28);
  font-size: 3rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.card p,
.muted {
  color: var(--muted);
  line-height: 1.72;
}

.contact-panel {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.35rem, 4vw, 2.4rem);
}

.contact-links {
  display: grid;
  align-content: center;
  gap: 0.8rem;
}

.contact-links a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 900;
  border-bottom: 2px solid var(--red);
  width: fit-content;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 3rem) 2.5rem;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.08);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(225, 6, 0, 0.78); }
  70% { box-shadow: 0 0 0 12px rgba(225, 6, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 6, 0, 0); }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: clamp(2rem, 5vw, 4rem);
  }

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

  h1 {
    max-width: 100%;
    font-size: clamp(3.2rem, 10vw, 6.8rem);
  }

  .poster-wrap {
    justify-content: start;
  }

  .poster {
    width: min(560px, 92vw);
  }
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .contact-panel,
  footer {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 2rem;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.7rem);
  }

  .cta-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
