:root {
  --brand: #acc629;
  --brand-soft: rgba(172, 198, 41, 0.22);
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; }

.launch-page {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: clamp(1.25rem, 4vw, 4rem);
  background: radial-gradient(circle at 82% 12%, rgba(172, 198, 41, 0.18), transparent 30rem), linear-gradient(145deg, #0c0e0f, #1d2023 74%);
}

.texture {
  position: absolute;
  inset: -30%;
  opacity: 0.55;
  background-image: linear-gradient(115deg, transparent 48%, var(--brand-soft) 49%, var(--brand-soft) 51%, transparent 52%);
  background-size: 5.5rem 5.5rem;
  transform: rotate(-8deg);
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.launch-card {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 52rem);
  min-height: min(38rem, calc(100svh - 3rem));
  place-items: center;
  align-content: center;
  gap: clamp(2rem, 5vw, 3.75rem);
  overflow: hidden;
  padding: clamp(2.25rem, 7vw, 5.5rem);
  border: 1px solid rgba(28, 32, 36, 0.09);
  border-radius: clamp(1.5rem, 4vw, 2.75rem);
  background: #fff;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.22), 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
}

.accent { position: absolute; inset: 0 0 auto; height: 0.55rem; background: var(--brand); }
.logo-wrap { display: grid; width: min(100%, 30rem); min-height: clamp(7rem, 22vw, 12rem); place-items: center; }
.logo-wrap img { display: block; width: 100%; max-height: 14rem; object-fit: contain; }
.divider { width: clamp(3rem, 9vw, 5rem); height: 0.25rem; border-radius: 999px; background: var(--brand); }
h1 { display: grid; gap: 0.25em; margin: 0; color: #1b1d20; font-size: clamp(2rem, 6.5vw, 4.5rem); font-weight: 720; letter-spacing: -0.055em; line-height: 0.98; text-align: center; text-wrap: balance; }
h1 span:last-child { color: var(--brand); }

@media (max-width: 760px) { .launch-card { min-height: min(34rem, calc(100svh - 2.5rem)); } }
