/* ============================================
   MEETING BOOKED PAGE
   Page-specific styles. Shared design tokens
   (colors, fonts, radii, shadows, .btn, .hero__blobs,
   .site-footer) are inherited from ../style.css.
   ============================================ */


/* ============================================
   HERO
   Reuses .hero__blobs / .hero__blob from the
   global stylesheet for the same dot-grid + blob
   look as the funnel pages.
   ============================================ */
.mb-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 20px 40px;
  text-align: center;
  background: var(--color-background);
}

/* Dot-grid pattern — identical to .hero::before */
.mb-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(249, 115, 22, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* Bottom fade — identical to .hero::after */
.mb-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--color-background) 100%);
  pointer-events: none;
  z-index: 0;
}

.mb-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--hero-max-width);
  margin: 0 auto;
}

.mb-hero__eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.mb-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 6vw, 3.1rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--color-text);
  margin-bottom: 16px;
}

/* Orange highlight on <em> — matches .hero__heading em */
.mb-hero__title em {
  font-style: normal;
  color: var(--color-accent);
}

.mb-hero__sub {
  font-size: clamp(0.9rem, 2vw, 1.0625rem);
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto 28px;
}

.mb-hero__sub strong {
  color: var(--color-text);
}


/* ============================================
   VIDEO EMBED
   ============================================ */
.mb-video {
  width: 100%;
  max-width: 860px;
  margin: 0 auto 28px;
}

.mb-video__frame {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-video);
  background: #0f172a;
}

.mb-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


/* ============================================
   MEETING DETAILS CARD
   Shown only by JS when URL params are present.
   ============================================ */
.mb-details {
  max-width: 860px;
  margin: 0 auto 8px;
  border-radius: var(--border-radius-lg);
  background: var(--color-surface);
  border: 1px solid #FED7AA;
  box-shadow: 0 6px 24px rgba(249, 115, 22, 0.08);
  padding: 16px;
  animation: fadeUp 0.4s ease both;
}

.mb-details__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.mb-details__card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 12px 14px;
  text-align: left;
}

.mb-details__label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-text-muted);
  margin-bottom: 5px;
}

.mb-details__value {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.35;
}

.mb-details__value--accent {
  color: var(--color-accent);
}


/* ============================================
   NEXT STEPS SECTION
   ============================================ */
.mb-steps {
  background: var(--color-background);
  padding: 28px 20px 64px;
}

.mb-steps--inline {
  background: transparent;
  padding: 0 0 8px;
  margin-bottom: 26px;
  text-align: left;
}

.mb-steps__inner {
  max-width: 860px;
  margin: 0 auto;
}

.mb-steps__eyebrow {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.mb-steps__title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 28px;
}

.mb-steps__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

/* Individual step card */
.mb-step {
  background: var(--color-surface);
  border: 1px solid #FED7AA;
  border-radius: var(--border-radius-lg);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.06);
}

.mb-step__header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

/* Numbered circle */
.mb-step__number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
  margin-top: 2px;
}

.mb-step__title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin-bottom: 6px;
  line-height: 1.2;
}

/* Orange highlight on <em> */
.mb-step__title em {
  font-style: normal;
  color: var(--color-accent);
}

.mb-step__copy {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

/* Accept-invite screenshot */
.mb-step__image-wrap {
  margin-top: 16px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}

.mb-step__image {
  width: 100%;
  display: block;
}

/* CTA button row */
.mb-steps__cta {
  display: flex;
  justify-content: center;
}

.mb-inbox-btn {
  min-width: 260px;
}

/* ============================================
   INBOX MODAL
   ============================================ */
.inbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.inbox-modal[hidden] {
  display: none;
}

.inbox-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.inbox-modal__panel {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: var(--border-radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.18), 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 36px 28px 32px;
  width: 100%;
  max-width: 420px;
  animation: fadeUp 0.22s ease both;
}

.inbox-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: background 0.18s ease, color 0.18s ease;
}

.inbox-modal__close:hover {
  background: #FED7AA;
  color: var(--color-text);
  border-color: #FED7AA;
}

.inbox-modal__eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  margin-bottom: 6px;
}

.inbox-modal__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 8px;
}

.inbox-modal__sub {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 22px;
}

.inbox-modal__grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inbox-modal__link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
  background: #fff;
  text-decoration: none;
  color: var(--color-text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.inbox-modal__link:hover {
  border-color: #FED7AA;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.1);
  transform: translateX(2px);
}

.inbox-modal__link-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--color-surface);
  border: 1px solid #FED7AA;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.inbox-modal__link-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.inbox-modal__link-name {
  flex: 1;
  font-size: 0.9375rem;
  font-weight: 600;
}

.inbox-modal__link-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: color 0.18s ease, transform 0.18s ease;
}

.inbox-modal__link:hover .inbox-modal__link-arrow {
  color: var(--color-accent);
  transform: translateX(3px);
}


/* ============================================
   RESPONSIVE — TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
  .mb-hero {
    padding: 44px 32px 52px;
  }

  .mb-details {
    padding: 20px;
  }

  .mb-details__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .mb-steps {
    padding: 36px 32px 80px;
  }

  .mb-steps--inline {
    padding: 0 0 10px;
    margin-bottom: 30px;
  }

  .mb-step {
    padding: 22px 24px;
  }
}


/* ============================================
   WHAT YOU'LL GET ON THE CALL
   ============================================ */
.mb-outcomes {
  background: var(--color-background);
  padding: 0 20px 40px;
}

.mb-outcomes__inner {
  max-width: 860px;
  margin: 0 auto;
}

.mb-outcomes__eyebrow {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.mb-outcomes__title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 24px;
}

.mb-outcomes__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.mb-outcome {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--color-surface);
  border: 1px solid #FED7AA;
  border-radius: var(--border-radius-lg);
  padding: 16px 18px;
  box-shadow: 0 3px 12px rgba(249, 115, 22, 0.05);
}

.mb-outcome__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
}

.mb-outcome__check svg {
  width: 100%;
  height: 100%;
  display: block;
}

.mb-outcome__text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.mb-outcome__text strong {
  color: var(--color-text);
}

/* Important notice box */
.mb-outcomes__notice {
  background: #fff;
  border: 1px solid #FED7AA;
  border-left: 4px solid var(--color-accent);
  border-radius: var(--border-radius);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mb-outcomes__notice-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
}

.mb-outcomes__notice p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.mb-outcomes__notice p strong {
  color: var(--color-text);
}


/* ============================================
   RESULTS — SOCIAL PROOF STRIP
   ============================================ */
.mb-results {
  background: var(--color-surface);
  border-top: 1px solid #FED7AA;
  border-bottom: 1px solid #FED7AA;
  padding: 36px 20px 40px;
}

.mb-results__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.mb-results__eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.mb-results__title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 24px;
}

.mb-results__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.mb-results__card {
  background: #fff;
  border: 1px solid #FED7AA;
  border-radius: var(--border-radius-lg);
  padding: 20px 16px;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.07);
}

.mb-results__stat {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 6px;
}

.mb-results__label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.mb-results__footnote {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-style: italic;
}


/* ============================================
   SOCIAL FOLLOW SECTION
   ============================================ */
.mb-social {
  background: var(--color-background);
  padding: 40px 20px 56px;
  text-align: center;
}

.mb-social__inner {
  max-width: 560px;
  margin: 0 auto;
}

.mb-social__eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.mb-social__title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 10px;
}

.mb-social__sub {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.mb-social__links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.mb-social__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 16px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  background: #fff;
  color: var(--color-text-muted);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  min-width: 88px;
  text-decoration: none;
}

.mb-social__link:hover {
  border-color: #FED7AA;
  color: var(--color-accent);
  box-shadow: 0 6px 22px rgba(249, 115, 22, 0.12);
  transform: translateY(-2px);
}

.mb-social__link-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mb-social__link-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.mb-social__link-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}


/* ============================================
   RESPONSIVE — DESKTOP (1280px+)
   ============================================ */
@media (min-width: 1280px) {
  .mb-hero {
    padding: 52px 40px 44px;
  }

  .mb-outcomes {
    padding: 0 40px 48px;
  }

  .mb-results {
    padding: 44px 40px 52px;
  }

  .mb-steps {
    padding: 44px 40px 80px;
  }

  .mb-steps--inline {
    padding: 0 0 12px;
    margin-bottom: 34px;
  }

  .mb-social {
    padding: 48px 40px 72px;
  }
}

/* ============================================
   RESPONSIVE — TABLET (768px+) additions
   ============================================ */
@media (min-width: 768px) {
  .mb-outcomes {
    padding: 0 32px 44px;
  }

  .mb-results {
    padding: 40px 32px 48px;
  }

  .mb-results__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .mb-social {
    padding: 44px 32px 64px;
  }
}
