:root {
  --text: rgba(255, 255, 255, 0.95);
  --muted: rgba(255, 255, 255, 0.78);
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.abz-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

.abz-bg { position: absolute; inset: 0; z-index: 0; }
.abz-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.abz-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(80% 60% at 50% 40%, rgba(0,0,0,0.15), rgba(0,0,0,0.65)),
    linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.65));
}

.abz-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 72px 20px;
}

.abz-card {
  width: min(900px, 100%);
  text-align: center;
  text-shadow: var(--shadow);
}

.abz-brand {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.9;
  margin-bottom: 10px;
  font-size: 12px;
}

.abz-title {
  font-size: clamp(40px, 6vw, 72px);
  margin: 0 0 10px 0;
  line-height: 1.05;
}

.abz-subtitle {
  margin: 0 auto;
  max-width: 60ch;
  font-size: clamp(16px, 2.2vw, 22px);
  color: var(--muted);
}

.abz-footer {
  margin-top: 26px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.abz-pill {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
}
