
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #070707;
  --panel: #101010;
  --panel-2: #151515;
  --red: #d4141e;
  --red-bright: #ff2632;
  --red-dark: #6f0b10;
  --text: #f3f3f3;
  --muted: #a3a3a3;
  --line: #2a2a2a;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(212,20,30,.12), transparent 28rem),
    radial-gradient(circle at 10% 70%, rgba(212,20,30,.06), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .045;
  background-image: repeating-linear-gradient(0deg, transparent 0, transparent 3px, #fff 4px);
  z-index: 20;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7,7,7,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: var(--max);
  margin: auto;
  min-height: 72px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: Anton, Impact, sans-serif;
  letter-spacing: 1px;
  font-size: 30px;
}
.logo span { color: var(--red-bright); }
.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
}
.nav-links a {
  padding: 10px 11px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
  color: #bbb;
  border: 1px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  border-color: var(--red-dark);
  background: rgba(212,20,30,.1);
}

.container { max-width: var(--max); margin: auto; padding: 0 22px; }
.hero {
  min-height: 650px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  width: 560px; height: 560px;
  right: -180px; top: 40px;
  border: 1px solid rgba(212,20,30,.2);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(212,20,30,.025), 0 0 0 140px rgba(212,20,30,.018);
}
.hero-content { width: 100%; padding: 90px 0; position: relative; z-index: 2; }
.eyebrow {
  color: var(--red-bright);
  font-weight: 800;
  letter-spacing: 3px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
h1, h2, h3 { margin-top: 0; }
.hero h1 {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(70px, 13vw, 160px);
  line-height: .84;
  letter-spacing: -2px;
  margin-bottom: 28px;
}
.hero h1 span { color: var(--red-bright); }
.hero p {
  max-width: 620px;
  color: #bbb;
  line-height: 1.8;
  font-size: 17px;
}
.buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .7px;
  font-size: 12px;
  transition: .2s ease;
}
.btn:hover { background: var(--red-bright); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(212,20,30,.2); }
.btn.alt { background: transparent; border-color: #444; }
.btn.alt:hover { border-color: var(--red); }

.section { padding: 90px 0; }
.section-head { margin-bottom: 34px; }
.section-head h2,
.page-title h1 {
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: .95;
  margin-bottom: 12px;
}
.section-head p, .page-title p { color: var(--muted); max-width: 700px; line-height: 1.7; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  border: 1px solid var(--line);
  padding: 28px;
  transition: .2s ease;
}
.card:hover { border-color: var(--red-dark); transform: translateY(-3px); }
.card .icon { color: var(--red-bright); font-size: 26px; margin-bottom: 18px; }
.card h3 { font-size: 20px; text-transform: uppercase; margin-bottom: 9px; }
.card p { color: var(--muted); line-height: 1.7; font-size: 14px; }

.page {
  padding: 80px 0 110px;
  min-height: calc(100vh - 72px);
}
.page-title { padding-bottom: 45px; border-bottom: 1px solid var(--line); margin-bottom: 42px; }
.redline { height: 3px; width: 70px; background: var(--red-bright); margin: 22px 0; }

.command-group { margin-bottom: 45px; }
.command-group h2 {
  font-family: Anton, Impact, sans-serif;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 16px;
}
.command {
  border: 1px solid var(--line);
  background: var(--panel);
  margin-bottom: 8px;
  overflow: hidden;
}
.command summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.command summary::-webkit-details-marker { display: none; }
.command summary:hover { background: #151515; }
.cmd-name { color: var(--red-bright); font-weight: 800; font-family: monospace; }
.cmd-arrow { color: #777; }
.command-content { padding: 0 20px 20px; color: #aaa; line-height: 1.7; font-size: 14px; }
.command-content strong { color: #fff; }

.people-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.person {
  background: #0e0e0e;
  border: 1px solid var(--line);
  overflow: hidden;
}
.person-photo {
  aspect-ratio: 4/5;
  background:
    linear-gradient(135deg, rgba(212,20,30,.18), transparent 55%),
    #181818;
  display: grid;
  place-items: center;
  color: #666;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.person-photo img { width: 100%; height: 100%; object-fit: cover; }
.person-info { padding: 20px; }
.person-info .role { color: var(--red-bright); font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.person-info h3 { font-family: Anton, Impact, sans-serif; font-size: 30px; margin: 6px 0; text-transform: uppercase; }
.person-info p { color: #aaa; line-height: 1.6; font-size: 14px; font-style: italic; }

.invite {
  border: 1px solid var(--red-dark);
  background: linear-gradient(135deg, rgba(212,20,30,.12), rgba(0,0,0,.1));
  padding: clamp(30px, 6vw, 70px);
  text-align: center;
}
.invite h2 { font-family: Anton, Impact, sans-serif; font-size: clamp(42px, 7vw, 82px); margin-bottom: 14px; }
.invite p { max-width: 650px; margin: 0 auto; color: #aaa; line-height: 1.8; }

.social-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.social {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px; border: 1px solid var(--line); background: var(--panel);
  transition: .2s ease;
}
.social:hover { border-color: var(--red); background: #151515; transform: translateX(4px); }
.social strong { text-transform: uppercase; letter-spacing: 1px; }
.social span { color: var(--red-bright); font-size: 12px; font-weight: 800; }

.about-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 45px; align-items: start; }
.about-photo {
  min-height: 430px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(212,20,30,.14), #121212);
  display: grid; place-items: center;
  color: #666; text-transform: uppercase; font-size: 12px;
}
.about-copy p { color: #aaa; line-height: 1.9; }
.quote {
  border-left: 3px solid var(--red);
  padding: 12px 0 12px 20px;
  color: #ddd;
  font-size: 18px;
  line-height: 1.6;
  margin: 30px 0;
}

.footer { border-top: 1px solid var(--line); padding: 35px 0; color: #666; font-size: 12px; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer strong { color: #aaa; }

@media (max-width: 800px) {
  .nav { align-items: flex-start; padding-top: 15px; padding-bottom: 15px; flex-direction: column; }
  .nav-links { justify-content: flex-start; }
  .hero { min-height: 580px; }
  .grid, .people-grid, .about-layout { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .section, .page { padding-top: 60px; padding-bottom: 75px; }
}
@media (max-width: 480px) {
  .nav-links a { padding: 8px 7px; font-size: 10px; }
  .hero h1 { font-size: 70px; }
}
