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

:root {
  --purple:        #7C3AED;
  --purple-mid:    #9B59F5;
  --purple-light:  #EDE9FE;
  --purple-pale:   #F5F3FF;
  --pink:          #D946EF;
  --grad:          linear-gradient(105deg, #7C3AED 0%, #D946EF 100%);
  --grad-btn:      linear-gradient(105deg, #8B47F0 0%, #E055F5 100%);
  --dark-bg:       #0F0B1A;
  --dark-card:     #1A1430;
  --dark-border:   rgba(124,58,237,0.3);
  --white:         #FFFFFF;
  --bg:            #FAFAF9;
  --text-main:     #1A1A2E;
  --text-body:     #3D3A52;
  --text-muted:    #6E6B85;
  --border:        #E4E1F0;
  --success:       #22C55E;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
}

html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 72px; /* space for sticky bar */
}

/* ── TOP BAR ── */
.topbar {
  background: var(--grad);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.topbar strong { color: #FFE97A; }

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 13px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 12px rgba(124,58,237,0.07);
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
  width: 38px; height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-text { font-size: 14px; font-weight: 700; color: var(--text-main); line-height: 1.2; }
.logo-sub  { font-size: 11px; color: var(--text-muted); }
.nav-cta {
  background: var(--grad-btn);
  color: white;
  font-size: 13px; font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.9; }

/* ── ABOVE-FOLD HEADER (replaces hero) ── */
.above-fold-header {
  text-align: center;
  padding: 36px 0 22px;
}
.above-fold-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--purple-pale);
  border: 1px solid #DDD6FE;
  border-radius: 20px;
  font-size: 12px; font-weight: 700;
  color: var(--purple);
  padding: 5px 14px; margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.above-fold-title {
  font-size: clamp(28px, 5.5vw, 46px);
  font-weight: 900; line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text-main);
  margin-bottom: 10px;
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.above-fold-sub {
  font-size: clamp(14px, 2.5vw, 17px);
  color: var(--text-muted);
  margin: 0;
}

.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--purple-mid); display: inline-block; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
/* ── VIDEO SECTION (first thing user sees) ── */
.video-section {
  background: var(--white);
  padding: 0 24px 0;
  max-width: 780px;
  margin: 0 auto;
}
.section-eyebrow {
  text-align: center;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 10px;
}
.video-heading {
  text-align: center;
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 800; color: var(--text-main);
  line-height: 1.2; margin-bottom: 6px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}
.video-sub {
  text-align: center; font-size: 14px;
  color: var(--text-muted); margin-bottom: 28px;
}
.video-wrapper {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; background: #12082A;
  box-shadow: 0 8px 40px rgba(124,58,237,0.22);
  aspect-ratio: 16/9;
}
/* SDK creates an iframe inside #vimeo-player — both must fill the wrapper */
#vimeo-player {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
/* Shows the video's real thumbnail in place of the black buffering screen;
   fades out once the video actually starts playing (see video.js "play"). */
.video-poster {
  position: absolute; inset: 0; z-index: 5;
  background-color: #12082A;
  background-size: cover; background-position: center;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.video-poster.is-hidden { opacity: 0; }
#vimeo-player iframe,
.video-wrapper iframe,
.video-wrapper video {
  position: absolute; top: 0; left: 0;
  width: 100% !important; height: 100% !important;
  border: none; display: block;
}

/* CTA immediately below video */
.video-cta-wrap {
  margin-top: 18px;
  text-align: center;
}
.video-cta-btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--grad-btn);
  color: white;
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 800;
  padding: 17px 24px;
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: opacity 0.15s, transform 0.12s;
  box-shadow: 0 6px 28px rgba(124,58,237,0.38);
  letter-spacing: 0.02em;
}
.video-cta-btn:hover { opacity: 0.92; transform: translateY(-1px); }
.video-cta-btn:active { transform: scale(0.99); }
.video-cta-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.video-cta-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
  letter-spacing: 0.01em;
}
.video-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  color: rgba(255,255,255,0.55); font-size: 14px; cursor: pointer;
  background: linear-gradient(135deg, #1A0A30 0%, #12082A 100%);
}
.play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--grad-btn);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 24px rgba(124,58,237,0.5);
}
.play-btn:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(124,58,237,0.7); }
.play-btn svg { width: 28px; height: 28px; fill: white; margin-left: 3px; }

.patient-card {
  background: var(--purple-pale);
  border: 1px solid #DDD6FE;
  border-radius: var(--radius-md);
  padding: 16px 20px; margin-top: 16px;
  display: flex; gap: 14px; align-items: flex-start;
}
.patient-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px; font-weight: 800; flex-shrink: 0;
}
.patient-name { font-weight: 700; font-size: 14px; color: var(--purple); }
.patient-detail { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.patient-result { margin-top: 8px; display: flex; gap: 7px; flex-wrap: wrap; }
.result-pill {
  background: var(--white); border: 1px solid #C4B5FD;
  border-radius: 20px; font-size: 12px; font-weight: 700;
  color: var(--purple); padding: 3px 11px;
}

.arrow-bridge {
  text-align: center; padding: 30px 0 22px;
  color: var(--text-muted); font-size: 14px; font-weight: 500;
}
.arrow-bridge .arrow-icon {
  display: block; font-size: 24px; color: var(--purple);
  margin-top: 7px; animation: bounce 1.6s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ── FORM SECTION ── */
.form-section {
  background: var(--white);
  max-width: 780px; margin: 0 auto;
  padding: 0 24px 64px;
}
.form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 4px solid var(--purple);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
}
@media (max-width: 540px) { .form-card { padding: 26px 18px; } }
.form-title {
  font-size: clamp(19px, 3vw, 25px);
  font-weight: 800; color: var(--text-main);
  line-height: 1.2; margin-bottom: 6px;
}
.form-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
label { font-size: 13px; font-weight: 700; color: var(--text-body); }
label .req { color: var(--purple); margin-left: 2px; }
input, select, textarea {
  font-family: inherit; font-size: 15px; color: var(--text-main);
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none; width: 100%; -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}
select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236E6B85' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
textarea { resize: vertical; min-height: 80px; line-height: 1.5; }
::placeholder { color: #B5B2C8; }
.phone-wrap { position: relative; }
.phone-flag { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); font-size: 19px; pointer-events: none; }
.phone-wrap input { padding-left: 44px; }

.submit-btn {
  width: 100%;
  background: var(--grad-btn);
  color: white; font-size: 17px; font-weight: 800;
  padding: 16px 24px; border: none;
  border-radius: var(--radius-xl);
  cursor: pointer; letter-spacing: 0.01em;
  transition: opacity 0.15s, transform 0.1s;
  margin-top: 10px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 4px 24px rgba(124,58,237,0.35);
}
.submit-btn:hover { opacity: 0.93; }
.submit-btn:active { transform: scale(0.99); }
.submit-btn svg { width: 20px; height: 20px; }

.form-privacy {
  font-size: 12px; color: var(--text-muted);
  text-align: center; margin-top: 12px; line-height: 1.5;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--purple-pale);
  border-top: 1px solid #DDD6FE;
  border-bottom: 1px solid #DDD6FE;
}
.stats-inner {
  max-width: 780px; margin: 0 auto;
  padding: 30px 24px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; text-align: center;
}
@media (max-width: 480px) { .stats-inner { grid-template-columns: 1fr 1fr; } }
.stat-num {
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 900; letter-spacing: -0.035em; line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 5px; line-height: 1.4; }

/* ── TESTIMONIALS ── */
.proof-section {
  max-width: none; margin: 0;
  padding: 56px 0 46px;
  background: var(--dark-bg);
  position: relative; overflow: hidden;
  text-align: center;
}
.proof-section::before {
  content: '';
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 560px; height: 560px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.28) 0%, transparent 70%);
  pointer-events: none;
}
.proof-section .section-eyebrow { color: var(--purple-mid); position: relative; z-index: 1; }
.proof-section h2 {
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 800; color: #fff;
  margin-bottom: 6px; line-height: 1.2;
  position: relative; z-index: 1;
}
.section-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 30px; }
.proof-section .section-sub { color: rgba(255,255,255,0.55); position: relative; z-index: 1; }

.coverflow {
  position: relative; z-index: 1;
  perspective: 1200px;
  padding: 10px 0 26px;
}
.coverflow-stage {
  position: relative;
  height: 190px;
  transform-style: preserve-3d;
}
.cf-card {
  position: absolute; top: 50%; left: 50%;
  width: min(270px, 72vw);
  aspect-ratio: 16 / 9;
  margin-top: calc(min(270px, 72vw) * -9 / 16 / 2);
  margin-left: calc(min(270px, 72vw) / -2);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(160deg, #6D28D9, #1A1430);
  background-size: cover; background-position: center;
  box-shadow: 0 16px 44px rgba(0,0,0,0.55);
  cursor: pointer;
  transform: translateX(var(--cf-tx, 0px)) rotateY(var(--cf-ry, 0deg)) scale(var(--cf-sc, 1));
  opacity: var(--cf-op, 0);
  z-index: var(--cf-z, 0);
  transition: transform 0.6s cubic-bezier(.4,0,.2,1), opacity 0.6s ease;
}
.cf-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,11,26,0.92) 0%, rgba(15,11,26,0.2) 45%, transparent 75%);
}
.cf-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(124,58,237,0.92); border: none; color: #fff;
  font-size: 14px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transition: opacity 0.25s; padding: 0 0 0 3px;
  z-index: 2; pointer-events: none;
}
.cf-card.is-active .cf-play { opacity: 1; pointer-events: auto; }
.cf-name {
  position: absolute; bottom: 20px; left: 12px; z-index: 1;
  font-size: 12px; font-weight: 700; color: #fff;
}
.cf-meta {
  position: absolute; bottom: 8px; left: 12px; z-index: 1;
  font-size: 10.5px; color: rgba(255,255,255,0.55);
}
.cf-video {
  position: absolute; inset: 0; z-index: 3; background: #000;
}
.cf-video iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}
.cf-card.is-playing .cf-scrim,
.cf-card.is-playing .cf-name,
.cf-card.is-playing .cf-meta,
.cf-card.is-playing .cf-play {
  opacity: 0; pointer-events: none;
}

.testi-dots { display: flex; justify-content: center; gap: 6px; position: relative; z-index: 1; }
.testi-dot {
  width: 7px; height: 7px; border-radius: 50%; padding: 0; border: none;
  background: rgba(255,255,255,0.25); cursor: pointer; transition: all 0.25s;
}
.testi-dot.is-active { width: 20px; border-radius: 4px; background: var(--grad); }

/* ── DOCTOR SECTION ── */
.doctor-section {
  background: var(--dark-bg);
  color: white; padding: 56px 24px;
  position: relative; overflow: hidden;
}
.doctor-section::before {
  content: '';
  position: absolute; bottom: -80px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.doctor-inner {
  max-width: 780px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr;
  gap: 30px; align-items: start; position: relative;
}
@media (max-width: 540px) { .doctor-inner { grid-template-columns: 1fr; } }
.doctor-photo {
  width: 104px; height: 104px; border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(124,58,237,0.5);
  flex-shrink: 0;
}
.doctor-name {
  font-size: clamp(18px, 3vw, 22px); font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 4px;
}
.doctor-title { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.doctor-bio { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 16px; }
.creds-row { display: flex; gap: 8px; flex-wrap: wrap; }
.cred-tag {
  background: rgba(124,58,237,0.18);
  border: 1px solid rgba(124,58,237,0.4);
  border-radius: 20px; font-size: 12px; padding: 3px 11px;
  color: #C4B5FD;
}

/* ── PROCESS ── */
.process-section {
  max-width: 780px; margin: 0 auto; padding: 56px 24px;
}
.process-section h2 {
  font-size: clamp(20px, 3.5vw, 27px);
  font-weight: 800; margin-bottom: 6px;
}
.process-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 34px; }
.steps { display: flex; flex-direction: column; }
.step {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 18px; align-items: start;
  padding: 0 0 30px; position: relative;
}
.step:not(:last-child)::before {
  content: '';
  position: absolute; left: 23px; top: 48px;
  width: 2px; height: calc(100% - 18px);
  background: linear-gradient(to bottom, #C4B5FD, transparent);
}
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--purple-light); border: 2px solid #C4B5FD;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 800; color: var(--purple);
  flex-shrink: 0; position: relative; z-index: 1;
}
.step-content-title {
  font-size: 15px; font-weight: 800; color: var(--text-main);
  margin-bottom: 4px; margin-top: 12px;
}
.step-content-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════════
   BOTTOM CTA — Reference style
   Dark bg · Gradient button · Progress bar · Urgency strip
   ══════════════════════════════════════════ */
.bottom-cta {
  background: var(--dark-bg);
  padding: 60px 24px 56px;
  text-align: center;
  position: relative; overflow: hidden;
}
.bottom-cta::before {
  content: '';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.28) 0%, transparent 70%);
  pointer-events: none;
}
.bottom-cta-inner { max-width: 600px; margin: 0 auto; position: relative; }
.cta-eyebrow {
  display: inline-block;
  background: rgba(124,58,237,0.22);
  border: 1px solid rgba(124,58,237,0.45);
  border-radius: 20px; font-size: 12px; font-weight: 700;
  color: #C4B5FD; padding: 5px 14px; margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.bottom-cta h2 {
  font-size: clamp(22px, 4.5vw, 34px);
  font-weight: 900; color: var(--white);
  line-height: 1.18; margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.bottom-cta h2 span {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.bottom-cta-sub {
  font-size: 15px; color: rgba(255,255,255,0.6);
  margin-bottom: 32px; line-height: 1.55;
}

/* Assurance row */
.assurance-row {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}
.assurance-row span { display: flex; align-items: center; gap: 6px; }
.assurance-check { color: var(--success); font-size: 15px; }

/* Progress / urgency */
.urgency-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 16px 20px; margin-bottom: 24px;
}
.urgency-label {
  font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,0.9); margin-bottom: 10px;
  display: flex; align-items: center; justify-content: space-between;
}
.urgency-label .taken { color: #FFD580; }
.urgency-label .left  { color: rgba(255,255,255,0.5); font-weight: 400; font-size: 13px; }
.progress-track {
  height: 8px; border-radius: 99px;
  background: rgba(255,255,255,0.1); overflow: hidden;
}
.progress-fill {
  height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, #A78BFA 0%, #D946EF 100%);
  width: 0%;
  transition: width 1.4s cubic-bezier(0.4,0,0.2,1);
}

/* Gradient CTA button — matches reference */
.grad-cta-btn {
  display: block; width: 100%;
  background: var(--grad-btn);
  color: white; font-size: 18px; font-weight: 800;
  padding: 18px 24px; border: none;
  border-radius: var(--radius-xl);
  cursor: pointer; letter-spacing: 0.01em;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.12s;
  box-shadow: 0 6px 32px rgba(124,58,237,0.45);
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.grad-cta-btn:hover { opacity: 0.92; transform: translateY(-1px); }
.grad-cta-btn:active { transform: scale(0.99); }

.wa-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.4);
  color: #4ADE80;
  font-size: 15px; font-weight: 700;
  padding: 13px 24px; border-radius: var(--radius-xl);
  text-decoration: none; width: 100%;
  transition: background 0.15s;
  margin-bottom: 16px;
}
.wa-cta-btn:hover { background: rgba(37,211,102,0.2); }

.cta-note {
  font-size: 12px; color: rgba(255,255,255,0.38);
  line-height: 1.6;
}

/* ── STICKY BOTTOM BAR ── reference style ── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #14102A;
  border-top: 1px solid rgba(124,58,237,0.35);
  padding: 10px 20px;
  z-index: 300;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}
.sticky-left {
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #EF4444;
  animation: pulse 1.2s infinite;
  flex-shrink: 0;
}
.sticky-timer-label {
  font-size: 12px; color: rgba(255,255,255,0.5);
  white-space: nowrap;
}
.timer-digits {
  display: flex; align-items: center; gap: 4px;
}
.timer-block {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 15px; font-weight: 800;
  color: white; min-width: 34px; text-align: center;
  font-variant-numeric: tabular-nums;
  font-family: 'Courier New', monospace;
  display: flex; flex-direction: column; align-items: center; line-height: 1.1;
}
.timer-unit {
  font-size: 8px; font-weight: 600; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.03em;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  margin-top: 1px;
}
.timer-sep { color: rgba(255,255,255,0.4); font-size: 14px; font-weight: 700; }
.sticky-right { margin-left: auto; flex-shrink: 0; }
.sticky-seats {
  font-size: 12px; color: rgba(255,255,255,0.45);
  text-align: right; margin-bottom: 3px;
}
.sticky-btn {
  background: var(--grad-btn);
  color: white; font-size: 14px; font-weight: 800;
  padding: 10px 22px; border: none;
  border-radius: var(--radius-xl);
  cursor: pointer; white-space: nowrap;
  transition: opacity 0.15s;
  text-decoration: none; display: inline-block;
  box-shadow: 0 2px 16px rgba(124,58,237,0.4);
}
.sticky-btn:hover { opacity: 0.9; }

@media (max-width: 480px) {
  .sticky-bar { padding: 8px 10px; gap: 6px; }
  .sticky-left { gap: 5px; }
  .timer-digits { gap: 2px; }
  .timer-block { min-width: 26px; padding: 3px 4px; font-size: 12px; }
  .timer-sep { font-size: 11px; }
  .timer-unit { font-size: 7px; }
  .sticky-timer-label { display: none; }
  .sticky-seats { display: none; }
  .sticky-btn { font-size: 12px; padding: 8px 10px; }
}

/* ── SUCCESS SCREEN ── */
.success-screen { display: none; text-align: center; padding: 36px 16px 28px; }
.success-icon {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--purple-light); border: 3px solid #C4B5FD;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 34px;
}
.success-screen h3 {
  font-size: 22px; font-weight: 800;
  color: var(--purple); margin-bottom: 8px;
}
.success-msg {
  font-size: 15px; color: var(--text-muted);
  max-width: 380px; margin: 0 auto 28px; line-height: 1.6;
}
.success-msg strong { color: var(--text-main); }

/* 3-step what-happens-next row */
.success-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 28px; flex-wrap: nowrap;
}
.success-step {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  max-width: 100px;
}
.success-step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--grad);
  color: white; font-size: 15px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.success-step-text {
  font-size: 12px; color: var(--text-muted);
  line-height: 1.4; text-align: center;
}
.success-step-line {
  flex: 1; height: 2px; min-width: 24px; max-width: 40px;
  background: linear-gradient(90deg, #C4B5FD, #E9D5FF);
  margin-bottom: 20px; flex-shrink: 0;
}

/* divider with text */
.success-divider {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.success-divider::before, .success-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.success-divider span {
  font-size: 12px; color: var(--text-muted);
  white-space: nowrap; font-weight: 500;
}

.wa-confirm-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: white;
  font-size: 15px; font-weight: 800;
  padding: 14px 28px; border-radius: var(--radius-xl);
  text-decoration: none; transition: opacity 0.15s;
  width: 100%; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.3);
}
.wa-confirm-btn:hover { opacity: 0.9; }
.wa-note {
  font-size: 12px; color: var(--text-muted);
  margin-top: 10px; line-height: 1.5;
}

/* ── FOOTER ── */
footer {
  background: #09060F;
  color: rgba(255,255,255,0.4);
  text-align: center; padding: 28px 24px;
  font-size: 12px; line-height: 1.8;
}
footer a { color: rgba(255,255,255,0.55); text-decoration: none; }
footer a:hover { color: #C4B5FD; }

@media (prefers-reduced-motion: reduce) {
  .dot, .live-dot, .arrow-icon { animation: none; }
  .progress-fill { transition: none; }
}

/* ── VIDEO LOGO POPUP — inert until unmuted; the moment .show is added it
   covers the WHOLE video (position: absolute; inset: 0) so that no Vimeo
   control-bar buttons can be pressed again after unmuting. Stays full-
   coverage at every breakpoint — only padding shifts where the visible
   badge sits, never the outer box's width/left/right (a mobile media
   query used to shrink this to a 48px sliver, leaving most of the video
   unblocked on phones — don't reintroduce that). */
.video-logo-popup {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 15;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 4px 4px 2px;
  pointer-events: none;
}
.video-logo-popup.show {
  display: flex;
  pointer-events: auto;   /* now blocks every click to the iframe below */
}
/* Badge visuals are hidden — the outer .video-logo-popup above still
   engages on unmute and keeps blocking Vimeo's control bar, only the
   visible logo image is suppressed. */
.video-logo-popup .logo-badge {
  display: none;
}
.video-logo-popup img {
  width: 28px; height: 28px; object-fit: contain;
}

/* ── STATIC LOGO BADGE — purely decorative (pointer-events: none), so
   hiding it has no effect on click-blocking. Kept in the DOM/markup,
   just never rendered. ── */
.video-logo-static {
  display: none !important;
}
.video-logo-static img {
  width: 28px; height: 28px; object-fit: contain;
}

@keyframes video-logo-pop {
  0%   { opacity: 0; transform: scale(0.6); }
  100% { opacity: 1; transform: scale(1); }
}

/* ── MOBILE: shrink logo badges only (no design/layout change, just smaller) ── */
@media (max-width: 480px) {

  .video-logo-popup .logo-badge {
    width: 58px; height: 32px; border-radius: 8px;
  }
  .video-logo-static {
    width: 60px; height: 36px; border-radius: 8px;
  }
  .video-logo-popup img,
  .video-logo-static img {
    width: 48px; height: 24px;
  }
  /* NOTE: .video-logo-popup itself must stay full-coverage (inset: 0) at
     every breakpoint — it's the click-catcher blocking the video, not just
     a badge wrapper. Only its padding shifts the visible badge's position;
     never give it an explicit width/left/right here. */
  .video-logo-popup {
    padding-bottom: 8px;
    padding-right: 6px;
  }
  .video-logo-static {
    bottom: 8px;
    left: 6px;
    padding: left 4px;
  }
}


/* ── CALLBACK POPUP ── */
.callback-overlay {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 20;   /* still inside .video-wrapper, above the video itself */
  background: transparent;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  cursor: default;   /* not-allowed would be odd; default shows backdrop isn't clickable */
}
.callback-overlay.active {
  display: flex;
  animation: fadeInOverlay 0.3s ease;
}
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.callback-modal {
  background: var(--white);
  border-radius: 14px 14px 0 0;
  padding: 10px 14px;
  max-width: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 -8px 40px rgba(124,58,237,0.3), 0 -2px 16px rgba(0,0,0,0.16);
  animation: slideUpModal 0.32s cubic-bezier(0.34,1.4,0.64,1);
  position: relative;
  cursor: auto;
}
@keyframes slideUpModal {
  from { opacity: 0; transform: translateY(100%); }
  to   { opacity: 1; transform: translateY(0); }
}
.callback-icon {
  font-size: 20px;
  flex: none;
  animation: ringPhone 0.8s ease 0.3s 2;
}
@keyframes ringPhone {
  0%,100% { transform: rotate(0deg); }
  20%      { transform: rotate(-15deg); }
  40%      { transform: rotate(15deg); }
  60%      { transform: rotate(-10deg); }
  80%      { transform: rotate(10deg); }
}
.callback-text {
  flex: 1;
  min-width: 0;
  text-align: left;
}
.callback-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.callback-sub {
  font-size: 10.5px;
  color: var(--text-muted);
  line-height: 1.2;
}
.callback-actions {
  display: flex;
  flex-direction: row;
  gap: 6px;
  flex: none;
}
.callback-yes {
  display: block;
  background: var(--grad-btn);
  color: white;
  font-size: 12.5px;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: var(--radius-xl);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 28px rgba(124,58,237,0.4);
  transition: opacity 0.15s, transform 0.12s;
  cursor: pointer;
}
.callback-yes:hover { opacity: 0.92; transform: translateY(-1px); }
.callback-no {
  flex: none;
  background: none;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  font-family: inherit;
}
.callback-no:hover { border-color: var(--purple); color: var(--purple); }
@media (max-width: 480px) {
  .callback-modal { padding: 10px 6px; gap: 4px; border-radius: 7px 7px 0 0; }
  .callback-icon { font-size: 11px; }
  .callback-title { font-size: 9px; }
  .callback-actions { gap: 3px; }
  .callback-yes, .callback-no {
    font-size: 8.5px;
    padding: 4px 6px;
    box-shadow: none;
  }
}

/* ── CONFETTI ── */
.confetti-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 21;   /* above the callback popup */
}
.confetti-piece {
  position: absolute;
  top: -12px;
  width: 8px;
  height: 14px;
  opacity: 0.95;
  animation-name: confettiFall;
  animation-timing-function: cubic-bezier(0.25,0.46,0.45,0.94);
  animation-fill-mode: forwards;
}
@keyframes confettiFall {
  0%   { transform: translateY(0)    rotate(0deg);   opacity: 1; }
  100% { transform: translateY(var(--fall-distance, 260px)) rotate(var(--fall-spin, 480deg)); opacity: 0; }
}

/* ── FORM VALIDATION STATES (added) ── */
.field input.invalid,
.field select.invalid {
  border-color: #DC2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,0.10);
}
.field-error {
  font-size: 12px;
  color: #DC2626;
  min-height: 16px;
  margin-top: -2px;
}
.field-hint {
  font-size: 11px;
  color: var(--text-muted);
}
.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}
.form-banner {
  display: none;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 16px;
  text-align: center;
}
.form-banner.show { display: block; }
.form-banner.error {
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
}
.form-banner.warn {
  background: #FEF3C7;
  color: #92400E;
  border: 1px solid #FDE68A;
}
/* honeypot field: hidden from real users, visible to bots that auto-fill all fields */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ── SPOTLIGHT SECTION ── */
.spotlight {
  background: radial-gradient(ellipse 55% 78% at 76% 46%, rgba(124, 58, 237, 0.20) 0%, transparent 62%), #080715;
  padding: 60px 24px;
  overflow: hidden;
}
.spotlight-inner {
  max-width: 780px; margin: 0 auto;
  display: flex; align-items: center; gap: 36px;
  flex-direction: row-reverse;
}
.spotlight.flip .spotlight-inner { flex-direction: row; }
@media (max-width: 640px) {
  .spotlight-inner, .spotlight.flip .spotlight-inner { flex-direction: column; }
}
.spotlight-media { flex: 0 0 42%; }
@media (max-width: 640px) { .spotlight-media { flex-basis: auto; width: 100%; } }
.spotlight-photo {
  display: block; width: 100%; aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #6D28D9, #1A1430);
  background-size: cover; background-position: center;
  box-shadow: 0 16px 44px rgba(0,0,0,0.5);
}
.spotlight-text { flex: 1; min-width: 0; }
.spotlight-tag {
  font-size: 13px; font-weight: 700;
  color: var(--purple-mid); margin-bottom: 10px;
}
.spotlight-title {
  font-size: clamp(20px, 3vw, 26px); font-weight: 900;
  color: #fff; line-height: 1.25; margin-bottom: 14px;
}
.spotlight-quote {
  font-size: 14px; color: rgba(255,255,255,0.7);
  line-height: 1.7; font-style: italic; margin-bottom: 16px;
}
.spotlight-attr { display: flex; flex-direction: column; }
.spotlight-name { font-size: 14px; font-weight: 700; color: #fff; }
.spotlight-meta { font-size: 12px; color: rgba(255,255,255,0.5); }
.spotlight-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px;
  background: var(--grad-btn);
  color: #fff; font-size: 14px; font-weight: 800;
  padding: 10px 20px;
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: opacity 0.15s, transform 0.12s;
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
}
.spotlight-cta:hover { opacity: 0.92; transform: translateY(-1px); }

/* ── COMMUNITY SHOWCASE ── */
.community-showcase {
  background: var(--dark-bg);
  padding: 56px 24px;
  text-align: center;
}
.community-showcase .section-eyebrow {
  color: var(--purple-mid); margin-bottom: 24px;
}
.community-image-wrap {
  max-width: 780px; margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(0,0,0,0.5);
}
.community-image { display: block; width: 100%; height: auto; }
.community-caption {
  max-width: 600px; margin: 20px auto 0;
  font-size: 13px; color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.community-caption strong { color: #fff; font-weight: 700; }

/* ── FLYING TICKET ── */
.flying-ticket {
  position: fixed;
  bottom: 90px; left: 0;
  z-index: 350;
  display: inline-flex;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.35));
  text-decoration: none;
  animation: ticketFlyAcross 16s ease-in-out infinite;
  cursor: pointer;
}
.flying-ticket-img { width: 78px; height: auto; display: block; }
.flying-ticket.ticket-hidden { display: none; }
.flying-ticket:hover { animation-play-state: paused; }
@keyframes ticketFlyAcross {
  0%   { transform: translateX(-140px) translateY(0) rotate(-6deg); opacity: 0; }
  4%   { opacity: 1; }
  15%  { transform: translateX(25vw) translateY(-14px) rotate(-2deg); }
  30%  { transform: translateX(60vw) translateY(6px) rotate(4deg); }
  42%  { transform: translateX(calc(100vw + 40px)) translateY(-8px) rotate(8deg); opacity: 1; }
  45%  { opacity: 0; transform: translateX(calc(100vw + 40px)) translateY(-8px) rotate(8deg); }
  100% { opacity: 0; transform: translateX(calc(100vw + 40px)) translateY(-8px) rotate(8deg); }
}
@media (prefers-reduced-motion: reduce) {
  .flying-ticket { animation: none; left: 16px; }
}

