/*
  Minute Marketing x The Cleopatra Ball — design system
  Palette sourced from Minute Marketing's live brand site CSS (#1D1A27, #302C3F,
  #B7B4C7, #80297A) blended with a warm champagne-gold accent (#C6A664)
  for the London Fashion Week / premium-event context.
  Heading font intent: 'Thicccboi' (Minute Marketing's brand font) — not
  self-hosted here to keep the page lightweight; falls back to a similar
  geometric system stack. Drop a licensed Thicccboi woff2 into
  assets/fonts/ and add an @font-face rule here if you want an exact match.
*/

:root {
  --bg: #1D1A27;
  --surface: #302C3F;
  --surface-raised: #3B3650;
  --border: #423C55;
  --text: #F5F3EE;
  --text-muted: #C4C1D2;
  --text-faint: #8B87A0;
  --accent-gold: #C6A664;
  --accent-gold-strong: #D9BC80;
  --accent-purple: #80297A;
  --accent-blue: #3550C9;
  --accent-purple-bright: #C475C4;
  --brand-gradient: linear-gradient(110deg, var(--accent-blue), var(--accent-purple));
  --error: #E8A0A0;
  --error-strong: #E06A6A;
  --success: #B7D9B0;
  --glass: rgba(48, 44, 63, 0.68);
  --glass-strong: rgba(29, 26, 39, 0.84);
  --glass-border: rgba(245, 243, 238, 0.16);
  --glass-highlight: rgba(245, 243, 238, 0.1);

  --font-heading: 'Thicccboi', 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --max-width: 480px;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent-gold-strong);
  text-decoration-color: rgba(198, 166, 100, 0.4);
}

a:hover,
a:focus-visible {
  text-decoration-color: currentColor;
}

:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- Ambient background: slow, soft blue-to-purple glow, low opacity --- */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60vw 60vw at 85% -10%, rgba(53, 80, 201, 0.35), transparent 60%),
    radial-gradient(55vw 55vw at 110% 30%, rgba(128, 41, 122, 0.35), transparent 65%);
  filter: blur(10px);
  opacity: 0.55;
  animation: drift 22s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-2%, 1.5%, 0) scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .noise-overlay { animation: none; }
}

/* ==========================================================================
   Shared shell / header / footer
   ========================================================================== */

.status-shell,
.legal-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 60dvh;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 20px 32px;
  justify-content: center;
}

.legal-shell {
  max-width: 1000px;
  justify-content: flex-start;
  padding-top: 40px;
}

.brand-logo {
  height: 36px;
  width: auto;
}

/* ==========================================================================
   Site nav bar (used on every page)
   ========================================================================== */

.site-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 16px;
  background: rgba(10, 9, 15, 0.58);
  border-bottom: 1px solid rgba(196, 117, 196, 0.2);
  box-shadow: inset 0 1px 0 rgba(245, 243, 238, 0.06), 0 10px 28px rgba(0, 0, 0, 0.12);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
  backdrop-filter: blur(20px) saturate(145%);
}

.site-nav-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  line-height: 0;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
}

.site-nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--text-muted);
  text-decoration: none;
}

.site-nav-links a:hover,
.site-nav-links a:focus-visible {
  color: var(--accent-purple-bright);
}

/* ==========================================================================
   Site footer bar (used on every page)
   ========================================================================== */

.site-footer-bar {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px 20px;
  background: rgba(29, 26, 39, 0.76);
  border-top: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 var(--glass-highlight);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  text-align: center;
}

.footer-logo {
  height: 26px;
  width: auto;
  opacity: 0.9;
}

.site-footer-links {
  font-size: 12.5px;
  color: var(--text-faint);
}

.site-footer-links a {
  color: var(--text-faint);
  text-decoration: underline;
  text-decoration-color: rgba(139, 135, 160, 0.4);
}

.footer-dot {
  margin: 0 8px;
}

.site-footer-copyright {
  margin: 0;
  font-size: 12px;
  color: var(--text-faint);
}

@media (min-width: 560px) {
  .site-footer-bar {
    flex-direction: row;
    justify-content: space-between;
    padding: 24px 40px;
  }
}

/* ==========================================================================
   Entry hero + eyebrow
   ========================================================================== */

.eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 600;
  text-align: center;
}

.eyebrow-x {
  color: var(--text-faint);
  padding: 0 2px;
}

/* ==========================================================================
   Hero split (entry page): full-bleed venue backdrop, left copy, right card
   ========================================================================== */

.hero-split,
.status-shell-venue,
.legal-venue-band {
  background-image: var(--venue-overlay), url('/assets/images/hero-venue.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-split {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 0;
  padding: 20px;
  /* Photo is naturally dark on the left, lit building on the right — darken
     left-to-right (where the headline text sits) rather than top-to-bottom
     so the image's own composition does most of the legibility work. */
  --venue-overlay: linear-gradient(135deg, rgba(7, 6, 11, 0.93) 0%, rgba(7, 6, 11, 0.79) 56%, rgba(7, 6, 11, 0.48) 100%);
  background-position: center, 64% 72%;
}

.hero-copy-group {
  display: contents;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  order: 0;
}

.hero-eyebrow-top {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-purple-bright);
  font-weight: 600;
}

.hero-wordmark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 700;
}

.hero-wordmark-x {
  color: var(--accent-purple-bright);
  font-weight: 400;
}

.hero-headline {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: clamp(34px, 9.5vw, 42px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  text-transform: uppercase;
}

.hero-headline-accent {
  display: inline-block;
  color: var(--accent-gold-strong);
  font-size: clamp(25px, 7.6vw, 30px);
  line-height: 1.06;
  white-space: nowrap;
}

.hero-sub {
  margin: 0 auto 12px;
  max-width: 31ch;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.5;
}

.hero-close-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  font-size: 12px;
  letter-spacing: 0.01em;
  color: var(--text-faint);
  white-space: nowrap;
}

.hero-close-long {
  display: none;
}

.hero-close-short {
  display: inline;
}

.hero-close-tick {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
  flex-shrink: 0;
}

.hero-countdown {
  display: block;
  order: 2;
  width: min(100%, 390px);
  margin: 4px auto 0;
  padding: 14px;
  background: rgba(29, 26, 39, 0.58);
  border: 1px solid rgba(198, 166, 100, 0.3);
  border-radius: var(--radius-md);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
  backdrop-filter: blur(12px) saturate(130%);
  color: var(--text-muted);
}

.hero-countdown-label {
  display: block;
  margin-bottom: 10px;
  color: var(--text-faint);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-countdown-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  font-variant-numeric: tabular-nums;
}

.hero-countdown-values span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 8px 4px;
  background: rgba(245, 243, 238, 0.04);
  border: 1px solid rgba(245, 243, 238, 0.1);
  border-radius: var(--radius-sm);
}

.hero-countdown-values strong {
  display: block;
  min-width: 2ch;
  color: var(--accent-gold-strong);
  font-family: var(--font-heading);
  font-size: clamp(25px, 8vw, 32px);
  font-weight: 700;
  line-height: 1;
  text-align: right;
}

.hero-countdown-values small {
  margin-top: 5px;
  color: var(--text-faint);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  order: 1;
}

/* ==========================================================================
   Entry card + form
   ========================================================================== */

.entry-card {
  width: 100%;
  max-width: 500px;
  background: rgba(20, 17, 27, 0.92);
  -webkit-backdrop-filter: blur(26px) saturate(155%);
  backdrop-filter: blur(26px) saturate(155%);
  border: 1px solid rgba(196, 117, 196, 0.58);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: inset 0 1px 0 rgba(245, 243, 238, 0.13), 0 34px 84px rgba(0, 0, 0, 0.5);
}

.entry-card-head {
  margin-bottom: 16px;
  text-align: center;
}

.entry-card-title {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.entry-card-sub {
  margin: 0;
  font-size: 13.5px;
  color: var(--text-muted);
}

.entry-card-footnote {
  margin: 14px 0 0;
  text-align: center;
  font-size: 12px;
  color: var(--text-faint);
}

.entry-card-age-plus {
  position: relative;
  top: -0.12em;
}

.entry-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"] {
  appearance: none;
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  background: rgba(14, 13, 19, 0.58);
  border: 1px solid rgba(196, 193, 210, 0.28);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 16px;
  font-family: inherit;
  box-shadow: inset 0 1px 0 rgba(245, 243, 238, 0.05);
  transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.field input::placeholder {
  color: var(--text-faint);
}

.field input:focus-visible {
  border-color: var(--accent-purple-bright);
  outline: none;
  box-shadow: 0 0 0 3px rgba(128, 41, 122, 0.28);
}

.field-invalid input {
  border-color: var(--error-strong);
}

.field-error {
  font-size: 12.5px;
  color: var(--error);
  line-height: 1.4;
}

.field-error:empty {
  display: none;
}

.field-error-form {
  min-height: 0;
}

.field-error-form:not(:empty) {
  padding: 10px 12px;
  background: rgba(224, 106, 106, 0.1);
  border: 1px solid rgba(224, 106, 106, 0.3);
  border-radius: var(--radius-sm);
}

.field-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.field-checkbox {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px 10px;
}

.field-checkbox input[type="checkbox"] {
  appearance: none;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin-top: 1px;
  border: 1.5px solid rgba(196, 193, 210, 0.36);
  border-radius: 6px;
  background: rgba(14, 13, 19, 0.58);
  box-shadow: inset 0 1px 0 rgba(245, 243, 238, 0.05);
  position: relative;
  cursor: pointer;
}

.field-checkbox input[type="checkbox"]:checked {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

.field-checkbox input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid var(--bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.field-checkbox label {
  flex: 1 1 0;
  min-width: 0;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
}

.field-checkbox .field-error {
  flex-basis: 100%;
}

.cf-turnstile {
  display: flex;
  justify-content: center;
}

.btn-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  border: 1px solid rgba(217, 188, 128, 0.6);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent-gold-strong), var(--accent-gold));
  color: #1B1808;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.btn-arrow {
  display: inline-block;
  color: var(--accent-purple);
  transition: transform 0.15s ease;
}

.btn-submit:hover:not(:disabled) .btn-arrow {
  transform: translateX(3px);
}

.btn-submit.is-loading .btn-arrow {
  visibility: hidden;
}

.btn-submit:hover:not(:disabled) {
  background: var(--brand-gradient);
  border-color: rgba(196, 117, 196, 0.72);
  box-shadow: 0 10px 28px rgba(128, 41, 122, 0.34);
  color: var(--text);
}

.btn-submit:hover:not(:disabled) .btn-arrow {
  color: var(--text);
}

.btn-submit:active:not(:disabled) {
  transform: translateY(1px);
}

.btn-submit:disabled {
  cursor: not-allowed;
  opacity: 0.85;
}

.btn-spinner {
  display: none;
  position: absolute;
  top: 50%;
  right: 18px;
  width: 20px;
  height: 20px;
  margin: -10px 0 0;
  border: 2.5px solid rgba(27, 24, 8, 0.35);
  border-top-color: #1B1808;
  border-radius: 50%;
}

.btn-submit.is-loading .btn-spinner {
  display: block;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --- Success state --- */

.success-state {
  text-align: center;
  background: rgba(28, 23, 38, 0.72);
  border: 1px solid rgba(196, 117, 196, 0.5);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  box-shadow: inset 0 1px 0 rgba(245, 243, 238, 0.1), 0 20px 48px rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  animation: fade-in 0.4s ease;
}

.success-state h2 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--text);
}

.success-state p {
  margin: 0 0 8px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.success-reference {
  margin: 18px 0 !important;
  font-weight: 700;
  color: var(--accent-gold-strong) !important;
  letter-spacing: 0.03em;
}

.success-signoff {
  margin-top: 18px !important;
  font-size: 13px !important;
  color: var(--text-faint) !important;
}

[hidden] {
  display: none !important;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Status pages (/winner, 404)
   ========================================================================== */

.status-shell {
  justify-content: center;
}

.status-shell-venue {
  --venue-overlay: linear-gradient(115deg, rgba(14, 13, 19, 0.88) 0%, rgba(14, 13, 19, 0.74) 48%, rgba(14, 13, 19, 0.58) 100%);
  min-height: calc(100dvh - 68px);
  max-width: none;
  margin: 0;
  padding: 48px 20px;
}

.status-card {
  text-align: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 44px 24px;
  box-shadow: inset 0 1px 0 var(--glass-highlight), 0 24px 60px rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
  backdrop-filter: blur(16px) saturate(135%);
}

.status-shell-venue .status-card {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(59, 54, 80, 0.72), rgba(29, 26, 39, 0.84));
  border-color: rgba(217, 188, 128, 0.28);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.42);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
  backdrop-filter: blur(20px) saturate(145%);
}

.status-shell-venue .eyebrow {
  color: var(--accent-gold-strong);
}

.status-shell-venue .status-title {
  font-size: clamp(30px, 8vw, 46px);
}

.status-title {
  margin: 4px 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(26px, 7vw, 34px);
  font-weight: 700;
  color: var(--text);
}

.status-copy {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.status-copy-muted {
  color: var(--text-faint);
  font-size: 13.5px;
}

/* ==========================================================================
   Legal pages (/terms, /privacy)
   ========================================================================== */

.legal-content {
  --legal-reading-width: 35rem;
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: inset 0 1px 0 var(--glass-highlight), 0 22px 54px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
  backdrop-filter: blur(16px) saturate(135%);
}

.legal-venue-band {
  --venue-overlay: linear-gradient(110deg, rgba(14, 13, 19, 0.82) 0%, rgba(14, 13, 19, 0.5) 52%, rgba(14, 13, 19, 0.2) 100%);
  min-height: 128px;
  border: 1px solid rgba(198, 166, 100, 0.24);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.26);
}

.legal-venue-band + .legal-content {
  margin: -24px 0 0;
  background: rgba(48, 44, 63, 0.88);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.legal-back-link {
  display: flex;
  align-items: center;
  width: min(100%, var(--legal-reading-width));
  max-width: var(--legal-reading-width);
  min-height: 44px;
  margin: -8px auto 6px;
  padding: 0 8px;
  color: var(--accent-gold);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-underline-offset: 3px;
}

.legal-back-link:hover,
.legal-back-link:focus-visible {
  color: var(--accent-gold-strong);
  text-decoration: underline;
}

.legal-content h1 {
  width: min(100%, var(--legal-reading-width));
  max-width: var(--legal-reading-width);
  margin: 0 auto 6px;
  font-family: var(--font-heading);
  font-size: clamp(24px, 6vw, 30px);
  color: var(--text);
}

.legal-updated {
  width: min(100%, var(--legal-reading-width));
  max-width: var(--legal-reading-width);
  margin: 0 auto 28px;
  font-size: 13px;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.legal-content h2 {
  width: min(100%, var(--legal-reading-width));
  max-width: var(--legal-reading-width);
  margin: 28px auto 10px;
  font-size: 17px;
  color: var(--text);
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
}

.legal-content p {
  width: min(100%, var(--legal-reading-width));
  max-width: var(--legal-reading-width);
  margin-left: auto;
  margin-right: auto;
}

.legal-content ol,
.legal-content ul {
  width: min(100%, var(--legal-reading-width));
  max-width: var(--legal-reading-width);
  padding-left: 20px;
  margin: 0 auto 8px;
}

.legal-content li {
  margin-bottom: 10px;
}

.legal-content li strong {
  color: var(--text);
}

/* ==========================================================================
   Stats bar (prize / closing / winner)
   ========================================================================== */

.stats-bar {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px 24px;
  background: rgba(29, 26, 39, 0.76);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 var(--glass-highlight), inset 0 -1px 0 rgba(245, 243, 238, 0.04);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  backdrop-filter: blur(18px) saturate(135%);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(198, 166, 100, 0.4);
  border-radius: 50%;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.stat-label {
  margin: 0;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 600;
}

.stat-value {
  margin: 0;
  font-size: 15px;
  color: var(--text);
  font-weight: 600;
  max-width: 28ch;
}

.stat-divider {
  display: none;
}

/* ==========================================================================
   Breakpoints
   ========================================================================== */

@media (min-width: 560px) {
  .status-shell,
  .legal-shell {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .entry-card {
    padding: 24px;
  }

  .status-shell-venue .status-card {
    padding: 52px 48px;
  }
}

@media (min-width: 720px) {
  .legal-shell {
    max-width: 1000px;
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .legal-venue-band {
    min-height: 160px;
  }

  .legal-venue-band + .legal-content {
    margin: -32px 28px 0;
    padding: 40px 36px;
  }

  .stats-bar {
    flex-direction: row;
    justify-content: center;
    padding: 30px 48px;
  }

  .stat-divider {
    display: block;
    width: 1px;
    align-self: stretch;
    background-color: var(--border);
  }
}

@media (min-width: 960px) {
  .site-nav {
    padding: 12px 20px;
  }

  .hero-split {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: calc(100dvh - 68px);
    padding: 0 56px;
    gap: 32px;
    background-size: cover, cover;
    background-position: center, 57% center;
    --venue-overlay: linear-gradient(115deg, rgba(14, 13, 19, 0.88) 0%, rgba(14, 13, 19, 0.68) 32%, rgba(14, 13, 19, 0.32) 55%, rgba(14, 13, 19, 0.08) 76%);
  }

  .hero-copy-group {
    display: block;
    flex: 0 1 46%;
    max-width: 620px;
    transform: translateX(clamp(32px, 5vw, 80px));
  }

  .hero-content {
    text-align: left;
    margin: 0;
    max-width: none;
  }

  .hero-eyebrow-top,
  .hero-wordmark {
    justify-content: flex-start;
  }

  .hero-sub {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 22px;
    max-width: 34ch;
    font-size: 18px;
  }

  .hero-headline {
    max-width: 620px;
    font-size: clamp(40px, 4.25vw, 54px);
    line-height: 0.98;
    text-transform: none;
  }

  .hero-headline-accent {
    font-size: 1em;
    white-space: nowrap;
  }

  .hero-close-line {
    margin-left: 0;
    margin-right: 0;
    font-size: 13px;
    letter-spacing: 0.03em;
  }

  .hero-close-long {
    display: inline;
  }

  .hero-close-short {
    display: none;
  }

  .hero-countdown {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-card-wrap {
    flex: 0 1 40%;
    justify-content: flex-end;
    transform: translateX(clamp(-112px, calc(156.8px - 20vw), -48px));
  }

  .entry-card {
    background: rgba(18, 15, 26, 0.86);
    padding: 36px;
  }

  .entry-card-title {
    font-size: 22px;
  }

  .entry-form {
    gap: 16px;
  }

  .field input[type="text"],
  .field input[type="email"],
  .field input[type="tel"] {
    min-height: 50px;
  }
}

@media (min-width: 1200px) {
  .hero-headline {
    font-size: clamp(54px, 4.45vw, 64px);
  }
}
