:root {
  --panel: rgba(15, 23, 42, 0.84);
  --panel-border: rgba(255, 255, 255, 0.12);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --accent-strong: #fbbf24;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, rgba(245, 158, 11, 0.16), transparent 36%),
    linear-gradient(180deg, #111827 0%, #0d1320 52%, #050816 100%);
  color: var(--text);
}

.holding-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.holding-card {
  width: min(100%, 45rem);
  padding: 2.5rem 1.75rem;
  border: 1px solid var(--panel-border);
  border-radius: 1.75rem;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.brand-mark {
  display: block;
  width: min(100%, 21rem);
  height: auto;
  margin: 0 0 1rem;
}

.eyebrow {
  margin: 0 0 1.125rem;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.intro,
.note {
  max-width: 52ch;
  color: var(--muted);
}

.intro {
  margin-top: 1.375rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #111827;
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.28);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.note {
  margin-top: 1.75rem;
  padding-top: 1.375rem;
  margin-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  line-height: 1.7;
}

.brand {
  margin-top: 2.125rem;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.76);
}

@media (min-width: 48rem) {
  .holding-card {
    padding: 2.5rem 1.75rem;
  }
}

@media (max-width: 40rem) {
  .holding-card {
    padding: 1.875rem 1.375rem;
  }

  .brand-mark {
    width: min(100%, 16rem);
    max-width: 70vw;
  }

  .intro {
    font-size: 1rem;
  }

  .cta-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
