/*
Theme Name: Salient Child Theme
Description: This is a custom child theme for Salient
Theme URI:   https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266
Author: ThemeNectar
Author URI:  https://themeforest.net/user/themenectar
Template: salient
Version: 1.0
*/





/* =====================================================================
   BookSesh homepage custom CSS
   Fonts: loaded via functions.php (Fraunces + Inter Tight)
   Scoped to avoid breaking Salient on other pages
   ===================================================================== */

/* CSS variables — safe globally, variables do not affect rendering */
:root {
  --cream: #F5EFE6;
  --cream-warm: #EDE5D6;
  --ink: #0A0A12;
  --ink-soft: #1A1A24;
  --blue: #1E1AFF;
  --blue-deep: #0F0CBE;
  --coral: #FF6B5C;
  --coral-soft: #FF8A7E;
  --muted: #6B6B7A;
  --line: rgba(10, 10, 18, 0.08);
  --line-strong: rgba(10, 10, 18, 0.14);
  --serif: 'Fraunces', 'Times New Roman', Georgia, serif;
  --sans: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  --max: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
}

/* Smooth scroll for anchor navigation */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* Box-sizing + margin/padding reset — scoped to our rows only */
.bk-row *, .bk-row *::before, .bk-row *::after { box-sizing: border-box; }
.bk-row * { margin: 0; padding: 0; }

/* Kill Salient material skin's .material .wpb_content_element/.wpb_row { margin-bottom: 1.5em }
   Those rules are (0,2,1) — higher than our bk-row * reset — and create visible gaps between sections. */
body.page-id-967 .wpb_content_element,
body.page-id-1061 .wpb_content_element,
body.page-id-967 .vc_row,
body.page-id-1061 .vc_row { margin-bottom: 0 !important; }

/* Remove WPBakery default wrapper padding so sections fill edge-to-edge */
.bk-row .vc_column-inner,
.bk-row .wpb_wrapper,
.bk-row .wpb_text_column { padding: 0 !important; }

/* Body overrides — scoped to homepage pages only to avoid breaking Salient */
body.page-id-967,
body.page-id-1061 {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Link + image resets scoped to our rows only */
.bk-row img { max-width: 100%; display: block; }
.bk-row a { color: inherit; text-decoration: none; }

/* Definitive .btn override — scoped to page IDs, beats all Salient dynamic CSS.
   Salient injects .wpb_text_column a { color:inherit; text-decoration:underline }
   as inline <style> after the child theme. Using body.page-id scope + !important
   is the only reliable way to win regardless of load order. */
body.page-id-967 a.btn,
body.page-id-1061 a.btn,
body.page-id-967 button.btn,
body.page-id-1061 button.btn {
  color: var(--cream) !important;
  text-decoration: none !important;
  background: var(--ink) !important;
}
body.page-id-967 a.btn-light,
body.page-id-1061 a.btn-light {
  color: var(--ink) !important;
  text-decoration: none !important;
  background: var(--cream) !important;
}

/* ===== nectar_btn — comprehensive homepage override =====
   Salient's global settings (basic-underline links, slightly_rounded_shadow,
   material skin) all fight our custom pill button. Override everything here.  */
body.page-id-967 .nectar-button,
body.page-id-1061 .nectar-button {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  border-radius: 999px !important;
  padding: 18px 30px !important;
  font-family: var(--sans) !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  letter-spacing: -0.005em !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: none !important;
  cursor: pointer !important;
  transition: transform 0.25s ease, background-color 0.25s ease !important;
  vertical-align: middle !important;
}
body.page-id-967 .nectar-button:hover,
body.page-id-1061 .nectar-button:hover {
  transform: translateY(-2px) !important;
  text-decoration: none !important;
}
/* Inner <span> and <i> — reset any stray Salient sizing */
body.page-id-967 .nectar-button span,
body.page-id-1061 .nectar-button span {
  display: inline !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: inherit !important;
  letter-spacing: inherit !important;
  line-height: inherit !important;
}
body.page-id-967 .nectar-button i,
body.page-id-1061 .nectar-button i {
  display: inline-block !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 14px !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
}

/* Remove Salient's basic-underline global style from all links in our WPBakery content.
   Salient dynamic CSS outputs: .wpb_text_column a { text-decoration: underline }
   at (0,1,1) — we need (0,2,1) to beat it. */
body.page-id-967 .wpb_text_column a,
body.page-id-1061 .wpb_text_column a {
  text-decoration: none !important;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 239, 230, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.brand {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 13px;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--blue) 0%, var(--coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-cta {
  font-size: 13px;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  transition: all 0.25s ease;
}
.nav-cta:hover { background: var(--ink); color: var(--cream); }

/* ============ HERO ============ */
.hero {
  padding: clamp(56px, 12vh, 120px) 0 clamp(48px, 10vh, 100px);
  position: relative;
  overflow: hidden;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 28px;
}
.hero-tag::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--coral);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 6.5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  max-width: 13ch;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(90deg, var(--blue) 0%, var(--coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 38ch;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 44px;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.hero-bullets li > span {
  flex: 1;
}
.hero-bullets b {
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
}
.hero-bullets li::before {
  content: "";
  width: 18px; height: 18px;
  flex-shrink: 0;
  background: var(--coral);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
  margin-top: 3px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 16px;
  padding: 18px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
  letter-spacing: -0.005em;
}
.btn:hover { background: var(--blue); transform: translateY(-2px); }
.btn .arrow {
  display: none;
  width: 16px; height: 16px;
  transition: transform 0.25s ease;
}
.btn:hover .arrow { transform: translateX(4px); }
.btn-meta {
  font-size: 13px;
  color: var(--muted);
}

/* Hero decorative element */
.hero-mark {
  position: absolute;
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  background: radial-gradient(circle at center, rgba(30, 26, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
  display: none;
}

/* ============ STORY ============ */
.story {
  padding: clamp(80px, 14vh, 140px) 0;
  background: var(--ink);
  color: var(--cream);
  position: relative;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 860px) {
  .story-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.story-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 24px;
  font-weight: 500;
}
.story h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.story h2 em {
  font-style: italic;
  background: linear-gradient(90deg, #8B89FF 0%, var(--coral-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.story p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(245, 239, 230, 0.78);
  margin-bottom: 20px;
}
.story p strong {
  color: var(--cream);
  font-weight: 500;
}

.story-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.25;
  padding-left: 28px;
  border-left: 2px solid var(--coral);
  color: var(--cream);
}

/* ============ FEATURES ============ */
.features {
  padding: clamp(80px, 14vh, 140px) 0;
}
.section-head {
  max-width: 720px;
  margin-bottom: 64px;
}
.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 18px;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.section-head h2 em {
  font-style: italic;
  color: var(--blue);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}
@media (min-width: 640px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature {
  background: var(--cream);
  padding: 36px 30px;
  transition: background 0.3s ease;
  position: relative;
}
.feature:hover { background: var(--cream-warm); }
.feature-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--coral);
  margin-bottom: 18px;
  font-weight: 400;
}
.feature h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.feature p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
}

.features-footnote {
  margin-top: 48px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  text-align: center;
  font-weight: 300;
}

/* ============ SOCIAL PROOF ============ */
.proof {
  padding: clamp(80px, 14vh, 140px) 0;
  background: var(--cream-warm);
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
}
@media (min-width: 720px) {
  .proof-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
}
.proof-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 32px 28px;
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.proof-card::before {
  content: "";
  font-family: var(--serif);
  font-size: 64px;
  line-height: 0.6;
  color: var(--coral);
  position: absolute;
  top: 24px; left: 24px;
  font-style: italic;
}
.proof-quote {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.45;
  margin: 36px 0 24px;
  font-weight: 400;
  letter-spacing: -0.005em;
  flex: 1;
}
.proof-attr {
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.proof-attr strong {
  color: var(--ink);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

.proof-placeholder-note {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* ============ FOUNDING 111 ============ */
.founding {
  padding: clamp(80px, 14vh, 140px) 0;
  background: var(--blue);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.founding::before {
  content: "111";
  position: absolute;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(280px, 50vw, 540px);
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.04);
  bottom: -80px;
  right: -40px;
  pointer-events: none;
  user-select: none;
}
.founding-inner { position: relative; z-index: 1; }
.founding-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral-soft);
  margin-bottom: 24px;
  font-weight: 500;
}
.founding h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 16ch;
}
.founding h2 em {
  font-style: italic;
  background: linear-gradient(90deg, #C9C7FF 0%, var(--coral-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.founding-lead {
  font-size: 19px;
  max-width: 50ch;
  margin-bottom: 48px;
  color: rgba(245, 239, 230, 0.85);
  line-height: 1.55;
}
.founding-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 640px;
  margin-bottom: 48px;
}
@media (min-width: 600px) { .founding-list { grid-template-columns: 1fr 1fr; } }
.founding-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
}
.founding-list li::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--coral);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}
.founding-closer {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(245, 239, 230, 0.7);
  margin-bottom: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  max-width: 50ch;
}
.btn-light {
  background: var(--cream);
  color: var(--ink);
}
.btn-light:hover { background: var(--coral); color: var(--cream); }

/* ============ HOW IT WORKS ============ */
.how {
  padding: clamp(80px, 14vh, 140px) 0;
}
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  margin-top: 56px;
}
@media (min-width: 760px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 0; }
}
.step {
  padding: 36px 30px;
  border-top: 1px solid var(--ink);
  position: relative;
}
@media (min-width: 760px) {
  .step:not(:last-child) { border-right: 1px solid var(--line-strong); }
}
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 54px;
  line-height: 1;
  color: var(--coral);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.step p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

/* ============ BOOKING ============ */
.booking {
  padding: clamp(80px, 14vh, 140px) 0;
  background: var(--cream-warm);
  text-align: center;
}
.booking h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.booking h2 em {
  font-style: italic;
  background: linear-gradient(90deg, var(--blue) 0%, var(--coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.booking p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 0 auto 40px;
}
.booking-reassurance {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
  margin-top: 28px;
}

/* ============ FAQ ============ */
.faq {
  padding: clamp(80px, 14vh, 140px) 0;
}
.faq-list {
  max-width: 780px;
  margin: 56px auto 0;
}
.faq-list details {
  border-bottom: 1px solid var(--line-strong);
  padding: 26px 0;
  cursor: pointer;
}
.faq-list details:first-child { border-top: 1px solid var(--line-strong); }
.faq-list summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(18px, 2.3vw, 22px);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s ease;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  top: 50%; left: 50%;
}
.faq-icon::before {
  width: 14px; height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 1.5px; height: 14px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.faq-list details[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-list details p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  padding-right: 40px;
}

/* ============ CLOSING ============ */
.close {
  padding: clamp(80px, 14vh, 140px) 0 clamp(60px, 10vh, 100px);
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}
.close h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.close h2 em {
  font-style: italic;
  background: linear-gradient(90deg, #8B89FF 0%, var(--coral-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.close p {
  font-size: 18px;
  color: rgba(245, 239, 230, 0.78);
  max-width: 48ch;
  margin: 0 auto 40px;
  line-height: 1.55;
}

/* ============ GROWTH ENGINE (the differentiators) ============ */
.engine {
  padding: clamp(80px, 14vh, 140px) 0;
  background: var(--cream);
  position: relative;
}

.engine-intro {
  max-width: 760px;
  margin-bottom: 72px;
}
.engine-intro h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5.5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin-bottom: 24px;
}
.engine-intro h2 em {
  font-style: italic;
  background: linear-gradient(90deg, var(--blue) 0%, var(--coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.engine-intro p {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 58ch;
}

.engine-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 48px 0;
  border-top: 1px solid var(--line-strong);
  align-items: start;
}
@media (min-width: 820px) {
  .engine-block {
    grid-template-columns: 0.8fr 1.6fr 0.9fr;
    gap: 60px;
    padding: 72px 0;
  }
}
.engine-block-visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 6px;
}
.engine-block-visual .phone {
  max-width: 220px;
}
@media (max-width: 819px) {
  .engine-block-visual { margin-top: 12px; }
  .engine-block-visual .phone { max-width: 200px; }
}

.engine-block-label {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--coral);
  position: relative;
  padding-top: 6px;
}
.engine-block-label::before {
  content: counter(engine-counter, decimal-leading-zero);
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 500;
}

.engine {
  counter-reset: engine-counter;
}
.engine-block {
  counter-increment: engine-counter;
}

.engine-block-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.8vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  color: var(--ink);
}
.engine-block-body p {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.engine-block-body p strong {
  color: var(--ink);
  font-weight: 600;
}

.engine-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.engine-pill {
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(30, 26, 255, 0.06);
  color: var(--blue);
  letter-spacing: -0.005em;
}

/* ============ PHONE / PAGE MOCKUP CARDS ============ */
/* The screenshots themselves are real product captures and already include
   the phone status bar + browser chrome. The wrapper just adds a card frame
   with rounded corners and a soft shadow — like a screenshot pasted onto a page,
   not a fake device frame. Reliable on every viewport, never collapses. */
.phone {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  /* aspect-ratio keeps the card sized correctly even before the image loads */
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 0 0 1px rgba(10, 10, 18, 0.08),
    0 24px 50px -12px rgba(10, 10, 18, 0.18),
    0 8px 16px -8px rgba(10, 10, 18, 0.12);
}
.phone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  background: #f5efe6;
}

.phone-sm { max-width: 220px; }
.phone-tilt-l { transform: rotate(-3deg); }
.phone-tilt-r { transform: rotate(3deg); }

@media (prefers-reduced-motion: reduce) {
  .phone-tilt-l, .phone-tilt-r { transform: none; }
}

@media (max-width: 640px) {
  .phone {
    max-width: 260px;
  }
  .phone-tilt-l, .phone-tilt-r {
    transform: none; /* avoid tilt on small screens for better fit */
  }
}

/* ============ HERO LAYOUT WITH PHONE ============ */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.35fr 1fr;
    gap: 60px;
  }
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
}
.hero-visual .phone {
  max-width: 300px;
  transform: rotate(-4deg);
  position: relative;
  z-index: 2;
}
.hero-visual::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 107, 92, 0.18) 0%, transparent 70%);
  z-index: 1;
}
.hero-visual::after {
  content: "AURA · YOUR ONBOARDING GUIDE";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--muted);
  white-space: nowrap;
  z-index: 3;
}

/* ============ ENGINE BLOCK WITH SCREENSHOT ============ */
.engine-block-visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 8px;
}
.engine-block-visual .phone {
  max-width: 240px;
}

@media (min-width: 820px) {
  .engine-block-with-visual {
    grid-template-columns: 0.9fr 1.6fr 1fr;
    gap: 60px;
  }
}

/* ============ BOOKING SECTION VISUALS ============ */
.booking-mockups {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 56px auto 64px;
  max-width: 720px;
}
.booking-mockups .phone {
  max-width: 200px;
}
.booking-mockups .phone:nth-child(1) { transform: rotate(-5deg) translateY(16px); }
.booking-mockups .phone:nth-child(2) { transform: rotate(0deg) translateY(-8px); z-index: 2; }
.booking-mockups .phone:nth-child(3) { transform: rotate(5deg) translateY(16px); }
@media (max-width: 640px) {
  .booking-mockups { gap: 14px; margin: 40px auto 48px; }
  .booking-mockups .phone { max-width: 140px; }
}

/* ============ AI ASSISTANT CALLOUT ============ */
.ai-callout {
  padding: clamp(60px, 10vh, 100px) 0;
  background: var(--cream);
  border-top: 1px solid var(--line-strong);
}
.ai-callout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 820px) {
  .ai-callout-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}
.ai-callout-visual {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.ai-callout-visual .phone:nth-child(1) { transform: rotate(-4deg); }
.ai-callout-visual .phone:nth-child(2) { transform: rotate(4deg) translateY(-30px); }
.ai-callout-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.ai-callout-body h3 em {
  font-style: italic;
  color: var(--blue);
}
.ai-callout-body p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.ai-callout-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 500;
  margin-bottom: 18px;
}

/* ============ DISTRIBUTION (Google + Marketplace) ============ */
.distribution {
  padding: clamp(80px, 14vh, 140px) 0;
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
}
.distribution-head {
  max-width: 760px;
  margin-bottom: 56px;
}
.distribution-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5.5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin-bottom: 22px;
}
.distribution-head h2 em {
  font-style: italic;
  background: linear-gradient(90deg, var(--blue) 0%, var(--coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.distribution-head p {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 58ch;
}

/* Google rank panels */
.google-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 72px;
}
@media (min-width: 900px) {
  .google-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
}

.google-text h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3.5vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin-bottom: 20px;
}
.google-text h3 em {
  font-style: italic;
  color: var(--coral);
}
.google-text p {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.google-text p strong {
  color: var(--ink);
  font-weight: 600;
}
.google-text .annotation {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--coral);
  margin-top: 4px;
}
.google-text .annotation::before {
  content: "→";
  font-style: normal;
  font-family: var(--sans);
}

.google-visual {
  display: flex;
  justify-content: center;
  position: relative;
}
.google-visual .phone {
  max-width: 280px;
}
.google-visual .phone-tilt-l { transform: rotate(-3deg); }
.google-visual .phone-tilt-r { transform: rotate(3deg); }

/* "highlight" badge over the booksesh result */
.google-visual .result-highlight {
  position: absolute;
  top: 52%;
  right: -8px;
  background: var(--coral);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(255, 107, 92, 0.35);
  z-index: 3;
  transform: rotate(2deg);
}
.google-visual .result-highlight::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 10px solid var(--coral);
}
@media (max-width: 640px) {
  .google-visual .result-highlight { right: 8px; font-size: 10px; padding: 6px 10px; }
}

/* Marketplace section */
.marketplace-band {
  border-top: 1px solid var(--line-strong);
  padding-top: 72px;
}
.marketplace-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .marketplace-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
  }
}
.marketplace-phones {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.marketplace-phones .phone {
  max-width: 200px;
}
.marketplace-phones .phone:nth-child(1) { transform: rotate(-3deg) translateY(8px); }
.marketplace-phones .phone:nth-child(2) { transform: rotate(3deg) translateY(-8px); }
@media (max-width: 640px) {
  .marketplace-phones .phone { max-width: 150px; }
}

/* Founding 111 emphasis upgrade */
.founding-price {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
  font-family: var(--serif);
  flex-wrap: wrap;
}
.founding-price-strike {
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(255, 138, 126, 0.7);
  color: rgba(245, 239, 230, 0.55);
}
.founding-price-now {
  font-size: 56px;
  font-weight: 400;
  background: linear-gradient(90deg, #C9C7FF 0%, var(--coral-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.025em;
  line-height: 1;
}
.founding-price-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.75);
  font-weight: 500;
}

/* ============ PRICING COMPARISON ============ */
.compare {
  padding: clamp(80px, 14vh, 140px) 0;
  background: var(--cream);
  border-top: 1px solid var(--line-strong);
  position: relative;
  overflow: hidden;
}
.compare-head {
  max-width: 760px;
  margin-bottom: 56px;
}
.compare-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5.5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin-bottom: 22px;
}
.compare-head h2 em {
  font-style: italic;
  background: linear-gradient(90deg, var(--blue) 0%, var(--coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.compare-head p {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* Scenario calculator — what £3K/mo costs you on each platform */
.scenario {
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 48px);
  margin-bottom: 64px;
  box-shadow: 0 24px 60px -24px rgba(10, 10, 18, 0.10);
}
.scenario-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.scenario-header .label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
}
.scenario-header .title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  flex: 1 1 100%;
}
.scenario-header .title em {
  font-style: italic;
  color: var(--ink-soft);
  font-weight: 400;
}
.scenario-rows {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.scenario-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.scenario-row:last-child { border-bottom: none; }
.scenario-row .platform {
  font-family: var(--sans);
  font-weight: 600;
  color: var(--ink);
}
.scenario-row .breakdown {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}
.scenario-row .cost {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 2.5vw, 28px);
  letter-spacing: -0.01em;
  text-align: right;
  color: var(--ink);
}
.scenario-row.is-winner {
  background: linear-gradient(90deg, rgba(255, 107, 92, 0.06) 0%, rgba(30, 26, 255, 0.04) 100%);
  border-radius: 12px;
  padding: 18px 16px;
  border-bottom: none;
  margin-top: 8px;
}
.scenario-row.is-winner .platform {
  color: var(--blue);
}
.scenario-row.is-winner .platform::before {
  content: "★ ";
  color: var(--coral);
}
.scenario-row.is-winner .cost {
  background: linear-gradient(90deg, var(--blue) 0%, var(--coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}
.scenario-foot {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.55;
}
@media (max-width: 640px) {
  .scenario-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 0;
  }
  .scenario-row .cost {
    text-align: left;
    font-size: 22px;
  }
}

/* Comparison table */
.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 20px;
  border: 1px solid var(--line-strong);
  background: #fff;
  margin-bottom: 48px;
  box-shadow: 0 24px 60px -24px rgba(10, 10, 18, 0.08);
}
.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14.5px;
}
.compare-table thead th {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  padding: 20px 18px;
  text-align: left;
  background: var(--cream-warm);
  border-bottom: 1px solid var(--line-strong);
  vertical-align: bottom;
}
.compare-table thead th.is-us {
  color: var(--blue);
  background: linear-gradient(180deg, rgba(30, 26, 255, 0.04) 0%, rgba(255, 107, 92, 0.03) 100%);
}
.compare-table tbody td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  line-height: 1.45;
  vertical-align: top;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody td.is-us {
  background: linear-gradient(180deg, rgba(30, 26, 255, 0.04) 0%, rgba(255, 107, 92, 0.03) 100%);
  color: var(--ink);
  font-weight: 500;
}
.compare-table tbody td.is-us strong {
  color: var(--blue);
  font-weight: 600;
}
.compare-table tbody td.row-label {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}
.compare-table .check {
  color: #15803d;
  font-weight: 600;
}
.compare-table .cross {
  color: var(--muted);
}
.compare-table-note {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

/* Feature comparison — checkmarks and crosses for what's included on each platform */
.feature-section-head {
  margin-top: 72px;
  margin-bottom: 32px;
  max-width: 680px;
}
.feature-section-head .label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 14px;
}
.feature-section-head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin-bottom: 14px;
}
.feature-section-head h3 em {
  font-style: italic;
  color: var(--coral);
}
.feature-section-head p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.feature-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14.5px;
}
.feature-table thead th {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  padding: 16px 12px;
  text-align: center;
  background: var(--cream-warm);
  border-bottom: 1px solid var(--line-strong);
  vertical-align: bottom;
}
.feature-table thead th:first-child {
  text-align: left;
  padding-left: 20px;
  width: 32%;
}
.feature-table thead th.is-us {
  color: var(--blue);
  background: linear-gradient(180deg, rgba(30, 26, 255, 0.04) 0%, rgba(255, 107, 92, 0.03) 100%);
}
.feature-table tbody td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  vertical-align: middle;
}
.feature-table tbody tr:last-child td { border-bottom: none; }
.feature-table tbody td.feat-label {
  text-align: left;
  padding-left: 20px;
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.4;
}
.feature-table tbody td.feat-label .sublabel {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
}
.feature-table tbody td.is-us {
  background: linear-gradient(180deg, rgba(30, 26, 255, 0.04) 0%, rgba(255, 107, 92, 0.03) 100%);
}
.feat-check {
  display: inline-block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  border-radius: 50%;
  background: rgba(21, 128, 61, 0.12);
  color: #15803d;
  font-size: 13px;
  font-weight: 700;
}
.feat-check.is-us-check {
  background: linear-gradient(135deg, var(--blue) 0%, var(--coral) 100%);
  color: white;
}
.feat-cross {
  display: inline-block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  border-radius: 50%;
  background: rgba(154, 152, 145, 0.10);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}
.feat-partial {
  display: inline-block;
  font-size: 12px;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.3;
  padding: 0 4px;
}
.feat-partial.is-us-partial {
  color: var(--blue);
  font-weight: 500;
}

@media (max-width: 640px) {
  .feature-table thead th { font-size: 9.5px; padding: 12px 6px; }
  .feature-table thead th:first-child { padding-left: 14px; }
  .feature-table tbody td { padding: 10px 6px; }
  .feature-table tbody td.feat-label { padding-left: 14px; font-size: 13.5px; }
  .feat-partial { font-size: 11px; }
}

/* The honest take */
.compare-honest {
  margin-top: 56px;
  padding: clamp(32px, 4vw, 56px);
  background: linear-gradient(135deg, #0A0A12 0%, #14141F 50%, #0A0A12 100%);
  color: var(--cream);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.compare-honest::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 15%, rgba(255, 107, 92, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(30, 26, 255, 0.18) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0.85;
}
.compare-honest > * { position: relative; z-index: 1; }
.compare-honest .eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral-soft);
  font-weight: 600;
  margin-bottom: 18px;
}
.compare-honest h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
  max-width: 24ch;
}
.compare-honest h3 em {
  font-style: italic;
  color: var(--coral-soft);
}
.compare-honest p {
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(245, 239, 230, 0.78);
  max-width: 64ch;
  margin-bottom: 14px;
}
.compare-honest p strong {
  color: var(--cream);
  font-weight: 600;
}

/* ============ FOOTER ============ */
.foot {
  padding: 32px 0 40px;
  background: var(--ink);
  color: rgba(245, 239, 230, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}
.foot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}


/* ============ SECTION CTA REPEATS ============ */
.section-cta {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.section-cta p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.story .section-cta p,
.founding .section-cta p,
.close .section-cta p {
  color: rgba(245, 239, 230, 0.72);
}
.booking .section-cta,
.close .section-cta,
.faq .section-cta {
  align-items: center;
}
@media(max-width:640px) {
  .section-cta {
    align-items: stretch;
  }
  .section-cta .btn {
    justify-content: center;
    width: 100%;
  }
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

#bookNowIframeContainer{
    position:fixed;inset:0;z-index:10000;
    background:rgba(0,0,0,0.75);
    display:flex;justify-content:center;align-items:center;
    opacity:0;animation:fadeIn 0.3s forwards;
  }
  @keyframes fadeIn{from{opacity:0;}to{opacity:1;}}
  @keyframes fadeOut{from{opacity:1;}to{opacity:0;}}
  #bookNowIframe{
    width:90%;max-width:960px;height:80vh;border:none;
    border-radius:12px;box-shadow:0 10px 40px rgba(0,0,0,0.35);
    background:#fff;overflow:hidden;transform:scale(0.95);
    animation:zoomIn 0.25s forwards ease-out;
  }
  @keyframes zoomIn{to{transform:scale(1);}}
  @media(max-width:1000px){
    #bookNowIframe{width:100%;height:100%;border-radius:0;box-shadow:none;transform:none;}
  }
  .closeButton{
    position:absolute;
    top:calc(10% - 20px);
    right:calc((100vw - min(90vw,960px))/2 - 20px);
    width:42px;height:42px;cursor:pointer;
    z-index:10001;background:#fff;border-radius:50%;
    padding:6px;box-shadow:0 2px 6px rgba(0,0,0,0.3);
    transition:transform 0.2s ease;
  }
  .closeButton:hover{transform:scale(1.1);}
  @media(max-width:1000px){
    .closeButton{top:15px;right:15px;}
  }
/* ── CS launcher — push above BetterDocs IA widget when both are on the page.
   :has() ensures this only fires when .betterdocs-ia-launcher-wrapper is present in the DOM.
   BetterDocs sits at bottom:20px + 48px height = ~68px. CS launcher moves to 80px to clear it. */
body:has(.betterdocs-ia-launcher-wrapper) .bksesh-cs-launcher,
body:has(.betterdocs-ia-launcher-wrapper) button#bksesh-cs-launcher {
    bottom: 80px !important;
}
