@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Syne:wght@700;800&display=swap");

:root {
  color-scheme: dark;
  --bg: #0c0b15;
  --bg-secondary: #121126;
  --surface: rgba(23, 22, 42, 0.84);
  --surface-border: rgba(140, 128, 255, 0.16);
  --text-primary: #f4f3ff;
  --text-secondary: #b7b2d9;
  --text-muted: #8d87af;
  --brand-primary: #6b4dff;
  --brand-secondary: #a855f7;
  --highlight: #7c6af5;
  --shadow: 0 30px 80px rgba(8, 8, 20, 0.44);
}

* {
  box-sizing: border-box;
}

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

body {
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.22), transparent 30%),
    radial-gradient(circle at bottom right, rgba(79, 53, 210, 0.22), transparent 34%),
    linear-gradient(160deg, var(--bg) 0%, #111020 52%, var(--bg-secondary) 100%);
  color: var(--text-primary);
  font-family: "Plus Jakarta Sans", sans-serif;
}

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

.ambient {
  pointer-events: none;
  position: absolute;
  border-radius: 999px;
  filter: blur(36px);
  opacity: 0.72;
}

.ambient-a {
  top: 10%;
  left: 8%;
  height: 240px;
  width: 240px;
  background: rgba(109, 40, 217, 0.34);
}

.ambient-b {
  right: 10%;
  bottom: 8%;
  height: 300px;
  width: 300px;
  background: rgba(79, 53, 210, 0.28);
}

.holding-card {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  border: 1px solid var(--surface-border);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  padding: 40px;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-mark {
  display: grid;
  place-items: center;
  height: 64px;
  width: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #ffffff;
  font-family: "Syne", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
  box-shadow: 0 18px 44px rgba(107, 77, 255, 0.28);
}

.brand-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--highlight);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--text-primary);
  font-family: "Syne", sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.message {
  margin: 26px 0 0;
  max-width: 520px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
}

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

.meta-item {
  border: 1px solid rgba(140, 128, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  padding: 18px 20px;
}

.meta-label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.meta-value {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.link {
  color: var(--text-primary);
  text-decoration: none;
}

.link:hover {
  color: #dcd7ff;
}

@media (max-width: 720px) {
  .page-shell {
    padding: 20px;
  }

  .holding-card {
    border-radius: 24px;
    padding: 28px 22px;
  }

  .brand-row {
    align-items: flex-start;
  }

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