/* Shared platform theme for static HTML pages (lets-discuss, client pages). */

:root {
  --p-bg-dark: #0f0e12;
  --p-bg-mid: #1a1820;
  --p-bg-light: #f4f0eb;
  --p-text-on-dark: #f4f0eb;
  --p-text-on-light: #1a1820;
  --p-text-muted: #9b9390;
  --p-accent: #c36cc8;
  --p-accent-2: #764ddb;
  --p-accent-warm: #eb6eaf;
  --p-stat: #e8a04c;
  --p-border: rgba(244, 240, 235, 0.12);
  --p-border-light: rgba(26, 24, 32, 0.1);
  --p-gradient: linear-gradient(135deg, #eb6eaf 0%, #c36cc8 50%, #764ddb 100%);
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--p-bg-dark);
  color: var(--p-text-on-dark);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.display {
  font-family: var(--font-display);
}

.mono {
  font-family: var(--font-mono);
}

.label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--p-text-on-dark);
}

.label::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: var(--p-accent);
}

.label--center {
  justify-content: center;
}

.label--center::after {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: var(--p-accent);
}

.label--light {
  color: var(--p-text-on-light);
}

.label--light::before,
.label--light::after {
  background: var(--p-accent);
}

.gradient-text {
  background: var(--p-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ink-link {
  position: relative;
  transition: color 0.2s;
}

.ink-link:hover {
  color: var(--p-stat);
}

/* ─── Site nav (matches React SiteNav) ─── */

body.has-site-nav {
  padding-top: 3.5rem;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: color-mix(in oklab, var(--p-bg-dark) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--p-border);
}

.site-nav-shell {
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .site-nav-shell {
    padding: 0 2.5rem;
  }
}

.site-nav-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-nav-mobile-panel .site-nav-inner {
  display: block;
  height: auto;
}

.site-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: none;
  color: var(--p-text-on-dark);
}

.site-nav-brand img {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .site-nav-brand img {
    width: 1.375rem;
    height: 1.375rem;
  }
}

.site-nav-links {
  display: none;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  color: rgba(244, 240, 235, 0.6);
}

@media (min-width: 1024px) {
  .site-nav-links {
    gap: 1.5rem;
  }
}

@media (min-width: 768px) {
  .site-nav-links {
    display: flex;
  }
}

.site-nav-link:hover {
  color: var(--p-text-on-dark);
}

.site-nav-divider {
  width: 1px;
  height: 14px;
  background: var(--p-border);
  flex-shrink: 0;
}

.site-nav-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.site-nav-lang--compact {
  gap: 0.375rem;
  font-size: 10px;
}

.site-nav-lang button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: inherit;
}

.site-nav-lang button[aria-pressed="true"] {
  color: var(--p-stat);
}

.site-nav-lang button[aria-pressed="false"]:hover {
  color: var(--p-text-on-dark);
}

.site-nav-cta {
  display: none;
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--p-text-on-dark);
  background: var(--p-gradient);
  border: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.site-nav-cta:hover {
  opacity: 0.9;
}

@media (min-width: 768px) {
  .site-nav-cta {
    display: inline-block;
  }
}

.site-nav-mobile-tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(244, 240, 235, 0.6);
}

@media (min-width: 768px) {
  .site-nav-mobile-tools {
    display: none;
  }
}

.site-nav-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid var(--p-border);
  border-radius: 9999px;
  background: transparent;
  color: var(--p-text-on-dark);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}

.site-nav-menu-toggle:hover {
  border-color: color-mix(in oklab, var(--p-accent) 45%, var(--p-border));
  color: var(--p-accent);
}

.site-nav-menu-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

.site-nav-mobile-backdrop {
  position: fixed;
  inset: 3.5rem 0 0;
  z-index: 30;
  border: 0;
  padding: 0;
  background: rgba(8, 7, 10, 0.55);
  cursor: pointer;
}

.site-nav-mobile-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 50;
  border-bottom: 1px solid var(--p-border);
  background: color-mix(in oklab, var(--p-bg-dark) 96%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.site-nav-mobile-list {
  display: flex;
  flex-direction: column;
  padding: 0 0 1rem;
  color: rgba(244, 240, 235, 0.7);
}

.site-nav-mobile-link,
.site-nav-mobile-item {
  display: block;
  width: 100%;
  padding: 0.75rem 0;
  font-size: 12px;
  letter-spacing: 0.18em;
}

.site-nav-mobile-footer {
  padding: 0.5rem 0 1.25rem;
  border-top: 1px solid var(--p-border);
}

.site-nav-mobile-footer .site-nav-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem 2.5rem;
  font-size: 11px;
  letter-spacing: 0.2em;
}

.site-nav.is-open .site-nav-menu-toggle .icon-menu {
  display: none;
}

.site-nav.is-open .site-nav-menu-toggle .icon-close {
  display: block;
}

.site-nav:not(.is-open) .site-nav-menu-toggle .icon-close {
  display: none;
}

.wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-narrow {
  max-width: 40rem;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 4rem;
}

.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}

.link-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  border: 1px solid var(--p-border);
  background: rgba(244, 240, 235, 0.03);
  padding: 0.875rem 1rem;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.link-card:hover {
  border-color: rgba(232, 160, 76, 0.45);
  background: rgba(232, 160, 76, 0.06);
}

.link-card-icon {
  flex-shrink: 0;
  width: 2.375rem;
  height: 2.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--p-border);
  color: var(--p-stat);
}

.link-card-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

.link-card-body {
  flex: 1;
  min-width: 0;
}

.link-card-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
}

.link-card-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(244, 240, 235, 0.45);
  margin-top: 0.15rem;
}

.link-card-arrow {
  font-family: var(--font-mono);
  color: var(--p-stat);
  flex-shrink: 0;
}

.links-grid {
  display: grid;
  gap: 1px;
  background: var(--p-border);
}

.people-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--p-border);
}

@media (min-width: 640px) {
  .people-grid--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.person {
  background: var(--p-bg-dark);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.person-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  object-fit: cover;
  border: 2px solid var(--p-border);
  margin-bottom: 1rem;
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.person:hover .person-avatar {
  border-color: rgba(232, 160, 76, 0.45);
  transform: scale(1.03);
}

.person-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.person-role {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--p-stat);
  margin-bottom: 1rem;
}

.person-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(244, 240, 235, 0.45);
  margin-bottom: 1rem;
}

.person-meta a:hover {
  color: var(--p-stat);
}

.person-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--p-border);
  color: rgba(244, 240, 235, 0.7);
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}

.pill:hover {
  border-color: var(--p-stat);
  color: var(--p-stat);
  background: rgba(232, 160, 76, 0.06);
}

.pill--primary {
  border-color: var(--p-stat);
  color: var(--p-stat);
  background: rgba(232, 160, 76, 0.08);
}

.pill svg {
  width: 13px;
  height: 13px;
}

.foot {
  text-align: center;
  padding: 2rem 1.5rem 3rem;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(244, 240, 235, 0.35);
  border-top: 1px solid var(--p-border);
}

.foot a:hover {
  color: var(--p-stat);
}

.client-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.client-header-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.client-header-sub {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(244, 240, 235, 0.65);
  max-width: 32rem;
  margin: 0 auto;
}

.client-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.client-logo-row .brand-x {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: rgba(244, 240, 235, 0.35);
}

.quote-text {
  text-align: center;
  color: rgba(244, 240, 235, 0.72);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 28rem;
  margin: 0 auto 2.5rem;
}

.section-spaced {
  margin-bottom: 2.5rem;
}

.client-logo-row img.brand-logo,
.client-logo-row svg.brand-logo {
  height: 2.75rem;
  width: auto;
  object-fit: contain;
}

.client-logo-row img.brand-logo--prospect {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.presentation-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem 1.25rem;
  border: 1px solid var(--p-border);
  background: rgba(244, 240, 235, 0.03);
  text-align: center;
  transition:
    border-color 0.2s,
    background 0.2s;
}

a.presentation-card:hover {
  border-color: rgba(232, 160, 76, 0.45);
  background: rgba(232, 160, 76, 0.06);
}

.presentation-card-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.presentation-card-logos .brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  height: 1.75rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--p-text-on-dark);
}

.presentation-card-logos .brand-wordmark {
  line-height: 1;
}

.presentation-card-logos .brand-lockup .brand-logo {
  height: 1.375rem;
  width: auto;
}

.presentation-card-logos img,
.presentation-card-logos svg {
  height: 2.5rem;
  width: auto;
}

.presentation-card-logos img.brand-logo--prospect {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.presentation-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
}

.presentation-card-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 240, 235, 0.45);
}

.presentation-card-sub--primary {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 240, 235, 0.45);
}

.booking-block {
  margin-top: 0.5rem;
}

.booking-block--cta {
  margin-bottom: 2.5rem;
  text-align: center;
}

.page-narrow .booking-block {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
  padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}

.booking-block-label {
  margin-bottom: 1rem;
}

.booking-block-title {
  margin: 0 auto 1.75rem;
  max-width: 24ch;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 500;
  line-height: 1.2;
}

.booking-shell {
  width: calc(100% + 3rem);
  max-width: 68rem;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.page-narrow .booking-shell {
  width: 100%;
  max-width: 76rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .booking-shell {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.booking.section {
  padding-bottom: 4rem;
}

/* ─── Booking panel (matches landing booking modal) ─── */

.booking-panel {
  position: relative;
  border: 1px solid var(--p-border);
  background: var(--p-bg-dark);
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(195, 108, 200, 0.06),
    inset 0 1px 0 rgba(244, 240, 235, 0.04);
}

.booking-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--p-gradient);
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

.booking-panel-split {
  display: flex;
  min-height: min(94vh, 820px);
}

.booking-panel-aside {
  flex: 0 0 40%;
  max-width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 1.25rem;
  border-right: 1px solid var(--p-border);
  background: linear-gradient(180deg, rgba(26, 24, 32, 0.45) 0%, transparent 55%);
}

.booking-panel-aside-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.booking-panel-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 240, 235, 0.5);
  margin-bottom: 0.75rem;
}

.booking-panel-kicker::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--p-accent);
  opacity: 0.6;
}

.booking-panel-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 500;
  line-height: 1.15;
  max-width: 18ch;
}

.booking-panel-sub {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(244, 240, 235, 0.62);
  max-width: 30ch;
}

.booking-panel-founders {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.booking-panel-founder {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}

.booking-panel-founder-photo {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 9999px;
  overflow: hidden;
  border: 2px solid var(--p-border);
  box-shadow: 0 0 0 5px rgba(232, 160, 76, 0.06);
}

.booking-panel-founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.booking-panel-founder-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}

.booking-panel-founder-name {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 240, 235, 0.45);
  text-align: center;
  line-height: 1.35;
  max-width: 7.5rem;
}

.booking-panel-founder-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid var(--p-border);
  color: rgba(244, 240, 235, 0.45);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.booking-panel-founder-link:hover {
  color: var(--p-stat);
  border-color: rgba(232, 160, 76, 0.35);
  background: rgba(232, 160, 76, 0.06);
}

.booking-panel-founder-link svg {
  width: 0.875rem;
  height: 0.875rem;
}

.booking-panel-calendar {
  flex: 1;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--p-bg-mid);
}

.booking-panel-calendar .calendly-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 0 1 auto;
  min-height: 0;
  max-height: 100%;
  height: auto;
  width: 100%;
  border: none;
  background: var(--p-bg-mid);
  overflow: hidden;
}

.booking-panel-calendar .calendly-inline-widget {
  position: relative;
  flex: 0 0 auto;
  width: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  line-height: 0;
}

.booking-panel-calendar .calendly-inline-widget iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  display: block;
  border: 0;
}

body[data-booking-layout="calendar-only"] .booking-panel-copy {
  display: none;
}

body[data-booking-layout="calendar-only"] .booking-panel-aside {
  flex: 0 0 30%;
  max-width: 30%;
  justify-content: center;
}

body[data-booking-layout="calendar-only"] .booking-panel-aside-content {
  gap: 0;
  align-items: center;
}

body[data-booking-layout="calendar-only"] .booking-panel-founders {
  justify-content: center;
}

body[data-booking-layout="calendar-only"] .booking-panel-calendar {
  flex: 1 1 auto;
  max-width: none;
}

body[data-booking-layout="calendar-only"] .booking-panel-split {
  min-height: min(88vh, 780px);
}

@media (min-width: 768px) {
  .booking-panel-aside {
    padding: 1.75rem 1.5rem 1.5rem;
  }

  .booking-panel-founder-photo {
    width: 6.5rem;
    height: 6.5rem;
  }
}

@media (max-width: 767px) {
  .booking-panel-split {
    flex-direction: column;
    min-height: 0;
  }

  .booking-panel-aside {
    flex: 0 0 auto;
    max-width: none;
    justify-content: flex-start;
    padding: 1rem 1rem 0.875rem;
    border-right: none;
    border-bottom: 1px solid var(--p-border);
  }

  .booking-panel-aside-content {
    gap: 1rem;
  }

  .booking-panel-sub {
    max-width: none;
  }

  .booking-panel-calendar {
    min-height: 34rem;
  }
}

/* ─── Booking CTA (opens modal) ─── */

.booking-cta {
  text-align: center;
  padding-bottom: 4rem;
}

.booking-cta-sub {
  margin: 0 auto 1.75rem;
  max-width: 36ch;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(244, 240, 235, 0.62);
}

.booking-open-btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--p-text-on-dark);
  background: var(--p-gradient);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.booking-open-btn:hover {
  opacity: 0.9;
}

/* ─── CTA glow halo (matches main landing closing CTA) ─── */

@property --cta-halo-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.cta-halo {
  position: relative;
  display: inline-block;
  isolation: isolate;
  border-radius: 4px;
}

.cta-halo--block {
  display: block;
  width: 100%;
}

.cta-halo::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from var(--cta-halo-angle),
    transparent 0deg,
    var(--p-accent-warm) 14deg,
    var(--p-accent) 24deg,
    var(--p-accent-2) 32deg,
    transparent 40deg,
    transparent 360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: cta-halo-spin 3.6s linear infinite;
  pointer-events: none;
}

.cta-halo:hover::before {
  padding: 2px;
}

.cta-halo > .presentation-card,
.cta-halo > .booking-open-btn {
  position: relative;
  z-index: 1;
}

@keyframes cta-halo-spin {
  to {
    --cta-halo-angle: 360deg;
  }
}

.page-narrow .booking-block {
  text-align: center;
}

/* ─── Booking modal (matches main landing) ─── */

.booking-modal {
  --p-bg-dark: #0f0e12;
  --p-bg-mid: #1a1820;
  --p-text-on-dark: #f4f0eb;
  --p-stat: #e8a04c;
  --p-accent: #c36cc8;
  --p-border: rgba(244, 240, 235, 0.12);
  --p-gradient: linear-gradient(135deg, #eb6eaf 0%, #c36cc8 50%, #764ddb 100%);
  font-family: var(--font-body);
  color: var(--p-text-on-dark);
}

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

.booking-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  border: 0;
  padding: 0;
  background: rgba(15, 14, 18, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

.booking-modal-panel {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 61;
  width: min(calc(100vw - 1.5rem), 56rem);
  height: min(92vh, 720px);
  max-height: min(92vh, 720px);
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--p-bg-dark);
  border: 1px solid var(--p-border);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(195, 108, 200, 0.06),
    inset 0 1px 0 rgba(244, 240, 235, 0.04);
  outline: none;
}

.booking-modal-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--p-gradient);
  opacity: 0.85;
  pointer-events: none;
}

.booking-modal-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.booking-modal-split {
  display: flex;
  flex: 1;
  min-height: 0;
  height: 100%;
}

.booking-modal-aside {
  flex: 0 0 40%;
  max-width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 1.25rem;
  border-right: 1px solid var(--p-border);
  background: linear-gradient(180deg, rgba(26, 24, 32, 0.45) 0%, transparent 55%);
}

.booking-modal-aside-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.booking-modal-copy {
  padding-right: 1.75rem;
}

.booking-modal-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 240, 235, 0.5);
  margin-bottom: 0.75rem;
}

.booking-modal-kicker::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--p-accent);
  opacity: 0.6;
}

.booking-modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 500;
  line-height: 1.15;
  max-width: 18ch;
}

.booking-modal-sub {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(244, 240, 235, 0.62);
  max-width: 30ch;
}

.booking-modal-founders {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.booking-modal-founder {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}

.booking-modal-founder-photo {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 9999px;
  overflow: hidden;
  border: 2px solid var(--p-border);
  box-shadow: 0 0 0 5px rgba(232, 160, 76, 0.06);
}

.booking-modal-founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.booking-modal-founder-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}

.booking-modal-founder-name {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 240, 235, 0.45);
  text-align: center;
  line-height: 1.35;
  max-width: 7.5rem;
}

.booking-modal-founder-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid var(--p-border);
  color: rgba(244, 240, 235, 0.45);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.booking-modal-founder-link:hover {
  color: var(--p-stat);
  border-color: rgba(232, 160, 76, 0.35);
  background: rgba(232, 160, 76, 0.06);
}

.booking-modal-calendar {
  flex: 1;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--p-bg-mid);
}

.booking-modal-calendar .calendly-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 0 1 auto;
  min-height: 0;
  max-height: 100%;
  height: auto;
  border: none;
  background: var(--p-bg-mid);
  overflow: hidden;
}

.booking-modal-calendar .calendly-inline-widget {
  position: relative;
  flex: 0 0 auto;
  width: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  line-height: 0;
}

.booking-modal-calendar .calendly-inline-widget iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  display: block;
  border: 0;
}

.booking-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--p-border);
  background: rgba(244, 240, 235, 0.04);
  color: rgba(244, 240, 235, 0.55);
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.booking-modal-close:hover {
  color: var(--p-text-on-dark);
  border-color: rgba(244, 240, 235, 0.22);
  background: rgba(244, 240, 235, 0.08);
}

@media (min-width: 768px) {
  .booking-modal-aside {
    padding: 1.75rem 1.5rem 1.5rem;
  }

  .booking-modal-founder-photo {
    width: 6.5rem;
    height: 6.5rem;
  }
}

@media (max-width: 767px) {
  .booking-modal-panel {
    width: calc(100vw - 0.75rem);
    height: min(96vh, 820px);
    max-height: min(96vh, 820px);
  }

  .booking-modal-split {
    flex-direction: column;
  }

  .booking-modal-aside {
    flex: 0 0 auto;
    max-width: none;
    justify-content: flex-start;
    padding: 1rem 1rem 0.875rem;
    border-right: none;
    border-bottom: 1px solid var(--p-border);
  }

  .booking-modal-aside-content {
    gap: 1rem;
  }

  .booking-modal-copy {
    padding-right: 2.25rem;
  }

  .booking-modal-sub {
    max-width: none;
  }

  .booking-modal-founders {
    justify-content: flex-start;
  }

  .booking-modal-calendar {
    flex: 1;
    min-height: 22rem;
  }
}

.booking-modal-overlay[data-state="open"] {
  animation: booking-overlay-in 0.22s ease;
}

.booking-modal-overlay[data-state="closed"] {
  animation: booking-overlay-out 0.18s ease forwards;
}

.booking-modal-panel[data-state="open"] {
  animation: booking-panel-in 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-modal-panel[data-state="closed"] {
  animation: booking-panel-out 0.2s ease forwards;
}

@keyframes booking-overlay-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes booking-overlay-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes booking-panel-in {
  from {
    opacity: 0;
    transform: translate(-50%, -48%) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes booking-panel-out {
  from {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -48%) scale(0.97);
  }
}
