:root {
  --navy: #0B2A4A;
  --navy-deep: #071c30;
  --gold: #D6A21E;
  --gold-bright: #F5C842;
  --gold-dark: #B89217;
  --border: #D9E1EC;
  --bg: #F6F8FB;
  --text: #1F2933;
  --muted: #6B7280;
  --error: #B91C1C;
  --success: #2E7D32;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

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

body {
  margin: 0;
  min-height: 100vh;
  background: var(--navy-deep);
  color: #fff;
  overflow-x: hidden;
}

/* ── HERO BACKGROUND ─────────────────────────────────── */
.hero-bg {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 20% 10%, rgba(214,162,30,.18) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 90%, rgba(21,101,192,.25) 0%, transparent 60%),
              linear-gradient(160deg, #071c30 0%, #0f3460 50%, #071c30 100%);
  z-index: 0;
}

/* Floating gold orbs */
.hero-bg::before, .hero-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  animation: drift 12s ease-in-out infinite alternate;
}
.hero-bg::before {
  width: 500px; height: 500px;
  background: var(--gold);
  top: -150px; left: -100px;
}
.hero-bg::after {
  width: 400px; height: 400px;
  background: #1565c0;
  bottom: -120px; right: -80px;
  animation-delay: -6s;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.08); }
}

/* ── LAYOUT ──────────────────────────────────────────── */
.wrap {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}

/* ── TOP BRANDING ─────────────────────────────────────── */
.brand-bar {
  text-align: center;
  margin-bottom: 28px;
}
.logo-pill {
  display: inline-block;
  background: #fff;
  border-radius: 12px;
  padding: 8px 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.logo-pill img { display: block; height: 38px; width: auto; }
.brand-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-top: 10px;
  letter-spacing: .04em;
}

/* ── HERO SPLIT LAYOUT ────────────────────────────────── */
.hero-split {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}

.hero-photo-col {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.sasson-photo-wrap {
  position: relative;
  width: 100%;
}

.sasson-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: right top;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,.5), 0 0 0 2px rgba(214,162,30,.3);
  display: block;
}

.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  color: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 600;
  padding: 20px 12px 10px;
  border-radius: 0 0 20px 20px;
  text-align: center;
}

.club-logo-wrap {
  width: 100%;
  background: #fff;
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,.35);
  text-align: center;
}
.club-logo {
  max-height: 56px;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.hero-text-col {
  flex: 1;
  min-width: 0;
}

/* ── TICKET HERO TEXT ─────────────────────────────────── */
.ticket-hero {
  text-align: left;
}

.ticket-emoji {
  display: inline;
  font-size: 1em;
  animation: pop 2.4s ease-in-out infinite;
  vertical-align: middle;
}

@keyframes pop {
  0%, 100% { transform: scale(1) rotate(-3deg); }
  50%       { transform: scale(1.08) rotate(3deg); }
}

.ticket-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  margin: 0 0 14px;
  line-height: 1.05;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.02em;
}

.ticket-hero .subtitle {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.8);
  margin: 0 0 18px;
  font-weight: 400;
  line-height: 1.6;
}

.ticket-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(214,162,30,.18);
  border: 1px solid rgba(214,162,30,.45);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 13px;
  color: var(--gold-bright);
  font-weight: 600;
  letter-spacing: .03em;
}

/* ── FORM CARD ───────────────────────────────────────── */
.form-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 32px 64px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.1);
}

.form-card h2 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
}
.form-card .form-intro {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  margin: 0 0 24px;
}

/* ── FIELDS ───────────────────────────────────────────── */
label {
  font-weight: 700;
  font-size: 13px;
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,.85);
  letter-spacing: .02em;
  text-transform: uppercase;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 17px;
  margin-bottom: 18px;
  transition: all .2s ease;
  -webkit-appearance: none;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder { color: rgba(255,255,255,.3); }

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,.12);
  box-shadow: 0 0 0 4px rgba(214,162,30,.2);
}

select option { background: var(--navy-deep); color: #fff; }

.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── RADIO GROUP ─────────────────────────────────────── */
.radio-group {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.radio-pill {
  flex: 1;
  min-width: 90px;
  position: relative;
}

.radio-pill input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-pill label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .18s ease;
  text-transform: none;
  letter-spacing: 0;
}

.radio-pill input[type="radio"]:checked + label {
  border-color: var(--gold);
  background: rgba(214,162,30,.18);
  color: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(214,162,30,.15);
}

.radio-pill label:hover { border-color: rgba(255,255,255,.35); }

/* ── TCPA SMS BOX ─────────────────────────────────────── */
.tcpa-box {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 18px;
  display: none;
}

.tcpa-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.tcpa-row input[type="checkbox"] {
  width: 20px !important;
  height: 20px !important;
  padding: 0 !important;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}
.tcpa-row label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
}
.note {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-top: 4px;
  line-height: 1.5;
}

/* ── SUBMIT BUTTON ───────────────────────────────────── */
.btn-submit {
  width: 100%;
  margin-top: 8px;
  border: none;
  padding: 20px;
  border-radius: 16px;
  font-weight: 900;
  font-size: 20px;
  cursor: pointer;
  letter-spacing: .01em;
  position: relative;
  overflow: hidden;
  color: var(--navy-deep);
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 60%, var(--gold-dark) 100%);
  box-shadow: 0 8px 32px rgba(214,162,30,.45), 0 2px 8px rgba(0,0,0,.3);
  transition: transform .15s ease, box-shadow .15s ease;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  animation: shimmer 2.5s ease-in-out infinite;
}

@keyframes shimmer {
  0%   { left: -100%; }
  60%  { left: 150%; }
  100% { left: 150%; }
}

.btn-submit:hover  { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(214,162,30,.55), 0 4px 12px rgba(0,0,0,.3); }
.btn-submit:active { transform: translateY(0); }
.btn-submit:disabled { background: #555; color: #999; box-shadow: none; cursor: not-allowed; }
.btn-submit:disabled::before { display: none; }

/* ── IMPLIED CONSENT TEXT ────────────────────────────── */
.consent-note {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}

/* ── GIFT DISCLOSURE ─────────────────────────────────── */
.disclosure {
  background: rgba(214,162,30,.1);
  border: 1px solid rgba(214,162,30,.25);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-top: 20px;
  line-height: 1.6;
}
.disclosure strong { color: var(--gold); }

/* ── MESSAGES ────────────────────────────────────────── */
.msg-success, .msg-error {
  border-radius: 14px;
  padding: 16px 20px;
  font-weight: 700;
  display: none;
  margin-bottom: 20px;
  font-size: 15px;
  text-align: center;
}
.msg-success {
  background: rgba(46,125,50,.2);
  border: 1px solid rgba(46,125,50,.5);
  color: #81c784;
}
.msg-error {
  background: rgba(185,28,28,.2);
  border: 1px solid rgba(185,28,28,.5);
  color: #ef9a9a;
}

/* ── SUCCESS OVERLAY ─────────────────────────────────── */
.success-overlay {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.success-overlay .big-check {
  font-size: 80px;
  display: block;
  margin-bottom: 12px;
  animation: bounceIn .5s ease;
}
@keyframes bounceIn {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); }
}
.success-overlay h3 {
  font-size: 26px;
  font-weight: 900;
  color: var(--gold-bright);
  margin: 0 0 8px;
}
.success-overlay p {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  margin: 0 0 24px;
}
.btn-next {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--navy-deep);
  font-weight: 900;
  font-size: 16px;
  padding: 14px 36px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(214,162,30,.4);
}

/* ── REQUIRED STAR ───────────────────────────────────── */
.required { color: #f87171; }

/* ── ADMIN PANEL ─────────────────────────────────────── */
.export-panel {
  margin-top: 20px;
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(255,255,255,.15);
  border-radius: 18px;
  padding: 20px;
  display: none;
}
.export-panel.admin-visible { display: block; }
.export-panel h3 { color: #fff; font-size: 16px; margin: 0 0 8px; }
.admin-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
}
.export-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 12px; }
.btn-secondary {
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.8);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.btn-secondary:hover { background: rgba(255,255,255,.12); }

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,.3);
  padding: 24px 0 8px;
  line-height: 1.7;
}

@media (max-width: 680px) {
  .hero-split {
    flex-direction: column;
    gap: 20px;
  }
  .hero-photo-col {
    flex: none;
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
  }
  .sasson-photo-wrap { flex: 1; }
  .sasson-photo { height: 200px; }
  .club-logo-wrap { flex: 0 0 120px; }
  .ticket-hero { text-align: center; }
  .row { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }
  .btn-submit { font-size: 18px; padding: 18px; }
}
