/* ════════════════════════════════════════════════════════════════════
   Sprint Funnel pages (/sprint /calendar /confirmed /unsubscribe)
   Ported from the GHL Brand Sprint funnel; rides on the theme tokens
   (--font, --font-heading, --text-h2, …) from assets/css/style.css.
   ════════════════════════════════════════════════════════════════════ */

/* ── Base ── */
body.funnel-page {
  background-color: #040507 !important;
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
  font-weight: 500;
}
body.funnel-page p,
body.funnel-page li,
body.funnel-page a,
body.funnel-page label { font-weight: 500; }
/* Custom circle cursor (same as the main site). Native cursor hidden on
   pointer devices; inputs keep a text caret for usability. */
@media (hover: hover) and (pointer: fine) {
  body.funnel-page,
  body.funnel-page a,
  body.funnel-page button { cursor: none; }
}
body.funnel-page input,
body.funnel-page textarea { cursor: text; }

/* Nav matches the main site: gradient backdrop + 40px bottom padding */
body.funnel-page .nav { padding-bottom: 40px; }
body.funnel-page .nav__logo-img { opacity: 1 !important; animation: none !important; }

body.funnel-page section:not(#hero) {
  max-width: 100vw !important;
  overflow-x: hidden !important;
}

/* display rules below must never beat the hidden attribute */
.funnel-page [hidden] { display: none !important; }

/* ── Shared section helpers ── */
.funnel-page .section-inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
.funnel-page .section-text-block {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.funnel-page .grad-headline {
  background: linear-gradient(90.84deg, #dcdcdc 4.45%, #fff 42.92%, #bcbcbc 92.25%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0 0 24px;
  font-size: var(--text-h2);
}
.funnel-page .section-body-p {
  font-family: var(--font);
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.funnel-page .section-body-p:last-child { margin-bottom: 0; }
.funnel-page .section-body-p--bright { color: rgba(255, 255, 255, 0.85); }
.funnel-page h2.grad-headline {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.funnel-eyebrow {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 12px;
}

/* ── Buttons (port of the GHL premium button) ── */
.tl-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border: solid rgba(255, 255, 255, 0.2);
  border-width: 0 1px 2px;
  border-radius: 7.5px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 1rem;
  color: #4f4f4f;
  background-color: transparent;
  background-image: radial-gradient(at bottom, #ffffff 25%, rgba(255, 255, 255, 0.75));
  box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.5);
  text-decoration: none;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.tl-cta-btn:hover { box-shadow: 0 15px 30px -5px rgba(255, 255, 255, 0.55); }
.tl-cta-btn:disabled { opacity: 0.55; box-shadow: none; }
.tl-cta-btn--danger {
  background-image: none;
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
}
.tl-ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 7.5px;
  font-family: var(--font);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.tl-ghost-btn:hover { color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.funnel-link { color: rgba(255, 255, 255, 0.85); text-decoration: underline; }
.funnel-link:hover { color: #fff; }

/* ── Hero ── */
.funnel-page #hero.custom-hero {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 19vh 20px 0;
  min-height: 760px;
  background-image: url('../img/thelmnls-photo-studio-workspace.avif');
  background-size: cover;
  background-position: center 70%;
  background-repeat: no-repeat;
  position: relative;
  overflow: visible !important;
  max-width: 100% !important;
  z-index: 10;
}
/* Top gradient: solid black fading down into the photo */
.funnel-page #hero.custom-hero::before {
  content: "";
  display: block;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(180deg, #040507 0%, #040507 18%, rgba(4, 5, 7, 0) 100%);
  width: 100%;
  height: 60%;
  position: absolute;
  top: 0;
  left: 0;
}
/* Bottom fade: photo dissolves into solid black behind the logo carousel */
.funnel-hero__bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(to top, #040507 0%, rgba(4, 5, 7, 0.9) 35%, rgba(4, 5, 7, 0) 100%);
  pointer-events: none;
  z-index: 3;
}
.custom-hero__content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 20;
  padding: 0 20px;
}
.funnel-hero__eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 50px;
  margin-bottom: 24px;
  flex-wrap: wrap-reverse;
}
.custom-hero__eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.65);
  text-transform: none;
}
.funnel-hero__trust { display: inline-flex; align-items: center; gap: 12px; opacity: 0.6; }
.funnel-hero__trust-badge {
  background: #fff;
  border-radius: 5px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.funnel-hero__trust-badge img { height: 12px; filter: brightness(0); display: block; }
.funnel-hero__trust-rating { display: flex; align-items: center; gap: 12px; }
.funnel-hero__stars { color: #fff; font-size: 11px; letter-spacing: 1px; }
.funnel-hero__sep { color: rgba(255, 255, 255, 0.4); font-size: 13px; font-weight: 300; }
.funnel-hero__score { color: #fff; font-family: var(--font-heading); font-size: 13px; font-weight: 300; }

.custom-hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw + 1rem, 4rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.04em;
  background: linear-gradient(90.84deg, #c0c0c0 4.45%, #fff 42.92%, #aaa 92.25%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  max-width: 18ch;
  margin: 0 auto 24px;
  text-align: center;
}
.custom-hero__sub {
  font-family: var(--font);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  max-width: 58ch;
  margin: 0 auto 20px;
  text-align: center;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim-fade-in {
  opacity: 0;
  animation-name: heroFadeIn;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: forwards;
}

/* ── Opt-in form (native replacement for the GHL iframe) ── */
.hero-form-wrap {
  position: relative;
  z-index: 50;
  width: min(440px, 92vw);
  margin-top: 16px;
}
.tl-optin { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.tl-optin__field { display: flex; flex-direction: column; gap: 7px; }
.tl-optin__field label {
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}
.tl-req { color: #fff; }
.tl-optin__field input,
.tl-booking__confirm .tl-optin__field input {
  width: 100%;
  box-sizing: border-box;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 7.5px;
  padding: 8px 14px;
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease;
}
.tl-optin__field input:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}
.tl-optin__field input::placeholder { color: rgba(255, 255, 255, 0.75); }

/* Phone field with country prefix (matches the live GHL form) */
.tl-phone-field {
  display: flex;
  align-items: stretch;
  gap: 8px;
}
.tl-phone-flag {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 14px;
  border: 1px solid #ffffff;
  border-radius: 7.5px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font);
  font-size: 14px;
  white-space: nowrap;
}
.tl-phone-field input { flex: 1 1 auto; }
.tl-optin__submit {
  margin-top: 4px;
  background-color: transparent;
  background-image: radial-gradient(at bottom, #fff 25%, rgba(255, 255, 255, 0.75));
  color: #4f4f4f;
  border: solid rgba(255, 255, 255, 0.2);
  border-width: 0 1px 2px;
  border-radius: 7.5px;
  padding: 10px 12px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  width: 100%;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.5);
}
.tl-optin__submit:hover { box-shadow: 0 15px 30px -5px rgba(255, 255, 255, 0.6); }
.tl-optin__consent {
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin: 6px 0 0;
}
.tl-form-error {
  background: rgba(180, 40, 40, 0.18);
  border: 1px solid rgba(255, 90, 90, 0.35);
  color: #ffb4b4;
  font-size: 13.5px;
  line-height: 1.6;
  border-radius: 7.5px;
  padding: 10px 14px;
  margin: 0 0 12px;
}
.tl-form-error a { color: #fff; }
/* Honeypot — off-screen, still in the DOM for bots */
.tl-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
  margin: 0;
}

/* ── Hero logo marquee ── */
@keyframes hero-marquee { to { transform: translateX(-50%); } }
.hero-marquee-strip {
  width: 100%;
  padding: 64px 0 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 20;
  pointer-events: none;
  position: relative;
}
.hero-marquee-strip__label {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
  text-transform: none;
  text-align: center !important;
  margin: 0 0 32px;
  width: 100%;
}
.hero-marquee-mask {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 14% 86%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 14% 86%, transparent);
}
.hero-marquee-inner {
  display: flex;
  align-items: center;
  gap: 96px;
  width: max-content;
  animation: hero-marquee 40s linear infinite;
  will-change: transform;
}
.hero-marquee-inner img {
  filter: brightness(0) invert(1);
  opacity: 0.55;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

/* ── Problem section ── */
.problem-section { padding: 200px 0 120px; background: #040507; overflow: hidden; }
.problem-section .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ps-headline { opacity: 0; transform: translateY(30px); }
.problem-headline-wrap {
  text-align: center;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}
.problem-headline-wrap .ps-headline { text-align: center !important; margin-left: auto; margin-right: auto; }
.problem-paras {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.problem-p {
  font-family: var(--font);
  font-size: 1.125rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  padding: 0;
  text-align: center !important;
  will-change: opacity;
}
.problem-p strong { color: inherit; font-weight: 600; }
/* SplitType lines don't reflow on resize — always render inline */
#problem-body .line { display: inline !important; }
#problem-body .line::after { content: ' '; }

/* ── Testimonials marquee ── */
.funnel-testimonials { padding: 140px 0 100px; background: #040507; overflow: hidden; }
.funnel-testimonials__head { margin-bottom: 52px; }
.funnel-testimonials__headline {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.1;
  font-size: var(--text-h2);
  color: #fff;
  margin: 0;
  text-align: left !important;
  max-width: 22ch;
}
@keyframes testimonial-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.t-marquee-outer {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.t-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: testimonial-scroll 60s linear infinite;
  will-change: transform;
}
.t-card {
  flex-shrink: 0;
  width: 380px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.025);
  border-radius: 16px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-height: 220px;
}
.t-stars { color: #fff; font-size: 11px; letter-spacing: 2px; font-family: var(--font-heading); }
.t-quote { font-family: var(--font); font-size: 0.9375rem; line-height: 1.75; color: rgba(255, 255, 255, 0.38); margin: 0; }
.t-quote strong { color: #fff; font-weight: 600; }
.t-name { font-family: var(--font-heading); font-size: 0.9375rem; font-weight: 600; color: #fff; margin-bottom: 4px; }
.t-role { font-family: var(--font); font-size: 0.8125rem; color: rgba(255, 255, 255, 0.4); margin: 0; }
.t-meta-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 8px;
}
.t-avatar-container {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.t-avatar { width: 100%; height: 100%; object-fit: cover; }
.t-avatar-initials {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
}

/* ── Meet Sean ── */
.funnel-meet { padding: 72px 0 160px; background: #040507; }
.meet-sean-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.meet-sean-grid__img-col { display: flex; justify-content: flex-start; }
.funnel-page h2.meet-sean-headline {
  text-align: left !important;
  margin-left: 0;
  margin-right: auto;
  max-width: 100%;
}
.meet-sean-img {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 16px;
  display: block;
}

/* ── Final CTA ── */
.funnel-final-cta { padding: 100px 0; background: #040507; text-align: center; }
.final-cta-block,
.final-cta-block h2,
.final-cta-block p {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.funnel-page h2.funnel-final-cta__headline { max-width: 15ch; }
.funnel-final-cta__sub { font-size: 1.0625rem; margin-bottom: 40px; }

/* ── Sprint page: center every section's heading + text ── */
.funnel-sprint .funnel-testimonials__head { text-align: center; }
.funnel-sprint .funnel-testimonials__headline {
  text-align: center !important;
  max-width: 12ch;
  margin-left: auto;
  margin-right: auto;
}
/* Meet Sean: stack to a single centered column (text over portrait) */
.funnel-sprint .meet-sean-grid {
  grid-template-columns: 1fr;
  gap: 48px;
  justify-items: center;
  text-align: center;
}
.funnel-sprint .meet-sean-grid > div { max-width: 820px; }
.funnel-sprint h2.meet-sean-headline {
  text-align: center !important;
  max-width: 12ch !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.funnel-sprint .meet-sean-grid .section-body-p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
  text-wrap: pretty; /* browser balances the last line to avoid single-word widows */
}
.funnel-sprint .meet-sean-grid__img-col { justify-content: center; }

/* Catch-all: every section block on the sprint page is centered.
   Excludes the marquees/cards, which manage their own layout. */
.funnel-sprint section .section-inner:not(.t-marquee-outer),
.funnel-sprint .section-text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.funnel-sprint section h1,
.funnel-sprint section h2,
.funnel-sprint section p:not(.t-quote):not(.t-name):not(.t-role) {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ── Funnel footer ── */
.funnel-footer {
  background: #040507;
  padding: 60px 20px 40px;
  text-align: center !important;
  font-family: var(--font);
  color: rgba(255, 255, 255, 0.45);
  font-size: 1rem;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.funnel-footer__links { margin-bottom: 24px; font-weight: 500; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; }
.funnel-footer__links a { color: inherit; text-decoration: none; }
.funnel-footer__links a:hover { color: rgba(255, 255, 255, 0.8); }
.funnel-footer__dot { margin: 0 12px; color: rgba(255, 255, 255, 0.2); }
.funnel-footer__disclaimer {
  font-size: 1rem !important;
  color: rgba(255, 255, 255, 0.45) !important;
  text-align: center !important;
  margin: 12px auto 0;
  max-width: 680px;
  text-wrap: balance;
}

/* ── Test-mode ribbon ── */
.funnel-test-ribbon {
  position: fixed;
  bottom: 14px;
  left: 14px;
  z-index: 9999;
  background: #5a3d00;
  color: #ffd27a;
  border: 1px solid #a87a1d;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 7px 11px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0.92;
}

/* ── Calendar / Confirmed / Unsubscribe shells ── */
.funnel-page-section {
  min-height: calc(100vh - 220px);
  padding: 140px 0 100px;
  background: #040507;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.funnel-card-wrap { width: 90%; max-width: 760px; margin: 0 auto; }
.funnel-calendar__head { text-align: center; margin-bottom: 32px; }
.funnel-calendar__head .funnel-eyebrow { text-align: center !important; width: 100%; }
.funnel-calendar__head .funnel-card__headline { margin-bottom: 12px; }
.funnel-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 40px;
  position: relative;
}
.funnel-card--center { text-align: center; }
.funnel-card__headline { font-size: var(--text-h3); margin-bottom: 16px; }
.funnel-card__sub {
  font-family: var(--font);
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin: 0 0 18px;
}
.funnel-card__sub--muted { color: rgba(255, 255, 255, 0.4); font-size: 0.9375rem; }
.funnel-card__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 24px 0 8px;
}
.funnel-card__status { min-height: 1.4em; font-size: 0.9375rem; color: rgba(255, 255, 255, 0.7); margin: 12px 0 0; text-align: center; }
.funnel-card__status.is-error { color: #ffb4b4; }

/* ── Booking card (two-column: detail panel + calendar) ── */
.funnel-calendar .funnel-card-wrap { max-width: 980px; }
.funnel-calendar__headline {
  font-size: var(--text-h1);
  text-align: center !important;
  margin: 0 auto 18px !important;
  max-width: 11ch !important;
}
.funnel-calendar__sub { text-align: center !important; max-width: 60ch; margin: 0 auto; color: rgba(255, 255, 255, 0.55); }

.funnel-card--booking {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.tl-booking__detail {
  padding: 34px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
}
.tl-booking__detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 22px;
  background: linear-gradient(135deg, #3b527b, #2f4262);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.tl-booking__detail-icon img { width: 100%; height: 100%; object-fit: cover; }
.tl-booking__detail-icon svg { width: 22px; height: 22px; display: none; }
.tl-booking__detail-icon.is-fallback svg { display: block; }
.tl-booking__detail-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.tl-booking__detail-meta { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 9px; }
.tl-booking__detail-meta li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}
.tl-booking__detail-meta svg { width: 16px; height: 16px; flex-shrink: 0; color: rgba(255, 255, 255, 0.5); }
.tl-booking__detail-lead {
  font-family: var(--font);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 10px;
}
.tl-booking__detail-list { list-style: none; padding: 0; margin: 0 0 18px; display: flex; flex-direction: column; gap: 10px; }
.tl-booking__detail-list li {
  position: relative;
  padding-left: 22px;
  font-family: var(--font);
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}
.tl-booking__detail-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b527b;
}
.tl-booking__detail-foot {
  font-family: var(--font);
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.tl-booking__picker { padding: 34px 32px; }
.tl-booking__loading { color: rgba(255, 255, 255, 0.5); font-size: 0.9375rem; text-align: center; padding: 24px 0; }
.tl-booking__picker-label {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 18px;
}
.tl-booking__layout { display: grid; grid-template-columns: 1fr 200px; gap: 28px; align-items: start; }

/* Month grid */
.tl-booking__cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.tl-cal-month { font-family: var(--font-heading); font-size: 0.9375rem; font-weight: 500; color: #fff; }
.tl-cal-nav {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}
.tl-cal-nav:hover { border-color: rgba(255, 255, 255, 0.4); }
.tl-cal-nav:disabled { opacity: 0.25; cursor: default; }
.tl-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 6px;
}
.tl-cal-weekdays span {
  text-align: center;
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.tl-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.tl-cal-day {
  aspect-ratio: 1 / 1;
  border: none;
  background: transparent;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.tl-cal-day.is-available {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}
.tl-cal-day.is-available:hover { background: rgba(255, 255, 255, 0.16); }
.tl-cal-day.is-active { background: #fff; color: #040507; }
.tl-cal-day:disabled { cursor: default; }
.tl-booking__tz { font-size: 0.75rem; color: rgba(255, 255, 255, 0.35); margin: 16px 0 0; }

/* Slots column */
.tl-booking__slots-day { font-family: var(--font); font-size: 0.8125rem; color: rgba(255, 255, 255, 0.5); margin: 0 0 12px; }
.tl-booking__slots { display: flex; flex-direction: column; gap: 8px; max-height: 360px; overflow-y: auto; padding-right: 4px; }
.tl-slot-btn {
  background: #fff;
  border: 1px solid #fff;
  border-radius: 8px;
  color: #040507;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  padding: 12px 8px;
  transition: opacity 0.2s ease, transform 0.15s ease;
}
.tl-slot-btn:hover { opacity: 0.85; }
.tl-slot-btn.is-active { background: #3b527b; border-color: #3b527b; color: #fff; }

.tl-booking__confirm { margin-top: 28px; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, 0.06); display: flex; flex-direction: column; gap: 14px; max-width: 460px; }
.tl-booking__picked {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.0625rem;
  margin: 0 0 4px;
}
.tl-optin__hint { color: rgba(255, 255, 255, 0.4); font-weight: 400; }
.tl-booking__confirm .tl-cta-btn { width: 100%; }

/* ── Confirmed / Unsubscribe (centered, no container) ── */
.funnel-confirmed__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.funnel-confirmed__inner .funnel-eyebrow { text-align: center !important; width: 100%; }
.funnel-confirmed__inner .funnel-card__sub { text-align: center; margin-left: auto; margin-right: auto; max-width: 64ch; }
.funnel-confirmed__inner .funnel-card__actions { justify-content: center; }
.funnel-confirmed__headline {
  font-size: var(--text-h1);
  text-align: center !important;
  margin: 0 auto 18px !important;
  max-width: 10ch !important;
}

.funnel-confirmed__check {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: radial-gradient(70.71% 141.42% at 50% 100%, rgba(255, 255, 255, 0.15) 10%, rgba(255, 255, 255, 0) 89%);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.funnel-confirmed__check svg { width: 26px; height: 26px; }
.funnel-confirmed__next {
  text-align: left;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 28px auto 8px;
  max-width: 520px;
}
.funnel-confirmed__next h2 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 12px;
}
.funnel-confirmed__next ol { margin: 0 0 14px; padding-left: 20px; }
.funnel-confirmed__next li,
.funnel-confirmed__next p {
  font-family: var(--font);
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 8px;
}
.funnel-confirmed__manage { font-size: 0.875rem; color: rgba(255, 255, 255, 0.45); margin: 20px 0 0; text-align: center; }

/* ── Responsive ── */
@media (max-width: 860px) {
  .funnel-card--booking { grid-template-columns: 1fr; }
  .tl-booking__detail { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .tl-booking__layout { grid-template-columns: 1fr; gap: 24px; }
  .tl-booking__slots { flex-direction: row; flex-wrap: wrap; max-height: none; }
  .tl-slot-btn { flex: 0 0 calc(33.333% - 6px); }
}

@media (max-width: 767px) {
  .funnel-page #hero.custom-hero { padding-top: 12vh; }
  .funnel-page h2.grad-headline { text-align: center !important; }
  .funnel-page h2.meet-sean-headline { text-align: left !important; }
  .problem-section { padding: 140px 0 80px; }
  .problem-p { font-size: 1rem; }
  .funnel-meet { padding: 64px 0; }
  .meet-sean-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .meet-sean-grid__img-col { order: -1; }
  .meet-sean-img { aspect-ratio: 3 / 2; max-width: 100%; }
  .funnel-final-cta { padding: 64px 0; }
  .funnel-page-section { padding: 120px 0 60px; }
  .funnel-card { padding: 28px 20px; }
}
