@font-face {
  font-family: "Manrope";
  src: url("/assets/brand/manrope-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --black: #070707;
  --white: #fff;
  --ivory: #f6f4ef;
  --stone: #e8e5df;
  --line: rgba(15, 15, 15, .14);
  --muted: #6f706c;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.22, .61, .36, 1);
  --header-height: 76px;
  --shell: min(1280px, calc(100vw - 40px));
  --hero-bg: #fff;
  --hero-ink: #070707;
  --page-bg: #fff;
  --page-ink: #070707;
  --header-bg: rgba(255, 255, 255, .91);
  --header-ink: #070707;
  --section-bg: #fff;
  --soft-bg: #f4f2ed;
  --final-bg: #070707;
  --final-ink: #fff;
}

html[data-theme="black"] {
  --hero-bg: #050505;
  --hero-ink: #fff;
  --page-bg: #050505;
  --page-ink: #fff;
  --header-bg: rgba(5, 5, 5, .9);
  --header-ink: #fff;
  --section-bg: #0a0a0a;
  --soft-bg: #f5f3ee;
  --final-bg: #f3f0e9;
  --final-ink: #080808;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--page-bg);
  color: var(--page-ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; }
button, a { color: inherit; -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { text-decoration: none; }
h1, h2, h3, h4, p, figure { margin: 0; }
h1, h2, h3 { text-wrap: balance; }
button:focus-visible, a:focus-visible, input:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid #4b8dff;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  background: #fff;
  color: #000;
  transform: translateY(-150%);
  transition: transform 180ms var(--ease);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  color: var(--header-ink);
  background: var(--header-bg);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background-color .35s var(--ease), border-color .35s var(--ease);
}
.site-header.is-scrolled { border-color: color-mix(in srgb, var(--header-ink) 12%, transparent); }
.header-shell {
  width: min(100% - 28px, 1440px);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
}
.brand {
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  min-height: 44px;
  transition: opacity .32s var(--ease), transform .45s var(--ease);
}
.brand img { width: 102px; height: auto; }
html[data-theme="white"] .brand img { filter: invert(1); }
.desktop-nav, .desktop-actions { display: none; }
.mobile-header-actions { grid-column: 3; display: grid; grid-template-columns: 1fr 52px; align-items: center; justify-self: end; }
.menu-button {
  grid-column: 2;
  position: relative;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: transparent;
}
.menu-button span {
  position: absolute;
  left: 14px;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  transition: transform .28s var(--ease), opacity .2s ease;
}
.menu-button span:nth-child(1) { top: 18px; }
.menu-button span:nth-child(2) { top: 25px; }
.menu-button span:nth-child(3) { top: 32px; }
.mobile-scroll-cta {
  position: fixed;
  top: 11px;
  left: 50%;
  min-width: 128px;
  height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 15px;
  background: var(--header-ink);
  color: var(--header-bg);
  font-weight: 650;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-10px) scale(.94);
  transition: opacity .28s ease, transform .42s var(--ease), background-color .3s ease, color .3s ease;
}
.site-header.is-scrolled .brand { opacity: 0; transform: translateY(8px) scale(.9); pointer-events: none; }
.site-header.is-scrolled .mobile-scroll-cta { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0) scale(1); }

.mobile-menu {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  padding: max(18px, env(safe-area-inset-top)) 26px max(22px, env(safe-area-inset-bottom));
  background: #fff;
  color: #0a0a0a;
  animation: menuIn .42s var(--ease) both;
}
.mobile-menu-top { min-height: 72px; display: grid; grid-template-columns: 52px 1fr 52px; align-items: center; }
.mobile-menu-brand { grid-column: 2; justify-self: center; width: 132px; min-height: 44px; display: flex; align-items: center; }
.mobile-menu-brand img { width: 100%; height: auto; filter: invert(1) !important; }
.menu-close { grid-column: 3; position: relative; width: 52px; height: 52px; border: 0; background: transparent; }
.menu-close span { position: absolute; left: 13px; top: 25px; width: 28px; height: 2px; background: #0a0a0a; transform: rotate(45deg); }
.menu-close span:last-child { transform: rotate(-45deg); }
.mobile-menu-links { margin-top: 36px; border-top: 1px solid #e5e5e2; }
.mobile-menu-links > a,
.mobile-accordion > button {
  width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #e5e5e2;
  background: transparent;
  color: #2a2a2a;
  font-size: clamp(28px, 8vw, 36px);
  font-weight: 450;
  text-align: left;
}
.mobile-accordion .chevron { margin-right: 8px; }
.mobile-accordion > div { padding: 4px 0 18px 18px; border-bottom: 1px solid #e5e5e2; }
.mobile-accordion > div a { min-height: 48px; display: flex; align-items: center; font-size: 17px; color: #5c5c59; }
.mobile-menu-actions { margin-top: auto; display: grid; gap: 8px; }
.mobile-login { min-height: 52px; border: 0; background: transparent; font-size: 18px; font-weight: 650; }
.chevron { width: 9px; height: 9px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .25s var(--ease); }
[aria-expanded="true"] > .chevron { transform: rotate(225deg) translate(-2px, -2px); }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 650;
  letter-spacing: -.01em;
  transition: transform .2s var(--ease), background-color .25s ease, color .25s ease, border-color .25s ease;
}
.button:active { transform: scale(.98); }
.button-dark { background: #0a0a0a; color: #fff; }
.button-light { background: #fff; color: #080808; }
.button-outline { border-color: currentColor; background: transparent; }
.button-compact { min-height: 46px; border-radius: 14px; padding-inline: 22px; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 74px) 20px 50px;
  overflow: hidden;
  background: var(--hero-bg);
  color: var(--hero-ink);
}
.hero-copy { position: relative; z-index: 4; max-width: 780px; margin: 0 auto; text-align: center; }
.eyebrow { margin-bottom: 16px; font-size: 12px; font-weight: 750; letter-spacing: .16em; line-height: 1.2; text-transform: uppercase; }
.hero h1 { max-width: 760px; margin: 0 auto; font-size: clamp(48px, 13.4vw, 84px); font-weight: 530; letter-spacing: -.065em; line-height: .97; }
.hero-lede { max-width: 640px; margin: 25px auto 0; color: color-mix(in srgb, var(--hero-ink) 68%, transparent); font-size: clamp(17px, 4.7vw, 21px); line-height: 1.55; }
.hero-actions { margin-top: 30px; display: flex; flex-direction: column; gap: 10px; }
.hero-primary { background: var(--hero-ink); color: var(--hero-bg); }
.hero-secondary { border-color: color-mix(in srgb, var(--hero-ink) 25%, transparent); }
.phone-fan { display: none; }
.hero-swipe { width: calc(100% + 40px); margin: 42px -20px 0; }
.swipe-dots { min-height: 44px; display: flex; align-items: center; justify-content: center; gap: 0; }
.swipe-dot {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}
.swipe-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: currentColor;
  opacity: .22;
  transform: translate(-50%, -50%) scaleX(1);
  transition: transform .32s var(--ease), opacity .25s ease;
}
.swipe-dot.is-active::before { opacity: .82; transform: translate(-50%, -50%) scaleX(3.333); }

.section-light { background: var(--soft-bg); color: #0a0a0a; }
.section-intro { width: var(--shell); margin: 0 auto; }
.section-intro h2 { max-width: 880px; font-size: clamp(40px, 10vw, 76px); font-weight: 520; letter-spacing: -.058em; line-height: 1.02; }
.section-intro > p:last-child, .split-intro > p { max-width: 650px; margin-top: 22px; color: #6c6b67; font-size: clamp(17px, 4.4vw, 20px); }
.centered { text-align: center; }
.centered h2, .centered > p:last-child { margin-left: auto; margin-right: auto; }

.client-experience { padding: 112px 0 96px; overflow: hidden; }
.client-carousel { margin-top: 54px; }
.loop-viewport { overflow: hidden; }
.loop-track { display: flex; align-items: center; will-change: transform; }
.experience-card {
  flex: 0 0 min(88vw, 1120px);
  min-height: 610px;
  margin: 0 8px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 32px;
  background: #dcd9d2;
  transform: scale(.94);
  opacity: .58;
  transition: transform .55s var(--ease), opacity .35s ease;
}
.experience-card.is-active { transform: scale(1); opacity: 1; }
.experience-copy { padding: 30px 28px 24px; }
.experience-copy > span { font-size: 12px; letter-spacing: .14em; }
.experience-copy h3 { margin-top: 10px; font-size: clamp(30px, 7vw, 50px); font-weight: 550; letter-spacing: -.05em; }
.experience-copy p { max-width: 560px; margin-top: 10px; color: currentColor; opacity: .66; font-size: 16px; }
.experience-black { background: #070707; color: #fff; }
.experience-stone { background: #d7d5cf; color: #080808; }
.experience-sand { background: #d9c8ad; color: #080808; }
.experience-sage { background: #cbd4ce; color: #080808; }
.experience-mist { background: #dcdbe4; color: #080808; }
.browser-mock { width: calc(100% - 40px); max-width: 760px; height: 390px; margin: 8px auto -15px; overflow: hidden; border-radius: 20px 20px 0 0; background: #fff; color: #111; box-shadow: 0 24px 70px rgba(0,0,0,.3); }
.browser-bar { height: 42px; display: flex; align-items: center; gap: 6px; padding: 0 13px; background: #f0f0ee; font-size: 10px; }
.browser-bar i { width: 7px; height: 7px; border-radius: 50%; background: #ccc; }
.browser-bar span { margin-left: auto; margin-right: auto; }
.booking-page { height: 100%; display: flex; flex-direction: column; align-items: center; padding: 34px; text-align: center; background: radial-gradient(circle at 50% 30%, #f1d9e5, #c4a3bb 75%); }
.booking-page b { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }
.booking-page h4 { max-width: 430px; margin-top: 35px; font-size: clamp(36px, 9vw, 66px); font-weight: 510; letter-spacing: -.06em; line-height: .92; }
.mock-button { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 99px; background: #111; color: #fff; padding: 0 20px; }
.booking-page .mock-button { margin-top: 34px; }
.bio-stage { display: grid; place-items: end center; padding: 10px 24px 0; }
.bio-card { width: min(340px, 88%); height: 425px; padding: 28px 22px; border-radius: 34px 34px 0 0; background: #f7f5f0; text-align: center; box-shadow: 0 24px 60px rgba(0,0,0,.18); }
.bio-avatar { width: 86px; height: 86px; margin: 0 auto 18px; border-radius: 50%; background: url("/assets/portraits/auto-detailer.webp") center 32% / cover; }
.bio-card b { font-size: 19px; }
.bio-card p { margin: 4px 0 24px; color: #76736d; font-size: 13px; }
.bio-card .mock-button { width: 100%; margin-top: 10px; background: #101010; }
.phone-stage { height: 410px; display: grid; place-items: start center; overflow: hidden; }
.phone-stage img { width: 245px; transform: translateY(8px); filter: drop-shadow(0 20px 30px rgba(0,0,0,.25)); }

.story-section { padding: 112px 0; background: var(--section-bg); color: var(--page-ink); }
.story-intro > p:last-child { color: color-mix(in srgb, var(--page-ink) 58%, transparent); }
.story-layout { width: var(--shell); margin: 60px auto 0; }
.story-visual { position: sticky; z-index: 2; top: calc(var(--header-height) + 18px); min-height: 600px; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; border-radius: 30px; background: color-mix(in srgb, var(--page-ink) 6%, var(--page-bg)); }
.story-device-wrap { width: 236px; height: 470px; overflow: hidden; }
.story-device-wrap img { width: 100%; transition: opacity .18s ease, transform .5s var(--ease); filter: drop-shadow(0 20px 26px rgba(0,0,0,.25)); }
.story-visual.is-changing img { opacity: 0; transform: translateY(14px) scale(.98); }
.story-status { position: relative; width: calc(100% - 32px); margin: 10px auto 16px; display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: center; min-height: 74px; padding: 12px 14px; border-radius: 18px; background: rgba(255,255,255,.93); color: #080808; box-shadow: 0 14px 34px rgba(0,0,0,.14); backdrop-filter: blur(14px); }
.status-icon { width: 34px; height: 34px; border-radius: 11px; background: #0b0b0b url("/assets/brand/favicon.svg") center / 17px no-repeat; }
.story-status small, .story-status strong { display: block; }
.story-status small { color: #777; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.story-status strong { margin-top: 2px; font-size: 12px; line-height: 1.35; }
.story-chapters { position: relative; z-index: 1; margin-top: 24px; }
.story-chapter { min-height: 76svh; padding: 48px 2px; opacity: .32; transition: opacity .35s ease; }
.story-chapter.is-active { opacity: 1; }
.story-chapter > span { font-size: 12px; letter-spacing: .15em; }
.story-chapter h3 { max-width: 560px; margin-top: 15px; font-size: clamp(36px, 9.5vw, 62px); font-weight: 510; letter-spacing: -.055em; line-height: 1.02; }
.story-chapter p { max-width: 520px; margin-top: 18px; color: color-mix(in srgb, var(--page-ink) 58%, transparent); font-size: 17px; }

.stories { padding: 112px 0 96px; overflow: hidden; }
.split-intro { display: grid; gap: 16px; }
.illustrative-note { width: var(--shell); margin: 12px auto 0; color: #85837e; font-size: 12px; text-align: center; }

.product-section { padding: 112px 0; background: var(--section-bg); color: var(--page-ink); }
.product-section .section-intro > p:last-child { color: color-mix(in srgb, var(--page-ink) 58%, transparent); }
.product-flow { width: var(--shell); margin: 54px auto 0; display: grid; gap: 16px; }
.product-panel { min-height: 650px; display: grid; grid-template-rows: auto 1fr; overflow: hidden; border-radius: 28px; background: color-mix(in srgb, var(--page-ink) 7%, var(--page-bg)); color: var(--page-ink); }
.product-dark { background: #0b0b0b; color: #fff; }
.product-copy { position: relative; z-index: 2; padding: 34px 28px 18px; }
.product-copy > span { font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; opacity: .55; }
.product-copy h3 { max-width: 620px; margin-top: 12px; font-size: clamp(34px, 8vw, 56px); font-weight: 510; letter-spacing: -.055em; line-height: 1.02; }
.product-copy p { max-width: 520px; margin-top: 14px; opacity: .62; font-size: 16px; }
.product-copy a { min-height: 44px; display: inline-flex; align-items: center; margin-top: 14px; border-bottom: 1px solid currentColor; font-weight: 650; }
.product-art { position: relative; min-height: 380px; overflow: hidden; }
.product-art img { position: absolute; width: 240px; filter: drop-shadow(0 24px 30px rgba(0,0,0,.25)); }
.dashboard-art img { left: 50%; top: 12px; transform: translateX(-50%); }
.quote-art img { left: 50%; top: 15px; transform: translateX(-50%) rotate(-3deg); }
.chat-art img { left: 50%; top: 15px; transform: translateX(-50%) rotate(3deg); }
.calendar-art img { left: 50%; top: 12px; transform: translateX(-50%); }
.dual-art { min-height: 430px; }
.dual-art img:first-child { left: 18%; top: 70px; transform: rotate(-5deg); }
.dual-art img:last-child { right: 16%; top: 12px; transform: rotate(4deg); }

.fit-section { position: relative; z-index: 10; padding: 112px 0; }
.fit-intro > p:last-child { max-width: 720px; }
.fit-tabs { width: var(--shell); margin: 44px auto 0; display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
.fit-tabs::-webkit-scrollbar { display: none; }
.fit-tabs button { flex: 0 0 auto; min-height: 48px; padding: 0 18px; border: 1px solid #c9c7c0; border-radius: 99px; background: transparent; color: #62615d; }
.fit-tabs button[aria-selected="true"] { background: #0a0a0a; border-color: #0a0a0a; color: #fff; }
.fit-stage { width: var(--shell); margin: 22px auto 0; display: grid; overflow: hidden; border-radius: 30px; background: #fff; box-shadow: 0 20px 60px rgba(33,31,27,.09); }
.fit-photo { min-height: 420px; overflow: hidden; }
.fit-photo img { width: 100%; height: 100%; object-fit: cover; transition: opacity .2s ease, transform .55s var(--ease); }
.fit-copy { padding: 36px 28px; }
.fit-copy > p:first-child { color: #72716c; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.fit-copy h3 { margin-top: 14px; font-size: clamp(34px, 8vw, 58px); font-weight: 510; letter-spacing: -.055em; line-height: 1.03; }
.fit-copy > p:not(:first-child) { margin-top: 18px; color: #65645f; font-size: 17px; }
.fit-copy ul { margin: 24px 0; padding: 0; list-style: none; }
.fit-copy li { min-height: 43px; display: flex; align-items: center; border-top: 1px solid #e1dfda; font-size: 14px; }
.fit-copy li::before { content: ""; width: 7px; height: 7px; margin-right: 10px; border-radius: 50%; background: #0a0a0a; }
.fit-product { display: none; }
.fit-stage.is-changing .fit-photo img { opacity: 1; transform: scale(1.01); }

.pricing-section { padding: 112px 0; background: var(--section-bg); color: var(--page-ink); }
.pricing-section .section-intro > p:last-child { color: color-mix(in srgb, var(--page-ink) 58%, transparent); }
.billing-toggle { width: max-content; margin: 36px auto 0; display: flex; padding: 4px; border-radius: 999px; background: color-mix(in srgb, var(--page-ink) 8%, var(--page-bg)); }
.billing-toggle button { min-height: 44px; padding: 0 17px; border: 0; border-radius: 999px; background: transparent; color: color-mix(in srgb, var(--page-ink) 65%, transparent); }
.billing-toggle button[aria-pressed="true"] { background: var(--page-ink); color: var(--page-bg); }
.billing-toggle span { font-size: 10px; }
.price-grid { width: var(--shell); margin: 30px auto 0; display: grid; gap: 14px; }
.price-card { min-height: 560px; display: flex; flex-direction: column; padding: 32px 28px; border: 1px solid color-mix(in srgb, var(--page-ink) 14%, transparent); border-radius: 28px; }
.price-card.featured { background: #090909; color: #fff; border-color: #090909; }
.price-card h3 { font-size: 58px; font-weight: 520; letter-spacing: -.06em; }
.price-card h3 small { font-size: 14px; font-weight: 500; letter-spacing: 0; opacity: .6; }
.price-card div > p:last-child { margin-top: 12px; opacity: .6; }
.price-card ul { margin: 30px 0; padding: 0; list-style: none; }
.price-card li { min-height: 46px; display: flex; align-items: center; border-top: 1px solid currentColor; border-color: color-mix(in srgb, currentColor 15%, transparent); }
.price-card li::before {
  content: "";
  width: 5px;
  height: 10px;
  flex: 0 0 auto;
  margin: -2px 16px 0 3px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.price-card .button { width: 100%; margin-top: auto; }

.faq-section { padding: 112px 0; }
.faq-list { width: var(--shell); margin: 44px auto 0; border-top: 1px solid #d4d1cb; }
.faq-list details { border-bottom: 1px solid #d4d1cb; }
.faq-list summary { position: relative; min-height: 82px; display: flex; align-items: center; padding: 20px 48px 20px 0; list-style: none; cursor: pointer; font-size: clamp(20px, 5vw, 28px); font-weight: 520; letter-spacing: -.025em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before, .faq-list summary::after { content: ""; position: absolute; right: 8px; width: 18px; height: 1px; background: currentColor; transition: transform .3s var(--ease); }
.faq-list summary::after { transform: rotate(90deg); }
.faq-list details[open] summary::after { transform: rotate(0); }
.faq-list details p { max-width: 720px; padding: 0 40px 26px 0; color: #66645f; }

.final-cta { padding: 110px 20px; background: var(--final-bg); color: var(--final-ink); text-align: center; }
.final-cta h2 { max-width: 850px; margin: 0 auto; font-size: clamp(46px, 11vw, 88px); font-weight: 510; letter-spacing: -.065em; line-height: .98; }
.final-cta > p:not(.eyebrow) { margin-top: 20px; opacity: .65; }
.final-cta .button { margin-top: 30px; }
html[data-theme="black"] .final-cta .button-light { background: #080808; color: #fff; }

footer { padding: 40px 20px calc(36px + env(safe-area-inset-bottom)); background: var(--final-bg); color: var(--final-ink); border-top: 1px solid color-mix(in srgb, var(--final-ink) 14%, transparent); }
.footer-brand { display: block; width: 100px; }
.footer-brand img { width: 100%; height: auto; }
html[data-theme="black"] .footer-brand img { filter: invert(1); }
.footer-links { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a, .footer-links button { min-height: 44px; display: inline-flex; align-items: center; padding: 0; border: 0; background: transparent; }
footer > p { margin-top: 42px; opacity: .48; font-size: 12px; }

.demo-dialog { width: min(560px, calc(100% - 28px)); max-height: calc(100dvh - 28px); padding: 44px 26px 28px; border: 0; border-radius: 28px; background: #fff; color: #080808; box-shadow: 0 30px 100px rgba(0,0,0,.35); }
.demo-dialog::backdrop { background: rgba(0,0,0,.64); backdrop-filter: blur(8px); }
.demo-dialog h2 { font-size: clamp(34px, 8vw, 52px); font-weight: 520; letter-spacing: -.055em; line-height: 1.03; }
.demo-dialog > p:not(.eyebrow) { margin-top: 14px; color: #66645f; }
.dialog-close { position: absolute; top: 14px; right: 14px; width: 48px; height: 48px; border: 0; background: transparent; }
.dialog-close span { position: absolute; left: 14px; top: 23px; width: 22px; height: 1.5px; background: #0a0a0a; transform: rotate(45deg); }
.dialog-close span:last-child { transform: rotate(-45deg); }
.demo-dialog form { margin-top: 26px; display: grid; gap: 16px; }
.demo-dialog label { display: grid; gap: 7px; font-size: 13px; font-weight: 650; }
.demo-dialog input { width: 100%; height: 54px; padding: 0 16px; border: 1px solid #cac8c1; border-radius: 13px; background: #f8f7f4; color: #080808; }
.toast { position: fixed; z-index: 150; left: 50%; bottom: max(20px, env(safe-area-inset-bottom)); width: max-content; max-width: calc(100% - 32px); padding: 13px 18px; border-radius: 99px; background: #111; color: #fff; box-shadow: 0 16px 38px rgba(0,0,0,.28); transform: translateX(-50%); font-size: 13px; }

[data-reveal] { opacity: 0; transform: translateY(22px); }
[data-reveal].is-visible { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .85s var(--ease); }
@keyframes menuIn { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }

@media (min-width: 700px) {
  :root { --shell: min(1280px, calc(100vw - 80px)); }
  .hero { padding-inline: 40px; }
  .hero-actions { flex-direction: row; justify-content: center; }
  .hero-actions .button { min-width: 175px; }
  .experience-card { grid-template-columns: .82fr 1.18fr; grid-template-rows: 1fr; min-height: 620px; }
  .experience-copy { padding: 48px 42px; align-self: end; }
  .browser-mock { align-self: end; width: calc(100% - 30px); height: 510px; margin: 80px 15px -20px 0; }
  .bio-stage, .phone-stage { align-self: stretch; height: auto; }
  .bio-card { height: 520px; align-self: end; }
  .phone-stage img { width: 290px; }
  .split-intro { grid-template-columns: 1.2fr .7fr; align-items: end; }
  .split-intro > p { margin: 0 0 8px; }
  .product-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-wide { grid-column: 1 / -1; min-height: 680px; grid-template-columns: .8fr 1.2fr; grid-template-rows: 1fr; }
  .product-wide .product-copy { align-self: end; padding: 54px 48px; }
  .product-wide .product-art { min-height: 680px; }
  .product-reverse .product-copy { grid-column: 2; }
  .product-reverse .product-art { grid-column: 1; grid-row: 1; }
  .product-art img { width: 290px; }
  .dual-art img:first-child { left: 22%; }
  .dual-art img:last-child { right: 20%; }
  .fit-stage { grid-template-columns: .82fr 1.18fr; }
  .fit-photo { min-height: 660px; }
  .fit-copy { padding: 60px 48px; align-self: center; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card { padding: 42px; }
  .faq-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: 60px; padding-left: max(40px, calc((100vw - 1280px) / 2)); padding-right: max(40px, calc((100vw - 1280px) / 2)); }
  .faq-section .section-intro, .faq-list { width: auto; margin: 0; }
}

@media (min-width: 960px) {
  :root { --header-height: 84px; }
  .header-shell { width: min(100% - 64px, 1520px); grid-template-columns: 190px 1fr 250px; }
  .brand { grid-column: 1; justify-self: start; width: 116px; }
  .brand img { width: 116px; }
  .site-header.is-scrolled .brand { opacity: 1; transform: none; pointer-events: auto; }
  .mobile-header-actions { display: none; }
  .desktop-nav { grid-column: 2; display: flex; align-items: center; justify-content: center; gap: clamp(20px, 2.7vw, 46px); }
  .desktop-nav > a, .nav-trigger { min-height: 48px; display: inline-flex; align-items: center; gap: 9px; border: 0; background: transparent; font-size: 14px; font-weight: 540; white-space: nowrap; }
  .nav-group { position: relative; }
  .nav-popover { position: absolute; top: calc(100% + 10px); left: 50%; width: 390px; padding: 18px; border: 1px solid rgba(20,20,20,.1); border-radius: 20px; background: #fff; color: #0a0a0a; box-shadow: 0 22px 55px rgba(0,0,0,.16); transform: translateX(-50%); }
  .nav-popover::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 16px; }
  .nav-popover > p { padding: 4px 8px 12px; color: #85827c; font-size: 10px; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
  .nav-popover a { display: grid; gap: 2px; padding: 13px 12px; border-radius: 12px; transition: background-color .2s ease; }
  .nav-popover a:hover { background: #f3f1ec; }
  .nav-popover strong { font-size: 14px; }
  .nav-popover span { color: #74716b; font-size: 12px; }
  .nav-popover-small { width: 330px; }
  .desktop-actions { grid-column: 3; display: flex; align-items: center; justify-content: flex-end; gap: 18px; }
  .text-action { min-height: 46px; padding: 0 4px; border: 0; background: transparent; font-weight: 560; }
  html[data-theme="black"] .desktop-actions .button-dark { background: #fff; color: #080808; }
  .hero { min-height: 1050px; padding-top: calc(var(--header-height) + 112px); }
  .hero h1 { font-size: 90px; }
  .phone-fan { position: relative; display: block; width: min(1100px, 88vw); height: 585px; margin: 60px auto 0; }
  .fan-phone { position: absolute; left: 50%; bottom: 2px; width: auto; animation: fanIn .92s var(--ease) both var(--delay), floatY var(--float) ease-in-out calc(var(--delay) + 1s) infinite; }
  .fan-phone img { width: auto; height: var(--height); filter: drop-shadow(0 26px 28px rgba(0,0,0,.32)); }
  .fan-reports { --height: 380px; z-index: 1; transform: translateX(calc(-50% - 340px)) translateY(-72px); }
  .fan-calendar { --height: 455px; z-index: 2; transform: translateX(calc(-50% - 178px)) translateY(-35px); }
  .fan-dashboard { --height: 530px; z-index: 4; transform: translateX(-50%); }
  .fan-inbox { --height: 455px; z-index: 2; transform: translateX(calc(-50% + 178px)) translateY(-35px); }
  .fan-clients { --height: 380px; z-index: 1; transform: translateX(calc(-50% + 340px)) translateY(-72px); }
  .hero-swipe { display: none; }
  .client-experience, .story-section, .stories, .product-section, .fit-section, .pricing-section, .faq-section { padding-top: 150px; padding-bottom: 140px; }
  .experience-card { flex-basis: min(78vw, 1180px); margin-inline: 12px; border-radius: 38px; }
  .story-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(360px, .75fr); gap: clamp(40px, 6vw, 100px); align-items: start; }
  .story-visual { top: calc(var(--header-height) + 34px); min-height: calc(100vh - var(--header-height) - 68px); }
  .story-device-wrap { width: min(290px, 34vh); height: 68vh; max-height: 620px; }
  .story-status { width: calc(100% - 68px); margin: 12px auto 22px; grid-template-columns: 42px 1fr; min-height: 82px; padding: 14px 16px; }
  .status-icon { width: 40px; height: 40px; }
  .story-status strong { font-size: 14px; }
  .story-chapters { margin: 0; }
  .story-chapters { z-index: 3; }
  .story-chapter { min-height: 78vh; display: flex; flex-direction: column; justify-content: center; }
  .product-flow { grid-template-columns: repeat(12, 1fr); gap: 18px; }
  .product-panel { grid-column: span 6; min-height: 720px; border-radius: 34px; }
  .product-wide { grid-column: 1 / -1; min-height: 740px; }
  .product-copy { padding: 46px 44px 24px; }
  .product-wide .product-copy { padding: 70px 60px; }
  .product-art img { width: 315px; }
  .product-wide .product-art img { width: 340px; }
  .fit-stage { grid-template-columns: .78fr 1.04fr .68fr; min-height: 720px; }
  .fit-product { position: relative; display: block; overflow: hidden; background: #111; }
  .fit-product img { position: absolute; width: 280px; left: 50%; top: 90px; transform: translateX(-50%); filter: drop-shadow(0 20px 30px rgba(0,0,0,.35)); }
  .fit-copy { padding: 64px 58px; }
  .final-cta { padding: 160px 20px; }
}

@media (min-width: 1320px) {
  .product-panel:nth-child(2) { grid-column: span 5; }
  .product-panel:nth-child(3) { grid-column: span 7; }
}

@keyframes fanIn {
  from { opacity: 0; margin-left: 0; filter: blur(8px); }
  to { opacity: 1; margin-left: 0; filter: blur(0); }
}
@keyframes floatY { 0%, 100% { margin-bottom: 0; } 50% { margin-bottom: 10px; } }

@media (hover: hover) and (pointer: fine) {
  .button:hover { transform: translateY(-2px); }
  .desktop-nav > a:hover, .nav-trigger:hover, .text-action:hover { opacity: .58; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-delay: 0ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* Black-only official direction — tightened against the Acuity/Mangomint references. */
:root,
html[data-theme="black"] {
  --header-height: 76px;
  --shell: min(1240px, calc(100vw - 40px));
  --hero-bg: #050505;
  --hero-ink: #fff;
  --page-bg: #050505;
  --page-ink: #fff;
  --header-bg: rgba(5, 5, 5, .88);
  --header-ink: #fff;
  --section-bg: #090909;
  --soft-bg: #f3f1ec;
  --final-bg: #f0ede6;
  --final-ink: #080808;
}

.site-header { background: var(--header-bg); }
.header-shell {
  position: relative;
  width: min(100% - 28px, 1440px);
  display: flex;
  justify-content: flex-end;
}
.brand {
  position: absolute;
  left: 0;
  width: 100px;
  transform: translateX(calc((100vw - 128px) / 2));
  transform-origin: left center;
  transition: transform .5s var(--ease), opacity .28s ease;
}
.brand img { width: 100%; transform-origin: left center; transition: transform .45s var(--ease); }
.site-header.is-scrolled .brand {
  left: 0;
  width: 100px;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.site-header.is-scrolled .brand img { transform: scale(.84); }
.mobile-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.mobile-scroll-cta {
  position: static;
  width: 0;
  min-width: 0;
  height: 44px;
  padding: 0;
  overflow: hidden;
  border-radius: 13px;
  background: #fff;
  color: #080808;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transform: translateY(-8px) scale(.94);
}
.site-header.is-scrolled .mobile-scroll-cta {
  width: 104px;
  min-width: 104px;
  padding: 0 14px;
  transform: none;
}
.menu-button { width: 44px; height: 44px; border-radius: 13px; background: rgba(255,255,255,.06); }
.menu-button span { left: 12px; width: 20px; }
.menu-button span:nth-child(1) { top: 15px; }
.menu-button span:nth-child(2) { top: 21.5px; }
.menu-button span:nth-child(3) { top: 28px; }

.hero { min-height: 100svh; padding-top: calc(var(--header-height) + 42px); }
.hero h1 {
  max-width: 690px;
  font-size: clamp(46px, 12.5vw, 64px);
  font-weight: 520;
  letter-spacing: -.04em;
  line-height: .98;
}
.hero-lede { max-width: 590px; margin-top: 22px; font-size: clamp(16px, 4.3vw, 19px); }
.hero-actions { margin-top: 26px; }
.hero-swipe { margin-top: 34px; }
.hero-swipe .loop-viewport { overflow: hidden; }
.hero-loop-track { gap: 10px; align-items: center; }
.hero-loop-slide {
  flex: 0 0 min(276px, 74vw);
  opacity: .34;
  transform: scale(.9);
  transition: opacity .4s ease, transform .55s var(--ease);
}
.hero-loop-slide.is-active { opacity: 1; transform: scale(1); }
.hero-loop-slide img { width: 100%; filter: drop-shadow(0 30px 32px rgba(0,0,0,.25)); }

@media (max-width: 699px) {
  .hero-copy { max-width: 350px; }
  .hero h1 {
    max-width: 340px;
    font-size: clamp(36px, 9.8vw, 39px);
    letter-spacing: -.038em;
    line-height: .99;
  }
  .hero-lede {
    max-width: 340px;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.52;
  }
  .hero-actions {
    margin-top: 22px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
  .hero-actions .button { min-height: 46px; padding-inline: 18px; font-size: 14px; }
  .hero-primary { min-width: 126px; border-radius: 999px; }
  .hero-secondary { min-width: 0; padding-inline: 2px; border-color: transparent; background: transparent; }
  .hero-swipe { margin-top: 30px; }
  .hero-loop-slide { flex-basis: min(248px, 67vw); }
}

.section-intro h2 {
  max-width: 760px;
  font-size: clamp(36px, 8.8vw, 60px);
  font-weight: 520;
  letter-spacing: -.04em;
  line-height: 1.04;
}
.section-intro > p:last-child,
.split-intro > p { max-width: 610px; margin-top: 18px; font-size: clamp(16px, 4vw, 18px); line-height: 1.55; }
.client-experience,
.stories,
.fit-section,
.pricing-section,
.faq-section { padding-top: 104px; padding-bottom: 96px; }
.experience-card { border-radius: 20px; }
.experience-copy h3 { font-size: clamp(30px, 7vw, 46px); letter-spacing: -.04em; }

/* The journey heading stays centered while the workflow changes. */
.story-section { position: relative; padding: 0 0 110px; background: #050505; color: #fff; }
.story-intro {
  position: sticky;
  z-index: 8;
  top: calc(var(--header-height) + 10px);
  padding: 26px 20px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: #050505;
  transition: opacity .28s ease, transform .36s var(--ease);
}
.story-section.is-exiting .story-intro { opacity: 0; transform: translateY(-18px); pointer-events: none; }
.story-intro > p:last-child { display: none; }
.story-intro h2,
.story-intro > p:last-child { margin-left: auto; margin-right: auto; }
.story-intro h2 { font-size: clamp(34px, 8.2vw, 58px); }
.story-layout { margin-top: 30px; }
.story-visual {
  top: calc(var(--header-height) + 124px);
  min-height: 620px;
  justify-content: center;
  padding: 24px 14px 20px;
  border-radius: 18px;
  border: 1px solid rgba(8,8,8,.08);
  background: #f7f6f2;
}
.story-device-wrap { width: min(54vw, 210px); height: auto; aspect-ratio: 875 / 1800; }
.story-device-wrap img { filter: drop-shadow(0 16px 22px rgba(0,0,0,.2)); }
.story-status {
  width: min(100% - 32px, 390px);
  margin: 8px auto 10px;
  border: 1px solid rgba(8,8,8,.09);
  border-radius: 14px;
  background: #e9e7e1;
  box-shadow: none;
  backdrop-filter: none;
}
.story-active-copy { width: min(100% - 24px, 430px); margin: 4px auto 0; color: #080808; }
.story-active-copy > span { color: rgba(8,8,8,.45); font-size: 11px; }
.story-active-copy h3 { margin-top: 7px; font-size: 27px; font-weight: 520; letter-spacing: -.035em; line-height: 1.05; }
.story-active-copy p { margin-top: 8px; color: rgba(8,8,8,.58); font-size: 14px; line-height: 1.45; }
.story-chapters { margin-top: 0; }
.story-chapter {
  min-height: 72svh;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.story-section .story-chapter p { color: rgba(255,255,255,.58); }

@media (max-width: 959px) {
  .story-visual { --story-exit-lift: 112px; transition: opacity .24s ease, transform .42s var(--ease); }
  .story-section.is-exiting .story-visual { opacity: 0; transform: translateY(calc(var(--story-exit-lift) * -1)); }
}

/* Truthful local review placeholders use three clean, continuous rows. */
.stories { position: relative; z-index: 10; overflow: hidden; background: #f3f1ec; color: #080808; }
.member-intro h2 { max-width: 720px; }
.stories .member-intro > .illustrative-note:last-child { max-width: 580px; margin-left: auto; margin-right: auto; color: #6d6b66; font-size: 13px; line-height: 1.5; }
.stories .member-intro > .review-placeholder-note:last-child { max-width: 650px; margin: 14px auto 0; color: #6d6b66; font-size: 13px; line-height: 1.5; }
.review-marquee { margin-top: 42px; display: grid; gap: 12px; }
.review-row { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.review-track { width: max-content; display: flex; animation: reviewLeft 42s linear infinite; will-change: transform; }
.review-row-reverse .review-track { animation-name: reviewRight; animation-duration: 46s; }
.review-group { display: flex; flex-shrink: 0; gap: 12px; padding-right: 12px; }
.review-card {
  flex: 0 0 280px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(8,8,8,.06);
  border-radius: 16px;
  background: #e4e9e5;
  color: #080808;
}
.review-stars { width: 104px; height: 20px; display: block; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 104 20'%3E%3Cg id='s'%3E%3Cpath d='M10 1.4l2.62 5.31 5.86.85-4.24 4.13 1 5.84L10 14.77l-5.24 2.76 1-5.84-4.24-4.13 5.86-.85L10 1.4z'/%3E%3C/g%3E%3Cuse href='%23s' transform='translate(21 0)'/%3E%3Cuse href='%23s' transform='translate(42 0)'/%3E%3Cuse href='%23s' transform='translate(63 0)'/%3E%3Cuse href='%23s' transform='translate(84 0)'/%3E%3C/svg%3E") center / contain no-repeat; }
.review-card p { margin-top: 18px; font-size: 15px; font-weight: 590; line-height: 1.38; }
.review-card small { margin-top: auto; padding-top: 24px; display: grid; gap: 2px; color: #6f716e; font-size: 11px; line-height: 1.3; }
.review-card small strong { color: #080808; font-size: 11px; font-weight: 700; }
.review-card small span { color: #6f716e; font-size: 10px; }

/* Native swipe rail: large claims, real Marlo UI, one animated proof per card. */
.product-section { position: relative; height: auto; padding: 104px 0 96px; background: #050505; color: #fff; }
.product-sticky {
  position: relative;
  top: auto;
  height: auto;
  display: block;
  overflow: hidden;
  padding: 0;
}
.product-intro h2 { font-size: clamp(32px, 7.7vw, 52px); }
.product-intro > p:last-child { max-width: 600px; color: rgba(255,255,255,.55); }
.product-loop-viewport {
  min-height: 0;
  margin-top: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
  outline-offset: -4px;
  touch-action: pan-y;
  cursor: grab;
}
.product-loop-viewport:active { cursor: grabbing; }
.product-loop-track { display: flex; align-items: center; gap: 12px; width: max-content; will-change: transform; }
.feature-panel {
  position: relative;
  flex: 0 0 min(82vw, 840px);
  height: min(56svh, 600px);
  min-height: 410px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border-radius: 20px;
  color: #0a0a0a;
  transform: scale(.975);
  transition: transform .55s var(--ease);
}
.feature-panel.is-active { transform: scale(1); }
.feature-ivory { background: #ece8df; }
.feature-stone { background: #d6d3cc; }
.feature-black { background: #121212; color: #fff; }
.feature-taupe { background: #c7baa8; }
.feature-white { background: #f6f5f1; }
.feature-copy { position: relative; z-index: 3; padding: 26px 24px 14px; }
.feature-copy > p { font-size: 13px; font-weight: 650; }
.feature-copy h3 { max-width: 570px; margin-top: 8px; font-size: clamp(32px, 8vw, 48px); font-weight: 520; letter-spacing: -.04em; line-height: 1.01; }
.feature-copy > span { display: block; max-width: 520px; margin-top: 12px; color: currentColor; opacity: .62; font-size: 15px; line-height: 1.48; }
.feature-visual { position: relative; min-height: 0; overflow: hidden; }
.feature-visual > img { position: absolute; left: 50%; top: 2px; width: 230px; transform: translateX(-50%); filter: drop-shadow(0 22px 30px rgba(0,0,0,.26)); }
.screen-frame { position: absolute; left: 50%; top: 8px; width: 230px; height: 470px; overflow: hidden; border: 8px solid #0b0b0b; border-radius: 42px; background: #0b0b0b; transform: translateX(-50%); box-shadow: 0 22px 34px rgba(0,0,0,.3); }
.screen-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 32px; }
.live-notification {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 16px;
  width: min(calc(100% - 28px), 360px);
  min-height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 13px 16px 13px 52px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  color: #080808;
  box-shadow: 0 18px 42px rgba(0,0,0,.2);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  animation: notificationBreathe 4.8s var(--ease-soft) infinite;
}
.live-notification::before { content: ""; position: absolute; left: 14px; width: 28px; height: 28px; border-radius: 9px; background: #0a0a0a url("/assets/brand/favicon.svg") center / 14px no-repeat; }
.live-notification b { font-size: 13px; }
.live-notification span { margin-top: 2px; color: #696762; font-size: 11px; }
.feature-panel:nth-child(2n) .live-notification { animation-delay: -1.3s; }
.feature-panel:nth-child(3n) .live-notification { animation-delay: -2.4s; }
.product-dots { margin-top: 26px; color: #fff; }

/* Exact three-part discovery stage: image, story, product proof. */
.fit-intro { text-align: center; }
.fit-intro h2,
.fit-intro > p:last-child { margin-left: auto; margin-right: auto; }
.fit-tabs {
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 34px;
  overflow: visible;
}
.fit-tabs button { width: 100%; min-width: 0; padding-inline: 10px; border-radius: 14px; }
.fit-stage { border-radius: 18px; }
.fit-photo,
.fit-copy,
.fit-product { min-height: 430px; }
.fit-copy { min-height: 522px; display: flex; flex-direction: column; justify-content: center; padding: 38px 28px; }
.fit-copy > p.fit-label { color: #72716c; font-size: 13px; font-weight: 650; letter-spacing: 0; text-transform: none; }
.fit-copy h3 { margin-top: 12px; font-size: clamp(32px, 7.8vw, 48px); letter-spacing: -.04em; }
.fit-product { position: relative; display: block; overflow: hidden; background: #111; }
.fit-product img {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  width: auto;
  height: calc(100% - 40px);
  max-width: calc(100% - 40px);
  object-fit: contain;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.35));
}

.plan-name,
.dialog-label { margin-bottom: 10px; font-size: 14px; font-weight: 700; }
.pricing-section { background: #050505; color: #fff; }
.pricing-section .section-intro > p:last-child { color: rgba(255,255,255,.58); }
.price-grid { max-width: 1120px; }
.price-card {
  min-height: 540px;
  padding: 30px 28px;
  border-color: rgba(255,255,255,.14);
  border-radius: 20px;
  background: #101010;
  color: #fff;
}
.price-card.featured { border-color: transparent; background: #efebe2; color: #080808; }
.plan-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.plan-heading > span { min-height: 28px; display: inline-flex; align-items: center; padding: 0 11px; border: 1px solid currentColor; border-color: color-mix(in srgb, currentColor 18%, transparent); border-radius: 999px; font-size: 11px; font-weight: 650; }
.price-card h3 { margin-top: 22px; font-size: clamp(50px, 12vw, 66px); letter-spacing: -.055em; }
.billing-note { margin-top: 7px; font-size: 12px; opacity: 1; }
.billing-note + p { max-width: 470px; margin-top: 22px !important; line-height: 1.5; }
.price-card li { min-height: 48px; }
.price-card.featured .button-light { background: #080808; color: #fff; }
.billing-toggle { border-color: rgba(255,255,255,.14); background: #101010; }
.billing-toggle button { color: rgba(255,255,255,.58); }
.billing-toggle button[aria-pressed="true"] { background: #fff; color: #080808; }
.faq-section { display: block; padding: 84px 0 72px; }
.faq-shell { width: var(--shell); margin: 0 auto; }
.faq-section .section-intro { width: auto; }
.faq-section .section-intro h2 { font-size: clamp(40px, 9.8vw, 58px); }
.faq-section .section-intro > p:last-child { margin-top: 12px; font-size: 15px; }
.faq-list { width: auto; margin: 34px 0 0; }
.faq-list summary { min-height: 72px; font-size: clamp(19px, 5vw, 24px); }

.final-cta { padding: 18px 20px 72px; background: #f3f0e9; color: #080808; text-align: left; }
.final-cta-panel {
  width: var(--shell);
  min-height: 330px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
  padding: 34px 28px 28px;
  border-radius: 20px;
  background: #050505;
  color: #fff;
}
.final-cta h2 { max-width: 720px; margin: 0; font-size: clamp(40px, 10.4vw, 58px); letter-spacing: -.04em; line-height: 1.01; }
.final-cta-panel p { max-width: 460px; margin-top: 16px; color: rgba(255,255,255,.58); }
.final-cta .button { min-width: 160px; margin: 0; }
html[data-theme="black"] .final-cta .button-light { background: #fff; color: #080808; }
.demo-dialog > p:not(.dialog-label) { margin-top: 14px; color: #66645f; }

/* Acuity-inspired information architecture, translated into Marlo's black system. */
.site-footer { padding: 48px 20px calc(28px + env(safe-area-inset-bottom)); background: #050505; color: #fff; border-top: 0; }
.footer-lead { width: var(--shell); margin: 0 auto; display: grid; gap: 20px; align-items: end; padding-bottom: 38px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-lead p { max-width: 420px; margin: 0; color: rgba(255,255,255,.56); font-size: 15px; line-height: 1.55; }
.footer-grid { width: var(--shell); margin: 38px auto 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 24px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; }
.footer-column h2 { margin-bottom: 12px; font-size: 13px; font-weight: 700; }
.footer-column a,
.footer-column button { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; padding: 0; border: 0; background: transparent; color: rgba(255,255,255,.62); text-align: left; transition: color .2s ease; }
.footer-bottom { width: var(--shell); margin: 44px auto 0; display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-brand { width: 112px; min-height: 44px; display: inline-flex; align-items: center; }
html[data-theme="black"] .footer-brand img { filter: none; }
.footer-bottom > p { margin: 0; color: rgba(255,255,255,.38); font-size: 11px; }
.footer-socials { display: flex; gap: 8px; justify-self: end; }
.footer-socials a { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.footer-socials svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.footer-socials a:last-child svg { fill: currentColor; stroke: none; }

@keyframes notificationBreathe {
  0%, 100% { opacity: .78; transform: translateX(-50%) translateY(8px) scale(.985); }
  18%, 72% { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

@keyframes reviewLeft {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * var(--review-cycle))); }
}

@keyframes reviewRight {
  from { transform: translateX(calc(-1 * var(--review-cycle))); }
  to { transform: translateX(0); }
}

@media (min-width: 700px) {
  :root,
  html[data-theme="black"] { --shell: min(1240px, calc(100vw - 80px)); }
  .faq-section { display: block; padding-left: 0; padding-right: 0; }
  .review-card { flex-basis: 300px; min-height: 200px; padding: 24px; }
  .feature-panel { flex-basis: min(74vw, 900px); grid-template-columns: .78fr 1.22fr; grid-template-rows: 1fr; }
  .feature-copy { align-self: center; padding: 46px 40px; }
  .feature-visual > img { width: 300px; }
  .screen-frame { width: 292px; height: 580px; }
  .fit-stage { grid-template-columns: repeat(3, minmax(0, 1fr)); min-height: 640px; }
  .fit-photo,
  .fit-copy,
  .fit-product { min-height: 640px; }
  .fit-photo,
  .fit-copy { border-right: 1px solid #e1dfda; }
  .fit-product img { height: calc(100% - 60px); max-width: calc(100% - 54px); }
  .fit-tabs { max-width: 920px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer-lead { grid-template-columns: 1fr auto; }
  .footer-lead p { text-align: right; }
  .footer-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 32px; }
  .footer-bottom { grid-template-columns: 1fr auto; }
}

@media (min-width: 960px) {
  :root,
  html[data-theme="black"] { --header-height: 82px; }
  .header-shell { width: min(100% - 64px, 1520px); display: grid; grid-template-columns: 190px 1fr 250px; }
  .mobile-header-actions { display: none; }
  .brand,
  .site-header.is-scrolled .brand { position: static; grid-column: 1; justify-self: start; width: 112px; transform: none; }
  .site-header.is-scrolled .brand img { transform: none; }
  .desktop-nav { grid-column: 2; }
  .desktop-actions { grid-column: 3; }
  .hero { min-height: 940px; padding-top: calc(var(--header-height) + 70px); }
  .hero h1 { max-width: 650px; font-size: 64px; }
  .hero-lede { max-width: 560px; margin-top: 20px; font-size: 17px; }
  .hero-actions { margin-top: 22px; }
  .hero-actions .button { min-width: 160px; min-height: 48px; }
  .phone-fan { height: 520px; margin-top: 50px; }
  .fan-reports { --height: 340px; transform: translateX(calc(-50% - 320px)) translateY(-65px); }
  .fan-calendar { --height: 410px; transform: translateX(calc(-50% - 168px)) translateY(-28px); }
  .fan-dashboard { --height: 480px; }
  .fan-inbox { --height: 410px; transform: translateX(calc(-50% + 168px)) translateY(-28px); }
  .fan-clients { --height: 340px; transform: translateX(calc(-50% + 320px)) translateY(-65px); }
  .client-experience,
  .stories,
  .fit-section,
  .pricing-section,
  .faq-section { padding-top: 132px; padding-bottom: 122px; }
  .story-section { padding-bottom: 130px; }
  .story-intro { position: relative; top: auto; padding-top: 30px; border: 0; background: transparent; }
  .story-section.is-exiting .story-intro { opacity: 1; transform: none; }
  .story-intro > p:last-child { display: none; }
  .story-layout { grid-template-columns: minmax(0, .92fr) minmax(360px, .74fr); margin-top: 40px; }
  .story-visual { top: calc(var(--header-height) + 24px); min-height: calc(100vh - var(--header-height) - 48px); justify-content: center; padding: 26px 18px; }
  .story-device-wrap { width: min(330px, 34vh); height: auto; aspect-ratio: 875 / 1800; }
  .story-status { width: min(440px, calc(100% - 56px)); margin-top: 12px; }
  .story-active-copy { display: none; }
  .story-chapters { margin: 0; }
  .story-chapter { min-height: 76vh; display: flex; flex-direction: column; justify-content: center; padding: 48px 2px; visibility: visible; opacity: .28; pointer-events: auto; }
  .story-chapter.is-active { opacity: 1; }
  .story-chapter h3 { font-size: clamp(36px, 4.2vw, 54px); letter-spacing: -.04em; }
  .feature-panel { flex-basis: min(66vw, 900px); height: min(58svh, 580px); border-radius: 22px; }
  .feature-copy { padding: 60px 54px; }
  .feature-copy h3 { font-size: 52px; }
  .feature-visual > img { width: min(330px, 30vw); }
  .product-loop-track { gap: 18px; }
  .fit-section { padding-top: 132px; }
  .fit-sticky-head {
    position: relative;
    z-index: auto;
    top: auto;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .fit-stage { margin-top: 28px; }
  .fit-copy { padding: 54px 44px; }
  .fit-copy h3 { font-size: clamp(38px, 3.6vw, 52px); }
  .faq-shell { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); gap: clamp(56px, 7vw, 110px); align-items: start; }
  .faq-section { padding-top: 104px; padding-bottom: 96px; }
  .faq-list { margin-top: 0; }
  .final-cta { padding: 20px 40px 84px; }
  .final-cta-panel { min-height: 310px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; padding: 52px 56px; border-radius: 24px; }
  .final-cta h2 { font-size: clamp(50px, 5vw, 68px); }
  .site-footer { padding-top: 56px; }
}

@media (max-width: 699px) and (max-height: 740px) {
  .story-intro { padding-top: 16px; padding-bottom: 16px; }
  .story-intro h2 { font-size: 31px; }
  .story-visual { --story-exit-lift: 90px; top: calc(var(--header-height) + 102px); min-height: 484px; padding-bottom: 14px; }
  .story-device-wrap { width: 150px; height: auto; aspect-ratio: 875 / 1800; }
  .story-status { min-height: 62px; margin-top: -6px; }
  .story-active-copy h3 { font-size: 23px; }
  .story-active-copy p { font-size: 12px; }
  .product-intro > p:last-child { display: none; }
  .feature-panel { min-height: 370px; height: 57svh; }
  .feature-copy { padding-top: 20px; }
  .feature-copy h3 { font-size: 29px; }
  .feature-copy > span { font-size: 13px; }
  .feature-visual > img { width: 190px; }
  .screen-frame { width: 190px; height: 385px; }
}

@media (hover: hover) and (pointer: fine) {
  .footer-column a:hover,
  .footer-column button:hover { color: #fff; }
  .footer-socials a:hover { background: #fff; color: #080808; }
}

@media (prefers-reduced-motion: reduce) {
  .live-notification { animation: none; opacity: 1; }
  .review-track { animation: none; }
  .product-loop-track { transition: none !important; }
}

/* Viewport-aware section sizing without scroll interception. */
:root {
  --snap-frame: 100svh;
  --snap-pad-top: calc(var(--header-height) + 26px);
}

html.js {
  scroll-snap-type: none;
  overscroll-behavior-y: auto;
}

.snap-stop {
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

main > section { min-height: var(--snap-frame); }

.hero {
  height: var(--snap-frame);
  min-height: var(--snap-frame);
  padding-top: calc(var(--header-height) + 34px);
  padding-bottom: 18px;
}

.client-experience,
.stories,
.product-section,
.faq-section,
.final-cta {
  min-height: var(--snap-frame);
}

.client-experience,
.stories,
.product-section,
.faq-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--snap-pad-top);
  padding-bottom: 24px;
}

.client-carousel { margin-top: 24px; }
.experience-card { height: clamp(340px, 52svh, 560px); min-height: 0; }
.client-carousel .swipe-dots { min-height: 40px; }

.story-section { min-height: auto; padding-bottom: 0; }
.story-chapter { min-height: var(--snap-frame); }

.stories .review-marquee { margin-top: 28px; }
.review-card { min-height: 170px; }

.product-section { padding-top: var(--snap-pad-top); padding-bottom: 24px; }
.product-sticky { width: 100%; }
.product-loop-viewport { margin-top: 24px; }
.feature-panel { height: clamp(330px, 50svh, 520px); min-height: 0; }
.product-dots { margin-top: 10px; }

.fit-section { min-height: var(--snap-frame); }

.pricing-section { min-height: var(--snap-frame); }
.pricing-head { display: contents; }

.faq-shell { width: var(--shell); }

.final-cta {
  display: flex;
  align-items: center;
  padding-top: var(--snap-pad-top);
  padding-bottom: 30px;
}

.site-footer.snap-stop { scroll-snap-align: none; }

@media (max-width: 959px) {
  .story-intro {
    top: var(--header-height);
    padding-top: 48px;
    padding-bottom: 20px;
  }
  .story-layout { margin-top: 18px; }
  .story-visual {
    top: calc(var(--header-height) + 94px);
    min-height: calc(var(--snap-frame) - var(--header-height) - 106px);
  }
  .story-chapter { min-height: var(--snap-frame); }

  .fit-section { min-height: auto; padding: 0; }
  .fit-sticky-head {
    min-height: var(--snap-frame);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--snap-pad-top) 20px 28px;
  }
  .fit-sticky-head .section-intro,
  .fit-sticky-head .fit-tabs { width: 100%; }
  .fit-stage {
    width: 100%;
    margin: 0;
    display: block;
    overflow: visible;
    border-radius: 0;
    box-shadow: none;
  }
  .fit-photo,
  .fit-copy,
  .fit-product {
    width: 100%;
    height: var(--snap-frame);
    min-height: var(--snap-frame);
  }
  .fit-photo img { object-position: center; }
  .fit-photo img { height: var(--snap-frame); }
  .fit-copy {
    justify-content: center;
    padding: var(--snap-pad-top) max(28px, 8vw) 34px;
  }
  .fit-product img {
    height: calc(100% - var(--header-height) - 54px);
    max-width: calc(100% - 48px);
  }
}

@media (max-width: 699px) {
  .hero-copy { max-width: 342px; }
  .hero-swipe { margin-top: 22px; }
  .hero-loop-slide { flex-basis: min(206px, 56vw); }

  .client-experience { padding-top: calc(var(--header-height) + 18px); padding-bottom: 14px; }
  .client-experience .section-intro h2 { font-size: clamp(32px, 8.5vw, 38px); }
  .client-experience .section-intro > p:last-child { margin-top: 12px; font-size: 14px; }
  .client-carousel { margin-top: 18px; }
  .experience-card {
    height: clamp(340px, 52svh, 460px);
    grid-template-rows: auto minmax(0, 1fr);
  }
  .experience-copy { padding: 18px 20px 14px; }
  .experience-copy h3 { margin-top: 6px; font-size: 27px; }
  .experience-copy p { margin-top: 6px; font-size: 13px; line-height: 1.42; }
  .browser-mock { width: calc(100% - 28px); height: 100%; margin: 0 auto -8px; }
  .browser-bar { height: 30px; }
  .booking-page { padding: 20px; }
  .booking-page h4 { margin-top: 20px; font-size: 38px; }
  .booking-page .mock-button { margin-top: 22px; }
  .bio-stage { min-height: 0; padding-top: 0; }
  .bio-card { height: 100%; max-height: 310px; padding: 18px; }
  .bio-avatar { width: 62px; height: 62px; margin-bottom: 10px; }
  .bio-card p { margin-bottom: 12px; }
  .bio-card .mock-button { min-height: 38px; margin-top: 6px; }
  .phone-stage { height: 100%; }
  .phone-stage img { width: min(185px, 48vw); }

  .story-intro h2 { max-width: 345px; font-size: clamp(32px, 8.4vw, 38px); }
  .story-device-wrap { width: min(48vw, 188px); }
  .story-active-copy h3 { font-size: 25px; }

  .stories { padding-top: 18px; padding-bottom: 18px; }
  .stories .section-intro h2 { font-size: 36px; }
  .stories .member-intro > .illustrative-note:last-child { margin-top: 10px; font-size: 11px; }
  .stories .member-intro > .review-placeholder-note:last-child { max-width: 320px; margin-top: 10px; font-size: 10px; line-height: 1.45; }
  .stories .review-marquee { margin-top: 20px; gap: 8px; }
  .review-group { gap: 8px; padding-right: 8px; }
  .review-card { flex-basis: 252px; min-height: 146px; padding: 18px; }
  .review-card p { margin-top: 12px; font-size: 13px; }
  .review-card small { padding-top: 14px; }

  .product-section { padding-top: calc(var(--header-height) + 16px); padding-bottom: 12px; }
  .product-intro h2 { font-size: 32px; }
  .product-intro > p:last-child { margin-top: 10px; font-size: 14px; }
  .product-loop-viewport { margin-top: 18px; }
  .feature-panel { height: clamp(320px, 48svh, 410px); }
  .feature-copy { padding: 20px 20px 10px; }
  .feature-copy h3 { font-size: 29px; }
  .feature-copy > span { margin-top: 8px; font-size: 13px; }
  .feature-visual > img { width: min(210px, 54vw); }
  .screen-frame { width: min(210px, 54vw); height: 430px; }
  .live-notification { bottom: 10px; min-height: 62px; }
  .product-dots { margin-top: 0; }

  .fit-sticky-head { padding-top: calc(var(--header-height) + 22px); }
  .fit-intro h2 { font-size: clamp(32px, 8.2vw, 38px); }
  .fit-intro > p:last-child { margin-top: 14px; font-size: 14px; }
  .fit-tabs { margin-top: 24px; }
  .fit-copy h3 { font-size: clamp(34px, 9vw, 42px); }

  .pricing-section { min-height: auto; padding: 0; }
  .pricing-head {
    min-height: var(--snap-frame);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--snap-pad-top) 20px 28px;
  }
  .pricing-head .section-intro { width: 100%; }
  .pricing-head .section-intro h2 { font-size: clamp(34px, 9vw, 42px); }
  .pricing-head .billing-toggle { margin-top: 28px; }
  .price-grid { width: 100%; margin: 0; display: block; }
  .price-card {
    min-height: var(--snap-frame);
    justify-content: center;
    padding: calc(var(--header-height) + 34px) 28px 32px;
    border-width: 0 0 1px;
    border-radius: 0;
  }
  .price-card h3 { margin-top: 14px; }
  .price-card ul { margin: 22px 0; }
  .price-card li { min-height: 44px; }

  .faq-section { padding-top: calc(var(--header-height) + 18px); padding-bottom: 20px; }
  .faq-section .section-intro h2 { font-size: 36px; }
  .faq-list { margin-top: 22px; }
  .faq-list summary { min-height: 64px; font-size: 18px; }

  .final-cta { padding: calc(var(--header-height) + 18px) 20px 24px; }
  .final-cta-panel { min-height: min(54svh, 420px); justify-content: center; }
}

@media (min-width: 700px) {
  .experience-card { height: clamp(440px, 56svh, 580px); min-height: 0; }
  .price-card { min-height: clamp(400px, 45svh, 470px); }
}

@media (min-width: 960px) {
  .hero {
    height: var(--snap-frame);
    min-height: var(--snap-frame);
    padding-top: calc(var(--header-height) + 48px);
    padding-bottom: 18px;
  }
  .phone-fan { height: min(47svh, 450px); margin-top: 34px; }
  .fan-reports { --height: min(32svh, 320px); }
  .fan-calendar { --height: min(38svh, 380px); }
  .fan-dashboard { --height: min(44svh, 440px); }
  .fan-inbox { --height: min(38svh, 380px); }
  .fan-clients { --height: min(32svh, 320px); }

  .client-experience,
  .stories,
  .product-section,
  .faq-section {
    height: var(--snap-frame);
    min-height: var(--snap-frame);
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 22px;
  }
  .stories { padding-top: 22px; padding-bottom: 22px; }
  .experience-card { height: min(56svh, 560px); }
  .experience-copy { padding: 38px 40px; }
  .browser-mock { height: calc(100% - 70px); margin-top: 70px; }

  .story-intro {
    padding-top: calc(var(--header-height) + 52px);
    padding-bottom: 18px;
  }
  .story-layout { margin-top: 24px; }
  .story-visual {
    top: calc(var(--header-height) + 20px);
    min-height: calc(var(--snap-frame) - var(--header-height) - 40px);
  }
  .story-chapter { min-height: var(--snap-frame); padding-block: 38px; }

  .feature-panel { height: min(50svh, 500px); }
  .feature-copy { padding: 42px 44px; }
  .feature-copy h3 { font-size: 46px; }

  .fit-section {
    height: var(--snap-frame);
    min-height: var(--snap-frame);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--header-height) + 18px) 0 24px;
  }
  .fit-intro h2 { font-size: clamp(38px, 4vw, 52px); }
  .fit-intro > p:last-child { margin-top: 12px; font-size: 16px; }
  .fit-tabs { margin-top: 22px; }
  .fit-stage {
    height: min(56svh, 560px);
    min-height: 0;
    margin-top: 20px;
  }
  .fit-photo,
  .fit-copy,
  .fit-product { min-height: 0; height: 100%; }
  .fit-copy { min-height: 0; padding: 34px 36px; }
  .fit-copy h3 { font-size: clamp(34px, 3vw, 44px); }
  .fit-copy > p:not(:first-child) { margin-top: 12px; font-size: 15px; }
  .fit-copy ul { margin: 18px 0; }
  .fit-copy li { min-height: 38px; }
  .fit-product img {
    top: 50%;
    bottom: auto;
    height: calc(100% - 72px);
    width: auto;
    transform: translate(-50%, -50%);
  }

  .pricing-section {
    height: var(--snap-frame);
    min-height: var(--snap-frame);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--header-height) + 16px) 0 22px;
  }
  .pricing-head { display: block; }
  .pricing-section .section-intro h2 { font-size: clamp(38px, 4vw, 52px); }
  .pricing-section .section-intro > p:last-child { margin-top: 12px; font-size: 16px; }
  .billing-toggle { margin-top: 20px; }
  .price-grid { margin-top: 20px; }
  .price-card { min-height: min(45svh, 450px); padding: 28px 34px; }
  .price-card h3 { margin-top: 10px; font-size: 54px; }
  .billing-note + p { margin-top: 12px !important; font-size: 14px; }
  .price-card ul { margin: 18px 0; }
  .price-card li { min-height: 40px; }

  .faq-section { justify-content: center; }
  .final-cta { height: var(--snap-frame); }
  .final-cta-panel { min-height: min(48svh, 420px); }
}

@media (max-width: 699px) and (max-height: 740px) {
  .hero { padding-top: calc(var(--header-height) + 18px); }
  .hero h1 { font-size: 34px; }
  .hero-lede { margin-top: 12px; font-size: 13px; }
  .hero-actions { margin-top: 14px; }
  .hero-swipe { margin-top: 12px; }
  .hero-loop-slide { flex-basis: 150px; }

  .client-experience { padding-top: calc(var(--header-height) + 10px); padding-bottom: 8px; }
  .client-experience .section-intro h2 { font-size: 30px; }
  .client-experience .section-intro > p:last-child { display: none; }
  .client-carousel { margin-top: 10px; }
  .experience-card { height: 340px; }
  .client-carousel .swipe-dots { min-height: 36px; }

  .story-intro { padding-top: 20px; padding-bottom: 14px; }
  .story-intro h2 { font-size: 29px; }
  .story-visual {
    top: calc(var(--header-height) + 68px);
    min-height: calc(var(--snap-frame) - var(--header-height) - 86px);
  }
  .story-device-wrap { width: 130px; }
  .story-status { min-height: 58px; }
  .story-active-copy h3 { font-size: 22px; }

  .review-card { min-height: 164px; }

  .product-intro > p:last-child { display: block; }
  .feature-panel { min-height: 0; height: 320px; }
  .feature-copy h3 { font-size: 27px; }
  .feature-visual > img { width: 168px; }
  .screen-frame { width: 168px; height: 340px; }

  .fit-copy { padding-top: calc(var(--header-height) + 20px); padding-bottom: 20px; }
  .fit-copy h3 { font-size: 34px; }
  .fit-copy ul { margin-block: 16px; }

  .price-card { padding-top: calc(var(--header-height) + 18px); padding-bottom: 18px; }
  .price-card h3 { font-size: 48px; }
  .price-card ul { margin: 14px 0; }
  .price-card li { min-height: 40px; }

  .faq-list summary { min-height: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  html.js { scroll-behavior: auto; }
}

/* Outcome proof follows the builder carousel without borrowing customer identities. */
.site-showcase {
  min-height: var(--snap-frame);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: var(--snap-pad-top) 0 22px;
  color: #080808;
}
.showcase-heading {
  width: var(--shell);
  margin: 0 auto;
  text-align: center;
}
.showcase-heading p {
  font-size: 13px;
  font-weight: 720;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.showcase-heading span {
  display: block;
  margin-top: 8px;
  color: #77746e;
  font-size: 12px;
}
.showcase-carousel { margin-top: 28px; }
.showcase-track { gap: 12px; }
.site-preview {
  flex: 0 0 min(310px, 76vw);
  height: clamp(390px, 55svh, 560px);
  overflow: hidden;
  border: 1px solid rgba(8,8,8,.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(25,23,20,.12);
  opacity: .5;
  transform: scale(.95);
  transition: opacity .35s ease, transform .55s var(--ease);
}
.site-preview.is-active { opacity: 1; transform: scale(1); }
.site-preview > button {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 30px 24px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: center;
}
.site-preview .preview-type {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 10px;
  font-style: normal;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .55;
}
.site-preview b { max-width: 250px; font-size: 29px; font-weight: 620; letter-spacing: -.035em; line-height: 1.03; }
.site-preview em { max-width: 230px; font-size: 13px; font-style: normal; line-height: 1.5; opacity: .62; }
.site-preview i {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  font-style: normal;
  font-weight: 650;
}
.preview-rose { color: #241620; background: linear-gradient(150deg, #fbf6f6, #e9cadc); }
.preview-ink { color: #fff; background: radial-gradient(circle at 50% 28%, #34302d, #101010 65%); }
.preview-paper { color: #24231f; background: #f7f3ea; }
.preview-barber { color: #f4efe7; background: linear-gradient(160deg, #2a221f, #080808); }
.preview-sage { color: #17332d; background: linear-gradient(155deg, #edf0e5, #b8d1c7); }
.preview-violet { color: #251b35; background: linear-gradient(155deg, #f1e9ff, #cbb6ee); }
.preview-avatar { width: 88px; height: 88px; display: block; border: 3px solid rgba(255,255,255,.7); border-radius: 50%; background-position: center; background-size: cover; box-shadow: 0 12px 28px rgba(0,0,0,.2); }
.preview-auto { background-image: url('/assets/portraits/auto-detailer.webp'); }
.preview-chair { background-image: url('/assets/portraits/barber.webp'); }
.preview-maker { background-image: url('/assets/portraits/esthetician.webp'); }
.preview-product-grid { width: 100%; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.preview-product-grid u { aspect-ratio: 1.25; border-radius: 10px; background: linear-gradient(145deg, #cab99e, #806f58); text-decoration: none; }
.preview-product-grid u:nth-child(2), .preview-product-grid u:nth-child(3) { background: linear-gradient(145deg, #d7d0c5, #9aa49c); }
.preview-orbit { width: 150px; height: 150px; border: 1px solid currentColor; border-radius: 50%; box-shadow: inset 0 0 0 28px rgba(255,255,255,.18), inset 0 0 0 56px rgba(255,255,255,.12); }
.showcase-carousel .swipe-dots { margin-top: 6px; }

/* Equal-width segmented choices keep the discovery stage calm and exact. */
.fit-tabs {
  padding: 4px;
  border: 1px solid rgba(8,8,8,.1);
  border-radius: 18px;
  background: rgba(8,8,8,.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.fit-tabs button {
  min-height: 50px;
  border: 0;
  border-radius: 14px;
  color: #5e5c57;
  font-size: 14px;
  font-weight: 590;
  transition: color .22s ease, background-color .28s ease, box-shadow .28s ease, transform .28s var(--ease);
}
.fit-tabs button[aria-selected="true"] {
  background: #0a0a0a;
  color: #fff;
  box-shadow: 0 8px 18px rgba(8,8,8,.15);
}

/* Current official plan contents, translated into balanced marketing cards. */
.price-grid { align-items: stretch; }
.price-card { height: min(57svh, 570px); min-height: 520px; }
.plan-card-copy { display: block; }
.plan-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.plan-name { margin: 0; font-size: 28px; font-weight: 620; letter-spacing: -.035em; }
.price-card .plan-top h3 { margin: -8px 0 0; white-space: nowrap; }
.plan-description { max-width: 470px; margin-top: 14px; color: currentColor; font-size: 14px; line-height: 1.48; opacity: .56; }
.plan-includes { margin: 16px 0 0; font-size: 11px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; opacity: .52; }
.price-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 0 20px;
  margin: 18px 0;
}
.price-card li {
  position: relative;
  min-height: 40px;
  padding: 9px 0 8px 23px;
  border-top: 1px solid color-mix(in srgb, currentColor 14%, transparent);
  font-size: 13px;
  line-height: 1.35;
}
.price-card li::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 2px;
  width: 9px;
  height: 5px;
  border-left: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
}
.price-card > .button { margin-top: auto; }

@media (max-width: 699px) {
  .site-showcase { padding-top: calc(var(--header-height) + 18px); padding-bottom: 12px; }
  .showcase-heading { padding-inline: 20px; }
  .showcase-heading p { font-size: 11px; }
  .showcase-heading span { max-width: 330px; margin-inline: auto; font-size: 10px; }
  .showcase-carousel { margin-top: 18px; }
  .site-preview { flex-basis: min(278px, 74vw); height: clamp(350px, 54svh, 440px); }
  .site-preview > button { padding: 26px 20px; }
  .site-preview b { font-size: 25px; }

  .fit-tabs { gap: 4px; }
  .fit-tabs button { min-height: 48px; font-size: 12px; }

  .price-card { height: var(--snap-frame); min-height: var(--snap-frame); }
  .plan-name { font-size: 25px; }
  .price-card .plan-top h3 { font-size: 46px; }
  .price-card .plan-top h3 small { font-size: 12px; }
  .plan-description { margin-top: 10px; font-size: 12.5px; }
  .plan-includes { margin-top: 12px; font-size: 10px; }
  .price-card ul { gap: 0 12px; margin: 12px 0; }
  .price-card li { min-height: 38px; padding: 7px 0 7px 19px; font-size: 11.5px; }
  .price-card li::before { top: 12px; left: 1px; }
  .price-card > .button { min-height: 48px; }
}

@media (max-width: 699px) and (max-height: 740px) {
  .site-preview { height: 350px; }
  .site-preview .preview-avatar { width: 68px; height: 68px; }
  .price-card { padding-inline: 22px; }
  .plan-description { font-size: 11.5px; line-height: 1.38; }
  .price-card ul { margin: 8px 0; }
  .price-card li { min-height: 34px; padding-top: 5px; padding-bottom: 5px; font-size: 10.5px; }
  .price-card li::before { top: 10px; }
}

.review-row-third .review-track { animation-duration: 49s; }
.review-card { min-height: 146px; }

@media (min-width: 960px) {
  .hero { padding-top: calc(var(--header-height) + 82px); }
  .phone-fan { margin-top: 28px; }
}

@media (max-width: 699px) {
  .review-card { height: 123px; min-height: 123px; padding: 14px 18px; }
  .review-stars { width: 84px; height: 16px; }
  .review-card p { margin-top: 8px; font-size: 12px; line-height: 1.32; }
  .review-card small { padding-top: 8px; font-size: 9px; }
  .review-card small strong { font-size: 9px; }
  .review-card small span { font-size: 8px; }
}

@media (max-width: 699px) and (max-height: 740px) {
  .stories .review-marquee { gap: 6px; }
  .review-card { height: 123px; min-height: 123px; }
}

/* The workflow opens with one centered premise, followed by four exact product frames. */
.story-section {
  min-height: auto;
  padding: 0;
  background: #050505;
  color: #fff;
}
.story-intro {
  position: relative;
  top: auto;
  min-height: var(--snap-frame);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--snap-pad-top) 20px 28px;
  border: 0;
  background: #050505;
  color: #fff;
  text-align: center;
  opacity: 1 !important;
  transform: none !important;
}
.story-intro h2 { max-width: 760px; }
.story-intro > p:last-child {
  max-width: 620px;
  display: block;
  margin: 18px auto 0;
  color: rgba(255,255,255,.58);
  font-size: 16px;
}
.story-layout { margin: 0 auto; }
.story-chapters { margin: 0; }

@media (max-width: 959px) {
  .story-layout { display: grid; }
  .story-visual,
  .story-chapters { grid-area: 1 / 1; }
  .story-visual { align-self: start; }
}

@media (max-width: 699px) {
  .story-intro h2 { font-size: clamp(34px, 9vw, 42px); }
  .story-intro > p:last-child { max-width: 330px; font-size: 13px; }
}

html.js { overscroll-behavior-y: auto; }

main > section:not(.hero):not(.story-section) { min-height: 0; }

.client-experience,
.site-showcase,
.stories,
.product-section,
.fit-section,
.pricing-section,
.faq-section,
.final-cta {
  height: auto;
  min-height: 0;
}

.client-experience,
.stories,
.product-section,
.faq-section {
  display: block;
  padding-top: 112px;
  padding-bottom: 96px;
}

.site-showcase {
  display: block;
  padding-top: 112px;
  padding-bottom: 82px;
}

.fit-section {
  display: block;
  padding: 112px 0 96px;
}
.fit-sticky-head {
  min-height: 0;
  display: block;
  padding: 0;
}

.pricing-section {
  display: block;
  padding: 112px 0 96px;
}
.pricing-head {
  min-height: 0;
  display: block;
  padding: 0;
}
.price-grid { margin-top: 30px; }

.final-cta {
  display: block;
  padding: 18px 20px 72px;
}

@media (min-width: 960px) {
  .story-visual {
    top: calc(var(--header-height) + 24px);
    height: min(calc(100svh - var(--header-height) - 72px), 820px);
    min-height: 0;
    transition: opacity .24s ease, transform .36s var(--ease);
  }
  .story-device-wrap { width: min(300px, 30vh); max-height: none; }
  .story-section.is-exiting .story-visual { opacity: 0; transform: translateY(-24px); }
}

@media (max-width: 699px) {
  .client-experience,
  .site-showcase,
  .stories,
  .product-section,
  .faq-section { padding-top: 92px; padding-bottom: 72px; }

  .site-showcase { padding-bottom: 64px; }
  .stories { padding-top: 88px; padding-bottom: 72px; }

  .fit-section { padding: 92px 0 80px; }
  .fit-sticky-head { padding: 0 20px; }
  .fit-stage {
    width: var(--shell);
    margin: 28px auto 0;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(33,31,27,.09);
  }
  .fit-photo,
  .fit-product {
    height: min(72svh, 520px);
    min-height: 420px;
  }
  .fit-photo img { height: 100%; }
  .fit-copy {
    height: auto;
    min-height: 0;
    padding: 42px 28px;
  }

  .pricing-section { padding: 92px 0 80px; }
  .pricing-head { padding: 0 20px; }
  .price-grid {
    width: var(--shell);
    margin: 30px auto 0;
    display: grid;
    gap: 14px;
  }
  .price-card {
    height: auto;
    min-height: 620px;
    justify-content: flex-start;
    padding: 30px 22px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
  }
  .price-card.featured { border-color: transparent; }

  .final-cta { padding: 18px 20px 72px; }
}

@media (min-width: 960px) {
  /* Both desktop plan CTAs share one baseline even when Max carries more rows. */
  .price-card { height: 600px; min-height: 600px; }
}

@media (min-width: 700px) and (max-width: 959px) {
  /* Tablet keeps the phone reading order without stretching panels to 100svh. */
  .fit-section { padding: 104px 0 88px; }
  .fit-sticky-head { padding: 0 40px; }
  .fit-stage {
    width: var(--shell);
    margin: 32px auto 0;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 22px 64px rgba(33,31,27,.09);
  }
  .fit-photo,
  .fit-product {
    height: min(70svh, 620px);
    min-height: 500px;
  }
  .fit-photo img { height: 100%; }
  .fit-copy {
    height: auto;
    min-height: 0;
    padding: 52px 48px;
  }

  .price-grid {
    width: min(680px, var(--shell));
    grid-template-columns: 1fr;
  }
  .price-card {
    height: auto;
    min-height: 620px;
    padding: 34px;
  }
}

@media (min-width: 960px) and (max-width: 1099px) {
  /* The detailed plan lists need a wider measure before they sit side by side. */
  .price-grid {
    width: min(680px, var(--shell));
    grid-template-columns: 1fr;
  }
  .price-card {
    height: auto;
    min-height: 620px;
    padding: 34px;
  }
}

@media (max-width: 379px) {
  /* Keep the complete showcase invitation on one calm line at 375px. */
  .showcase-heading p {
    white-space: nowrap;
    font-size: 10px;
    letter-spacing: .08em;
  }
}

/* A free-scrolling editorial proof sequence replaces the former pinned workflow. */
.switch-section {
  position: relative;
  padding: 104px 20px 92px;
  background: #ecefeb;
  color: #080808;
}
.switch-heading {
  width: min(820px, 100%);
  margin: 0 auto 46px;
  text-align: center;
}
.switch-heading h2 {
  font-size: clamp(40px, 10.5vw, 64px);
  font-weight: 520;
  line-height: .99;
  letter-spacing: -.04em;
}
.switch-heading p {
  width: min(620px, 100%);
  margin: 18px auto 0;
  color: #575b57;
  font-size: 16px;
  line-height: 1.5;
}
.switch-list {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}
.switch-panel {
  scroll-margin-top: calc(var(--header-height) + 20px);
  overflow: hidden;
  display: grid;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(26, 30, 27, .08);
}
.switch-copy {
  min-height: 252px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 26px 30px;
}
.switch-copy h3 {
  max-width: 13ch;
  font-size: clamp(34px, 8.7vw, 48px);
  font-weight: 520;
  line-height: 1;
  letter-spacing: -.04em;
}
.switch-copy p {
  max-width: 45ch;
  margin-top: 18px;
  color: #555954;
  font-size: 16px;
  line-height: 1.5;
}
.switch-media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #181817;
  isolation: isolate;
}
.switch-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.switch-panel:first-child .switch-scene { object-position: 58% center; }
.switch-panel:nth-child(2) .switch-scene { object-position: 52% center; }
.switch-panel:nth-child(3) .switch-scene { object-position: 58% center; }
.switch-ui {
  position: absolute;
  z-index: 2;
  bottom: -18%;
  width: min(46%, 230px);
  filter: drop-shadow(0 24px 30px rgba(0,0,0,.3));
  transition: transform .9s var(--ease);
}
.switch-ui-calendar { right: 4%; }
.switch-ui-checkout {
  right: 4%;
  bottom: -13%;
  width: min(42%, 210px);
  height: 380px;
  overflow: hidden;
  border: 8px solid #111;
  border-radius: 38px;
  background: #050505;
}
.switch-ui-checkout img { width: 100%; }
.switch-ui-chat { left: 4%; }
.switch-notification {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 18px;
  width: min(310px, calc(100% - 32px));
  min-height: 66px;
  padding: 13px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.94);
  color: #080808;
  box-shadow: 0 14px 36px rgba(0,0,0,.17);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: opacity .55s ease .22s, transform .8s var(--ease) .22s;
}
.switch-notification b,
.switch-notification span { display: block; }
.switch-notification b { font-size: 13px; line-height: 1.25; }
.switch-notification span { margin-top: 2px; color: #666; font-size: 11px; }
.switch-notification-dark { background: rgba(15,15,15,.94); color: #fff; }
.switch-notification-dark span { color: rgba(255,255,255,.62); }
.switch-panel:nth-child(3) .switch-notification { right: 16px; }
.switch-disclosure {
  width: min(1240px, 100%);
  margin: 28px auto 0;
  color: #5f635f;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.js .switch-panel[data-reveal] {
  clip-path: inset(0 0 9% 0 round 16px);
  opacity: .88;
  transform: translateY(36px);
}
.js .switch-panel[data-reveal] .switch-scene { transform: scale(1.045); }
.js .switch-panel[data-reveal] .switch-ui { transform: translateY(34px); }
.js .switch-panel[data-reveal] .switch-notification { opacity: 0; transform: translateY(18px); }
.js .switch-panel[data-reveal].is-visible {
  clip-path: inset(0 round 16px);
  opacity: 1;
  transform: none;
  transition: clip-path .95s var(--ease), opacity .7s ease, transform .9s var(--ease);
}
.js .switch-panel[data-reveal].is-visible .switch-scene { transform: scale(1); }
.js .switch-panel[data-reveal].is-visible .switch-ui { transform: none; }
.js .switch-panel[data-reveal].is-visible .switch-notification { opacity: 1; transform: none; }

@media (min-width: 700px) {
  .switch-section { padding-inline: 40px; }
  .switch-list { gap: 24px; }
  .switch-copy { min-height: 286px; padding: 46px 42px 38px; }
  .switch-media { min-height: 520px; }
  .switch-ui { width: min(38%, 260px); }
  .switch-ui-checkout { width: min(34%, 230px); height: 450px; }
  .switch-notification { right: 28px; bottom: 26px; }
}

@media (min-width: 960px) {
  .switch-section { padding-top: 150px; padding-bottom: 130px; }
  .switch-heading { margin-bottom: 64px; }
  .switch-heading p { font-size: 18px; }
  .switch-list { gap: 32px; }
  .switch-panel {
    min-height: 610px;
    grid-template-columns: minmax(300px, .72fr) minmax(0, 1.5fr);
  }
  .switch-copy { min-height: 610px; justify-content: space-between; padding: 48px 42px 46px; }
  .switch-copy h3 { max-width: 10.5ch; font-size: clamp(44px, 4.1vw, 60px); }
  .switch-copy p { font-size: 18px; }
  .switch-media { min-height: 610px; }
  .switch-ui { right: 7%; bottom: -22%; width: min(34%, 290px); }
  .switch-ui-checkout { right: 7%; bottom: -18%; width: min(30%, 250px); height: 500px; }
  .switch-ui-chat { right: auto; left: 7%; }
  .switch-notification { right: 32px; bottom: 30px; width: min(340px, 44%); }
}

@media (max-width: 699px) {
  .switch-section { padding-top: 92px; padding-bottom: 76px; }
  .switch-heading { margin-bottom: 34px; }
  .switch-heading h2 { max-width: 340px; margin: 0 auto; }
  .switch-heading p { max-width: 325px; font-size: 15px; }
  .switch-copy h3 { max-width: 11.5ch; }
  .switch-panel:nth-child(2) .switch-copy h3 { max-width: 12.5ch; }
  .switch-panel:nth-child(3) .switch-copy h3 { max-width: 12ch; }
}

@media (max-width: 379px) {
  .switch-section { padding-inline: 16px; }
  .switch-copy { min-height: 242px; padding-inline: 22px; }
  .switch-copy h3 { font-size: 32px; }
  .switch-media { min-height: 410px; }
}

@media (prefers-reduced-motion: reduce) {
  .switch-panel,
  .switch-scene,
  .switch-ui,
  .switch-notification {
    clip-path: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* black-official-52: quieter hierarchy, content-led sections, and mobile-first density. */
main > section:not(.hero) {
  height: auto;
  min-height: 0;
}

main > section[id] {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.section-intro h2 {
  font-size: clamp(38px, 4vw, 54px);
  letter-spacing: -.045em;
  line-height: 1.02;
}

.client-experience {
  display: block;
  padding: 88px 0 56px;
}
.client-carousel { margin-top: 42px; }
.experience-card {
  flex-basis: min(76vw, 1040px);
  height: 480px;
  min-height: 0;
  border-radius: 26px;
}
.experience-copy h3 { font-size: clamp(30px, 3.4vw, 44px); }
.client-pages-showcase {
  display: block;
  height: auto;
  min-height: 0;
  margin-top: 60px;
  padding: 0;
}
.client-pages-showcase .showcase-heading span { font-size: 11px; }
.client-pages-showcase .showcase-carousel { margin-top: 24px; }
.client-pages-showcase .site-preview {
  flex-basis: min(282px, 72vw);
  height: 380px;
}

.stories {
  display: block;
  padding: 72px 20px 64px;
  background: #f3f1ec;
}

.fit-section,
.pricing-section { padding: 84px 0 72px; }
.fit-intro h2,
.pricing-section .section-intro h2 { font-size: clamp(40px, 3.8vw, 52px); }
.faq-section { padding: 84px 0 76px; }
.final-cta h2 { font-size: clamp(40px, 4.2vw, 54px); }

.price-grid {
  align-items: stretch;
  margin-top: 34px;
}
.price-card,
.price-card.featured {
  height: auto;
  min-height: 580px;
  padding: 34px;
}
.price-card .plan-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 20px 0 10px;
}
.price-card .plan-highlights li {
  min-height: 44px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 13px;
}
.plan-more {
  margin: 0 0 18px;
  border-top: 1px solid color-mix(in srgb, currentColor 14%, transparent);
}
.plan-more summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  font-weight: 650;
}
.plan-more summary::-webkit-details-marker { display: none; }
.plan-more summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  transition: transform .25s var(--ease);
}
.plan-more[open] summary::after { transform: rotate(45deg); }
.price-card .plan-more ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0 0 12px;
}
.price-card .plan-more li {
  min-height: 40px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 12px;
}
.price-card > .button { margin-top: auto; }

.switch-section { padding: 72px 40px 68px; }
.switch-heading {
  width: min(720px, 100%);
  margin-bottom: 36px;
}
.switch-heading h2 {
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(40px, 3.7vw, 50px);
  letter-spacing: -.042em;
  line-height: 1.01;
}
.switch-heading p { margin-top: 16px; font-size: 16px; }
.switch-list { width: min(1180px, 100%); gap: 18px; }
.switch-panel {
  min-height: 460px;
  grid-template-columns: minmax(330px, .8fr) minmax(0, 1.45fr);
}
.switch-copy {
  min-height: 460px;
  justify-content: center;
  padding: 42px 38px;
}
.switch-copy h3 {
  max-width: 13ch;
  font-size: clamp(34px, 2.75vw, 38px);
  letter-spacing: -.038em;
  line-height: 1.02;
}
.switch-copy p {
  max-width: 38ch;
  margin-top: 20px;
  font-size: 16px;
}
.switch-media { min-height: 460px; }
.switch-ui { bottom: -24%; width: min(34%, 250px); }
.switch-ui-checkout { bottom: -19%; width: min(31%, 210px); height: 400px; }
.switch-notification { width: min(320px, 46%); }
.switch-disclosure { width: min(1180px, 100%); margin-top: 24px; font-size: 12px; }

@media (min-width: 960px) {
  .hero {
    height: auto;
    min-height: 940px;
    padding-top: calc(var(--header-height) + 86px);
    padding-bottom: 42px;
  }
  .hero h1 { font-size: 64px; }
  .phone-fan { width: min(780px, 72vw); height: 470px; margin-top: 42px; }
  .fan-calendar { --height: 390px; transform: translateX(calc(-50% - 142px)) translateY(-22px); }
  .fan-dashboard { --height: 450px; transform: translateX(-50%); }
  .fan-inbox { --height: 390px; transform: translateX(calc(-50% + 142px)) translateY(-22px); }

  .switch-section { padding-top: 72px; padding-bottom: 68px; }
  .switch-heading { margin-bottom: 36px; }
  .switch-heading p { font-size: 16px; }
  .switch-list { gap: 18px; }
  .switch-panel { min-height: 460px; grid-template-columns: minmax(330px, .8fr) minmax(0, 1.45fr); }
  .switch-copy { min-height: 460px; justify-content: center; padding: 38px 36px; }
  .switch-copy h3 { max-width: 13ch; font-size: clamp(34px, 2.75vw, 38px); }
  .switch-copy p { font-size: 16px; }
  .switch-media { min-height: 460px; }
  .switch-ui { right: 7%; bottom: -24%; width: min(34%, 250px); }
  .switch-ui-checkout { right: 7%; bottom: -19%; width: min(31%, 210px); height: 400px; }
  .switch-ui-chat { right: auto; left: 7%; }
  .switch-notification { width: min(320px, 46%); }

  .price-card { height: auto; min-height: 580px; }
}

@media (min-width: 700px) and (max-width: 959px) {
  .client-experience { padding: 84px 0 60px; }
  .experience-card { flex-basis: min(84vw, 760px); height: 500px; }
  .client-pages-showcase { margin-top: 64px; }
  .switch-section { padding: 76px 32px 68px; }
  .switch-panel { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(0, 1.25fr); min-height: 470px; }
  .switch-copy { min-height: 470px; padding: 36px 30px; }
  .switch-copy h3 { font-size: 34px; }
  .switch-copy p { font-size: 15px; }
  .switch-media { min-height: 470px; }
  .price-card { height: auto; min-height: 0; }
}

@media (max-width: 699px) {
  .section-intro h2 { font-size: clamp(34px, 9vw, 40px); }
  .section-intro > p:last-child { margin-top: 16px; font-size: 15px; line-height: 1.5; }

  .client-experience { padding: 72px 0 50px; }
  .client-experience .section-intro { padding-inline: 20px; }
  .client-experience .section-intro > p:last-child { display: block; }
  .client-carousel { margin-top: 30px; }
  .experience-card {
    flex-basis: min(84vw, 340px);
    height: 430px;
    min-height: 0;
    border-radius: 20px;
  }
  .experience-copy { padding: 24px 22px 18px; }
  .experience-copy h3 { font-size: 30px; }
  .experience-copy p { font-size: 13px; line-height: 1.45; }
  .client-pages-showcase { margin-top: 56px; padding: 0; }
  .client-pages-showcase .showcase-heading { padding-inline: 20px; }
  .client-pages-showcase .showcase-heading p { font-size: 10px; }
  .client-pages-showcase .showcase-heading span { max-width: 300px; font-size: 10px; }
  .client-pages-showcase .showcase-carousel { margin-top: 18px; }
  .client-pages-showcase .site-preview {
    flex-basis: min(260px, 72vw);
    height: 360px;
  }

  .switch-section { padding: 64px 16px 56px; }
  .switch-heading { margin-bottom: 30px; }
  .switch-heading h2 { max-width: 340px; font-size: clamp(35px, 9.6vw, 40px); }
  .switch-heading p { max-width: 320px; font-size: 14px; }
  .switch-list { gap: 14px; }
  .switch-panel { display: grid; grid-template-columns: 1fr; min-height: 0; border-radius: 16px; }
  .switch-copy { min-height: 210px; justify-content: center; padding: 30px 24px 26px; }
  .switch-copy h3,
  .switch-panel:nth-child(2) .switch-copy h3,
  .switch-panel:nth-child(3) .switch-copy h3 { max-width: 14ch; font-size: clamp(30px, 8.3vw, 34px); }
  .switch-copy p { max-width: 40ch; margin-top: 14px; font-size: 14px; }
  .switch-media { min-height: 360px; }
  .switch-ui { bottom: -19%; width: min(43%, 190px); }
  .switch-ui-checkout { bottom: -14%; width: min(40%, 175px); height: 330px; border-width: 6px; border-radius: 30px; }
  .switch-notification { right: 14px; bottom: 14px; width: min(285px, calc(100% - 28px)); }
  .switch-panel:nth-child(3) .switch-notification { right: 14px; }
  .switch-disclosure { margin-top: 20px; font-size: 11px; }

  .stories { padding: 64px 0 52px; }
  .stories .review-marquee { margin-top: 28px; }

  .fit-section,
  .pricing-section { padding: 68px 0 60px; }
  .fit-intro h2,
  .pricing-section .section-intro h2 { font-size: clamp(34px, 9vw, 40px); }
  .price-grid { margin-top: 28px; }
  .price-card,
  .price-card.featured {
    height: auto;
    min-height: 0;
    padding: 28px 22px;
  }
  .price-card .plan-highlights { margin-top: 18px; }
  .price-card .plan-highlights li { min-height: 44px; padding: 9px 0 9px 21px; font-size: 12px; }
  .plan-more { margin-bottom: 16px; }
  .plan-more summary { min-height: 48px; font-size: 12px; }
  .price-card .plan-more li { min-height: 38px; font-size: 11.5px; }
}

@media (max-width: 379px) {
  .experience-card { flex-basis: min(86vw, 318px); height: 410px; }
  .switch-section { padding-inline: 14px; }
  .switch-copy { min-height: 204px; padding-inline: 22px; }
  .switch-copy h3,
  .switch-panel:nth-child(2) .switch-copy h3,
  .switch-panel:nth-child(3) .switch-copy h3 { font-size: 29px; }
  .switch-media { min-height: 340px; }
}

/* black-official-53: approved real-page captures and a focused text/UI fit stage. */
.client-pages-showcase .showcase-heading p { font-size: 12px; }
.client-pages-showcase .showcase-heading span { font-size: 11px; }
.real-pages-carousel .showcase-track { gap: 14px; }
.client-pages-showcase .real-page-preview {
  flex-basis: min(340px, 24vw);
  height: auto;
  aspect-ratio: 390 / 844;
  border: 0;
  border-radius: 16px;
  background: #111;
  box-shadow: 0 18px 48px rgba(25, 23, 20, .15);
  opacity: 1;
  transform: scale(.975);
}
.client-pages-showcase .real-page-preview.is-active { transform: scale(1); }
.real-page-preview > a {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  color: #fff;
}
.real-page-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.real-page-preview svg {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  padding: 9px;
  border-radius: 50%;
  background: rgba(10, 10, 10, .72);
  fill: none;
  stroke: #fff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fit-stage {
  height: auto;
  min-height: 620px;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
}
.fit-copy {
  min-height: 620px;
  padding: 64px 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #e1dfda;
}
.fit-copy h3 { max-width: 12ch; margin-top: 0; }
.fit-product { min-height: 620px; }
.fit-product img { height: calc(100% - 56px); max-width: calc(100% - 64px); }

@media (min-width: 700px) and (max-width: 959px) {
  .client-pages-showcase .real-page-preview { flex-basis: min(326px, 40vw); }
  .fit-stage { min-height: 560px; display: grid; grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr); }
  .fit-copy { min-height: 560px; padding: 48px 40px; }
  .fit-product { height: 560px; min-height: 560px; }
}

@media (max-width: 699px) {
  .client-pages-showcase .showcase-heading p { font-size: 10px; }
  .client-pages-showcase .showcase-heading span { font-size: 10px; }
  .client-pages-showcase .real-page-preview {
    flex-basis: min(292px, 78vw);
    height: auto;
  }
  .fit-stage { min-height: 0; display: grid; grid-template-columns: 1fr; }
  .fit-copy {
    min-height: 330px;
    padding: 38px 28px 34px;
    border-right: 0;
    border-bottom: 1px solid #e1dfda;
  }
  .fit-product { height: min(72svh, 560px); min-height: 440px; }
  .fit-product img { height: calc(100% - 40px); max-width: calc(100% - 48px); }
}

/* black-official-54: an eight-card, full-width page gallery with truthful live/illustrative states. */
.real-pages-carousel .showcase-track { gap: 14px; }
.client-pages-showcase .showcase-page-preview {
  flex-basis: clamp(278px, 14vw, 302px);
  height: auto;
  aspect-ratio: 390 / 844;
  opacity: 1;
  transform: none;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.client-pages-showcase .showcase-page-preview.is-active { transform: none; }
.client-pages-showcase .showcase-page-preview > button {
  justify-content: center;
  gap: 13px;
  padding: 42px 24px 32px;
}
.client-pages-showcase .showcase-page-preview > button:focus-visible,
.client-pages-showcase .real-page-preview > a:focus-visible {
  outline: 3px solid #111;
  outline-offset: -6px;
}
@media (hover: hover) and (pointer: fine) {
  .client-pages-showcase .showcase-page-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 54px rgba(25, 23, 20, .18);
  }
}
@media (min-width: 700px) and (max-width: 959px) {
  .client-pages-showcase .showcase-page-preview { flex-basis: min(292px, 40vw); }
}
@media (max-width: 699px) {
  .client-pages-showcase .showcase-page-preview {
    flex-basis: min(292px, 78vw);
    height: auto;
  }
}

/* black-official-55: one centerline for every intentionally centered section introduction. */
:is(
  .client-experience .section-intro,
  .switch-heading,
  .stories .member-intro,
  .fit-intro,
  .pricing-section .section-intro,
  .client-pages-showcase .showcase-heading
) {
  width: min(1240px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
:is(
  .client-experience .section-intro,
  .switch-heading,
  .stories .member-intro,
  .fit-intro,
  .pricing-section .section-intro
) h2 {
  width: min(760px, 100%);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-wrap: balance;
}
:is(
  .client-experience .section-intro,
  .switch-heading,
  .stories .member-intro,
  .fit-intro,
  .pricing-section .section-intro
) > p:last-child {
  width: min(620px, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-wrap: balance;
}

/* black-official-56: quieter showcase chrome and one optical type system for key section leads. */
.client-pages-showcase .showcase-page-preview > .preview-layout {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 42px 24px 32px;
  color: inherit;
  text-align: center;
}
:is(.switch-heading, .stories .member-intro, .fit-intro) h2 {
  width: min(760px, 100%);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(34px, 3.5vw, 46px);
  line-height: 1.06;
  letter-spacing: -.035em;
  text-align: center;
  text-wrap: balance;
}
:is(.switch-heading, .fit-intro) > p:last-child {
  width: min(580px, 100%);
  max-width: 580px;
  margin: 14px auto 0;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  text-wrap: pretty;
}

/* black-official-57: compact plan emphasis without changing the pricing grid geometry. */
.plan-title {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.popular-badge {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #0a0a0a;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 420px) {
  .plan-top { gap: 12px; }
  .plan-title { gap: 8px; }
  .popular-badge { min-height: 24px; padding-inline: 9px; font-size: 9px; }
}

/* black-official-59: direct carousel selection and one light pricing-card family. */
.client-carousel[data-loop-clickable] .loop-track > *:not(.is-active) {
  cursor: pointer;
}
.price-card,
.price-card.featured {
  border-color: rgba(8, 8, 8, .12);
  background: #f3f0e9;
  color: #080808;
}
.price-card .button.button-outline,
.price-card.featured .button.button-light {
  border-color: #080808;
  background: #080808;
  color: #fff;
}

/* v60 — Acuity-led density. Natural scrolling, smaller stages, one authored entrance. */
:root, html[data-theme="black"] {
  --header-height: 76px;
  --shell: min(1120px, calc(100vw - 64px));
}
html { scroll-padding-top: calc(var(--header-height) + 20px); }
.header-shell { width: min(1280px, calc(100% - 64px)); grid-template-columns: 180px 1fr 180px; }
.desktop-nav { gap: clamp(18px, 2vw, 32px); }
.desktop-nav > a, .nav-trigger { font-size: 13px; }
.desktop-actions { gap: 16px; }
.button { border-radius: 12px; min-height: 48px; font-size: 15px; }
.button-compact { padding-inline: 18px; min-height: 44px; font-size: 13px; }
.site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: #050505; }
h1, h2, h3, h4 { letter-spacing: -.04em; }
.keep-together { white-space: nowrap; }
[data-reveal], [data-reveal].is-visible { opacity: 1; transform: none; transition: none; }
.hero { height: auto; min-height: 0; padding: calc(var(--header-height) + 92px) 24px 48px; }
.hero h1 { max-width: 560px; font-size: clamp(48px, 4.1vw, 56px); line-height: 1.1; letter-spacing: -.04em; }
.hero-lede { margin: 20px auto 0; font-size: 17px; color: #b3b4b0; }
.hero-actions { margin-top: 26px; }
.phone-fan { width: min(720px, 100%); height: 344px; margin: 32px auto 0; }
.fan-phone { animation: none; }
.fan-dashboard { --height: 344px; transform: translateX(-50%); }
.fan-calendar { --height: 302px; transform: translateX(calc(-50% - 116px)) translateY(-12px); }
.fan-inbox { --height: 302px; transform: translateX(calc(-50% + 116px)) translateY(-12px); }
.js .fan-dashboard { animation: screen-arrival .8s var(--ease) both .06s; }
.js .fan-calendar { animation: screen-left .95s var(--ease) both .15s; }
.js .fan-inbox { animation: screen-right .95s var(--ease) both .15s; }
@keyframes screen-arrival { from { opacity: .4; translate: 0 28px; } to { opacity: 1; translate: 0 0; } }
@keyframes screen-left { from { opacity: .35; translate: 80px 22px; } to { opacity: 1; translate: 0 0; } }
@keyframes screen-right { from { opacity: .35; translate: -80px 22px; } to { opacity: 1; translate: 0 0; } }
.section-intro h2, :is(.switch-heading, .stories .member-intro, .fit-intro, .pricing-section .section-intro) h2 { font-size: clamp(34px, 3.1vw, 44px); line-height: 1.1; letter-spacing: -.04em; }
.section-intro > p:last-child, .switch-heading > p:last-child, .fit-intro > p:last-child { font-size: 16px; margin-top: 16px; color: #62645f; }
.client-experience { padding: 88px 0 64px; }
.client-carousel { margin-top: 36px; }
.loop-viewport { position: relative; touch-action: pan-y pinch-zoom; }
.loop-track { position: relative; gap: 20px; will-change: auto; }
.loop-viewport.is-dragging { cursor: grabbing; user-select: none; }
.swipe-dot { min-height: 44px; }
.experience-card { flex-basis: min(76vw, 880px); height: 410px; min-height: 0; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; border-radius: 16px; margin-inline: 0; }
.experience-copy { padding: 36px; align-self: center; }
.experience-copy h3 { margin-top: 0; font-size: clamp(30px, 2.8vw, 38px); line-height: 1.1; }
.experience-copy p { max-width: 35ch; margin-top: 16px; font-size: 15px; opacity: 1; color: #4f514d; }
.experience-black .experience-copy p { color: #c1c1bc; }
.browser-mock { width: calc(100% - 24px); height: 350px; margin: 0 24px 0 0; border-radius: 12px 12px 0 0; box-shadow: none; }
.browser-bar { height: 30px; }
.booking-page { padding: 32px 22px; background: #d7bacd; }
.booking-page h4 { max-width: 240px; margin-top: 32px; font-size: 44px; line-height: 1.04; letter-spacing: -.04em; }
.bio-stage { padding-inline: 24px; }
.bio-card { height: 350px; width: 100%; max-width: 280px; padding: 24px 20px; border-radius: 20px 20px 0 0; box-shadow: none; }
.bio-avatar { width: 68px; height: 68px; margin-bottom: 12px; }
.bio-card b { font-size: 18px; }
.bio-card p { margin-bottom: 20px; font-size: 11px; }
.bio-card .mock-button { min-height: 38px; margin-top: 8px; }
.phone-stage { height: 100%; padding-top: 28px; }
.phone-stage img { width: 220px; transform: none; }
.client-pages-showcase { margin-top: 40px; padding: 0; }
.client-pages-showcase .showcase-heading p { font-size: 14px; font-weight: 650; letter-spacing: 0; text-transform: none; }
.real-pages-carousel .showcase-track { gap: 16px; align-items: stretch; padding-block: 8px 18px; }
.client-pages-showcase .showcase-page-preview { flex-basis: clamp(190px, 14vw, 278px); height: auto; aspect-ratio: 390/844; border-radius: 14px; border: 0; box-shadow: 0 10px 20px #1a191711; }
.client-pages-showcase .showcase-page-preview > .preview-layout { padding: 34px 16px 24px; gap: 12px; }
.site-preview b { font-size: clamp(19px, 1.6vw, 28px); line-height: 1.15; }
.site-preview em { font-size: 11px; opacity: .75; }
.site-preview i { min-height: 34px; font-size: 10px; }
.site-preview .preview-type { font-size: 9px; }
.preview-avatar { width: 64px; height: 64px; }
.preview-orbit { width: 110px; height: 110px; }

.switch-section { padding: 72px 0; }
.switch-heading { margin-bottom: 28px; }
.switch-tabs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); width: min(480px, calc(100% - 40px)); margin: 0 auto 24px; border-bottom: 1px solid #c8d1c9; }
.switch-tabs button { position: relative; min-height: 48px; padding: 8px 12px; border: 0; background: none; color: #566158; font-size: 15px; }
.switch-tabs button::after { content: ''; position: absolute; left: 20px; right: 20px; bottom: -1px; height: 2px; background: #19261c; transform: scaleX(0); transition: transform .35s var(--ease); }
.switch-tabs button[aria-selected='true'] { color: #19261c; }
.switch-tabs button[aria-selected='true']::after { transform: scaleX(1); }
.switch-list { width: var(--shell); }
.switch-panel { min-height: 0; grid-template-columns: .85fr 1.45fr; box-shadow: none; }
.switch-copy { min-height: 0; justify-content: center; padding: 36px; }
.switch-copy h3, .switch-panel:nth-child(2) .switch-copy h3, .switch-panel:nth-child(3) .switch-copy h3 { max-width: 15ch; font-size: 34px; line-height: 1.1; }
.switch-copy p { margin-top: 18px; font-size: 15px; }
.switch-media { height: 400px; min-height: 0; }
.switch-ui { width: 30%; max-width: 206px; bottom: -13%; right: 5%; }
.switch-ui-checkout { height: auto; bottom: -20%; border-width: 6px; border-radius: 28px; }
.switch-ui-chat { left: 6%; right: auto; }
.switch-notification { width: max-content; max-width: calc(100% - 40px); backdrop-filter: none; -webkit-backdrop-filter: none; }
.switch-disclosure { width: var(--shell); margin-top: 18px; font-size: 11px; }

.stories { padding: 64px 0 48px; }
.stories .review-placeholder-note { max-width: 580px; margin: 12px auto 0; font-size: 12px; color: #62645f; }
.review-motion-control { min-height: 44px; margin-top: 8px; padding: 0 16px; border: 0; background: transparent; text-decoration: underline; text-underline-offset: 4px; font-size: 12px; color: #4d514a; }
.review-marquee { margin-top: 20px; }
.review-row { overflow: hidden; touch-action: pan-y pinch-zoom; scrollbar-width: none; }
.review-marquee.is-static .review-row { overflow-x: auto; touch-action: auto; }
.review-row::-webkit-scrollbar { display: none; }
.review-track { animation-duration: 70s; animation-delay: -14s; animation-play-state: paused; will-change: auto; }
.review-row-reverse .review-track { animation-duration: 76s; animation-delay: -29s; }
.review-row-third .review-track { animation-duration: 82s; animation-delay: -47s; }
.review-marquee.is-running .review-track { animation-play-state: running; will-change: transform; }
.review-marquee.is-static .review-track { animation: none; transform: none; }
.review-card { flex-basis: 282px; height: 180px; min-height: 180px; padding: 20px 22px; border-radius: 14px; }
.review-card p { margin-top: 12px; font-size: 14px; line-height: 1.45; }
.review-card small { padding-top: 12px; }
.review-card small strong { font-size: 12px; }
.review-card small span { font-size: 11px; color: #556052; }
html:not(.js) .review-track { animation: none; }

.fit-section { padding: 32px 0 80px; }
.fit-sticky-head { padding: 0; min-height: 0; }
.fit-sticky-head .section-intro { width: var(--shell); }
.fit-sticky-head .fit-tabs { width: min(780px, calc(100% - 40px)); margin: 28px auto 24px; }
.fit-tabs button { min-height: 46px; font-size: 13px; }
.fit-stage { width: var(--shell); margin: auto; min-height: 0; height: auto; grid-template-columns: 1fr 1fr; border-radius: 16px; box-shadow: none; }
.fit-copy { height: auto; min-height: 0; padding: 40px 48px; border: 0; }
.fit-copy h3 { max-width: 17ch; font-size: 34px; line-height: 1.1; }
.fit-copy > p:not(:first-child) { max-width: 43ch; margin-top: 16px; font-size: 15px; }
.fit-copy ul { margin-block: 20px; }
.fit-copy li { font-size: 13px; min-height: 40px; }
.fit-copy .button { align-self: flex-start; min-width: 148px; }
.fit-product { display: grid; place-items: center; min-height: 470px; height: auto; padding: 24px; }
.fit-product img { position: static; width: auto; height: 410px; max-width: 100%; transform: none; object-fit: contain; }
.pricing-section { padding: 80px 0; }
.pricing-section .section-intro h2 { max-width: 640px; }
.pricing-section .section-intro > p { color: #b3b6ae; }
.billing-toggle { margin-top: 26px; }
.price-grid { width: min(1020px, calc(100% - 64px)); grid-template-columns: 1fr 1fr; gap: 20px; }
.price-card, .price-card.featured { padding: 32px; min-height: 0; height: auto; border: 0; border-radius: 16px; background: #faf9f6; }
.plan-top { min-height: 66px; gap: 12px; }
.plan-name { font-size: 25px; }
.plan-title { flex-wrap: wrap; gap: 8px; }
.popular-badge { min-height: 24px; font-size: 11px; background: #e4eadc; color: #314127; }
.price-card .plan-top h3 { margin: 0; font-size: 48px; line-height: 1; }
.price-card .plan-top h3 small { font-size: 12px; }
.billing-note { margin-top: 6px; font-size: 12px; color: #62645f; }
.price-card div > p:last-child { opacity: 1; }
.plan-description { min-height: 66px; margin-top: 16px; font-size: 14px; color: #53574e; }
.plan-includes { margin-top: 18px; min-height: 20px; font-size: 12px; color: #5a6352; letter-spacing: 0; text-transform: none; opacity: 1; }
.price-card .plan-highlights { margin: 12px 0 0; }
.price-card .plan-highlights li { min-height: 44px; padding-block: 11px; font-size: 13px; }
.price-card li::before { margin: 0; border-right: 0; }
.plan-more { margin-bottom: 24px; }
.plan-more summary, .price-card .plan-more li { font-size: 13px; }
.faq-section { padding: 72px 0 56px; }
.faq-shell { width: var(--shell); gap: 64px; }
.faq-section .section-intro h2 { font-size: 44px; line-height: 1.1; }
.faq-list summary { min-height: 68px; font-size: 17px; }
.faq-list p { font-size: 14px; }
.final-cta { padding: 0 0 64px; }
.final-cta-panel { width: var(--shell); min-height: 0; padding: 40px; border-radius: 16px; align-items: center; gap: 36px; background: #e4e8df; color: #101110; }
.final-cta h2 { font-size: 36px; max-width: 580px; }
.final-cta-panel p { margin-top: 12px; color: #58614f; font-size: 14px; }
.final-cta .button { background: #151615; color: #fff; }
.site-footer { padding: 44px 0 26px; }
.footer-lead { padding-bottom: 28px; }
.footer-grid { margin-top: 26px; gap: 24px; }
.footer-column a, .footer-column button { font-size: 12px; color: #b3b6aa; }
.footer-bottom { margin-top: 28px; }
.footer-bottom > p { color: #acb0a5; }
@media (hover: hover) and (pointer: fine) {
  .client-pages-showcase .showcase-page-preview:hover { transform: none; box-shadow: 0 10px 20px #1a191711; }
}

@media (max-width: 959px) {
  :root, html[data-theme="black"] { --header-height: 68px; --shell: calc(100vw - 40px); }
  .header-shell { width: calc(100% - 32px); grid-template-columns: 52px 1fr 52px; }
  .hero { padding-top: calc(var(--header-height) + 58px); }
  .hero-loop-slide { flex-basis: min(224px, 54vw); }
  .experience-card { flex-basis: 84vw; height: 390px; }
  .experience-copy, .switch-copy, .fit-copy { padding: 28px; }
  .experience-copy h3, .switch-copy h3, .fit-copy h3 { font-size: 30px; }
  .switch-media { height: 390px; }
  .fit-stage { display: grid; grid-template-columns: 1fr 1fr; }
  .fit-product { min-height: 430px; height: auto; }
  .fit-product img { height: 380px; }
  .price-grid { width: var(--shell); gap: 14px; }
  .price-card, .price-card.featured { padding: 26px; }
  .plan-title { flex-direction: column; align-items: flex-start; gap: 4px; }
  .price-card .plan-top h3 { font-size: 40px; }
  .faq-shell { gap: 32px; }
  .final-cta-panel { padding: 32px; }
}
@media (max-width: 699px) {
  .hero { padding: calc(var(--header-height) + 52px) 20px 26px; }
  .hero-copy { max-width: 370px; }
  .hero h1 { max-width: 360px; font-size: clamp(36px, 9.8vw, 43px); }
  .hero-lede { margin-top: 18px; font-size: 15px; line-height: 1.6; }
  .hero-actions { margin-top: 24px; }
  .hero-actions .button { min-width: 0; padding-inline: 18px; font-size: 13px; }
  .hero-swipe { margin-top: 32px; }
  .hero-loop-slide { flex-basis: min(208px, 54vw); }
  .hero-loop-track { gap: 12px; }
  .section-intro h2, .client-experience .section-intro h2, :is(.switch-heading, .stories .member-intro, .fit-intro, .pricing-section .section-intro) h2 { font-size: clamp(30px, 8.1vw, 36px); }
  .section-intro > p:last-child, .switch-heading > p:last-child, .fit-intro > p:last-child { font-size: 14px; margin-top: 14px; }
  .client-experience { padding: 56px 0 40px; }
  .client-carousel { margin-top: 28px; }
  .experience-card { flex-basis: min(340px, 86vw); height: 460px; grid-template-columns: 1fr; grid-template-rows: 190px 270px; }
  .experience-copy { padding: 24px; align-self: start; }
  .experience-copy h3 { font-size: 28px; }
  .experience-copy p { font-size: 14px; margin-top: 12px; line-height: 1.5; }
  .browser-mock { width: calc(100% - 40px); height: 270px; margin: 0 auto; }
  .booking-page { padding: 22px; }
  .booking-page h4 { margin-top: 24px; font-size: 34px; }
  .booking-page .mock-button { margin-top: 22px; }
  .bio-stage { padding: 0 28px; }
  .bio-card { height: 270px; padding: 18px; border-radius: 18px 18px 0 0; }
  .bio-avatar { width: 52px; height: 52px; margin-bottom: 8px; }
  .bio-card b { font-size: 16px; }
  .bio-card p { margin-bottom: 12px; font-size: 10px; }
  .bio-card .mock-button { min-height: 32px; margin-top: 6px; font-size: 11px; }
  .phone-stage { padding-top: 0; }
  .phone-stage img { width: 180px; }
  .client-pages-showcase { margin-top: 28px; padding: 0; }
  .client-pages-showcase .showcase-page-preview { flex-basis: min(230px, 60vw); }
  .site-preview b { font-size: 21px; }
  .switch-section { padding: 56px 0 40px; }
  .switch-heading { margin-bottom: 18px; }
  .switch-tabs { width: var(--shell); max-width: none; margin-bottom: 20px; }
  .switch-tabs button { flex: 1; padding: 10px 6px; font-size: 12px; }
  .switch-tabs button::after { left: 8px; right: 8px; }
  .switch-panel { grid-template-columns: 1fr; }
  .switch-copy { min-height: 228px; padding: 26px; }
  .switch-copy h3, .switch-panel:nth-child(2) .switch-copy h3, .switch-panel:nth-child(3) .switch-copy h3 { max-width: 17ch; font-size: 30px; }
  .switch-copy p { margin-top: 14px; font-size: 14px; }
  .switch-media { height: 284px; min-height: 0; }
  .switch-ui { width: 38%; max-width: 170px; bottom: -17%; }
  .switch-ui-checkout { bottom: -24%; }
  .switch-notification { right: 12px; bottom: 12px; padding: 10px 14px; }
  .switch-disclosure { font-size: 10px; }
  .stories { padding: 48px 0; }
  .stories .review-placeholder-note { font-size: 11px; }
  .stories .review-marquee { gap: 10px; margin-top: 18px; }
  .review-group { gap: 10px; padding-right: 10px; }
  .review-card { flex-basis: 260px; height: 176px; min-height: 176px; padding: 18px 20px; }
  .review-card p { font-size: 14px; }
  .review-card small strong { font-size: 12px; }
  .review-card small span { font-size: 11px; }
  .fit-section { padding: 12px 0 56px; }
  .fit-sticky-head .fit-tabs { width: var(--shell); grid-template-columns: 1fr 1fr; margin: 24px auto 20px; }
  .fit-tabs button { font-size: 12px; min-height: 44px; }
  .fit-stage { grid-template-columns: 1fr; }
  .fit-copy { height: auto; min-height: 340px; padding: 26px; }
  .fit-copy h3 { max-width: 18ch; font-size: 30px; }
  .fit-copy > p:not(:first-child) { margin-top: 14px; font-size: 14px; }
  .fit-copy ul { margin-block: 18px; }
  .fit-copy li { font-size: 12px; }
  .fit-copy .button { min-height: 44px; font-size: 13px; }
  .fit-product { min-height: 0; height: 328px; padding: 18px; }
  .fit-product img { height: 292px; max-width: 100%; }
  .pricing-section { padding: 56px 0; }
  .pricing-head { padding: 0; }
  .price-grid { grid-template-columns: 1fr; width: var(--shell); gap: 16px; }
  .price-card, .price-card.featured { padding: 26px; }
  .plan-title { flex-direction: row; align-items: center; gap: 8px; }
  .plan-top { min-height: 62px; }
  .price-card .plan-top h3 { font-size: 42px; }
  .plan-name { font-size: 24px; }
  .popular-badge { font-size: 10px; padding-inline: 8px; }
  .plan-description { min-height: 0; font-size: 14px; }
  .price-card .plan-highlights li, .plan-more summary, .price-card .plan-more li { font-size: 13px; }
  .faq-section { padding: 56px 0 36px; }
  .faq-shell { display: grid; grid-template-columns: 1fr; gap: 26px; }
  .faq-shell .section-intro { text-align: center; }
  .faq-section .section-intro h2 { font-size: 32px; }
  .faq-list { margin: 0; }
  .faq-list summary { min-height: 64px; font-size: 16px; }
  .final-cta { padding-bottom: 40px; }
  .final-cta-panel { display: grid; grid-template-columns: 1fr; min-height: 0; gap: 24px; padding: 28px; text-align: center; }
  .final-cta h2 { font-size: 30px; }
  .final-cta .button { justify-self: center; }
  .footer-grid { gap: 26px 20px; }
}
@media (max-width: 359px) {
  .hero-actions .button { padding-inline: 13px; font-size: 12px; }
  .experience-copy { padding: 22px; }
  .experience-copy h3 { font-size: 26px; }
  .experience-copy p { font-size: 13px; }
  .switch-copy, .fit-copy, .price-card { padding: 22px; }
  .plan-title { flex-direction: column; align-items: flex-start; gap: 4px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fan-phone, .review-track { animation: none !important; }
  .review-track { transform: none; }
  .review-row { overflow-x: auto; touch-action: auto; mask-image: none; padding-inline: 20px; }
}

/* v62 — a slightly brighter night sky; the opening viewport stays entirely in the hero. */
:root, html[data-theme="black"] {
  --hero-bg: #111214;
  --page-bg: #111214;
  --header-bg: #111214;
}
.site-header, .pricing-section, .site-footer { background: #111214; }
.site-header:not(.is-scrolled) { background: transparent; }
.site-header.is-scrolled { background: #111214f5; }
.hero { min-height: 100svh; isolation: isolate; }
.hero-swipe { position: relative; z-index: 1; }
.hero-stars { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-stars span {
  position: absolute;
  width: var(--star-size);
  height: var(--star-size);
  border-radius: 50%;
  background: #e0e6ef;
  opacity: .25;
  animation: star-twinkle var(--star-duration) ease-in-out var(--star-delay) infinite;
  animation-play-state: paused;
}
.stars-running .hero-stars span { animation-play-state: running; }
@keyframes star-twinkle {
  0%, 100% { opacity: .18; transform: translateY(0); }
  45% { opacity: .36; }
  60% { opacity: .8; transform: translateY(-3px); }
  80% { opacity: .28; }
}
.hero-motion-control {
  position: absolute;
  z-index: 5;
  right: 24px;
  bottom: 10px;
  min-height: 44px;
  padding: 0 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #b0b4bc;
  font-size: 11px;
  text-underline-offset: 4px;
}
.hero-motion-control:hover { color: #fff; text-decoration: underline; }
@media (min-width: 960px) {
  .hero { display: flex; flex-direction: column; justify-content: center; padding: calc(var(--header-height) + clamp(40px, 7svh, 92px)) 24px 64px; }
  .hero-copy { flex: 0 0 auto; width: 100%; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; width: 350px; margin-inline: auto; }
  .phone-fan { --fan-height: clamp(310px, 39svh, 448px); --fan-spread: clamp(110px, 13.2svh, 152px); flex: 0 0 auto; height: var(--fan-height); }
  .fan-dashboard { --height: var(--fan-height); }
  .fan-calendar { --height: calc(var(--fan-height) * .88); transform: translateX(calc(-50% - var(--fan-spread))) translateY(-12px); }
  .fan-inbox { --height: calc(var(--fan-height) * .88); transform: translateX(calc(-50% + var(--fan-spread))) translateY(-12px); }
}
@media (min-width: 960px) and (max-height: 800px) {
  .hero { padding-top: calc(var(--header-height) + 24px); padding-bottom: 40px; }
  .hero h1 { max-width: 480px; font-size: 46px; }
  .hero-lede { margin-top: 16px; font-size: 15px; line-height: 1.5; }
  .hero-actions { margin-top: 20px; }
  .hero-actions .button { min-height: 44px; }
  .phone-fan { --fan-height: clamp(224px, 34svh, 272px); --fan-spread: clamp(80px, 11.5svh, 92px); margin-top: 24px; }
}
@media (max-width: 959px) {
  .hero { padding-bottom: 58px; }
  .hero-motion-control { right: 12px; bottom: 8px; }
  .hero-stars span:nth-child(even) { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-stars span { animation: none; opacity: .25; }
  .hero-motion-control { display: none; }
}
