/* march-online.css (CLEAN + COMPLETE) */

:root{
  --march-orange:#ff6b1a;
  --march-black:#000;
  --march-ink:#111827;
  --march-muted:#6b7280;
  --march-soft:#f3f4f6;
}

/* Base */
.march-page{ background:#000; color:#fff; }
img{ max-width:100%; height:auto; display:block; }

/* Back to site */
.back-to-site{
  position: fixed;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 999;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,.85);
  background: rgba(0,0,0,.45);
  padding: .5rem .9rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  transition: .2s ease;
}
.back-to-site:hover{ background: rgba(0,0,0,.65); color:#fff; transform: translateX(-2px); }

/* Buttons */
.btn-primary-hero{
  display:inline-block;
  padding: .9rem 1.9rem;
  border-radius: 999px;
  border:none;
  background: var(--march-orange);
  color: #111827;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: .95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .13em;
  text-decoration:none;
  cursor:pointer;
  box-shadow: 0 18px 45px rgba(255,107,26,.18);
  transition: transform .15s ease, opacity .15s ease;
}
.btn-primary-hero:hover{ opacity:.93; transform: translateY(-1px); }

.btn-ghost-hero{
  display:inline-block;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(249,250,251,.8);
  background: transparent;
  color: #f9fafb;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
  text-decoration:none;
  transition: transform .15s ease, background .15s ease;
}
.btn-ghost-hero:hover{ background: rgba(0,0,0,.25); transform: translateY(-1px); }

.btn-ghost-light{
  display:inline-block;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.25);
  color: #fff;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
  text-decoration:none;
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover{ border-color: rgba(255,255,255,.45); }

/* HERO */
.march-hero{
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  background:#000;
}
.march-hero-media{ position:absolute; inset:0; }
.march-hero-video{ width:100%; height:100%; object-fit:cover; transform:scale(1.02); opacity: .55; }
.march-hero-overlay{
  position:absolute; inset:0;
  background: radial-gradient(circle at 20% 0%, rgba(255,107,26,.18), transparent 45%),
              linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.92));
}
.march-hero-grain{
  position:absolute; inset:0;
  opacity:.18; mix-blend-mode: overlay;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.06), transparent 35%),
    radial-gradient(circle at 80% 40%, rgba(255,255,255,.05), transparent 40%),
    radial-gradient(circle at 40% 85%, rgba(255,255,255,.04), transparent 45%);
  pointer-events:none;
}
.march-hero-inner{
  position: relative;
  z-index: 1;
  padding: 5rem 0 4rem;
}

.march-hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: center;
}

.march-hero-copy{ max-width: 760px; }

.march-hero-title{
  font-family:"Montserrat", system-ui, sans-serif;
  font-size: clamp(2.4rem, 4.4vw, 3.35rem);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 .85rem;
  text-shadow: 0 20px 60px rgba(0,0,0,.45);
}
.march-hero-title span{ color: var(--march-orange); }

.march-hero-lede{
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(249,250,251,.95);
  max-width: 45rem;
  margin: 0 0 1.5rem;
}
.march-hero-shout{ display:inline-block; letter-spacing: .06em; }

.march-hero-actions{
  display:flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.march-hero-hashtag{
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin: 0;
}

/* HERO LOGO (RIGHT SIDE) */
.march-hero-logoWrap{
  display:flex;
  align-items:center;
  justify-content:center;
}
.march-hero-logo{
  width: min(380px, 80%);
  opacity: .95;
  filter: drop-shadow(0 30px 80px rgba(0,0,0,.60));
}

/* Scroll hint */
.march-scroll{
  position:absolute;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  text-decoration:none;
  color: rgba(249,250,251,.85);
  font: 700 .72rem/1 "Montserrat", system-ui, sans-serif;
  letter-spacing:.16em;
  text-transform: uppercase;
  opacity: .9;
}
.march-scroll__dot{
  width: 9px; height: 9px;
  border-radius: 999px;
  background: var(--march-orange);
  box-shadow: 0 0 0 6px rgba(255,107,26,.12);
  animation: marchPulse 1.6s ease-in-out infinite;
}
@keyframes marchPulse{
  0%,100%{ transform: scale(1); opacity:.9; }
  50%{ transform: scale(1.2); opacity:1; }
}

/* IMPACT + FORM (VIDEO BG) */
.march-impactTop{
  position: relative;
  overflow:hidden;
  padding: 4rem 0;
  background:#0b0b0b;
}
.impactTop-bg{
  position:absolute; inset:0;
  z-index:0;
}
.impactTop-bgVideo{
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.05);
}
.impactTop-bgOverlay{
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,107,26,.20), transparent 40%),
    linear-gradient(to bottom, rgba(0,0,0,.65), rgba(0,0,0,.85));
}
.impactTop-bgGrain{
  position:absolute; inset:0;
  opacity:.15; mix-blend-mode: overlay;
  background-image:
    radial-gradient(circle at 30% 35%, rgba(255,255,255,.05), transparent 35%),
    radial-gradient(circle at 70% 65%, rgba(255,255,255,.04), transparent 40%);
  pointer-events:none;
}

.march-impactTop .container{ position:relative; z-index:1; }

.impactTop-layout{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.impactTop-copy{
  color:#fff;
  max-width: 58ch;
}
.impact-eyebrow{
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin: 0 0 .55rem;
}
.impact-title{
  font-family:"Montserrat", system-ui, sans-serif;
  font-size: 1.7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.impact-title span{ color: var(--march-orange); }

.impactTop-copy p{
  margin: 0 0 .9rem;
  color: rgba(255,255,255,.86);
  line-height: 1.75;
  font-size: .98rem;
}

.impactTop-pills{
  display:flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin: 1rem 0 1rem;
}
.pill{
  display:inline-flex;
  align-items:center;
  padding: .35rem .65rem;
  border-radius: 999px;
  background: rgba(255,107,26,.15);
  border: 1px solid rgba(255,107,26,.25);
  font: 800 .7rem/1 "Montserrat", system-ui, sans-serif;
  letter-spacing:.16em;
  text-transform: uppercase;
}

.impactTop-mini{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin: 1rem 0 1.2rem;
}
.miniStat{
  border-radius: 12px;
  padding: .9rem 1rem;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.10);
}
.miniStat-label{
  display:block;
  font-size:.72rem;
  letter-spacing:.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
  margin-bottom:.25rem;
}
.miniStat-value{
  display:block;
  font: 900 .92rem/1.25 "Montserrat", system-ui, sans-serif;
}

.impactTop-ctaRow{
  display:flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-top: .6rem;
}

/* Form card */
.formCard{
  background: rgba(255,255,255,.96);
  border-radius: 18px;
  padding: 1.4rem 1.35rem 1.25rem;
  border: 1px solid rgba(17,24,39,.10);
  box-shadow: 0 22px 70px rgba(0,0,0,.45);
  color: #111827;
}
.formCard-title{
  margin: 0 0 .35rem;
  font: 900 1.05rem/1.2 "Montserrat", system-ui, sans-serif;
}
.formCard-sub{
  margin: 0 0 1rem;
  color: var(--march-muted);
  font-size: .9rem;
}
.formCard-note{
  margin: .85rem 0 0;
  font-size: .78rem;
  color: var(--march-muted);
}

/* LOGO STRIP */
.march-logo-strip{
  background: var(--march-soft);
  padding: 2.8rem 0 3.2rem;
}
.march-logo-strip .container{
  display:grid;
  grid-template-columns: 360px 1fr;
  gap: 1.8rem;
  align-items: center;
}
.march-logo-card{
  max-width: 360px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 25px rgba(15,23,42,.15);
  overflow:hidden;
}
.march-logo-side__kicker{
  margin:0 0 .35rem;
  font: 900 .92rem/1.25 "Montserrat", system-ui, sans-serif;
  letter-spacing:.08em;
  text-transform: uppercase;
  color:#111827;
}
.march-logo-side__text{
  margin:0 0 .65rem;
  color:#4b5563;
  line-height:1.7;
  font-size: .98rem;
  max-width: 56ch;
}
.march-inline-link{
  background:none;
  border:none;
  padding:0;
  cursor:pointer;
  font: 800 .92rem/1 "Montserrat", system-ui, sans-serif;
  color:#111827;
  text-decoration:none;
  border-bottom: 2px solid rgba(255,107,26,.55);
  padding-bottom: .15rem;
}
.march-inline-link:hover{ border-bottom-color: rgba(255,107,26,.95); }

/* STEPS */
.march-steps{
  background: #000;
  color:#f9fafb;
  padding: 3.7rem 0 4.2rem;
}
.march-steps-header{
  text-align:center;
  margin-bottom: 2.2rem;
}
.march-steps-eyebrow{
  font-size: .8rem;
  letter-spacing:.2em;
  text-transform: uppercase;
  color: #f97316;
  margin-bottom: .4rem;
}
.march-steps-title{
  font-family:"Montserrat", system-ui, sans-serif;
  font-size: 1.55rem;
  letter-spacing:.09em;
  text-transform: uppercase;
  margin: 0 0 .35rem;
}
.march-steps-sub{
  margin:0 auto;
  max-width: 56ch;
  font-size: .92rem;
  line-height:1.7;
  color: rgba(229,231,235,.92);
}
.march-steps-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.9rem;
}
.step-card{
  text-align:center;
  padding: 1.6rem 1.4rem 1.8rem;
  border-radius: 16px;
  background: rgba(17,24,39,.38);
  border: 1px solid rgba(249,250,251,.08);
  box-shadow: 0 22px 60px rgba(0,0,0,.24);
}
.step-icon{
  width: 110px;
  height: 110px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #111827;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: inset 0 0 0 1px rgba(249,250,251,.08);
}
.step-icon img{ max-width: 90%; }
.step-card h3{
  font-family:"Montserrat", system-ui, sans-serif;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing:.08em;
  margin: 0 0 .55rem;
}
.step-card p{
  font-size: .9rem;
  line-height:1.65;
  color: rgba(229,231,235,.92);
  margin:0;
}
.march-steps-cta{
  margin-top: 2rem;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 1rem;
  flex-wrap: wrap;
}
.march-steps-cta__note{
  font-size: .86rem;
  color: rgba(229,231,235,.88);
}

/* WHERE */
.march-where{
  background: #f5e8dd;
  padding: 3.7rem 0 4rem;
  position:relative;
  overflow:hidden;
  color:#111827;
}
.march-where::before{
  content:"";
  position:absolute;
  inset:-120px -120px auto auto;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(255,107,26,.22), transparent 60%);
  filter: blur(2px);
}
.march-where-inner{
  max-width: 700px;
  margin: 0 auto;
  text-align:center;
  position:relative;
}
.march-where-title{
  font-family:"Montserrat", system-ui, sans-serif;
  font-size: 1.7rem;
  letter-spacing:.14em;
  text-transform: uppercase;
  margin: 0 0 .75rem;
}
.march-where-title span{ color: var(--march-orange); }
.march-where-inner p{
  font-size: .98rem;
  line-height:1.75;
  margin: 0 0 .6rem;
}
.march-where-chip{
  margin: 1rem auto 0;
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.55rem .95rem;
  border-radius: 999px;
  background: rgba(255,107,26,.10);
  border: 1px solid rgba(255,107,26,.20);
  font: 900 .78rem/1 "Montserrat", system-ui, sans-serif;
  letter-spacing:.14em;
  text-transform: uppercase;
}
.march-where-chip__dot{
  width: 9px; height: 9px;
  border-radius: 999px;
  background: var(--march-orange);
}

/* PROMO (bottom dropdowns) */
.march-promo{
  background:#000;
  color:#f9fafb;
  padding: 3.7rem 0 4rem;
  text-align:center;
}
.march-promo-title{
  font-family:"Montserrat", system-ui, sans-serif;
  font-size: 1.45rem;
  letter-spacing:.14em;
  text-transform: uppercase;
  margin: 0 0 .75rem;
}
.march-promo-text{
  max-width: 560px;
  margin: 0 auto .75rem;
  font-size: .96rem;
  line-height:1.75;
  color: rgba(229,231,235,.92);
}
.march-promo-note{
  font-size: .88rem;
  color: #9ca3af;
  margin: 0 auto 1.9rem;
}
.march-promo-note a{ color:#fff; }

.promo-selects{
  max-width: 760px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
}
.promo-select{ text-align:left; }
.promo-select label{
  display:block;
  font-size: .8rem;
  color:#e5e7eb;
  margin-bottom: .25rem;
}
.promo-select select{
  width:100%;
  padding: .65rem .85rem;
  border-radius: .5rem;
  border: 1px solid #374151;
  background:#020617;
  color:#f9fafb;
  font-size: .88rem;
}

.march-promo-footer{
  margin-top: 2rem;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 1rem;
  flex-wrap: wrap;
}
.march-promo-footer__note{
  color: rgba(229,231,235,.88);
  font-size: .88rem;
}

/* Responsive */
@media (max-width: 980px){
  .march-hero-grid{
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align:center;
  }
  .march-hero-actions{ justify-content:center; }
  .march-hero-logo{ width: 260px; }
  .impactTop-layout{ grid-template-columns: 1fr; }
  .march-logo-strip .container{ grid-template-columns: 1fr; text-align:center; }
  .march-logo-card{ margin: 0 auto; }
}
@media (max-width: 900px){
  .march-steps-grid{ grid-template-columns: 1fr; }
  .promo-selects{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .march-hero{ min-height: 86vh; }
  .march-hero-actions{ flex-direction: column; align-items: center; }
  .promo-selects{ grid-template-columns: 1fr; }
  .impactTop-mini{ grid-template-columns: 1fr; }
  .march-scroll{ display:none; }
}
/* ==========================
   PROMO VIDEO - GROW ON SCROLL
=========================== */
.march-promoGrow{
  background:#000;
  color:#f9fafb;
  padding: 3.6rem 0 3.2rem;
  overflow:hidden;
}

.promoGrow-head{
  text-align:center;
  margin-bottom: 1.6rem;
}

.promoGrow-eyebrow{
  font-size: .8rem;
  letter-spacing:.2em;
  text-transform: uppercase;
  color: rgba(255,107,26,.95);
  margin: 0 0 .45rem;
  font-family:"Montserrat", system-ui, sans-serif;
  font-weight: 800;
}

.promoGrow-title{
  font-family:"Montserrat", system-ui, sans-serif;
  font-size: 1.55rem;
  letter-spacing:.10em;
  text-transform: uppercase;
  margin: 0 0 .55rem;
}

.promoGrow-sub{
  max-width: 62ch;
  margin: 0 auto;
  font-size: .95rem;
  line-height: 1.75;
  color: rgba(229,231,235,.92);
}

/* The scroll “room” — smaller, tighter */
.promoGrow-stage{
  height: 100vh;              /* was 240vh */
  position: relative;
  margin-top: 1.1rem;
  margin-bottom: 1.2rem;      /* creates a clean exit to next section */
}

/* Sticky container — slightly higher so it feels immediate */
.promoGrow-sticky{
  position: sticky;
  top: 14vh;                  /* was 10vh */
  height: 72vh;               /* was 80vh */
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 0 1rem;
}


/* The animated frame (we’ll update transform + radius via JS) */
.promoGrow-frame{
  width: min(980px, 92vw);
  aspect-ratio: 16 / 9;
  border-radius: 26px;
  overflow:hidden;
  position: relative;

  box-shadow: 0 30px 90px rgba(0,0,0,.55);
  background:#050505;

  /* Important: JS will drive scale + radius */
  transform: scale(0.70);               /* START SMALLER (more obvious) */
  transform-origin: center;

  will-change: transform, border-radius, box-shadow;
}


/* video */
.promoGrow-video{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
}

/* subtle overlay/grain so it matches your theme */
.promoGrow-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,107,26,.16), transparent 45%),
    linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.55));
  pointer-events:none;
}

/* footer */
.promoGrow-foot{
  margin-top: 1.2rem;
  text-align:center;
  display:flex;
  flex-direction: column;
  align-items:center;
  gap: .8rem;
}

.promoGrow-note{
  font-size: .9rem;
  color: rgba(229,231,235,.88);
}

/* Responsive tweaks */
@media (max-width: 640px){
  .promoGrow-stage{ height: 200vh; }
  .promoGrow-sticky{ top: 12vh; height: 76vh; }
}
/* allows the scaled video to feel like it reaches edges */
.march-promoGrow{
  overflow: visible; /* default is hidden — visible makes big scale feel bigger */
}
/* =========================
   HERO EVENT + COUNTDOWN
========================= */
.hero-event{
  display:flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 14px;
}

.hero-event-badge{
  display:inline-flex;
  flex-direction:column;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}

.hero-event-label{
  font: 800 .68rem/1 "Montserrat", system-ui, sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.hero-event-date{
  font: 900 .86rem/1.1 "Montserrat", system-ui, sans-serif;
  letter-spacing: .10em;
  text-transform: uppercase;
  color:#fff;
}

/* countdown chips */
.hero-countdown{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cd-box{
  min-width: 70px;
  padding: 10px 10px 9px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  text-align:center;
}
.cd-num{
  display:block;
  font: 900 1.05rem/1 "Montserrat", system-ui, sans-serif;
  color: var(--march-orange);
  letter-spacing: .02em;
}
.cd-lbl{
  display:block;
  margin-top: 6px;
  font: 800 .62rem/1 "Montserrat", system-ui, sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}

/* =========================
   FORM ONLY CENTERED SECTION
========================= */
.march-impactFormOnly{ padding: 3.2rem 0 3.2rem; }
.impactTop-layout--center{
  display:flex;
  justify-content:center;
}
.impactTop-formWrap--center{
  max-width: 520px;
  width: 100%;
}
.formCard--clean{
  padding: 1.25rem 1.25rem 1rem;
}

/* =========================
   PROMO GROW spacing (less)
========================= */
.promoGrow-head{
  padding-top: 2.2rem;
  padding-bottom: 1rem;
}
.promoGrow-sub{
  margin: .6rem auto 0;
  max-width: 60ch;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  font-size: .95rem;
}
.march-promoGrow{
  background:#000;
  padding: 0 0 2rem;
}

/* More obvious grow stage (longer scroll) */
.promoGrow-stage{
  height: 170vh; /* bigger stage = more dramatic */
}
.promoGrow-sticky{
  position: sticky;
  top: 10vh;
  height: 80vh;
  display:flex;
  align-items:center;
  justify-content:center;
}
.promoGrow-frame{
  width: min(980px, 92vw);
  aspect-ratio: 16 / 9;
  overflow:hidden;
  transform: scale(.68);
  border-radius: 26px;
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
  position:relative;
}
.promoGrow-video{
  width:100%;
  height:100%;
  object-fit: cover;
}
.promoGrow-overlay{
  position:absolute; inset:0;
  background: radial-gradient(circle at 50% 0%, rgba(255,107,26,.10), transparent 60%),
              linear-gradient(to bottom, rgba(0,0,0,.10), rgba(0,0,0,.35));
  pointer-events:none;
}

@media (max-width: 640px){
  .hero-event{ justify-content:center; }
  .cd-box{ min-width: 64px; }
  .promoGrow-sticky{ top: 12vh; height: 76vh; }
  .promoGrow-frame{ width: 92vw; }
}
/* ===== HERO Date + Countdown ===== */
.hero-dateRow{
  display:flex;
  gap:.75rem;
  align-items:center;
  flex-wrap:wrap;
  margin-bottom: 1.1rem;
}
.hero-datePill{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.45rem .7rem;
  border-radius:999px;
  background: rgba(0,0,0,.40);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}
.hero-dateLabel{
  font: 800 .62rem/1 "Montserrat", system-ui, sans-serif;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: rgba(255,255,255,.72);
}
.hero-dateValue{
  font: 900 .72rem/1 "Montserrat", system-ui, sans-serif;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#fff;
}
.hero-countdown{
  display:flex;
  gap:.55rem;
  flex-wrap:wrap;
}
.cdBox{
  min-width:58px;
  text-align:center;
  padding:.45rem .55rem;
  border-radius:12px;
  background: rgba(0,0,0,.42);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}
.cdNum{
  display:block;
  font: 900 .9rem/1.05 "Montserrat", system-ui, sans-serif;
  color: #ff6b1a;
  letter-spacing:.02em;
}
.cdLab{
  display:block;
  margin-top:.2rem;
  font: 800 .58rem/1 "Montserrat", system-ui, sans-serif;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: rgba(255,255,255,.70);
}

/* ===== Register form only (center) ===== */
.march-registerOnly{
  padding: 3.4rem 0; /* less tall */
}
.registerOnly-center{
  display:flex;
  justify-content:center;
}
.registerOnly-card{
  width: min(560px, 100%);
}

/* ===== Promo grow section (less spacing + obvious grow) ===== */
.march-promoGrow{
  background:#000;
  padding: 2.2rem 0 0; /* reduce huge spacing */
}
.promoGrow-head{
  text-align:center;
  padding-bottom: 1.1rem;
}
.promoGrow-title{
  margin:0 0 .35rem;
  font-family:"Montserrat", system-ui, sans-serif;
  font-size: 1.35rem;
  letter-spacing:.14em;
  text-transform: uppercase;
}
.promoGrow-sub{
  margin:0 auto;
  max-width: 58ch;
  color: rgba(229,231,235,.85);
  font-size: .9rem;
  line-height: 1.65;
}

/* Scroll stage: gives enough distance to feel “wegather” */
.promoGrow-stage{
  height: 170vh;          /* key for the effect */
  position: relative;
}
.promoGrow-sticky{
  position: sticky;
  top: 10vh;
  height: 80vh;
  display:flex;
  align-items:center;
  justify-content:center;
}
.promoGrow-frame{
  width: min(980px, 92vw);
  aspect-ratio: 16 / 9;
  border-radius: 26px;
  overflow:hidden;
  background:#0b0b0b;
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
  transform: scale(.7);
  will-change: transform;
}
.promoGrow-video{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.02);
}
.promoGrow-overlay{
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 50% 0%, rgba(255,107,26,.12), transparent 55%),
              linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.35));
  pointer-events:none;
}

/* Mobile tweaks */
@media (max-width: 640px){
  .hero-dateRow{ justify-content:center; }
  .promoGrow-sticky{ top: 12vh; height: 76vh; }
  .promoGrow-frame{ width: 94vw; }
  .cdBox{ min-width: 60px; }
}
/* Center the "ONE DAY..." block */
.march-logo-strip .march-logo-side{
  text-align: center;
  margin: 0 auto;
  max-width: 700px; /* optional: keeps it looking clean */
}

/* If your kicker is a separate class (from our code) */
.march-logo-strip .march-logo-side__kicker{
  text-align: center;
}
/* =========================
   PRESS KIT ACCORDION GRID
========================= */
.presskit{
  background:#000;
  padding:72px 0 56px;
}

.presskit-head{
  text-align:center;
  max-width:780px;
  margin:0 auto 28px;
}

.presskit-title{
  font-family:"Montserrat",system-ui,sans-serif;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#fff;
  margin:0 0 10px;
}
.presskit-title span{ color:#ff6b1a; }

.presskit-sub{
  color:rgba(255,255,255,.72);
  font-family:"Roboto",system-ui,sans-serif;
  line-height:1.6;
  margin:0 auto;
}

.presskit-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:28px;
  max-width:980px;
  margin:34px auto 28px;
}

/* cards */
.pk-card{
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 18px 55px rgba(0,0,0,.45);
}

.pk-summary{
  list-style:none;
  cursor:pointer;
  padding:22px 22px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.pk-summary::-webkit-details-marker{ display:none; }

.pk-title{
  font-family:"Montserrat",system-ui,sans-serif;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#0b0b0b;
  font-size:16px;
}

/* chevron */
.pk-icon{
  width:22px;height:22px; position:relative; flex:0 0 22px;
}
.pk-icon:before{
  content:"";
  position:absolute; inset:0;
  margin:auto;
  width:8px; height:8px;
  border-right:2px solid #111;
  border-bottom:2px solid #111;
  transform:rotate(45deg);
  transition:transform .2s ease;
}
.pk-card[open] .pk-icon:before{
  transform:rotate(-135deg);
}

.pk-body{
  padding:0 22px 20px;
  border-top:1px solid rgba(0,0,0,.06);
}
.pk-body p{
  margin:14px 0 0;
  font-family:"Roboto",system-ui,sans-serif;
  color:#111;
  line-height:1.6;
  font-size:14px;
}

.pk-link{
  color:#9ca3af; /* subtle grey like screenshot */
  font-weight:700;
  text-decoration:underline;
  text-underline-offset:2px;
}
.pk-link:hover{ color:#111; }

/* center last tile */
.pk-center{
  grid-column:1 / -1;
  max-width:480px;
  margin:0 auto;
}

/* BLB logo under */
.blb-footer-logo{
  display:flex;
  justify-content:center;
  margin-top:34px;
  padding-top:26px;
  border-top:1px solid rgba(255,255,255,.10);
}
.blb-footer-logo img{
  height:44px;
  width:auto;
  opacity:.9;
  transition:opacity .2s ease, transform .2s ease;
}
.blb-footer-logo a:hover img{
  opacity:1;
  transform:translateY(-1px);
}

/* mobile */
@media (max-width: 760px){
  .presskit{ padding:54px 0 46px; }
  .presskit-grid{ grid-template-columns:1fr; gap:18px; }
  .pk-center{ max-width:none; }
}
/* =========================
   PROMO VIDEO – MOBILE FIX
========================= */
@media (max-width: 768px) {

  .promoGrow-stage {
    height: auto !important;
    min-height: unset !important;
    padding: 0 !important;
  }

  .promoGrow-sticky {
    position: relative !important;
    height: auto !important;
  }

  .promoGrow-frame {
    transform: none !important;
    border-radius: 14px !important;
    margin: 0 auto;
  }

  .promoGrow-video {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Reduce black gaps above & below */
  .march-promoGrow {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
}
/* PROMO VIDEO – prevent overlap with statement (mobile) */
@media (max-width: 768px){

  /* Lift the whole promo video section up a bit */
  .march-promoGrow{
    padding-top: 18px !important;
    padding-bottom: 44px !important; /* creates space before the statement */
  }

  /* Pull the video frame upward slightly */
  .promoGrow-frame{
    margin-top: -18px !important;
  }

  /* Make sure the statement section has breathing room */
  .march-logo-strip{
    padding-top: 28px !important;
  }
}
@media (max-width: 768px){
  .promoGrow-inner{ position: relative !important; z-index: 2; }
  .march-logo-strip{ position: relative !important; z-index: 1; }
}
/* =========================
   FINAL MOBILE OVERRIDE
   Fix promo video overlapping "ONE DAY..." block
========================= */
@media (max-width: 768px){

  /* remove extra black space and push video UP */
  .march-promoGrow{
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    margin-bottom: 0 !important;
  }

  /* stop sticky behavior on mobile */
  .promoGrow-stage{
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .promoGrow-sticky{
    position: relative !important;
    top: auto !important;
    height: auto !important;
    padding: 0 14px !important;
    margin: 0 !important;
  }

  /* lift the frame so it doesn't sit on top of the statement */
  .promoGrow-frame{
    transform: none !important;
    margin: -26px auto 18px !important;  /* ✅ this moves it UP */
    border-radius: 16px !important;
  }

  /* ensure statement is BELOW with clear spacing */
  .march-logo-strip{
    padding-top: 22px !important;
    margin-top: 0 !important;
  }

  /* safety: keep statement above any overlays */
  .march-logo-strip,
  .march-logo-strip *{
    position: relative;
    z-index: 2;
  }
}
