:root {
  color-scheme: dark;
  --red: #d9080a;
  --white: #ffffff;
  --ink: #080808;
  --panel: rgba(12, 12, 12, 0.66);
  --border: rgba(255, 255, 255, 0.18);
  --text: rgba(255, 255, 255, 0.94);
  --muted: rgba(255, 255, 255, 0.72);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.16), transparent 28%),
    radial-gradient(circle at 20% 20%, rgba(217, 8, 10, 0.42), transparent 32%),
    linear-gradient(135deg, #000000 0%, #0d0d0d 45%, #171717 100%);
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, rgba(217, 8, 10, 0.18), rgba(255, 255, 255, 0.05));
  background-size: 72px 72px, 72px 72px, cover;
  mask-image: radial-gradient(circle at center, black 54%, transparent 100%);
  opacity: 0.8;
  pointer-events: none;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.ambient {
  position: absolute;
  width: 42vw;
  height: 42vw;
  min-width: 340px;
  min-height: 340px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.42;
  pointer-events: none;
}

.ambient-left {
  top: -10vw;
  left: -12vw;
  background: radial-gradient(circle, rgba(217, 8, 10, 0.6), transparent 68%);
}

.ambient-right {
  right: -14vw;
  bottom: -16vw;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.45), transparent 64%);
}

.hero-card {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  padding: clamp(28px, 6vw, 54px);
  border: 1px solid var(--border);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.72), rgba(8, 8, 8, 0.88));
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  text-align: center;
}

.brand-mark-wrap {
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark {
  display: block;
  width: min(132px, 30vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(217, 8, 10, 0.18));
}

.eyebrow {
  margin: 0 0 10px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 10vw, 6.5rem);
  line-height: 1.05;
  letter-spacing: -0.07em;
  font-weight: 800;
  background: linear-gradient(90deg, var(--red) 0%, var(--white) 55%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 26px rgba(217, 8, 10, 0.18);
  padding-bottom: 0.08em;
}

.subtitle {
  max-width: 32rem;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.6;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.info-pill {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: inherit;
  text-decoration: none;
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.info-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
}

.info-pill.primary {
  background: linear-gradient(135deg, rgba(217, 8, 10, 0.18), rgba(255, 255, 255, 0.08));
  border-color: rgba(217, 8, 10, 0.35);
}

.label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.value {
  font-size: 1.03rem;
  font-weight: 600;
  word-break: break-word;
}

@media (max-width: 720px) {
  body {
    overflow: auto;
  }

  .page-shell {
    padding: 18px;
  }

  .hero-card {
    padding: 24px 20px 22px;
    border-radius: 24px;
  }

  .brand-mark-wrap {
    width: auto;
    height: auto;
  }

  .brand-mark {
    width: min(104px, 32vw);
  }

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