/* World Cup Concierge Landing — Premium (locked) */

:root {
  --bg0: #070b14;
  --bg1: #0c1730;
  --text: #eef2ff;
  --muted: rgba(238, 242, 255, 0.74);
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  --shadow2: 0 26px 90px rgba(0, 0, 0, 0.55);

  --goldTop: #fff0c9;
  --goldMid1: #ffd88a;
  --goldMid2: #ffb547;
  --goldBot: #d8901f;

  --r28: 28px;
  --r22: 22px;
  --r16: 16px;
  --r14: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}
/* html,
body {
  height: 100%;
} */
body {
  margin: 0;
  color: var(--text);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* background:
    radial-gradient(
      1200px 700px at 15% 10%,
      rgba(40, 90, 200, 0.16) 0%,
      transparent 58%
    ),
    radial-gradient(
      900px 520px at 88% 18%,
      rgba(255, 215, 140, 0.1) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, var(--bg1), var(--bg0)); */
  overflow-x: hidden;
}

/* Section colors */
/* 1. The Top Premium Glow (Best for the Hero / Top section) */
.bg-hero-glow {
  background:
    radial-gradient(
      1200px 700px at 15% 10%,
      rgba(40, 90, 200, 0.16) 0%,
      transparent 58%
    ),
    radial-gradient(
      900px 520px at 88% 18%,
      rgba(255, 215, 140, 0.1) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, var(--bg1), var(--bg0));
}

/* 2. Smooth Linear Transition (Best for middle sections) */
.bg-fade-down {
  background: linear-gradient(180deg, var(--bg1), var(--bg0));
}

/* 3. Solid Dark Blue (Best for lower sections and footer) */
.bg-solid-dark {
  background-color: var(--bg0);
}

a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

/* Typography system (premium-clear) */
.kicker {
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(238, 242, 255, 0.66);
}
.h2 {
  margin: 10px 0 0;
  font-size: clamp(18px, 2.3vw, 28px);
  letter-spacing: -0.01em;
  font-weight: 780;
  line-height: 1.18;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}
.btn:active {
  transform: scale(0.98);
}
.btnPrimary {
  background: rgba(255, 255, 255, 0.18);
}
.btnFull {
  width: 100%;
}

/* ===== HERO (title + countdown above video) ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: #050814;
}

/* top header centered over video */
.heroHeader {
  position: absolute;
  z-index: 10;
  top: 18px; /* or 22px if you want more space */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: none;
}

.heroHeader * {
  pointer-events: auto;
}

/* title */
.heroBrand--title {
  font-weight: 900; /* match CTA */
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 16px;
  margin: 0 0 10px 0;
  color: #fff;
}

.heroText {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Rolex countdown under title — transparent */
.countdownOverlay--hero {
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 0;
  box-shadow: none;
  width: fit-content;
}

.countdownLabel {
  font-size: 11px;
  /* font-size:10px; */
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 6px 0;
}

.countdownRow {
  display: flex;
  gap: 12px;
  /* gap:10px; */
  align-items: baseline;
  font-variant-numeric: tabular-nums;
}

.cdNum {
  position: relative;
  font-weight: 900;
  /* font-size:18px; */
  font-size: 16px;
  letter-spacing: -0.02em;
  background: linear-gradient(
    180deg,
    var(--goldTop) 0%,
    var(--goldMid1) 35%,
    var(--goldMid2) 70%,
    var(--goldBot) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.18),
    0 0 14px rgba(255, 205, 120, 0.1);
}

.cdLbl {
  font-weight: 700;
  font-size: 11px;
  /* font-size:10px; */
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-right: 6px;
}

/* Hero header text readability on bright video frames */
.heroBrand--title,
.countdownLabel,
.cdLbl {
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.45),
    0 0 1px rgba(0, 0, 0, 0.35);
}

/* video area below header */
.heroVideoWrap {
  position: relative;
  min-height: 78vh; /* locked */
  overflow: hidden;
}

.heroVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.heroVideo--blur {
  object-fit:cover;
  filter: blur(14px) brightness(1.35) saturate(1.08) contrast(1.02);
  transform: scale(1.06);
  opacity: 0.78;
}

.heroVideo--contain {
  object-fit:contain;
  background: transparent;
  filter: brightness(1.28) saturate(1.06) contrast(1.02);
}



/* scrim removed entirely */
.heroScrim {
  display: none !important;
}

.heroOverlay {
  position: relative;
  z-index: 3;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* padding:22px 0 18px;  */
  /* locked */
  /* max-width: 760px; */
  padding: 24px 16px 28px; /* side padding + vertical comfort */
  max-width: 100%;
}

.heroH1 {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.14;
  max-width: 32ch;
  margin: 14px 0 8px; /* locked rhythm */
  letter-spacing: -0.01em;
}

.heroSub {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 56ch;
}

.heroCta {
  margin-top: 16px;
} /* locked */

/* Sound toggle */
.soundPill {
  position: absolute;
  z-index: 6;
  right: 18px;
  bottom: 18px;
  padding: 10px 18px;
  /* padding:8px 14px; */
  min-width: 100px; /**/
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  opacity: 0;
  animation: pillFadeIn 0.8s ease-out 0.6s forwards;
}

/* Hero CTA row (keeps layout intact) */
.heroCtaRow {
  display: flex;
  flex-direction: column;
  /* gap:10px; */
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* Secondary pill (same size feel as primary) */
.btnGhost {
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700; /* match primary */
  font-size: 14px; /* match primary */
}

/* A calmer way to run match nights. Section (Mobile view) */
.cta-banner {
  background: var(--bg0);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.cta-text .h2 {
  margin-top: 0;
}

.cta-text .heroSub {
  margin: 10px auto 0;
}

.cta-actions {
  display: flex;
  flex-direction: row !important; /* Overrides your previous column rule */
  flex-wrap: nowrap !important; /* Prevents stacking */
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 0;
}

.cta-actions .btn {
  flex: 1;
  white-space: nowrap;
  padding: 12px 8px;
  font-size: clamp(12px, 3.5vw, 14px);
}

/* ===== Glass modal ===== */
.modalOverlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modalOverlay.is-open {
  display: flex;
}

.modalCard {
  width: min(720px, 92vw);
  max-height: min(82vh, 720px);
  border-radius: var(--r28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow2);
  overflow: hidden;
}

.modalHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
}

.modalTitle {
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(238, 242, 255, 0.92);
}

.modalClose {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
}

.modalBody {
  padding: 16px 16px 18px;
  overflow: auto; /* enables scrolling if needed */
  max-height: calc(min(78vh, 720px) - 58px);
  color: rgba(238, 242, 255, 0.84);
}

.modalBody p {
  margin: 0 0 12px 0;
  line-height: 1.65;
  font-size: 14.5px;
}

@keyframes pillFadeIn {
  to {
    opacity: 1;
  }
}

/* Sections */
.section {
  padding: 46px 0;
}
.sectionTight {
  padding: 34px 0;
}

/* Chaos strip */
.chaosStrip {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.tileVisual {
  margin: 0;
  border-radius: var(--r22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tileVisual img {
  display: block;
  width: 100%;
  height: auto; /* let image define height */
  max-height: 520px; /* keeps layout balanced */
  object-fit: contain; /* no cropping */
  background: rgba(0, 0, 0, 0.18);
  padding: 10px;
}

.tileVisual figcaption {
  padding: 12px 14px;
  font-weight: 650;
  letter-spacing: 0.04em;
  color: rgba(238, 242, 255, 0.82);
  font-size: 13px;
}

/* Calm control (no cropping) */
.calmVisual {
  margin: 0;
  border-radius: var(--r28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  box-shadow: var(--shadow2);
  padding: 12px;
}
.calmVisual,.tileVisual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px; /* SAME as chaos images */
  object-fit: contain;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 22px;
}

/* Steps wrapper — match Carousel / Demo glass container */
.stepsWrap {
  margin-top: 16px;
  border-radius: var(--r28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow2);
  padding: 16px 14px 18px;
}

/* Carousel */
.carousel {
  margin-top: 16px;
  position: relative;
  border-radius: var(--r28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow2);
  padding: 16px 14px 18px;
  overflow: hidden;
}
.carouselTrack {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  padding-bottom: 10px;
}
.carouselTrack::-webkit-scrollbar {
  display: none;
}
.slide {
  flex: 0 0 min(360px, 86vw);
  scroll-snap-align: center;
}
.deviceFrame {
  border-radius: 44px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 65px rgba(0, 0, 0, 0.52);
  position: relative;
}
.deviceFrame:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 116px;
  height: 22px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.55;
}
.deviceDark {
  background: rgba(0, 0, 0, 0.3);
}
.deviceLight {
  background: rgba(255, 255, 255, 0.1);
}
.deviceFrame img {
  width: 100%;
  height: auto;
  border-radius: 32px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
}
.slideCap {
  margin: 12px 0 0;
  text-align: center;
  color: rgba(238, 242, 255, 0.78);
  font-weight: 650;
  font-size: 13px;
}

/* Carousel controls */
.carouselControls {
  position: absolute;
  right: 12px;
  top: 12px;
  display: flex;
  gap: 8px;
}
.iconBtn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  cursor: pointer;
}

/* Steps */
.steps {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.stepCard {
  border-radius: var(--r22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  padding: 16px;
}
.stepCard h3 {
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: 0.01em;
  font-weight: 780;
}
.stepCard p {
  margin: 0;
  color: rgba(238, 242, 255, 0.72);
  line-height: 1.6;
  font-size: 14px;
}

/* Demo form */
.demoForm {
  margin-top: 16px;
  display: grid;
  gap: 12px;
  max-width: 520px;
  border-radius: var(--r22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow2);
  padding: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
label {
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(238, 242, 255, 0.7);
}
input {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
  color: #eef2ff;
  padding: 12px 12px;
  font-weight: 650;
  outline: none;
}

select {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
  color: #eef2ff;
  padding: 12px 12px;
  font-weight: 650;
  outline: none;
  appearance: none;
}

/*sms-consent*/
.sms-disclaimer {
  font-size: 0.6875rem; /* 12px — small but still legible (Twilio accepts ~11–13px) */
  line-height: 1.4; /* comfortable reading */
  color: #555; /* softer gray, not black */
  margin: 0.375rem 0 1rem 0; /* tight spacing: little above, more below for separation */
  max-width: 100%;
}

.sms-disclaimer a {
  color: #0066cc;
  text-decoration: underline;
  font-size: inherit; /* same small size as text */
}

.sms-disclaimer a:hover {
  text-decoration: none;
}

/* subtle caret */
select {
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.6) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.6) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

#leadStatus {
  opacity: 0;
  transition: opacity 0.25s ease;
  font-weight: 750;
}
#leadStatus[data-ok="1"] {
  color: rgba(180, 255, 210, 0.95);
  opacity: 1;
}
#leadStatus[data-ok="0"] {
  color: rgba(255, 120, 140, 0.95);
  opacity: 1;
}

/* Footer */
.footer {
  padding: 26px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footerRow {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer a {
  opacity: 0.85;
}
.footer a:hover {
  opacity: 1;
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
[data-reveal].in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Scroll cue (right side) */
.scrollCue {
  position: fixed;
  right: 18px;
  bottom: 22px;
  width: 6px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
  z-index: 50;
  opacity: 0.9;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  animation: scrollPulse 1.6s ease-in-out infinite;
}
.scrollCue.is-hidden {
  opacity: 0;
  transform: translateY(8px);
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}

/* Rolex tick + gold glint */
.rolexTick {
  animation: rolexTick 0.18s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes rolexTick {
  0% {
    transform: translateY(0);
    filter: none;
  }
  50% {
    transform: translateY(-1px);
    filter: brightness(1.06);
  }
  100% {
    transform: translateY(0);
    filter: none;
  }
}
.cdNum.goldGlint::after {
  content: "";
  position: absolute;
  inset: -2px -6px;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 45%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: translateX(-120%) skewX(-18deg);
  mix-blend-mode: soft-light;
  pointer-events: none;
  animation: glint 0.55s ease-out;
}
@keyframes glint {
  from {
    transform: translateX(-120%) skewX(-18deg);
    opacity: 0;
  }
  15% {
    opacity: 0.85;
  }
  to {
    transform: translateX(120%) skewX(-18deg);
    opacity: 0;
  }
}

/* =========================================================================
   RESPONSIVE OVERRIDES 
   Arranged from largest screen rules down to smallest screen rules
   ========================================================================= */

/* 1. Desktop / Larger Screens override the mobile base */
@media (min-width: 768px) {
  .heroVideoWrap {
    min-height: 82vh; /* back to your original tall hero */
  }

  .heroVideo--contain {
    object-fit: contain !important; /* back to your original contain */
  }

  .heroCtaRow {
    flex-direction: row; /* horizontal again */
    gap: 10px;
  }

  .cdNum {
    font-size: 18px;
  }

  .cdLbl,
  .countdownLabel {
    font-size: 10px;
  }

  .countdownRow {
    gap: 10px;
  }

  .soundPill {
    padding: 8px 14px;
    min-width: auto;
  }

  .heroOverlay {
    padding: 22px 0 18px; /* your original rhythm */
    max-width: 760px;
  }

  /* A calmer way to run match nights. section */
  .cta-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .cta-text .heroSub {
    margin: 10px 0 0 0;
  }

  .cta-actions {
    width: auto;
    justify-content: flex-end;
  }

  .cta-actions .btn {
    flex: none;
    padding: 12px 16px;
    font-size: 14px;
  }
}

/* 2. Tablet / Smaller Laptop adjustments */
@media (max-width: 980px) {
  .modalCard {
    width: min(760px, 94vw);
    max-height: 82vh;
  }
  .modalBody {
    font-size: 14px;
  }
  .heroHeader {
    padding: 12px 12px 10px;
  }
  .countdownOverlay--hero {
    padding: 9px 12px;
    border-radius: 16px;
  }
  .cdNum {
    font-size: 17px;
  }
  .heroOverlay {
    min-height: auto;
    padding: 18px 0 16px;
    max-width: 92vw;
  }
  .heroCta {
    margin-top: 14px;
  }
  .soundPill {
    right: 12px;
    bottom: 12px;
  }
  .chaosStrip {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .scrollCue {
    right: 12px;
    bottom: 16px;
    height: 42px;
  }

  /* Merge the Chaos and Calm sections visually */
  .chaos-section {
    padding-bottom: 0;
  }
  .calm-section {
    padding-top: 14px;
  }
}

/* 3. Small Mobile / Zoom safety */
@media (max-width: 480px) {
  .sms-disclaimer {
    font-size: 0.6875rem; /* ~11px on very small screens if needed */
  }
}
