:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: rgba(9, 10, 12, 0.72);
  --line: rgba(255, 255, 255, 0.18);
  --text: #f8f4ea;
  --muted: rgba(248, 244, 234, 0.72);
  --gold: #f6b84b;
  --gold-2: #ffdc8a;
  --cyan: #7de8ff;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
}

a { color: inherit; }

.page-shell { min-height: 100vh; }

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media {
  background-image: image-set(url('/assets/hero.webp') type('image/webp'), url('/assets/hero.png') type('image/png'));
  background-size: cover;
  background-position: 58% center;
  transform: scale(1.02);
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.76) 42%, rgba(5, 5, 5, 0.28) 76%, rgba(5, 5, 5, 0.5) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.18) 36%, rgba(5, 5, 5, 0.42) 100%);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
}

.brand__mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246, 184, 75, 0.52);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.38);
  letter-spacing: 0;
}

.nav__tag {
  color: var(--muted);
  font-size: 0.86rem;
  white-space: nowrap;
}

.hero__content {
  width: min(var(--max), calc(100% - 40px));
  margin: auto auto 11vh;
  padding-top: 72px;
}

.kicker,
.section-label,
.label,
.card-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold-2);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(4.2rem, 8vw, 7.8rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.lead {
  max-width: 690px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.55;
}

.status-panel {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
}

.status-panel > div {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.status-panel > div:last-child { border-right: 0; }

.label {
  display: block;
  margin-bottom: 7px;
  color: var(--cyan);
  font-size: 0.68rem;
}

.status-panel strong {
  display: block;
  font-size: 1rem;
}

.actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }

.button--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #151006;
}

.button--ghost { background: rgba(0, 0, 0, 0.24); }

.details {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 96px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 48px;
}

.details h2 {
  max-width: 470px;
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.98;
}

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

.cards article {
  min-height: 245px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
}

.cards h3 {
  margin: 28px 0 12px;
  font-size: 1.35rem;
}

.cards p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 860px) {
  .hero { min-height: 94vh; }
  .hero__media { background-position: 68% center; }
  .hero__shade {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.64)),
      linear-gradient(0deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.18));
  }
  .nav { align-items: flex-start; }
  .nav__tag { white-space: normal; text-align: right; }
  .hero__content { margin-bottom: 7vh; padding-top: 44px; }
  h1 { font-size: clamp(3.3rem, 17vw, 5.1rem); }
  .status-panel { grid-template-columns: 1fr; }
  .status-panel > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .status-panel > div:last-child { border-bottom: 0; }
  .details { grid-template-columns: 1fr; gap: 22px; padding-top: 58px; }
  .cards { grid-template-columns: 1fr; }
  .cards article { min-height: 0; }
}

@media (max-width: 460px) {
  .nav,
  .hero__content,
  .details { width: min(100% - 28px, var(--max)); }
  .brand { font-size: 0.78rem; }
  .brand__mark { width: 31px; height: 31px; }
  .nav__tag { font-size: 0.78rem; }
  .lead { font-size: 1rem; }
  .actions { align-items: stretch; }
  .button { width: 100%; }
}
