:root {
  --bg: #07080d;
  --panel: #101521;
  --panel-soft: #151b29;
  --ink: #ffffff;
  --muted: #a9afbb;
  --line: rgba(255, 255, 255, .12);
  --gold: #eeb74a;
  --red: #e51b2b;
  --red-dark: #a8101c;
  --shadow: 0 28px 90px rgba(0, 0, 0, .42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(229, 27, 43, .13), transparent 28%),
    linear-gradient(315deg, rgba(238, 183, 74, .08), transparent 32%),
    var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--gold);
  color: #07080d;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  top: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 86px;
  padding: 16px clamp(18px, 5%, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 13, .88);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo {
  width: min(212px, 48vw);
  height: auto;
  max-height: 49px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(238, 183, 74, .65);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-weight: 900;
}

.brand-text small {
  display: block;
}

.brand-text small {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #e7e9ee;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: #fff;
  font-weight: 900;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5%, 72px);
  align-items: center;
  min-height: calc(100vh - 86px);
  padding: clamp(42px, 7%, 96px) clamp(18px, 5%, 72px) 72px;
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: var(--red);
}

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

h1 {
  margin-bottom: 24px;
  font-size: 5.4rem;
  line-height: .96;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary {
  border: 1px solid rgba(238, 183, 74, .55);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 20px 48px rgba(229, 27, 43, .25);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .05);
  color: #fff;
}

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

.feature-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-line span {
  padding: 10px 13px;
  border: 1px solid rgba(238, 183, 74, .3);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(238, 183, 74, .34);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.status-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(7, 8, 13, .82);
  backdrop-filter: blur(14px);
}

.status-panel strong {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.status-panel span {
  color: #e7e9ee;
  font-size: 14px;
  font-weight: 700;
  text-align: right;
}

.ticker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px clamp(18px, 5%, 72px);
  border-block: 1px solid rgba(238, 183, 74, .34);
  background: #121725;
  text-align: center;
}

.ticker strong {
  color: var(--gold);
  font-weight: 900;
}

.ticker span {
  color: #d7dae1;
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5%, 70px);
  align-items: start;
}

.section-title {
  max-width: 680px;
}

.section h2,
.showcase h2,
.contact-band h2 {
  margin-bottom: 18px;
  font-size: 3.15rem;
  line-height: 1.03;
  letter-spacing: 0;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

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

.info-card {
  min-height: 265px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--panel), #0a0d14);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .22);
}

.info-card span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.info-card h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.info-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5%, 70px);
  align-items: center;
  width: 100%;
  padding: 86px clamp(18px, 5%, 72px);
  background: #0d111b;
}

.showcase-media img {
  width: 100%;
  aspect-ratio: 1.26;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.showcase-copy {
  max-width: 650px;
}

.showcase-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #e4e7ed;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--gold);
}

.updates .section-title {
  margin-bottom: 30px;
}

.update-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.update-list div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 22px;
  background: #0f1420;
}

.update-list strong {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.update-list span {
  color: var(--muted);
}

.faq .section-title {
  margin-bottom: 28px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: #fff;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 62px clamp(18px, 5%, 72px);
  border-top: 1px solid rgba(238, 183, 74, .25);
  background: linear-gradient(135deg, #141a28, #090a0f);
}

.contact-band > div {
  max-width: 800px;
}

.contact-band h2 {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5%, 72px);
  border-top: 1px solid var(--line);
  background: #05060a;
  color: var(--muted);
  font-size: 14px;
}

.site-footer strong {
  color: var(--gold);
}

@media (max-width: 1040px) {
  .hero,
  .intro,
  .showcase {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 4.2rem;
  }

  .section h2,
  .showcase h2,
  .contact-band h2 {
    font-size: 2.6rem;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 12px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 0;
    border-top: 1px solid var(--line);
  }

  .ticker,
  .contact-band,
  .site-footer,
  .status-panel {
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
  }

  .status-panel span {
    text-align: left;
  }

  .update-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 14px;
  }

  .brand-logo {
    width: min(190px, 68vw);
  }

  .hero {
    padding: 38px 14px 54px;
  }

  h1 {
    font-size: 3rem;
  }

  .section h2,
  .showcase h2,
  .contact-band h2 {
    font-size: 2.1rem;
  }

  .hero-copy p:not(.eyebrow),
  .intro-copy,
  .showcase-copy p:not(.section-kicker) {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual img {
    aspect-ratio: 1;
  }

  .status-panel {
    position: static;
    margin-top: 12px;
  }

  .feature-line span {
    width: 100%;
  }
}
