/* ==========================================================================
   Burst Digital · Meta Ads Masterclass registration
   Layout copied from go.makeithappen.org.nz/webinar-registration-page:
   centred logo, 2 column hero with a sticky white form card on the right,
   pill eyebrow, accented headline, hosted-by block with portrait, centred
   logo footer.
   Every red (#e93d3d / #ec5f47) and gold (#c8a96e) in the source becomes
   Burst lavender. Type is Poppins, which is a brand non-negotiable.
   ========================================================================== */

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

.bd-lp {
  --white:      #ffffff;
  --navy:       #0e132a;
  --off:        #fdfdfe;
  --lavender:   #a6a0e9;
  --lavender-d: #9189dc;
  --lav-soft:   rgba(166, 160, 233, 0.34);
  --grey:       #c8c8d0;
  --border:     #eeeef2;
  --ink-2:      rgba(14, 19, 42, 0.68);

  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.62;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.bd-lp p { margin: 0 0 16px; }
.bd-lp p:last-child { margin-bottom: 0; }
.bd-lp strong { font-weight: 600; }
.bd-lp img { max-width: 100%; display: block; }

.bd-lp .wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.bd-lp .narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

.bd-lp h1, .bd-lp h2, .bd-lp h3 { margin: 0 0 18px; line-height: 1.18; font-weight: 700; letter-spacing: -0.02em; }
.bd-lp h1 { font-size: clamp(32px, 3.5vw, 46px); }
.bd-lp h2 { font-size: clamp(26px, 3vw, 36px); }
.bd-lp h3 { font-size: clamp(18px, 2vw, 21px); font-weight: 600; letter-spacing: -0.01em; }
.bd-lp .center { text-align: center; }
.bd-lp .lead { font-size: clamp(16px, 1.5vw, 18px); color: var(--ink-2); }

/* lavender is never text on white (1.45:1), so accents are navy on a lavender fill */
.bd-lp .hl {
  background: var(--lav-soft);
  padding: 1px 7px;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}

/* ---------- masthead ---------- */
.bd-lp .masthead { padding: 30px 0 8px; text-align: center; }
.bd-lp .masthead img { width: 168px; margin: 0 auto; }

/* ---------- hero, 2 columns ---------- */
.bd-lp .hero { padding: 26px 0 64px; }
.bd-lp .hgrid { display: grid; grid-template-columns: minmax(0, 1fr) 540px;
                column-gap: 52px; row-gap: 0; align-items: start; }
/* Row 2 column 1, straight under the copy. .hostedby carries its own top
   border and padding, so the row gap stays 0 and desktop is unchanged.
   The form column spans BOTH rows, otherwise the card is the tallest thing
   in row 1 and the bio gets pushed down to clear it. */
.bd-lp .hgrid > .hostedby { grid-column: 1; }
.bd-lp .hgrid > .fcol { grid-column: 2; grid-row: 1 / span 2; }

.bd-lp .pill {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.bd-lp .hero h1 { margin-bottom: 20px; }
.bd-lp .subhead { font-size: 17px; margin-bottom: 26px; }

.bd-lp .forwho { margin-bottom: 26px; }
.bd-lp .forwho .fh { font-weight: 600; margin-bottom: 12px; }
.bd-lp .forwho ul { list-style: none; margin: 0; padding: 0; }
.bd-lp .forwho li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: var(--ink-2);
}
.bd-lp .forwho li::before {
  content: '';
  position: absolute; left: 0; top: 10px;
  width: 9px; height: 9px;
  background: var(--lavender);
  border-radius: 50%;
}
.bd-lp .forwho li b { color: var(--navy); font-weight: 600; }

/* ---------- event lines ---------- */
.bd-lp .elines { margin: 0 0 30px; padding: 20px 0 0; border-top: 1px solid var(--border); }
.bd-lp .eline { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 11px; font-size: 15.5px; }
.bd-lp .eline:last-child { margin-bottom: 0; }
.bd-lp .eline .ico { flex: 0 0 auto; line-height: 1.5; }
.bd-lp .eline b { font-weight: 600; }
.bd-lp .eline .tz { display: block; color: var(--ink-2); font-size: 14px; margin-top: 3px; }

/* ---------- hosted by ---------- */
.bd-lp .hostedby { display: grid; grid-template-columns: 148px minmax(0, 1fr); gap: 22px; align-items: start; padding-top: 26px; border-top: 1px solid var(--border); }
.bd-lp .hostedby img { width: 148px; height: 185px; object-fit: cover; object-position: center 22%; border-radius: 10px; }
.bd-lp .hostedby h2 { font-size: clamp(21px, 2.2vw, 26px); margin-bottom: 4px; }
.bd-lp .hostedby .role { font-size: 12.5px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 14px; }
.bd-lp .hostedby p { font-size: 14.5px; color: var(--ink-2); margin-bottom: 12px; }

/* ---------- form card ---------- */
.bd-lp .fcard {
  position: sticky; top: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(14, 19, 42, 0.10);
  padding: 32px 30px 26px;
}
.bd-lp .fcard .ftitle { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 4px; }
.bd-lp .fcard .fsub { font-size: 14.5px; color: var(--ink-2); margin-bottom: 20px; }
.bd-lp .fnote { margin-top: 14px; font-size: 12.5px; line-height: 1.55; color: var(--ink-2); text-align: center; }

/* ---------- waitlist form ----------
   Replaced the GHL webinar iframe on 25 August 2026, once the masterclass had
   run. Posts to our own /api/waitlist, which talks to Klaviyo server to server.
   No iframe, no popup, and no third party form status to keep in step. */
.bd-lp .wl { display: grid; gap: 14px; }
.bd-lp .wl label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.bd-lp .wl input {
  width: 100%;
  font-family: inherit; font-size: 16px; color: var(--navy);
  padding: 14px 15px;
  background: var(--white);
  border: 1px solid var(--grey); border-radius: 8px;
}
.bd-lp .wl input::placeholder { color: rgba(14, 19, 42, 0.42); }
.bd-lp .wl input:focus-visible {
  outline: 2px solid var(--lavender); outline-offset: 1px; border-color: var(--lavender);
}
.bd-lp .wl button[disabled] { opacity: 0.55; cursor: default; }

/* The one colour outside the canonical palette, same exception the Vault page
   carries. It is only ever a failed submit, never decoration. */
.bd-lp .wlmsg { display: none; margin-top: 14px; font-size: 13.5px; line-height: 1.55; color: #c62828; }
.bd-lp .wlmsg.show { display: block; }
.bd-lp .wlmsg a { color: #c62828; }

.bd-lp .wldone { display: none; text-align: center; padding: 12px 0 4px; }
.bd-lp .wldone.show { display: block; }
.bd-lp .wldone .tick {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; margin-bottom: 14px;
  border-radius: 50%; background: var(--lav-soft);
  font-size: 25px; line-height: 1;
}
.bd-lp .wldone h3 { font-size: 20px; font-weight: 700; margin: 0 0 8px; }
.bd-lp .wldone p { font-size: 14.5px; color: var(--ink-2); margin: 0; }

/* ---------- buttons ---------- */
.bd-lp .btn {
  display: inline-block;
  background: var(--lavender);
  color: var(--navy);
  font-family: inherit; font-size: 17px; font-weight: 700;
  padding: 17px 44px;
  border: none; border-radius: 8px;
  text-decoration: none; cursor: pointer;
  transition: background 0.15s ease;
}
.bd-lp .btn:hover, .bd-lp .btn:focus-visible { background: var(--lavender-d); }
.bd-lp .btn-full { display: block; width: 100%; text-align: center; }

/* ---------- bands ---------- */
.bd-lp section { padding: 68px 0; }
.bd-lp .band-off { background: var(--off); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.bd-lp .band-navy { background: var(--navy); color: var(--white); }
.bd-lp .band-navy h2 { color: var(--white); }
.bd-lp .band-navy .lead { color: rgba(255, 255, 255, 0.76); }

/* ---------- trust bar ---------- */
.bd-lp .trust { background: var(--navy); color: var(--white); padding: 26px 0; }
.bd-lp .trust ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 44px; }
.bd-lp .trust li { font-size: 15.5px; font-weight: 500; }
.bd-lp .trust b { color: var(--lavender); font-weight: 700; }

/* ---------- problem ---------- */
.bd-lp .kicker { font-size: clamp(20px, 2.4vw, 26px); font-weight: 600; line-height: 1.35; margin-bottom: 24px; border-left: 4px solid var(--lavender); padding-left: 22px; }

/* ---------- steps ---------- */
.bd-lp .steps { display: grid; gap: 20px; margin: 30px 0 26px; }
.bd-lp .step { background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--lavender); border-radius: 10px; padding: 26px 30px; }
.bd-lp .step .sno { font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 9px; }
.bd-lp .step h3 { margin-bottom: 10px; }
.bd-lp .step p { margin: 0; color: var(--ink-2); font-size: 15.5px; }
.bd-lp .plus { background: var(--navy); color: var(--white); border-radius: 10px; padding: 22px 30px; }
.bd-lp .plus p { margin: 0; }

/* ---------- quotes ---------- */
.bd-lp .quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 34px; }
.bd-lp blockquote {
  margin: 0; background: var(--white);
  border: 1px solid var(--border); border-left: 4px solid var(--lavender);
  border-radius: 10px; padding: 26px 28px;
}
.bd-lp blockquote p { font-size: 16px; margin-bottom: 14px; }
.bd-lp blockquote cite { font-style: normal; font-size: 13.5px; font-weight: 600; color: var(--ink-2); }

/* ---------- results ---------- */
.bd-lp .disclaimer { font-size: 13.5px; line-height: 1.6; color: var(--ink-2); border-left: 4px solid var(--lavender); padding-left: 20px; max-width: 74ch; }
.bd-lp .morelink { margin-top: 22px; font-size: 14.5px; }
.bd-lp .morelink a { color: var(--navy); font-weight: 600; }

/* ---------- proof grid ---------- */
.bd-lp .pgrid { columns: 3 300px; column-gap: 18px; margin-top: 34px; }
.bd-lp .pgrid figure { break-inside: avoid; margin: 0 0 18px; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.bd-lp .pgrid img { width: 100%; }

/* ---------- footer ---------- */
.bd-lp .foot { background: var(--navy); padding: 44px 0; text-align: center; color: rgba(255, 255, 255, 0.6); font-size: 13.5px; }
.bd-lp .foot img { width: 148px; margin: 0 auto 18px; }
.bd-lp .foot a { color: rgba(255, 255, 255, 0.6); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  /* One column, so the children stack copy, then the form, then the bio.
     The form is the only job this page has, so it goes above the bio. */
  .bd-lp .hgrid { grid-template-columns: 1fr; row-gap: 40px; }
  .bd-lp .hgrid > .fcol,
  .bd-lp .hgrid > .hostedby { grid-column: auto; grid-row: auto; }
  .bd-lp .fcard { position: static; }
}
@media (max-width: 640px) {
  .bd-lp section { padding: 48px 0; }
  .bd-lp .hostedby { grid-template-columns: 1fr; }
  .bd-lp .hostedby img { width: 132px; height: 165px; }
  .bd-lp .pgrid { columns: 1; }
  .bd-lp .btn { display: block; text-align: center; padding: 17px 20px; }
  .bd-lp .trust ul { gap: 10px 24px; }
  .bd-lp .trust li { font-size: 14.5px; }
}


/* ===== from apply.burstdigital.co.nz: numbers banner + results rail ===== */
/* ---------- numbers banner ---------- */
.bd-lp .banner { background: var(--navy); color: var(--white); padding: 34px 0; }
.bd-lp .banner ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 22px 56px;
}
.bd-lp .banner li { text-align: center; }
.bd-lp .banner .bfig {
  display: block;
  font-size: clamp(26px, 3vw, 36px); font-weight: 700; line-height: 1.05;
  letter-spacing: -0.03em; color: var(--lavender);
  /* equal-width digits, so a number ticking up 0 > 400 does not jiggle its
     own label left and right on every frame */
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
}
.bd-lp .banner .blab {
  display: block; margin-top: 5px;
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.72);
}
.bd-lp .eyebrow {
  text-align: center; margin: 0 0 18px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-2);
}
.bd-lp .band-navy .eyebrow { color: rgba(255, 255, 255, 0.6); }
/* ---------- results slider ----------
   Every card is the same shape, so the whole rail is one shape and nothing
   jumps as it scrolls. Scroll-snap does the work and the buttons only nudge
   the same native scroll, so it still swipes on a phone with JS off. */
.bd-lp .slider { position: relative; margin-top: 34px; }
.bd-lp .track {
  display: flex; gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 8px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.bd-lp .track::-webkit-scrollbar { display: none; }
.bd-lp .slide {
  flex: 0 0 auto;
  width: clamp(228px, 26vw, 292px);
  /* Cards snap on their LEFT edge, not their centre. The rail shows about 4
     at once, so a centred card near either end can never actually be centred,
     the scroll clamps, and several dots end up pointing at the same place. */
  scroll-snap-align: start;
  border-radius: 12px; overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
}
/* gives the final card somewhere to scroll to, so it can reach the left edge
   like every other card and its dot lands on its own position */
.bd-lp .rail-end { flex: 0 0 auto; width: 0; }
/* contain, NOT cover. These screenshots are the proof, and they arrive at a
   dozen different shapes. cover held one tidy rail but sliced the numbers off
   the wider ones, which is the only thing on the card anyone is reading.
   A white letterbox on a white card is invisible, so the rail still reads as
   one shape. */
.bd-lp .slide img {
  width: 100%; aspect-ratio: 4 / 5;
  object-fit: contain; object-position: center;
  display: block; background: var(--white);
}
/* the results reel rides in the same rail as the screenshots, so it takes the
   rail's 4:5 and fills it. cover, not contain: it is footage, not a document,
   and there is nothing in the corners to lose. */
.bd-lp .slide.s-video { background: var(--navy); }
.bd-lp .slide.s-video video {
  width: 100%; aspect-ratio: 4 / 5;
  object-fit: cover; display: block; background: var(--navy);
}
.bd-lp .snav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 46px; height: 46px; padding: 0;
  border: 1px solid var(--border); border-radius: 50%;
  background: var(--white); color: var(--navy);
  font-size: 19px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.bd-lp .snav:hover { background: var(--off); border-color: var(--grey); }
.bd-lp .snav:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; }
/* hidden rather than dimmed at the ends: a 30% white disc over a dark card
   just reads as a smudge */
.bd-lp .snav[disabled] { opacity: 0; pointer-events: none; }
.bd-lp .snav.prev { left: -21px; }
.bd-lp .snav.next { right: -21px; }
.bd-lp .sdots { display: flex; gap: 8px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
.bd-lp .sdots button {
  width: 9px; height: 9px; padding: 0;
  border: none; border-radius: 999px;
  background: var(--grey); cursor: pointer;
  transition: width 0.18s ease, background 0.18s ease;
}
.bd-lp .sdots button[aria-current="true"] { width: 26px; background: var(--lavender-d); }
.bd-lp .sdots button:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }
.bd-lp .scount { text-align: center; margin-top: 14px; font-size: 13px; color: var(--ink-2); font-variant-numeric: tabular-nums; }
@media (max-width: 700px) {
  .bd-lp section { padding: 46px 0; }
  .bd-lp .hero { padding: 38px 0 42px; }
  .bd-lp .btn-cta { padding: 20px 22px; }
  .bd-lp .banner ul { gap: 20px 32px; }
  .bd-lp .ctameta { font-size: 14px; }

  /* the rail is swiped on a phone, so the buttons are dead weight and would
     sit on top of the cards at this width */
  .bd-lp .snav { display: none; }
  .bd-lp .slide { width: 76vw; }

  .bd-lp .dhead { max-width: 15ch; margin-bottom: 18px; }
  .bd-lp .pgrid-pain { gap: 12px; margin: 30px 0 30px; }
  .bd-lp .pcard { min-height: 0; padding: 26px 22px; border-radius: 20px; font-size: 16.5px; }

  .bd-lp .ogrid { gap: 30px; margin-top: 32px; }
  .bd-lp .ocard { grid-template-columns: 1fr; gap: 18px; text-align: center; }
  .bd-lp .ocard .portrait { width: 160px; height: 200px; margin: 0 auto; }

  .bd-lp .photogrid { columns: 2 130px; column-gap: 10px; }
  .bd-lp .photogrid img { margin-bottom: 10px; }

  .bd-lp .creds { gap: 18px 28px; }
  .bd-lp .creds img { height: 38px; }
  .bd-lp .creds .gp img { height: 48px; }

  .bd-lp .teamshot { height: 220px; border-radius: 14px; margin-bottom: 28px; }
}

/* ---------- GoHighLevel form embed ----------
   The form is an iframe we do not control, so it gets a fixed height and the
   card sizes around it. Its own submit and redirect handle delivery, which is
   why this page carries no form JavaScript. */
.bd-lp .ghl { margin-top: 4px; }
.bd-lp .ghl iframe { display: block; width: 100%; border: none; }
