:root {
  --bg: #080808;
  --bg-soft: #111111;
  --panel: #151515;
  --panel-light: #1d1d1d;
  --text: #f4f1ec;
  --muted: #b7b1a9;
  --red: #d51f28;
  --red-bright: #f12b35;
  --gold: #e0a446;
  --line: rgba(255,255,255,.10);
  --shadow: 0 28px 70px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(213,31,40,.10), transparent 35%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,8,.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: min(1180px, calc(100% - 40px));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.brand img { width: 48px; height: 48px; object-fit: contain; }
.header-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: .02em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.header-button {
  padding: 11px 18px;
  background: var(--red);
}
.header-button:hover,
.primary-button:hover { transform: translateY(-2px); background: var(--red-bright); }

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,8,.97) 0%, rgba(8,8,8,.78) 42%, rgba(8,8,8,.35) 72%, rgba(8,8,8,.75) 100%),
    repeating-linear-gradient(90deg, transparent 0 84px, rgba(255,255,255,.015) 85px 86px);
}
.hero-glow { position: absolute; border-radius: 999px; filter: blur(80px); opacity: .28; }
.hero-glow-one { width: 420px; height: 420px; background: var(--red); right: 8%; top: 14%; }
.hero-glow-two { width: 280px; height: 280px; background: var(--gold); right: 24%; bottom: 2%; opacity: .11; }
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 50px;
  align-items: center;
  padding: 90px 0;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--red-bright);
  font-size: .79rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero h1,
.section-heading h2,
.values-inner h2,
.cta-card h2 {
  margin: 0;
  line-height: .98;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.hero h1 { font-size: clamp(3.2rem, 7vw, 6.5rem); max-width: 760px; }
.hero h1 span { color: var(--red-bright); }
.hero-text {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.primary-button { padding: 15px 22px; background: var(--red); color: white; }
.primary-button.large { padding: 17px 25px; white-space: nowrap; }
.secondary-button { padding: 14px 22px; border: 1px solid rgba(255,255,255,.24); color: var(--text); }
.secondary-button:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.05); }
.play-icon { font-size: .9em; }
.hero-logo-wrap {
  display: grid;
  place-items: center;
  position: relative;
}
.hero-logo-wrap::before {
  content: "";
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(213,31,40,.20);
  filter: blur(55px);
}
.hero-logo { position: relative; width: min(560px, 100%); filter: drop-shadow(0 28px 35px rgba(0,0,0,.58)); }

.intro-section,
.features-section,
.values-section,
.cta-section { padding: 110px 20px; }
.section-heading { width: min(900px, 100%); margin: 0 auto; text-align: center; }
.section-heading.compact { margin-bottom: 46px; }
.section-heading h2,
.values-inner h2,
.cta-card h2 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
.section-heading > p:last-child { color: var(--muted); font-size: 1.16rem; max-width: 780px; margin: 24px auto 0; }
.features-section { padding-top: 20px; }
.feature-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  min-height: 250px;
  padding: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(213,31,40,.65); }
.feature-number { color: var(--red-bright); font-size: .78rem; font-weight: 900; letter-spacing: .16em; }
.feature-card h3 { margin: 32px 0 10px; font-size: 1.45rem; text-transform: uppercase; letter-spacing: -.02em; }
.feature-card p { margin: 0; color: var(--muted); }

.values-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(8,8,8,.86), rgba(8,8,8,.92)),
    radial-gradient(circle at 15% 50%, rgba(213,31,40,.24), transparent 34%);
}
.values-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: end;
}
.values-inner p:last-child { margin: 0; color: var(--muted); font-size: 1.12rem; }

.cta-section { padding-top: 90px; }
.cta-card {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, rgba(213,31,40,.18), rgba(255,255,255,.035));
  border: 1px solid rgba(213,31,40,.45);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.cta-card p:last-child { color: var(--muted); margin: 18px 0 0; }

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 52px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: .92rem;
}
.site-footer img { width: 64px; }
.site-footer p { margin: 0; }
.site-footer strong { color: var(--text); }
.copyright { text-align: right; }

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 70px 0 80px; }
  .hero-copy { order: 2; }
  .hero-logo-wrap { order: 1; }
  .hero-logo { width: min(420px, 84vw); }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .values-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .cta-card { flex-direction: column; text-align: center; }
}

@media (max-width: 620px) {
  .header-inner { width: min(100% - 24px, 1180px); height: 68px; }
  .brand span { display: none; }
  .brand img { width: 44px; height: 44px; }
  .header-button { padding: 10px 13px; font-size: .88rem; }
  .hero-inner { width: min(100% - 26px, 1180px); gap: 28px; }
  .hero h1 { font-size: clamp(2.8rem, 15vw, 4.4rem); }
  .hero-text { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .primary-button, .secondary-button { width: 100%; }
  .intro-section, .features-section, .values-section, .cta-section { padding-left: 14px; padding-right: 14px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .cta-card { padding: 34px 22px; }
  .primary-button.large { white-space: normal; }
  .site-footer { grid-template-columns: auto 1fr; }
  .copyright { grid-column: 1 / -1; text-align: left; }
}
