/* Aureum Observatory — VSL landing page styles (extends styles.css palette) */

.vsl {
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
}

/* ---------- top nav ---------- */
.vsl-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(8px);
  z-index: 50;
}
.vsl-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vsl-brand-logo {
  width: 32px; height: 32px; border-radius: 4px;
  object-fit: cover; object-position: center 35%;
}
.vsl-brand-text {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.vsl-brand-text .dot { color: var(--gold); }
.vsl-brand-sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 1px;
}
.vsl-nav-links {
  display: flex;
  gap: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.vsl-nav-links a:hover { color: var(--gold); }

/* ---------- hero ---------- */
.vsl-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 48px 56px;
  text-align: center;
}

.vsl-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.vsl-eyebrow .live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 144, 47, 0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(184, 144, 47, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(184, 144, 47, 0.05); }
}

.vsl-hero { max-width: 100%; padding: 56px 48px 40px; }
.vsl-hero h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 4.8vw, 68px);
  letter-spacing: -0.03em;
  font-weight: 500;
  line-height: 1.05;
  margin: 0 auto 20px;
  max-width: 1480px;
  text-wrap: balance;
}
.vsl-hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.vsl-hero p.lede {
  font-family: var(--serif);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 640px;
  margin: 0 auto 36px;
  text-wrap: pretty;
}

.vsl-hero-meta {
  display: flex;
  gap: 24px;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-bottom: 44px;
}
.vsl-hero-meta span b { color: var(--ink); font-weight: 500; }

/* ---------- video frame ---------- */
.vsl-video-wrap {
  max-width: 1080px;
  margin: 0 auto 40px;
  padding: 0 48px;
}

/* ── Branded video frame (wraps Bunny.net native player) ── */
.vsl-video-frame {
  border-radius: 10px;
  overflow: hidden;
  background: #0f0d0a;
  border: 1px solid rgba(184, 144, 47, 0.2);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.4),
    0 32px 80px -20px rgba(0,0,0,0.5),
    0 8px 24px -8px rgba(0,0,0,0.3);
}

.vsl-video-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 20px;
  background: #0f0d0a;
  border-bottom: 1px solid rgba(184, 144, 47, 0.12);
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.vsl-video-topbar-left {
  display: flex; align-items: center; gap: 10px;
  color: rgba(245, 232, 200, 0.55);
}
.vsl-video-topbar-left b { color: rgba(245, 232, 200, 0.9); }
.vsl-video-rec-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #c0392b;
  box-shadow: 0 0 6px rgba(192, 57, 43, 0.8);
  flex-shrink: 0;
  animation: rec-pulse 2s ease-in-out infinite;
}
@keyframes rec-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.vsl-video-topbar-right {
  color: rgba(245, 232, 200, 0.3);
  font-size: 9px; letter-spacing: 0.12em;
}

/* 16:9 aspect ratio container for the iframe */
.vsl-video-aspect {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.vsl-video-bottombar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 20px;
  background: #0f0d0a;
  border-top: 1px solid rgba(184, 144, 47, 0.12);
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(245, 232, 200, 0.45);
}
.vsl-video-bottombar b { color: rgba(245, 232, 200, 0.75); font-weight: 500; }
.vsl-video-duration {
  color: rgba(184, 144, 47, 0.6);
  font-size: 9px; letter-spacing: 0.1em;
}
.vsl-video-chrome .progress {
  width: 220px; height: 3px; background: var(--line);
  border-radius: 2px; overflow: hidden;
}
.vsl-video-chrome .progress > div {
  height: 100%; width: 12%; background: var(--gold);
}

/* hero CTA strip */
.vsl-cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.vsl-cta-primary {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
  border-radius: 5px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 140ms ease;
}
.vsl-cta-primary:hover { background: #2a2620; }
.vsl-cta-secondary {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  padding: 12px 22px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-2);
  border-radius: 5px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: border-color 140ms ease, background 140ms ease;
}
.vsl-cta-secondary:hover { border-color: var(--ink); background: var(--surface); }
.vsl-cta-foot {
  text-align: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ---------- section primitives ---------- */
.vsl-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 48px;
  border-top: 1px solid var(--line);
}

.vsl-section-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vsl-section-eyebrow::before {
  content: "";
  width: 24px; height: 1px; background: var(--gold);
}

.vsl-section-h {
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 500;
  margin: 0 0 18px;
  max-width: 760px;
}
.vsl-section-h em { color: var(--gold); font-style: italic; font-weight: 400; }

.vsl-section-d {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink-2);
  max-width: 600px;
  line-height: 1.55;
  margin: 0 0 48px;
  text-wrap: pretty;
}

/* ---------- stats grid ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  flex: 1;
  min-width: 0;
}
.stat-num {
  font-family: var(--serif);
  font-size: 48px;
  letter-spacing: -0.025em;
  font-weight: 500;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-num span.unit { font-size: 22px; color: var(--gold); margin-left: 2px; }
.stat-sub {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  margin-top: 10px;
}
.stat-sub b { color: var(--ink); font-weight: 500; }
.stat-trend {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---------- charts ---------- */
.charts {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  margin-top: 16px;
}

.chart-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--bg);
}

.chart-card-h {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 20px;
}
.chart-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.chart-sub {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.chart-pill {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  background: var(--gold-bg);
  color: var(--gold);
  border-radius: 3px;
  border: 1px solid #e6d8b3;
}

.chart-axis-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-4);
  letter-spacing: 0.04em;
  margin-top: 8px;
}

/* line chart */
.line-chart {
  position: relative;
  height: 240px;
  width: 100%;
}
.line-chart svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* horizontal bar chart */
.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bar-row {
  display: grid;
  grid-template-columns: 110px 1fr 60px;
  gap: 12px;
  align-items: center;
  font-size: 13px;
}
.bar-label { color: var(--ink); font-weight: 500; font-size: 13px; }
.bar-track {
  height: 22px;
  background: var(--surface);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: 3px;
  position: relative;
  animation: barGrow 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes barGrow { from { width: 0 !important; } }
.bar-val {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  color: var(--ink-2);
  text-align: right;
}

/* ---------- channels preview grid ---------- */
.channels-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.ch-preview {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px;
  background: var(--bg);
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 14px;
  align-items: start;
  transition: border-color 160ms ease, background 160ms ease;
}
.ch-preview:hover { border-color: var(--ink-3); background: var(--surface); }
.ch-preview-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-top: 4px;
}
.ch-preview-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.ch-preview-desc {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
}
.ch-preview-status {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--ink-4);
}
.ch-preview-status.live { color: var(--signal); }
.ch-preview-status.live::before {
  content: ""; display: inline-block;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--signal); margin-right: 5px; vertical-align: 1px;
}

/* ---------- audience qualifier grid ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.audience-card {
  position: relative;
  padding: 28px 26px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 188px;
  transition: background 200ms ease;
}
.audience-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms ease;
}
.audience-card:hover { background: var(--surface); }
.audience-card:hover::before { transform: scaleX(1); }

.audience-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.audience-card-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.audience-card-rule {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.audience-card-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--ink-4);
}
.audience-card-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.32;
  color: var(--ink);
  text-wrap: pretty;
  flex: 1;
}
.audience-card-foot {
  margin-top: 22px;
  display: flex;
  justify-content: flex-end;
}
.audience-card-mark {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--ink-4);
  transition: color 200ms ease, transform 200ms ease;
}
.audience-card:hover .audience-card-mark {
  color: var(--gold);
  transform: translateX(3px);
}

@media (max-width: 1100px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .audience-grid { grid-template-columns: 1fr; }
}

/* ---------- two-col split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.split-h {
  font-family: var(--serif);
  font-size: 32px;
  letter-spacing: -0.02em;
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 16px;
}
.split-d {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  text-wrap: pretty;
}

.principles {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.principle {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
}
.principle:last-child { border-bottom: none; }
.principle-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.principle-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin-bottom: 4px;
}
.principle-d {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.55;
}

/* ---------- testimonial / quote block ---------- */
.quote-block {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.quote-mark {
  font-family: var(--serif);
  font-size: 72px;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 16px;
}
.quote-text {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 24px;
  text-wrap: balance;
}
.quote-text em { color: var(--gold); font-style: italic; }
.quote-attr {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ---------- final CTA ---------- */
.final-cta {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 96px 48px 120px;
  border-top: 1px solid var(--line);
}
.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -0.025em;
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 20px;
  text-wrap: balance;
}
.final-cta p {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0 0 36px;
  max-width: 540px;
  margin-inline: auto;
}

/* ---------- footer ---------- */
.vsl-footer {
  border-top: 1px solid var(--line);
  padding: 36px 48px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
}

/* ---------- decorative grid ticks ---------- */
.tick-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

/* ---------- in-flow login mini-block ---------- */
.signin-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 36px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  max-width: 720px;
}
.signin-strip-text {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
}
.signin-strip-text small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 4px;
}

/* responsive */
@media (max-width: 1100px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 900px) {
  .charts { grid-template-columns: 1fr; }
  .channels-preview { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- mobile (<= 720px) ---------- */
@media (max-width: 720px) {
  /* nav: collapse links, keep brand + sign-in only */
  .vsl-nav {
    padding: 14px 18px;
    gap: 12px;
  }
  .vsl-nav-links { display: none; }
  .vsl-brand { gap: 10px; min-width: 0; }
  .vsl-brand-logo { width: 28px; height: 28px; }
  .vsl-brand-text { font-size: 18px; }
  .vsl-brand-sub { font-size: 8px; letter-spacing: 0.16em; }
  .vsl-nav .vsl-cta-secondary {
    padding: 9px 14px;
    font-size: 12px;
    white-space: nowrap;
  }

  /* hero */
  .vsl-hero {
    padding: 40px 20px 32px;
  }
  .vsl-hero h1 {
    font-size: clamp(32px, 7.2vw, 44px);
    line-height: 1.05;
    margin-bottom: 16px;
  }
  .vsl-hero p.lede {
    font-size: clamp(15px, 1.1vw, 17px);
    margin-bottom: 26px;
  }
  .vsl-eyebrow {
    font-size: 9px;
    letter-spacing: 0.18em;
    margin-bottom: 16px;
  }
  .vsl-hero-meta { display: none; }
  .vsl-video-section { display: none; }

  /* video */
  .vsl-video-wrap { padding: 0 18px; margin-bottom: 28px; }
  .vsl-video-overlay { padding: 16px 18px; font-size: 9px; }
  .vsl-video-overlay .tl { gap: 10px; flex-wrap: wrap; }
  .vsl-video-title {
    font-size: 16px;
    line-height: 1.25;
    max-width: 100%;
  }
  .vsl-play {
    width: 60px; height: 60px;
  }
  .vsl-play svg { width: 22px; height: 22px; }
  .vsl-video-chrome {
    padding: 10px 14px;
    font-size: 10px;
    gap: 10px;
    flex-wrap: wrap;
  }
  .vsl-video-chrome .progress {
    width: 100%;
    order: 3;
    flex-basis: 100%;
  }

  /* CTA buttons stack full-width */
  .vsl-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 0 18px;
  }
  .vsl-cta-primary,
  .vsl-cta-secondary {
    width: 100%;
    padding: 14px 18px;
    font-size: 14px;
    text-align: center;
  }
  .vsl-cta-foot {
    font-size: 9px;
    letter-spacing: 0.1em;
    padding: 0 18px;
  }

  /* sections */
  .vsl-section {
    padding: 56px 20px;
  }
  .vsl-section-h {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.15;
  }
  .vsl-section-d { font-size: 16px; margin-bottom: 32px; }
  .vsl-section-eyebrow { font-size: 10px; letter-spacing: 0.18em; }
  .vsl-section-eyebrow::before { width: 16px; }

  /* stats: single col with horizontal rules */
  .stats { grid-template-columns: 1fr; }
  .stat {
    padding: 22px 18px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .stat:last-child { border-bottom: none; }
  .stat-num { font-size: 38px; }
  .stat-num span.unit { font-size: 18px; }
  .stat-label { font-size: 9px; }

  /* charts */
  .charts { gap: 28px; margin-top: 8px; }
  .chart-card { padding: 20px 16px; }
  .chart-title { font-size: 18px; }
  .bar-row {
    grid-template-columns: 90px 1fr 44px;
    gap: 8px;
    font-size: 12px;
  }
  .bar-label { font-size: 12px; }
  .bar-track { height: 18px; }
  .line-chart { height: 200px; }

  /* channels preview */
  .ch-preview {
    grid-template-columns: 32px 1fr;
    padding: 18px;
    gap: 10px;
  }
  .ch-preview-status {
    grid-column: 1 / -1;
    margin-top: 6px;
  }
  .ch-preview-name { font-size: 17px; }
  .ch-preview-desc { font-size: 13px; }

  /* audience cards */
  .audience-card { min-height: 0; padding: 22px 18px 20px; }
  .audience-card-name { font-size: 17px; }
  .audience-card-top { margin-bottom: 16px; }

  /* signin strip */
  .signin-strip {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 14px;
    margin-top: 28px;
  }
  .signin-strip .vsl-cta-primary { width: 100%; }
  .signin-strip-text { font-size: 15px; }

  /* split / principles */
  .split-h { font-size: 26px; }
  .split-d { font-size: 15px; }
  .principle { padding: 14px 0; grid-template-columns: 22px 1fr; gap: 12px; }
  .principle-name { font-size: 16px; }
  .principle-d { font-size: 13px; }

  /* quote */
  .quote-block { padding: 0 6px; }
  .quote-mark { font-size: 56px; margin-bottom: 10px; }
  .quote-text { font-size: 21px; line-height: 1.35; }
  .quote-attr { font-size: 10px; letter-spacing: 0.12em; }

  /* final CTA */
  .final-cta { padding: 64px 20px 80px; }
  .final-cta h2 { font-size: clamp(28px, 8vw, 40px); }
  .final-cta p { font-size: 16px; margin-bottom: 28px; }

  /* footer */
  .vsl-footer {
    flex-direction: column;
    gap: 8px;
    padding: 24px 20px 36px;
    text-align: center;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  /* testimonial stat row (trust-chart.css) */
  .te-stat-num { font-size: 32px; }
}

/* ============================================================
   APPLICATION PAGE
============================================================ */
.apply-page { background: var(--bg); color: var(--ink); min-height: 100vh; }

.apply-hero {
  max-width: 920px;
  margin: 0 auto;
  padding: 72px 48px 48px;
  text-align: center;
}
.apply-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.4vw, 72px);
  letter-spacing: -0.03em;
  font-weight: 500;
  line-height: 1.04;
  margin: 0 auto 22px;
  text-wrap: balance;
}
.apply-hero h1 em { color: var(--gold); font-style: italic; font-weight: 400; }
.apply-hero p.lede {
  font-family: var(--serif);
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 640px;
  margin: 0 auto 36px;
  text-wrap: pretty;
}

.apply-meta-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 12px;
}
.apply-meta-row > div {
  padding: 18px 16px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.apply-meta-row > div:last-child { border-right: none; }
.apply-meta-row span {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 6px;
}
.apply-meta-row b {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* progress bar */
.apply-progress {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 248, 243, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 48px;
}
.apply-progress-track {
  height: 3px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.apply-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
  border-radius: 2px;
  transition: width 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.apply-progress-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.apply-progress-meta span:last-child { color: var(--gold); }

.apply-form-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 48px 96px;
  border-top: 1px solid var(--line);
}
.apply-form { display: block; }

.apply-step {
  display: grid;
  grid-template-columns: 36px auto 1fr;
  gap: 14px;
  align-items: center;
  margin: 36px 0 22px;
}
.apply-step:first-child { margin-top: 0; }
.apply-step-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.apply-step-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.apply-step-rule {
  height: 1px;
  background: var(--line);
}

.apply-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}

.apply-form .field { margin-bottom: 0; }
.apply-form .field label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.apply-form .field input,
.apply-form .field textarea,
.apply-form .field select {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 5px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 140ms ease, background 140ms ease;
}
.apply-form .field textarea {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
  resize: vertical;
}
.apply-form .field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-3) 50%),
                    linear-gradient(135deg, var(--ink-3) 50%, transparent 50%);
  background-position: calc(100% - 18px) center, calc(100% - 13px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.apply-form .field input:focus,
.apply-form .field textarea:focus,
.apply-form .field select:focus {
  border-color: var(--ink);
  background: var(--surface);
}
.apply-form .field input::placeholder,
.apply-form .field textarea::placeholder {
  color: var(--ink-4);
}
.apply-form .field { margin-bottom: 28px; position: relative; }
.apply-form .field:last-of-type { margin-bottom: 0; }
.apply-form .field .req {
  color: var(--gold);
  margin-left: 4px;
  font-family: var(--mono);
  font-size: 10px;
}
.field-help {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ink-4);
  text-transform: none;
}

/* choice pills (multiple choice) */
.apply-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.apply-choice {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 5px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}
.apply-choice:hover {
  border-color: var(--ink-3);
  background: var(--surface);
}
.apply-choice-letter {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
}
.apply-choice-label { font-weight: 500; letter-spacing: -0.005em; }
.apply-choice.is-selected {
  border-color: var(--gold);
  background: var(--gold-bg);
}
.apply-choice.is-selected .apply-choice-letter {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.apply-choice.is-selected .apply-choice-label { color: var(--ink); }

/* step-by-step form UI */
.apply-form .field {
  margin-bottom: 12px;
}
.apply-form .field input,
.apply-form .field textarea,
.apply-form .field select {
  width: 100%;
  font-size: 18px;
  padding: 16px 14px;
  border: 1px solid var(--line-2);
  border-radius: 5px;
  font-family: var(--serif);
  transition: border-color 140ms ease, background 140ms ease;
}
.apply-form .field input:focus,
.apply-form .field textarea:focus {
  border-color: var(--ink);
  background: var(--surface);
}

.apply-choices-single {
  grid-template-columns: 1fr;
  gap: 8px;
}
.apply-step-nav {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  justify-content: flex-end;
}
.apply-nav-back {
  font-family: var(--mono);
  font-size: 12px;
  padding: 12px 18px;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line-2);
  border-radius: 5px;
  cursor: pointer;
  transition: border-color 140ms ease, background 140ms ease;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.apply-nav-back:hover {
  border-color: var(--ink-2);
  background: var(--bg);
}

.apply-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.apply-error {
  margin-top: 24px;
  padding: 14px 18px;
  border: 1px solid #c14a3a;
  border-left-width: 3px;
  border-radius: 4px;
  background: #fcefea;
  color: #5a1f15;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
}

/* qualified success screen with booking buttons */
.apply-success-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.apply-success-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 5px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: all 140ms ease;
  text-decoration: none;
  cursor: pointer;
}
.apply-success-btn-whatsapp {
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
}
.apply-success-btn-whatsapp:hover {
  background: #2a2620;
  border-color: #2a2620;
}
.apply-success-btn-calendly {
  background: var(--gold-bg);
  color: var(--gold);
  border: 1px solid var(--gold);
}
.apply-success-btn-calendly:hover {
  background: var(--gold);
  color: var(--bg);
}
.apply-blacklist-warning {
  margin-top: 28px;
  padding: 14px 18px;
  border: 1px solid var(--line-2);
  border-left: 2px solid var(--ink-3);
  border-radius: 0 4px 4px 0;
  background: var(--surface);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: var(--ink-3);
  text-transform: uppercase;
}

.apply-success-cta-solo {
  grid-template-columns: 1fr;
  max-width: 360px;
  margin-inline: auto;
}
.apply-success-btn-discord {
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
}
.apply-success-btn-discord:hover {
  background: #2a2620;
  border-color: #2a2620;
}

/* Calendly page */
/* ================================================================
   BOOKING PAGE — replaces .calendly-page / .calendly-hero
   ================================================================ */
.booking-page { background: var(--bg); color: var(--ink); min-height: 100vh; }

.booking-outer {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 40px 96px;
}

.booking-eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 28px;
}

/* Shell */
.booking-shell {
  display: flex;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: 0 32px 80px -24px rgba(26,24,20,0.22),
              0 6px 20px -8px rgba(26,24,20,0.10);
}

/* ── Left panel (dark) ──────────────────────────────────────── */
.booking-left {
  width: 300px; flex-shrink: 0;
  background: #201d18;
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.booking-ev-label {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-2); margin-bottom: 10px;
}
.booking-ev-title {
  font-family: var(--serif); font-size: 21px; font-weight: 400;
  line-height: 1.25; color: rgba(245,232,200,0.97); margin: 0 0 10px;
}
.booking-ev-title em { font-style: italic; color: var(--gold-2); }
.booking-ev-desc {
  font-family: var(--sans); font-size: 12px; line-height: 1.6;
  color: rgba(245,232,200,0.72); margin: 0;
}
.booking-ev-meta { display: flex; flex-direction: column; gap: 14px; }
.booking-ev-meta-row { display: flex; align-items: flex-start; gap: 11px; }
.booking-ev-meta-icon {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
  color: rgba(245,232,200,0.6);
}
.booking-ev-meta-label {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(245,232,200,0.58); margin-bottom: 3px;
}
.booking-ev-meta-val {
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  color: rgba(245,232,200,0.92);
}
.booking-left-sep { height: 1px; background: rgba(255,255,255,0.1); margin: 0 -2px; }
.booking-left-section { display: flex; flex-direction: column; gap: 10px; }
.booking-left-label {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(245,232,200,0.6);
}

/* Advisor cards */
.booking-advisor-cards { display: flex; flex-direction: column; gap: 5px; }
.booking-advisor-card {
  display: flex; align-items: center; gap: 10px; padding: 9px 12px;
  border-radius: 7px; border: 1px solid rgba(255,255,255,0.08);
  background: transparent; cursor: pointer; text-align: left; width: 100%;
  transition: background 160ms, border-color 160ms;
}
.booking-advisor-card:hover { background: rgba(255,255,255,0.05); border-color: rgba(184,144,47,0.28); }
.booking-advisor-card.is-active { background: rgba(184,144,47,0.1); border-color: rgba(184,144,47,0.48); }
.booking-advisor-init {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(184,144,47,0.15); border: 1px solid rgba(184,144,47,0.3);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 13px; color: var(--gold-2); flex-shrink: 0;
}
.booking-advisor-card.is-active .booking-advisor-init { background: rgba(184,144,47,0.25); border-color: var(--gold-2); }
.booking-advisor-name {
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  color: rgba(245,232,200,0.88); line-height: 1.2;
}
.booking-advisor-role {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.06em;
  color: rgba(245,232,200,0.62); margin-top: 2px;
}

/* Timezone select – dark panel */
.booking-tz-dark {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.11);
  color: rgba(245,232,200,0.8); font-family: var(--sans); font-size: 12px;
  padding: 9px 32px 9px 11px; border-radius: 6px; width: 100%;
  cursor: pointer; appearance: none; -webkit-appearance: none; outline: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(245,232,200,0.6) 50%),
                    linear-gradient(135deg, rgba(245,232,200,0.6) 50%, transparent 50%);
  background-position: calc(100% - 14px) center, calc(100% - 9px) center;
  background-size: 5px 5px; background-repeat: no-repeat;
  transition: border-color 160ms;
}
.booking-tz-dark:focus { border-color: var(--gold-2); outline: none; }
.booking-tz-dark option { background: #1a1814; color: rgba(245,232,200,0.9); }

@media (max-width: 720px) {
  .apply-success-cta { grid-template-columns: 1fr; }
  .apply-step-nav { justify-content: space-between; }
  .apply-nav-back { flex: 1; }
  .apply-submit { flex: 1; }
  /* booking page mobile — see bottom of file */
}

.apply-disclaimer {
  margin-top: 36px;
  padding: 18px 22px;
  border-left: 2px solid var(--gold);
  background: var(--surface);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  border-radius: 0 4px 4px 0;
}
.apply-disclaimer b { color: var(--ink); font-weight: 600; }

.apply-submit-row {
  margin-top: 32px;
  text-align: center;
}
.apply-submit { padding: 14px 28px; font-size: 14px; }
.apply-submit-row .vsl-cta-foot { margin-top: 14px; }

/* success */
.apply-success {
  max-width: 720px;
  margin: 0 auto;
  padding: 96px 48px 120px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.apply-success-mark {
  color: var(--gold);
  margin: 14px auto 24px;
  display: flex;
  justify-content: center;
}
.apply-success h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.4vw, 52px);
  letter-spacing: -0.025em;
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 18px;
  text-wrap: balance;
}
.apply-success p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 auto 32px;
}
.apply-success-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.apply-success-meta > div {
  padding: 16px;
  border-right: 1px solid var(--line);
}
.apply-success-meta > div:last-child { border-right: none; }
.apply-success-meta span {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--ink-4);
  margin-bottom: 6px;
}
.apply-success-meta b {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

/* mobile */
@media (max-width: 720px) {
  .apply-hero { padding: 44px 20px 32px; }
  .apply-hero h1 { font-size: clamp(32px, 9vw, 44px); }
  .apply-hero p.lede { font-size: 16px; }
  .apply-meta-row { grid-template-columns: 1fr 1fr; }
  .apply-meta-row > div { border-bottom: 1px solid var(--line); }
  .apply-meta-row > div:nth-child(2) { border-right: none; }
  .apply-meta-row > div:nth-child(3),
  .apply-meta-row > div:nth-child(4) { border-bottom: none; }
  .apply-progress { padding: 10px 20px; }
  .apply-progress-meta { font-size: 9px; letter-spacing: 0.12em; }
  .apply-form-wrap { padding: 32px 20px 72px; }
  .apply-grid-2 { grid-template-columns: 1fr; }
  .apply-step { margin: 28px 0 18px; }
  .apply-step-title { font-size: 19px; }
  .apply-choices { grid-template-columns: 1fr; }
  .apply-success { padding: 64px 20px 80px; }
  .apply-success-meta { grid-template-columns: 1fr; }
  .apply-success-meta > div { border-right: none; border-bottom: 1px solid var(--line); }
  .apply-success-meta > div:last-child { border-bottom: none; }
  .apply-submit { width: 100%; }
}

/* very small phones */
@media (max-width: 380px) {
  .vsl-brand-text { font-size: 16px; }
  .vsl-brand-sub { display: none; }
  .vsl-hero h1 { font-size: 30px; }
  .quote-text { font-size: 19px; }
}

/* ============================================================
   INTL-TEL-INPUT INTEGRATION
============================================================ */
.iti { width: 100%; }
.iti input[type="tel"] {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 5px;
  padding: 16px 14px;
  outline: none;
  transition: border-color 140ms ease, background 140ms ease;
}
.iti input[type="tel"]:focus {
  border-color: var(--ink);
  background: var(--surface);
}
.iti__flag-container { z-index: 10; }
.iti__selected-flag { border-radius: 4px 0 0 4px; background: var(--surface); }

/* ============================================================
   CUSTOM BOOKING PAGE
============================================================ */
.booking-title-section {
  max-width: 1080px; margin: 0 auto 48px; padding: 0 48px;
}
.booking-main-title {
  font-family: var(--serif); font-size: 42px; font-weight: 400;
  color: var(--ink); letter-spacing: -0.01em; line-height: 1.1;
  margin: 0 0 16px 0;
}
.booking-main-title em {
  font-style: italic; color: var(--gold);
}
.booking-main-desc {
  font-family: var(--serif); font-size: 18px; font-weight: 400;
  color: var(--ink-2); letter-spacing: -0.005em; line-height: 1.5;
  margin: 0; max-width: 600px;
}

/* ── Right panel (calendar) ──────────────────────────────────── */
.booking-right {
  flex: 1; min-width: 0; background: var(--bg);
  padding: 36px 36px 28px;
  display: flex; flex-direction: column;
}

.booking-cal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.booking-cal-title {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  color: var(--ink); letter-spacing: -0.01em;
}
.booking-cal-title span {
  font-family: var(--mono); font-size: 13px; font-weight: 400;
  color: var(--ink-3); margin-left: 8px; letter-spacing: 0.04em;
}
.booking-cal-nav {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line-2); background: var(--bg);
  cursor: pointer; display: grid; place-items: center;
  color: var(--ink-2); transition: all 160ms; flex-shrink: 0;
}
.booking-cal-nav:hover:not(:disabled) {
  border-color: var(--gold-2); background: var(--gold-bg); color: var(--gold);
}
.booking-cal-nav:disabled { opacity: 0.28; cursor: not-allowed; }

.booking-cal-wdays {
  display: grid; grid-template-columns: repeat(7, 1fr); margin-bottom: 4px;
}
.booking-cal-wday {
  text-align: center; font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-4); padding: 8px 0;
}

.booking-cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 2px; flex: 1;
}
.booking-cal-cell {
  aspect-ratio: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-radius: 8px; position: relative; cursor: default;
  transition: background 140ms; background: transparent; border: none; padding: 0; gap: 3px;
}
.booking-cal-cell.bc-empty { pointer-events: none; }
.booking-cal-cell.bc-dis .booking-cal-num { color: var(--ink-4); opacity: 0.35; }
.booking-cal-cell.bc-avail { cursor: pointer; }
.booking-cal-cell.bc-avail .booking-cal-num { color: var(--ink); }
.booking-cal-cell.bc-avail:hover { background: var(--gold-bg); }
.booking-cal-cell.bc-avail:hover .booking-cal-num { color: var(--gold); }
.booking-cal-cell.bc-today .booking-cal-num { font-weight: 600; }
.booking-cal-cell.bc-today:not(.bc-sel) .booking-cal-num { color: var(--gold); }
.booking-cal-cell.bc-sel { background: var(--ink) !important; }
.booking-cal-cell.bc-sel .booking-cal-num { color: var(--bg) !important; font-weight: 500; }
.booking-cal-num { font-family: var(--sans); font-size: 13px; line-height: 1; font-weight: 400; }
.booking-cal-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold-2); opacity: 0.55; flex-shrink: 0;
}
.booking-cal-cell.bc-avail:hover .booking-cal-dot { opacity: 0.9; }

.booking-cal-footer {
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.08em; color: var(--ink-4);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.booking-cal-avail-count { display: flex; align-items: center; gap: 6px; }
.booking-cal-avail-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold-2); flex-shrink: 0;
}

/* ── Time slot picker ────────────────────────────────────────────── */
.booking-times-body {
  padding: 28px 32px;
  display: flex; flex-direction: column; gap: 20px; flex: 1;
}
.booking-times-heading {
  font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--ink);
}
.booking-times-loading {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--ink-3);
}
.booking-times-spinner {
  display: inline-block; width: 14px; height: 14px;
  border: 2px solid var(--line); border-top-color: var(--gold);
  border-radius: 50%; animation: spin 0.7s linear infinite; flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }
.booking-times-empty {
  display: flex; flex-direction: column; gap: 14px;
  font-family: var(--sans); font-size: 14px; color: var(--ink-3);
}
.booking-times-empty p { margin: 0; }
.booking-times-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px;
}
.booking-time-btn {
  padding: 13px 8px; border: 1px solid var(--gold);
  border-radius: 6px; background: transparent;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  color: var(--gold); cursor: pointer; text-align: center;
  transition: background 150ms, color 150ms;
}
.booking-time-btn:hover {
  background: var(--gold); color: #fff;
}

/* ── Inline booking widget (replaces popup) ──────────────────────── */
.booking-right-inline {
  display: flex; flex-direction: column; gap: 0; padding: 0;
}
.booking-inline-header {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 32px 16px;
  border-bottom: 1px solid var(--line);
}
.booking-inline-back {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3); background: none; border: none; cursor: pointer; padding: 6px 10px;
  border-radius: 5px; transition: background 150ms, color 150ms;
}
.booking-inline-back:hover { background: var(--bg-2); color: var(--ink); }
.booking-inline-back svg { flex-shrink: 0; }
.booking-inline-date {
  font-family: var(--serif); font-size: 16px; font-weight: 400; color: var(--ink);
}
.booking-inline-time {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em;
  color: var(--gold); opacity: 0.9;
}
/* The Calendly widget container — fills the right panel */
.booking-inline-widget {
  flex: 1; min-height: 660px; overflow: hidden;
}
.booking-inline-widget .calendly-inline-widget,
.booking-inline-widget iframe {
  width: 100% !important; height: 100% !important;
  min-height: 660px; border: none !important;
}

/* ── Success screen ──────────────────────────────────────────────── */
.booking-success-wrap {
  display: flex; align-items: center; justify-content: center;
  min-height: 60vh; padding: 60px 24px;
}
.booking-success-card {
  max-width: 480px; width: 100%; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.booking-success-check {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gold-bg); border: 2px solid var(--gold-2);
  display: grid; place-items: center; color: var(--gold);
}
.booking-success-eyebrow {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-3);
}
.booking-success-title {
  font-family: var(--serif); font-size: 32px; font-weight: 400;
  color: var(--ink); margin: 0; line-height: 1.2;
}
.booking-success-body {
  font-family: var(--sans); font-size: 15px; line-height: 1.65;
  color: var(--ink-2); margin: 0; max-width: 380px;
}
.booking-success-btn {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3); background: none; border: 1px solid var(--line-2);
  padding: 10px 20px; border-radius: 6px; cursor: pointer; margin-top: 8px;
  transition: border-color 150ms, color 150ms;
}
.booking-success-btn:hover { border-color: var(--ink-3); color: var(--ink); }

@media (max-width: 820px) {
  .booking-outer { padding: 24px 18px 72px; }
  .booking-shell { flex-direction: column; border-radius: 10px; }
  .booking-left { width: 100%; padding: 28px 24px; }
  .booking-right { padding: 24px; }
  .booking-ev-title { font-size: 18px; }
}
@media (max-width: 480px) {
  .booking-cal-num { font-size: 11px; }
  .booking-cal-cell { border-radius: 5px; }
}
