/* =============================================================
   CABOO · FRESH SYSTEM — site.css
   Painting layer for the new landing experience. Hero first.
   ============================================================= */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
/* anchored sections breathe instead of landing flush on the card edge */
#handoff, #ai-sees, #jobs, #pricing, #faq, #find { scroll-margin-top: 24px; }
::selection { background: rgba(242, 94, 64, .25); color: var(--ink); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* Homepage type after the hero stays on a deliberately small scale. */
:root {
  --home-section-title: clamp(1.75rem, 1.56rem + 0.82vw, 2.25rem);
  --home-card-title: clamp(1.125rem, 1.04rem + 0.36vw, 1.25rem);
  --home-body: clamp(0.9375rem, 0.91rem + 0.12vw, 1rem);
  --home-small: 0.875rem;
  --home-micro: 0.75rem;
  --home-badge: 0.6875rem;
}

/* ---- page frame ---- */
.page {
  min-height: calc(100vh - 32px);
  margin: 16px;                 /* the white gutter — cream fills the rest */
  background: var(--canvas);
  border-radius: var(--r-frame);
  padding: clamp(26px, 3.4vw, 52px) clamp(20px, 3.2vw, 44px) clamp(30px, 3.4vw, 60px);
  overflow: hidden;
}
/* content shell — full-width cream, but the content within is contained */
.shell {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---- top bar ---- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(40px, 7.5vh, 92px);
}
.brand { display: inline-flex; align-items: center; }
.brand img { height: clamp(24px, 2vw, 30px); width: auto; }
.topnav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.8vw, 18px);
  margin-left: auto;
  font-size: var(--home-small);
  color: var(--ink-2);
}
.topnav a:not(.signin) {
  padding: 8px 2px;
  transition: color var(--dur) var(--ease);
}
.topnav a:not(.signin):hover { color: var(--coral-ink); }
.signin {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--home-small);
  color: var(--ink);
  background: #efeae2;
  border: 1px solid var(--rule);
  padding: 11px 22px;
  border-radius: 999px;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.signin:hover { background: #e7e1d7; }
.signin:active { background: #e0d9cd; transform: scale(.985); transition-duration: var(--dur-fast); }
.signin:focus-visible { outline: 2px solid var(--coral-2); outline-offset: 3px; }
@media (max-width: 720px) {
  .topbar { align-items: flex-start; }
  .topnav { flex-wrap: wrap; justify-content: flex-end; gap: 6px 12px; }
  .topnav a:not(.signin) { padding-block: 4px; }
}
@media (max-width: 480px) {
  .topbar { flex-direction: column; }
  .topnav { width: 100%; justify-content: flex-start; }
}

/* ---- hero upper region ---- */
.hero {
  position: relative;
}
.hero__top {
  position: relative;
  width: 100%;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-display);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-display);
  color: var(--head-mute);
  margin: 0;
  /* engraved / inset: bright lip below the cut + a soft shadow inside the top edge */
  text-shadow: 0 1px 0 rgba(255, 255, 255, .92), 0 -1px 2px rgba(26, 22, 19, .08);
}
.hero__title .em { color: var(--espresso); }
/* one claim, three committed lines — the rotator never reflows the structure */
.hero__line { display: block; }

/* rotating word */
.rotator {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
  white-space: nowrap;
  transition: width .45s var(--ease);
}
.rotator__word {
  display: inline-block;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
  will-change: transform, opacity;
}
.rotator__word.is-out { opacity: 0; transform: translateY(-.36em); }
.rotator__word.is-in  { opacity: 0; transform: translateY(.36em); }
@media (prefers-reduced-motion: reduce) {
  .rotator, .rotator__word { transition: none; }
}

/* AI tiles inline in the headline */
.tiles {
  display: inline-flex;
  align-items: center;
  gap: .06em;
  margin: 0 .16em;
  vertical-align: -.08em;
}
.tile {
  --rot: 0deg;
  position: relative;
  display: inline-flex;
  cursor: help;
}
.tile__face {
  width: 1.05em;
  height: 1.05em;
  border-radius: var(--r-tile);
  background: #fff;
  box-shadow: 0 2px 5px rgba(26, 22, 19, .04), 0 10px 24px -6px rgba(26, 22, 19, .08), 0 22px 48px -12px rgba(26, 22, 19, .10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: rotate(var(--rot));
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
  animation: tile-in .5s var(--ease) backwards;
}
.tile__face img { width: 58%; height: 58%; object-fit: contain; pointer-events: none; }
.tile:nth-child(1) { --rot: -7deg; }
.tile:nth-child(2) { --rot: 4deg;  margin-left: -.05em; }
.tile:nth-child(3) { --rot: -4deg; margin-left: -.05em; }
.tile:nth-child(4) { --rot: 7deg;  margin-left: -.05em; }
.tile:nth-child(1) .tile__face { animation-delay: .04s; }
.tile:nth-child(2) .tile__face { animation-delay: .12s; }
.tile:nth-child(3) .tile__face { animation-delay: .20s; }
.tile:nth-child(4) .tile__face { animation-delay: .28s; }
.tile:hover .tile__face {
  transform: translateY(-.12em) scale(1.1) rotate(var(--rot));
  box-shadow: 0 4px 10px rgba(26, 22, 19, .05), 0 16px 34px -8px rgba(26, 22, 19, .10), 0 30px 60px -16px rgba(26, 22, 19, .12);
}
@keyframes tile-in {
  from { opacity: 0; transform: translateY(.18em) scale(.4) rotate(var(--rot)); }
  to   { opacity: 1; transform: translateY(0) scale(1) rotate(var(--rot)); }
}

/* interactive tooltip — upright (sits on .tile, not the rotated face) */
.tile::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 11px);
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: var(--ink);
  color: #fff;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  line-height: 1;
  white-space: nowrap;
  padding: 7px 11px;
  border-radius: 8px;
  box-shadow: 0 8px 20px -8px rgba(26, 22, 19, .5);
  text-shadow: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  z-index: 5;
}
.tile::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--ink);
  opacity: 0;
  transition: opacity .2s var(--ease);
  z-index: 5;
}
.tile:hover::after,
.tile.show-tip::after { opacity: 1; transform: translateX(-50%) translateY(0); }
.tile:hover::before,
.tile.show-tip::before { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .tile__face { animation: none; }
}

/* CTA */
.cta {
  display: inline-flex;
  align-items: center;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  cursor: pointer;
  margin-top: clamp(28px, 4.4vh, 46px);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--home-body);
  color: #fff;
  background: linear-gradient(180deg, var(--coral-1), var(--coral-2));
  padding: 16px 28px;
  border-radius: var(--r-btn);
  box-shadow: var(--shadow-btn);
  transition: transform var(--dur) var(--ease), filter var(--dur) var(--ease);
}
.cta:hover { transform: translateY(-1px); filter: saturate(108%) brightness(1.02); }
.cta:active { transform: translateY(0) scale(.985); filter: brightness(.96); transition-duration: var(--dur-fast); }
.cta:focus-visible { outline: 2px solid var(--coral-ink); outline-offset: 3px; }
.cta svg { width: 1.05em; height: 1.05em; margin-left: .5em; flex: 0 0 auto; }

/* aside paragraph */
.hero__aside {
  margin-top: 22px;
  max-width: 440px;
}
.hero__aside p {
  margin: 0;
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--body);
}
.hero__aside strong { color: var(--espresso); font-weight: 600; }

/* ---- stage (hero photo + chat overlay) ---- */
.stage {
  position: relative;
  margin-top: clamp(34px, 5.6vh, 64px);
  border-radius: clamp(18px, 2vw, 26px);
  overflow: hidden;
  height: clamp(452px, 44vh, 492px);
}
.stage__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

/* ---- FIND — dedicated AI-readable page: text left, layered scene right ---- */
.find { padding-block: clamp(60px, 9vh, 120px); }
.find__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  margin: 0 auto;                 /* full shell width (no cap) — aligns edges with the stage above */
}
.find__text { max-width: 30rem; }
.find__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-sechead);
  line-height: 1.0;
  letter-spacing: -.025em;
  color: #bcb4aa;            /* muted base — "Get a dedicated" / "Business Page" */
}
.find__title em { font-style: normal; color: var(--espresso); }   /* emphasis — "AI Readable" */
.find__sub { margin: 18px 0 0; max-width: 42ch; font-size: var(--home-body); line-height: 1.55; color: var(--ink-2); }
.find__text .cta { margin-top: clamp(22px, 3.2vh, 34px); }

/* the layered scene — blue rounded frame, clipped; bg → mockup → foreground hills */
.find__visual { position: relative; }
.find__stage {
  position: relative;
  aspect-ratio: 5 / 6;
  border-radius: 16px;
  overflow: hidden;
  /* soft blue hairline ring instead of a hard outline stroke */
  box-shadow: 0 0 0 1px rgba(120, 160, 225, .32), 0 26px 64px -32px rgba(40, 60, 110, .4);
  /* blue sky — interim gradient until the real sky landscape lands (the hills are the fg layer) */
  background: linear-gradient(180deg, #86b0e3 0%, #abc9ec 30%, #d8e5f1 56%, #efe9e1 82%);
}
.find__layer { position: absolute; inset: 0; pointer-events: none; transition: transform .4s var(--ease); will-change: transform; }
.find__layer img { width: 100%; height: 100%; object-fit: cover; display: block; will-change: transform; }
/* L1 — landscape, back */
.find__layer--bg { z-index: 1; }
.find__bg { object-position: center 42%; scale: 1.06; }
/* L2 — browser mockup, planted near the bottom, contained */
.find__layer--mock { z-index: 2; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 6%; transform: translate(calc(var(--px, 0) * -7px), calc(var(--py, 0) * -6px + var(--lift, 0px))); }
.find__layer--mock img { width: min(86%, 520px); height: auto; object-fit: contain; filter: drop-shadow(0 22px 34px rgba(28, 40, 78, .32)); }
/* L3 — foreground hills (transparent top), overlapping the mockup's base */
.find__layer--fg { z-index: 3; top: auto; bottom: -2px; height: 40%; transform: translate(calc(var(--px, 0) * -13px), 0); }
.find__fg { object-fit: cover; object-position: center bottom; scale: 1.08; }

/* hover: the mockup rises up out of the landscape */
@media (hover: hover) and (pointer: fine) {
  .find__stage:hover { --lift: -22px; }
}
@media (prefers-reduced-motion: reduce) {
  .find__layer { transition: none; }
  .find__stage:hover { --lift: 0px; }
}

@media (max-width: 860px) {
  .find__grid { grid-template-columns: 1fr; gap: clamp(26px, 6vw, 40px); align-items: start; }
  .find__text { max-width: none; }
  .find__stage { aspect-ratio: 4 / 5; max-width: 540px; margin-inline: auto; }
}

/* ============ relay — their ChatGPT → your WhatsApp (the handoff) ============ */
.relay { padding-block: clamp(60px, 9vh, 120px) 0; }
.relay__head { max-width: 820px; margin: 0 auto; text-align: center; }
.relay__sub { margin: 16px auto 0; max-width: 52ch; font-size: var(--home-body); line-height: 1.55; color: var(--ink-2); }

.relay__frame {
  position: relative;
  max-width: 1152px;
  margin: clamp(30px, 5vh, 54px) auto 0;
  aspect-ratio: 1202 / 520;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 90px -46px rgba(46, 34, 60, .5);
}
.relay__bg { position: absolute; inset: 0; z-index: 0; }
.relay__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* left — the customer's ChatGPT booking window (dark glass drawer, clipped at the frame's foot) */
.rchat {
  position: absolute; z-index: 2;
  left: 32%; top: 9%; bottom: 0;
  width: clamp(300px, 36%, 420px);
  display: flex; flex-direction: column;
  background: rgba(36, 27, 19, .42);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, .18); border-bottom: 0;
  border-radius: 26px 26px 0 0;
  box-shadow: 0 -16px 54px -22px rgba(40, 20, 10, .5);
  color: #f4ece0; overflow: hidden;
}
.rchat__head { display: flex; align-items: center; gap: 9px; padding: 14px 18px 12px; font-weight: 600; font-size: .95rem; color: #fff; }
.rchat__head img { width: 20px; height: 20px; border-radius: 5px; background: #fff; padding: 2px; }
.rchat__panel { flex: 1 1 auto; min-height: 0; display: flex; flex-direction: column; margin: 0 10px; background: rgba(255, 255, 255, .94); border-radius: 16px 16px 0 0; box-shadow: 0 2px 10px -3px rgba(20, 12, 6, .22); overflow: hidden; }
.rchat__body { flex: 1 1 auto; padding: 20px 22px 6px; transition: opacity .36s ease; }
.rchat__body.is-swap { opacity: 0; }
.rchat__user { margin: 0 0 16px auto; max-width: 84%; width: fit-content; background: #f1ece3; border-radius: 16px; padding: 11px 14px; font-size: .92rem; line-height: 1.4; color: var(--ink); }
.rchat__confirm { padding-top: 14px; border-top: 1px solid var(--rule); }
.rchat__label { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--coral-ink); }
.rchat__biz { margin: 12px 0 4px; font-family: var(--font-mono); font-size: .9rem; color: var(--ink); }
.rchat__addr { margin: 0 0 14px; font-family: var(--font-mono); font-size: .82rem; color: var(--ink-3); }
.rchat__when { display: flex; flex-wrap: wrap; gap: 8px; }
.rchat__when .when { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; background: #fff; border: 1px solid var(--rule); color: var(--ink); font-family: var(--font-mono); font-size: .84rem; padding: 8px 12px; border-radius: 10px; }
.rchat__when .when svg { width: 14px; height: 14px; flex: 0 0 auto; color: var(--coral-2); }
.rchat__when .when b { font-weight: 500; }
.rchat__composer { display: flex; align-items: center; gap: 12px; margin: 12px; padding: 11px 14px; background: #fff; border: 1px solid var(--rule); border-radius: 14px; color: var(--ink-3); }
.rchat__composer svg { width: 18px; height: 18px; display: block; flex: 0 0 auto; opacity: .9; }
.rchat__input { flex: 1; min-width: 0; font-size: .92rem; color: var(--ink-3); }

/* right — iOS notification stacks, one per channel (SMS · WhatsApp · Email) */
.nstack--biz   { position: absolute; z-index: 2; left:  clamp(14px, 3%, 48px); top: 30%; width: clamp(240px, 30%, 358px); }
.relay__right { position: absolute; z-index: 2; right: clamp(14px, 3%, 48px); top: 18%; width: clamp(240px, 30%, 358px); display: flex; flex-direction: column; gap: 20px; }
.nstack { display: grid; }
.nstack > .ncard { grid-area: 1 / 1; }
.ncard {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 13px 16px;
  border-radius: 22px;
  background: rgba(250, 250, 252, .9);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .42), 0 14px 34px -16px rgba(40, 30, 60, .5);
  transition: transform .52s cubic-bezier(.32, .72, 0, 1), opacity .52s cubic-bezier(.32, .72, 0, 1);
  will-change: transform, opacity;
}
.ncard__app { flex: 0 0 auto; width: 40px; height: 40px; }
.ncard__app img { width: 40px; height: 40px; display: block; border-radius: 9px; }
.ncard__body { flex: 1 1 auto; min-width: 0; padding-top: 1px; }
.ncard__top { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.ncard__top strong { font-weight: 600; font-size: .92rem; letter-spacing: -.01em; color: #0b0b0c; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ncard__time { flex: 0 0 auto; font-size: .8rem; color: rgba(60, 60, 67, .6); }
.ncard__sub { margin: 3px 0 0; font-size: .9rem; line-height: 1.3; color: #1a1613; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ncard__meta { margin: 2px 0 0; font-size: .82rem; line-height: 1.3; color: rgba(60, 60, 67, .62); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ncard--receipt .ncard__app--check { display: grid; place-items: center; background: #34c759; border-radius: 50%; color: #fff; }
.ncard--receipt .ncard__app--check svg { width: 22px; height: 22px; }

/* deck — no-JS fallback via nth-child; relay.js drives data-slot for the auto-shuffle */
.nstack .ncard:nth-child(1) { transform: translateY(0) scale(1); opacity: 1; z-index: 3; }
.nstack .ncard:nth-child(2) { transform: translateY(10px) scale(.965); opacity: .82; z-index: 2; }
.nstack .ncard:nth-child(3) { transform: translateY(20px) scale(.93); opacity: .6; z-index: 1; }
.nstack .ncard[data-slot="0"] { transform: translateY(0) scale(1); opacity: 1; z-index: 3; }
.nstack .ncard[data-slot="1"] { transform: translateY(10px) scale(.965); opacity: .82; z-index: 2; }
.nstack .ncard[data-slot="2"] { transform: translateY(20px) scale(.93); opacity: .6; z-index: 1; }
.nstack .ncard[data-slot="above"] { transform: translateY(-24px) scale(.95); opacity: 0; z-index: 4; }

@media (max-width: 860px) {
  .relay__frame { aspect-ratio: auto; padding: clamp(16px, 5vw, 26px); display: flex; flex-direction: column; gap: 14px; }
  .rchat { position: relative; left: auto; top: auto; bottom: auto; width: auto; border-bottom: 1px solid rgba(255, 255, 255, .18); border-radius: 22px; }
  .nstack--biz, .relay__right { position: relative; left: auto; right: auto; top: auto; width: auto; }
  .nstack .ncard { position: static; transform: none !important; opacity: 1 !important; }
  .nstack .ncard ~ .ncard { display: none; }
}

/* chat card */
.chat {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transform-origin: bottom center;
  width: min(496px, 90%);
  min-height: 392px;
  display: flex;
  flex-direction: column;
  background: rgba(36, 27, 19, .42);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 0;
  border-radius: 26px 26px 0 0;
  box-shadow: 0 -16px 54px -22px rgba(40, 20, 10, .5);
  color: #f4ece0;
  overflow: hidden;
  animation: drawer-up .8s var(--ease) .25s backwards;
  transition: box-shadow .34s var(--ease);
  will-change: transform;
}
.chat:hover {
  box-shadow: 0 -22px 64px -20px rgba(40, 20, 10, .56);
}
@keyframes drawer-up {
  from { transform: translateX(-50%) translateY(56px); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0); opacity: 1; }
}
.chat__head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 18px 12px;
  font-weight: 600;
  font-size: .95rem;
  color: #fff;
}
.chat__head img { width: 20px; height: 20px; border-radius: 5px; background: #fff; padding: 2px; }
.chat__panel {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  margin: 0 10px;
  background: #fff;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 2px 10px -3px rgba(20, 12, 6, .22);
  overflow: hidden;
}
.chat__body { flex: 1 1 auto; padding: 20px 22px 6px; }
.chat__user {
  margin: 0 0 16px auto;
  max-width: 82%;
  width: fit-content;
  background: #f1ece3;
  border-radius: 16px;
  padding: 11px 14px;
  font-size: .95rem;
  line-height: 1.4;
  color: var(--ink);
}
.chat__confirm { padding-top: 14px; border-top: 1px solid var(--rule); }
.chat__label {
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--coral-ink);
}
.chat__biz { margin: 12px 0 4px; font-family: var(--font-mono); font-size: .92rem; color: var(--ink); }
.chat__addr { margin: 0 0 14px; font-family: var(--font-mono); font-size: .85rem; color: var(--ink-3); }
/* date + time as two labeled tokens — calendar and clock, never one mashed string */
.when {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .14);
  font-family: var(--font-mono);
  font-size: .76rem;
  color: #f4ece0;
  white-space: nowrap;
}
.when svg { width: 14px; height: 14px; flex: 0 0 auto; opacity: .85; }
.when b { font-weight: 500; }
/* tokens pop the moment a chip tap re-fills them — the toy answers back */
.when.is-tick, .hchat__hold.is-tick { animation: when-tick .24s var(--ease); }
@keyframes when-tick { 50% { transform: scale(1.07); } }
/* hero confirm keeps the white punch of the old time pill, split in two */
.chat__when { display: flex; flex-wrap: wrap; gap: 8px; }
.chat__when .when { background: #fff; border: 1px solid var(--rule); color: var(--ink); font-size: .85rem; padding: 8px 12px; border-radius: 10px; }
.chat__when .when svg { color: var(--coral-2); opacity: 1; }
.chat__composer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 22px 22px;
  padding: 11px 14px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 14px;
  color: var(--ink-3);
}
.chat__composer svg { width: 18px; height: 18px; display: block; flex: 0 0 auto; opacity: .9; }
.chat__input {
  flex: 1; min-width: 0;
  font-size: .92rem; line-height: 1.3;
  color: var(--ink);
  white-space: nowrap; overflow: hidden;
}
.chat__input:empty::before { content: "Message\2026"; color: var(--ink-3); }
.chat__input.is-typing::after {
  content: ""; display: inline-block;
  width: 2px; height: 1.02em; margin-left: 1px; vertical-align: -2px;
  background: currentColor; animation: chat-caret 1s steps(1) infinite;
}
@keyframes chat-caret { 50% { opacity: 0; } }
.chat__composer.is-send .chat__input { animation: chat-send-up .3s var(--ease) forwards; }
@keyframes chat-send-up { from { opacity: 1; transform: none; } to { opacity: 0; transform: translateY(-14px); } }

/* ---- chat choreography (compose → lift → step-through → confirm) ---- */
.chat__head { transition: opacity .22s var(--ease); }
.chat__head.is-swap { opacity: .3; }
.chat__head img { transition: opacity .22s var(--ease); }
.chat__body { transition: opacity .4s var(--ease); }
.chat__body.is-fade { opacity: 0; }

.chat__user.is-hidden { display: none; }
.chat__user.is-in { animation: chat-bubble-in .42s var(--ease); }
@keyframes chat-bubble-in { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: none; } }

/* agent step-through — one line; the label swaps as it works so the drawer height stays put */
.chat__steps { display: none; padding: 7px 2px; min-height: calc(1em + 14px); }
.chat__steps.is-on { display: block; }
.chat__steps.is-clearing { opacity: 0; transition: opacity .26s var(--ease); }
.chat__step { display: flex; align-items: center; gap: 10px; min-width: 0; }
.chat__step-ico { position: relative; flex: 0 0 auto; width: 15px; height: 15px; }
.chat__step.is-active .chat__step-ico::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(26, 22, 19, .14); border-top-color: var(--coral-2);
  animation: chat-spin .7s linear infinite;
}
@keyframes chat-spin { to { transform: rotate(360deg); } }
.chat__step-ico svg { width: 15px; height: 15px; color: #2f9e5b; opacity: 0; transition: opacity .2s var(--ease); }
.chat__step.is-done .chat__step-ico svg { opacity: 1; }
.chat__step-label {
  min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  font-family: var(--font-mono); font-size: .8rem; letter-spacing: .04em; color: var(--ink-2);
  transition: opacity .17s var(--ease), transform .17s var(--ease);
}
.chat__step-label.is-out { opacity: 0; transform: translateY(-5px); }

.chat__confirm.is-hidden { display: none; }
.chat__confirm:not(.is-hidden) { animation: chat-confirm-in .45s var(--ease); }
@keyframes chat-confirm-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .chat__body, .chat__confirm, .chat__head, .chat__head img { transition: none; }
  .chat__input.is-typing::after, .chat__composer.is-send .chat__input { animation: none; }
  .chat__user.is-in { animation: none; }
  .chat__confirm:not(.is-hidden) { animation: none; }
  .chat__step.is-active .chat__step-ico::before { animation: none; }
  .chat__step-label { transition: none; }
}

/* ---- responsive ---- */
@media (min-width: 1040px) {
  .hero__aside {
    position: absolute;
    bottom: 0;            /* sit at the base of the headline — on the "finger!" line */
    right: 0;
    width: clamp(252px, 25%, 330px);
    max-width: none;
    margin: 0;
  }
}
@media (max-width: 860px) {
  .hero__aside { margin-top: 18px; }
}
@media (max-width: 560px) {
  .stage { height: clamp(468px, 66vh, 552px); }
  .chat { width: 92%; min-height: 480px; }
  .chat__body { padding: 13px 13px 2px; }
  .stage { height: clamp(480px, 78vh, 600px); }
}
@media (prefers-reduced-motion: reduce) {
  .chat { animation: none; }
}

/* =============================================================
   SECTIONS — shared rhythm
   ============================================================= */
.pricing,
.faq { padding-block: clamp(64px, 9vh, 124px); }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--coral-ink);
  margin-bottom: 14px;
}
/* ---- shared section header — the hero pattern: display-scale title left,
       small aside hanging at its baseline. Section heads are scenes, not
       document headings; the engraved treatment only works at this scale. ---- */
.sechead { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(24px, 4vw, 60px); align-items: end; max-width: 1120px; margin: 0 auto clamp(38px, 6vh, 64px); }
.sechead__title { margin: 0; font-family: var(--font-display); font-weight: 800; font-size: var(--fs-sechead); line-height: var(--lh-tight); letter-spacing: var(--tracking-display); color: var(--head-mute); text-shadow: 0 1px 0 rgba(255, 255, 255, .92), 0 -1px 2px rgba(26, 22, 19, .08); text-wrap: balance; }
.sechead__title em { font-style: normal; color: var(--espresso); }
.sechead__aside { padding-bottom: .35em; }
.sechead__aside p { margin: 0; max-width: 40ch; font-size: var(--home-body); line-height: var(--lh-normal); color: var(--ink-2); }
/* canon --bp-md (860): stacks with .jobs / .aisees / .faq, not at a lone 800 */
@media (max-width: 860px) { .sechead { grid-template-columns: 1fr; gap: 20px; align-items: start; } .sechead__aside { padding-bottom: 0; } }

/* ---- stakes — one sentence at display scale, a pull-quote breath between
       the two demo scenes ---- */
.stakes { padding-block: clamp(76px, 11vh, 150px) clamp(8px, 1.5vh, 20px); }
.stakes__line {
  margin: 0 auto;
  max-width: 24ch;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-display);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-display);
  color: var(--head-mute);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .92), 0 -1px 2px rgba(26, 22, 19, .08);
  text-wrap: balance;
}
.stakes__line em { font-style: normal; color: var(--espresso); }

/* parallax headroom — stage photos render 8% oversize so the slow drift
   (home.js) never exposes an edge; harmless static zoom without JS */
.stage__photo, .handoff__photo { scale: 1.08; }

/* ---- scroll-into-view reveals — armed by home.js (no-JS pages stay visible);
       per-element stagger rides inline transition-delay. Text rises; cards
       rise and settle from .98 scale — two voices, one law ---- */
.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--dur-reveal) var(--ease), transform var(--dur-reveal) var(--ease);
}
.js-reveal [data-reveal="card"] { transform: translateY(14px) scale(.98); }
.js-reveal [data-reveal].is-seen { opacity: 1; transform: none; }
/* the stakes emphasis inks in a beat after the line lands */
.js-reveal .stakes__line em { color: var(--head-mute); transition: color .5s var(--ease) .35s; }
.js-reveal .stakes__line.is-seen em { color: var(--espresso); }
/* the machine read-out types itself in, row by row, once seen */
.js-reveal [data-reveal] .ml { opacity: 0; transform: translateY(6px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.js-reveal [data-reveal].is-seen .ml { opacity: 1; transform: none; }
.js-reveal [data-reveal].is-seen .ml:nth-child(1) { transition-delay: .1s; }
.js-reveal [data-reveal].is-seen .ml:nth-child(2) { transition-delay: .18s; }
.js-reveal [data-reveal].is-seen .ml:nth-child(3) { transition-delay: .26s; }
.js-reveal [data-reveal].is-seen .ml:nth-child(4) { transition-delay: .34s; }
.js-reveal [data-reveal].is-seen .ml:nth-child(5) { transition-delay: .42s; }
.js-reveal [data-reveal].is-seen .ml:nth-child(6) { transition-delay: .5s; }
.js-reveal [data-reveal].is-seen .ml:nth-child(7) { transition-delay: .58s; }
@media (prefers-reduced-motion: reduce) {
  .js-reveal [data-reveal], .js-reveal [data-reveal] .ml { opacity: 1; transform: none; transition: none; }
  .js-reveal .stakes__line em { color: var(--espresso); transition: none; }
}

/* ---- the jobs — a ledger, not a grid: each capability is a full-width row
       ending in the real artifact it produces ---- */
/* ---- capability ladder ---- */
.ladder { padding-block: clamp(60px, 9vh, 120px); }
.ladder__head { max-width: 1180px; margin: 0 auto clamp(30px, 4.4vw, 60px); text-align: center; }
.ladder__title {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-sechead);
  line-height: 1.02;
  letter-spacing: -.025em;
  color: #bcb4aa;            /* muted base · ~mute→emphasis law */
}
.ladder__title em { font-style: normal; color: var(--espresso); }
.ladder__sub { margin: 16px auto 0; max-width: 54ch; font-size: var(--home-body); line-height: 1.55; color: var(--ink-2); }

.ladder__rows { max-width: 1120px; margin: 0 auto; border-bottom: 1px solid var(--rule); }

.rung {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  min-height: 130px;
  padding: 10px clamp(16px, 2.4vw, 30px);
  border-top: 1px solid var(--rule);
  overflow: hidden;
  transition: min-height .44s var(--ease), background-color .42s var(--ease), box-shadow .42s var(--ease), border-radius .3s var(--ease);
}
.rung__lead { grid-column: 1; display: flex; flex-direction: column; gap: 4px; z-index: 4; }
.rung__num { font-size: var(--home-micro); font-weight: 400; letter-spacing: .14em; color: var(--ink-3); transition: color .3s var(--ease); }
.rung__verb {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.3rem, 1.5rem + 3.3vw, 4.1rem);
  line-height: .92;
  letter-spacing: -.03em;
  color: #c4bcb2;            /* muted verb (collapsed) */
  transition: color .3s var(--ease);
}
.rung__desc { grid-column: 2; justify-self: end; max-width: 30ch; margin: 0; font-size: var(--home-small); line-height: 1.5; color: var(--ink-3); transition: opacity .3s var(--ease); z-index: 4; }

/* the expanded stage — breakout art + glass card live here, absolutely placed
   so they never add height to a collapsed rung */
/* the stage spans the whole band (absolute) so art + card can sit center-right;
   the band clips it (overflow:hidden) so nothing spills outside the container */
.rung__stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
/* illustration sits center-right, contained, rising from the band's bottom */
.rung__art {
  position: absolute;
  left: 29%;
  top: 14px;
  bottom: -2px;
  width: clamp(258px, 31vw, 410px);
  background: center bottom / contain no-repeat;
  z-index: 2;
  opacity: 0;
  transform: translateX(56px);
  filter: drop-shadow(0 20px 30px rgba(120, 30, 10, .3));
  /* leave = quick, immediate, no delay — switching rows never looks weird */
  transition: opacity .24s var(--ease), transform .24s var(--ease);
  pointer-events: none;
}
.rung--find .rung__art { background-image: url(/w/assets/img/ladder/find.png?v=20260621-ladder6); }
.rung--list .rung__art { background-image: url(/w/assets/img/ladder/list.png?v=20260621-ladder6); }
.rung--book .rung__art { background-image: url(/w/assets/img/ladder/book.png?v=20260621-ladder6); }
.rung--recommend .rung__art { background-image: url(/w/assets/img/ladder/recommend.png?v=20260621-ladder6); width: clamp(420px, 48vw, 620px); top: -6px; bottom: -14px; }
/* money is landscape, so contain shrinks it — give Pay a wider box to match the others' weight */
.rung--pay .rung__art { background-image: url(/w/assets/img/ladder/pay.png?v=20260621-ladder6); width: clamp(430px, 49vw, 640px); top: -6px; bottom: -16px; }

/* frosted glass artifact card */
/* frosted glass panel — a true bottom drawer: slides up from the band's bottom
   edge (clipped by the band), never floating, bottom never visible */
.lcard {
  position: absolute;
  bottom: 0;
  left: 73%;
  transform: translate(-50%, 112%);
  transition: transform .3s var(--ease);
  z-index: 3;
  width: min(440px, 50%);
  padding: 20px 22px;
  background: rgba(255, 240, 235, .87);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, .6);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 5px 18px -8px rgba(90, 22, 8, .28);
  color: var(--ink);
  text-align: left;
}
.lcard__head { display: flex; align-items: center; gap: 8px; margin-bottom: 13px; }
.lcard__logo { width: 20px; height: 20px; }
/* one font (Geist), one weight (400) throughout the panel — hierarchy from size + colour, never weight */
.lcard__by { font-size: .82rem; font-weight: 400; color: var(--ink-2); }
/* Stripe mark on the Pay response — the request is the assistant's, the payment comes from Stripe */
.lcard__via { width: 22px; height: 22px; flex: 0 0 auto; }
/* the customer's request — a query bubble above the result, so each card is a mini request → response */
.lcard__ask { margin: 0 0 14px auto; max-width: 90%; width: fit-content; padding: 9px 13px; background: rgba(255, 255, 255, .66); border-radius: 14px 14px 4px 14px; font-size: .88rem; font-weight: 400; line-height: 1.4; color: var(--ink); }
.lcard__label { display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; color: var(--coral-ink); }
.lcard__title { margin: 8px 0 4px; font-size: 1rem; font-weight: 400; line-height: 1.32; color: var(--ink); }
.lcard__sub { margin: 0; font-size: .85rem; font-weight: 400; line-height: 1.5; color: var(--ink-3); }
.lcard__pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.lpill { display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; background: rgba(255, 255, 255, .8); border: 1px solid rgba(255, 255, 255, .7); border-radius: 10px; font-size: .8rem; font-weight: 400; color: var(--ink); white-space: nowrap; }
.lpill svg { width: 13px; height: 13px; flex: 0 0 auto; color: var(--coral-2); }

/* ---- open / spotlight state ---- */
.rung.is-open {
  min-height: clamp(272px, 31vh, 322px);
  border-radius: 24px;
  overflow: hidden;
  border-top-color: transparent;
  background-color: #e0401d;
  /* gradient mesh — soft light-orange orbs blurred over a coral-red base */
  background-image:
    radial-gradient(58% 120% at 6% 64%, #ff9b58 0%, rgba(255, 155, 88, 0) 58%),
    radial-gradient(42% 84% at 26% -8%, #ffb277 0%, rgba(255, 178, 119, 0) 55%),
    radial-gradient(48% 70% at 52% 116%, #ff8542 0%, rgba(255, 133, 66, 0) 60%),
    radial-gradient(72% 120% at 100% 6%, #d2371a 0%, rgba(210, 55, 26, 0) 55%),
    linear-gradient(106deg, #f1581f 0%, #df3f1d 60%, #d2371a 100%);
  color: #fff;
  /* inner shadow — the page opens up to reveal a recessed well, not a card lifting off */
  box-shadow: inset 0 17px 30px -15px rgba(78, 16, 4, .5), inset 0 -11px 26px -16px rgba(78, 16, 4, .34);
  z-index: 1;
}
/* each rung's mesh is positioned differently so the open bands feel distinct */
.rung--find.is-open {
  background-image:
    radial-gradient(58% 120% at 16% -12%, #ffb277 0%, rgba(255, 178, 119, 0) 56%),
    radial-gradient(46% 96% at 2% 86%, #ff9b58 0%, rgba(255, 155, 88, 0) 58%),
    radial-gradient(72% 120% at 98% 56%, #d2371a 0%, rgba(210, 55, 26, 0) 55%),
    linear-gradient(104deg, #f1581f, #d83b1b);
}
.rung--list.is-open {
  background-image:
    radial-gradient(52% 104% at 42% 122%, #ff9b58 0%, rgba(255, 155, 88, 0) 56%),
    radial-gradient(44% 92% at 74% -16%, #ffb277 0%, rgba(255, 178, 119, 0) 55%),
    radial-gradient(70% 124% at 0% 42%, #e0441f 0%, rgba(224, 68, 31, 0) 55%),
    linear-gradient(94deg, #ef5620, #d6391b);
}
.rung--recommend.is-open {
  background-image:
    radial-gradient(56% 120% at 94% 72%, #ffb277 0%, rgba(255, 178, 119, 0) 56%),
    radial-gradient(48% 96% at 72% -14%, #ff9b58 0%, rgba(255, 155, 88, 0) 55%),
    radial-gradient(72% 130% at -2% 28%, #d8391b 0%, rgba(216, 57, 27, 0) 55%),
    linear-gradient(84deg, #ef5620, #d4381b);
}
.rung--pay.is-open {
  background-image:
    radial-gradient(60% 122% at 32% 124%, #ff9b58 0%, rgba(255, 155, 88, 0) 58%),
    radial-gradient(50% 94% at 90% 8%, #ffb277 0%, rgba(255, 178, 119, 0) 55%),
    radial-gradient(62% 120% at 6% -12%, #ef5a22 0%, rgba(239, 90, 34, 0) 55%),
    linear-gradient(120deg, #f0571f, #d4381b);
}
.rung.is-open + .rung { border-top-color: transparent; }
.rung.is-open .rung__verb { color: #fff; }
.rung.is-open .rung__num { color: rgba(255, 255, 255, .72); }
.rung.is-open .rung__desc { opacity: 0; visibility: hidden; }
/* enter = drawer up, then the illustration fades in behind it (.42s delay) */
.rung.is-open .lcard { transform: translate(-50%, 0); transition: transform .56s cubic-bezier(.2, .75, .25, 1); }
/* enter = slides in from the right, eased + a touch longer, after the panel (.42s delay) */
.rung.is-open .rung__art { opacity: 1; transform: translateX(0); transition: opacity .62s cubic-bezier(.16, .84, .32, 1) .42s, transform .68s cubic-bezier(.16, .84, .32, 1) .42s; }

@media (hover: hover) and (pointer: fine) {
  .rung:not(.is-open):hover { cursor: pointer; }
  .rung:not(.is-open):hover .rung__verb { color: var(--espresso); }
  .rung:not(.is-open):hover .rung__num { color: var(--coral-ink); }
}

@media (max-width: 860px) {
  .rung {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px clamp(14px, 4vw, 22px);
  }
  .rung__lead { flex-direction: row; align-items: baseline; gap: 12px; }
  .rung__desc { grid-column: 1; justify-self: start; max-width: none; }
  .rung__stage { position: relative; inset: auto; min-height: 0; }
  .rung.is-open .rung__stage { min-height: 240px; margin-top: 10px; }
  .rung__art { left: auto; right: 0; top: auto; bottom: 0; width: 150px; }
  .lcard { position: relative; left: auto; bottom: auto; width: 100%; transform: translateY(34px); }
  .rung.is-open .lcard { transform: translateY(0); }
  .rung.is-open .rung__art { transform: translateY(0); }
  .rung.is-open .rung__desc { opacity: 1; visibility: visible; }
}

@media (prefers-reduced-motion: reduce) {
  .rung, .rung__stage, .rung__verb, .rung__desc, .rung__num { transition: none; }
}

.sechead__aside .btn-soft { margin-top: 18px; }
.btn-soft { display: inline-flex; align-items: center; gap: 9px; appearance: none; -webkit-appearance: none; cursor: pointer; background: var(--surface); border: 1px solid var(--rule); color: var(--ink); font-family: var(--font-body); font-weight: 600; font-size: var(--fs-small); padding: 11px 20px; border-radius: 999px; transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease); }
.btn-soft:hover { transform: translateY(-1px); background: var(--canvas); border-color: rgba(26, 22, 19, .22); }
.btn-soft:active { transform: translateY(0) scale(.985); filter: brightness(.97); transition-duration: var(--dur-fast); }
.btn-soft:focus-visible { outline: 2px solid var(--coral-2); outline-offset: 3px; }
.btn-soft svg { width: 1.05em; height: 1.05em; color: var(--coral-ink); }

.pillar__soon { color: #bd3d23; background: rgba(242, 94, 64, .14); border: 1px solid rgba(216, 73, 44, .28); }

/* ---- handoff (their ChatGPT → your WhatsApp) — second stage, two glass drawers ---- */
.handoff { padding-block: clamp(60px, 9vh, 120px) 0; }
.handoff__stage {
  position: relative;
  margin-top: clamp(10px, 2vh, 22px);
  border-radius: clamp(18px, 2vw, 26px);
  overflow: hidden;
  height: clamp(500px, 62vh, 680px);
}
.handoff__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
/* the two glass drawers — same material as the hero chat */
.hchat {
  position: absolute;
  bottom: 0;
  width: min(400px, 43%);
  background: rgba(30, 23, 18, .42);
  backdrop-filter: blur(20px) saturate(135%);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
  border: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -12px 50px -18px rgba(0, 0, 0, .6);
  color: #f4ece0;
  overflow: hidden;
}
.hchat--ai { left: clamp(14px, 4vw, 54px); animation: hdrawer-up .8s var(--ease) .2s backwards; }
.hchat--wa { right: clamp(14px, 4vw, 54px); animation: hdrawer-up .8s var(--ease) .45s backwards; }
@keyframes hdrawer-up {
  from { transform: translateY(54px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.hchat__grip { width: 42px; height: 5px; border-radius: 999px; background: rgba(255, 255, 255, .42); margin: 11px auto 2px; }
.hchat__head { display: flex; align-items: center; gap: 9px; padding: 4px 18px 12px; font-weight: 500; font-size: .95rem; color: #fff; }
/* landing beat — the drawer takes the booking's weight as the pulse arrives */
.hchat__head.is-land { animation: wa-land .24s var(--ease); }
@keyframes wa-land { 0% { transform: scale(1); } 38% { transform: scale(1.04); } 100% { transform: scale(1); } }
.hchat__head img { width: 20px; height: 20px; border-radius: 5px; background: #fff; padding: 2px; }
.hchat__body { display: flex; flex-direction: column; gap: 9px; padding: 12px 16px 18px; min-height: 296px; justify-content: flex-end; transition: opacity .4s var(--ease); }
.hchat__body.is-fade { opacity: 0; }
.hchat__b { opacity: 0; transform: translateY(10px); transition: opacity .38s var(--ease), transform .38s var(--ease); max-width: 88%; font-size: .88rem; line-height: 1.42; border-radius: 14px; padding: 10px 13px; }
.hchat__b.is-in { opacity: 1; transform: none; }
.hchat__user { align-self: flex-end; background: rgba(255, 255, 255, .13); color: #f3ece0; border-bottom-right-radius: 5px; }
.hchat__agent { align-self: flex-start; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .1); color: #f1e9dc; border-bottom-left-radius: 5px; }
.hchat__chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
/* chips are real buttons — tapping one drives the choreography with that slot */
.hchat__chip { appearance: none; -webkit-appearance: none; font: inherit; font-size: .82rem; padding: 5px 12px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .3); background: transparent; color: #f3ece0; cursor: pointer; user-select: none; -webkit-user-select: none; transition: background .24s var(--ease), border-color .24s var(--ease), color .24s var(--ease), transform var(--dur-fast) var(--ease); }
.hchat__chip:hover { border-color: rgba(255, 255, 255, .6); }
.hchat__chip:active { transform: scale(.94); }
.hchat__chip:focus-visible { outline: 2px solid var(--coral-1); outline-offset: 2px; }
.hchat__chip.is-pick { background: var(--coral-2); border-color: var(--coral-2); color: #fff; }
.hchat__hold { align-self: flex-start; display: flex; align-items: center; gap: 7px; padding: 0 3px; font-family: var(--font-mono); font-size: .78rem; color: var(--coral-1); }
.hchat__hold svg { width: 13px; height: 13px; flex: 0 0 auto; }
.hchat__card { align-self: stretch; max-width: none; background: rgba(255, 255, 255, .1); border-left: 3px solid var(--coral-2); border-radius: 12px; transition: border-color .3s var(--ease); }
.hchat__card strong { display: block; font-weight: 600; font-size: .88rem; color: #ffb09e; transition: color .3s var(--ease); }
.hchat__card.is-booked { border-left-color: #a7c79b; }
.hchat__card.is-booked strong { color: #a7c79b; }
.hchat__cardbiz { display: block; margin-top: 4px; font-family: var(--font-mono); font-size: .78rem; color: #f4ece0; }
.hchat__cardwhen { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 9px; }
.hchat__cardsub { display: block; margin-top: 8px; font-size: .76rem; color: #cbbfae; }
.hchat__wawhen { display: flex; flex-wrap: wrap; gap: 7px; margin: 7px 0 5px; }
.hchat__wam { align-self: flex-start; background: rgba(255, 255, 255, .13); color: #f3ece0; border-bottom-left-radius: 5px; }
.hchat__wam strong { display: block; font-weight: 600; font-size: .88rem; color: #fff; }
.hchat__wam span { display: block; font-size: .8rem; color: #e9ddca; }
.hchat__wam .hchat__watime { margin-top: 4px; text-align: right; font-family: var(--font-mono); font-size: .68rem; color: #cbbfae; }
/* the wam span blanket above would flatten the when tokens — re-assert them */
.hchat__wam .hchat__wawhen { display: flex; }
.hchat__wam .when { display: inline-flex; font-size: .76rem; color: #f4ece0; }
.hchat__wam--old { opacity: .55; }
.hchat__wam--old.is-in { opacity: .55; }
.hchat__day { align-self: center; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: #cbbfae; background: rgba(255, 255, 255, .1); border-radius: 999px; padding: 3px 10px; }
.handoff__pulse {
  position: absolute;
  top: 0; left: 0;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--coral-2);
  box-shadow: 0 0 0 6px rgba(242, 94, 64, .25), 0 0 22px 2px rgba(242, 94, 64, .5);
  opacity: 0;
  pointer-events: none;
  will-change: transform;
}
/* the receipt — three checked facts under the scene, not a sentence */
.handoff__receipt { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; margin: clamp(22px, 3.4vh, 34px) auto 0; padding: 0; list-style: none; }
.handoff__receipt li { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: var(--home-micro); letter-spacing: .04em; color: var(--ink-3); }
.handoff__receipt li::before { content: "✓"; font-weight: 700; font-size: .8rem; color: var(--coral-ink); }
/* canon --bp-sm (600): receipt row collapses on phones, on the shared small bp */
@media (max-width: 600px) { .handoff__receipt { flex-direction: column; align-items: center; gap: 9px; } }
@media (max-width: 720px) {
  .handoff__stage { height: auto; padding: clamp(16px, 5vw, 26px); display: flex; flex-direction: column; gap: 16px; }
  .hchat { position: static; width: 100%; border-bottom: 1px solid rgba(255, 255, 255, .16); border-radius: 20px; }
  .hchat__body { min-height: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hchat--ai, .hchat--wa { animation: none; }
  .hchat__b, .hchat__body, .hchat__chip, .hchat__card { transition: none; }
  .handoff__pulse { display: none; }
  .hchat__head.is-land { animation: none; }
}

/* ---- what the AI sees — the trust spine: one business, two readings.
       The ink panel is the page's single dark moment before the footer. ---- */
.aisees { padding-block: clamp(60px, 9vh, 120px) 0; }
.aisees__scene {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: 0 1px 2px rgba(26, 22, 19, .04), 0 36px 80px -48px rgba(26, 22, 19, .38);
}
.aisees__human { margin: 0; background: #fff; padding: clamp(22px, 3vw, 36px); }
.aisees__human > figcaption,
.aisees__machead { display: block; font-family: var(--font-mono); font-size: var(--home-badge); letter-spacing: .12em; text-transform: uppercase; }
.aisees__human > figcaption { color: var(--ink-3); margin-bottom: 18px; }
.minipage { border: 1px solid var(--rule-soft); border-radius: 16px; padding: 18px 18px 14px; box-shadow: 0 14px 34px -26px rgba(26, 22, 19, .35); }
.minipage__head { display: flex; align-items: baseline; gap: 9px; padding-bottom: 12px; }
.minipage__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--coral-2); align-self: center; flex: 0 0 auto; }
.minipage__head strong { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; letter-spacing: -.01em; color: var(--espresso); }
.minipage__loc { margin-left: auto; font-size: .72rem; color: var(--ink-3); white-space: nowrap; }
.minipage__row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 11px 0; border-top: 1px solid var(--rule-soft); font-size: .9rem; font-weight: 500; color: var(--ink); }
.minipage__meta { font-family: var(--font-mono); font-size: .76rem; font-weight: 400; color: var(--ink-3); white-space: nowrap; }
.minipage__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 13px; border-top: 1px solid var(--rule-soft); }
.minipage__hours { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .04em; color: var(--ink-3); }
.minipage__book { background: linear-gradient(180deg, var(--coral-1), var(--coral-2)); color: #fff; font-weight: 600; font-size: .82rem; padding: 8px 16px; border-radius: 10px; box-shadow: 0 1px 2px rgba(210, 73, 44, .3), 0 8px 18px -8px rgba(210, 73, 44, .5); }
.aisees__machine { position: relative; display: flex; flex-direction: column; background: #1a1613; padding: clamp(22px, 3vw, 36px); }
.aisees__machead { color: #8f8678; margin-bottom: 18px; }
.aisees__lines { display: grid; font-family: var(--font-mono); font-size: .82rem; line-height: 1.5; }
.ml { display: grid; grid-template-columns: 108px 1fr; gap: 14px; padding: 8px 0; border-top: 1px solid rgba(244, 240, 234, .07); }
.ml i { font-style: normal; color: #8f8678; }
.ml b { font-weight: 500; color: #f4ece0; overflow-wrap: anywhere; }
.ml__ok { color: #a7c79b; }
/* the ready state carries the app's heartbeat */
.ml__ok::before { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #a7c79b; margin-right: 8px; vertical-align: 1px; animation: ok-pulse 2.4s var(--ease) infinite; }
@keyframes ok-pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(167, 199, 155, .4); } 50% { box-shadow: 0 0 0 5px rgba(167, 199, 155, 0); } }
.ml--cursor::after { content: ""; display: block; width: 9px; height: 17px; margin-top: 5px; background: var(--coral-2); animation: chat-caret 1.1s steps(1) infinite; }
.aisees__note { margin-top: auto; padding-top: 18px; font-size: .76rem; line-height: 1.5; color: #8f8678; }
@media (max-width: 860px) { .aisees__scene { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .ml--cursor::after { animation: none; } .ml__ok::before { animation: none; } }

/* ---- aisees · dark band — the page's value-rhythm dark moment (audit lens 8c).
       Wraps the existing scene in a dark rounded card and takes the header
       light-on-dark. The light-human / dark-machine split INSIDE the scene is
       untouched, so the metaphor + the machine animation survive intact.
       Paint + one wrapper div only — no full-bleed breakout, fully reversible. ---- */
.aisees--dark .aisees__band {
  background: var(--ink-band, #161310);
  border-radius: 26px;
  padding: clamp(28px, 4vw, 56px) clamp(20px, 3.5vw, 44px) clamp(30px, 4vw, 56px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, .22), 0 50px 100px -60px rgba(0, 0, 0, .8);
}
.aisees--dark .sechead { margin-bottom: clamp(28px, 4vh, 44px); }
.aisees--dark .eyebrow { color: var(--coral-1); }
.aisees--dark .sechead__title { color: #6b6258; text-shadow: none; }
.aisees--dark .sechead__title em { color: #f4ece0; }
.aisees--dark .sechead__aside p { color: #a99c89; }
/* the inner scene drops its cream-tuned border/shadow so it reads as part of the band */
.aisees--dark .aisees__scene { border-color: rgba(255, 255, 255, .09); box-shadow: 0 30px 70px -50px rgba(0, 0, 0, .85); }

/* ---- end-cap — the one drenched moment; the page closes with its own door ---- */
.endcap {
  position: relative;
  margin-top: clamp(56px, 9vh, 110px);
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--coral-1), var(--coral-2) 58%, var(--coral-ink));
  padding: clamp(52px, 7.5vw, 92px) clamp(24px, 5vw, 64px);
  text-align: center;
  box-shadow: 0 2px 4px rgba(216, 73, 44, .18), 0 44px 90px -50px rgba(216, 73, 44, .55);
}
.endcap::before { content: ""; position: absolute; inset: -40% 30% 30% -20%; background: radial-gradient(closest-side, rgba(255, 255, 255, .3), rgba(255, 255, 255, 0)); pointer-events: none; }
.endcap__title { position: relative; margin: 0 auto; max-width: 18ch; font-family: var(--font-display); font-weight: 800; font-size: var(--fs-sechead); line-height: var(--lh-tight); letter-spacing: var(--tracking-display); color: rgba(255, 244, 238, .72); text-wrap: balance; }
.endcap__title em { font-style: normal; color: #fff; }
.endcap .cta { position: relative; margin-top: clamp(26px, 4vh, 38px); background: #fff; color: var(--coral-ink); box-shadow: 0 1px 2px rgba(122, 28, 8, .25), 0 16px 36px -14px rgba(122, 28, 8, .55); }
.endcap .cta:hover { filter: none; background: #fff7f3; }
.endcap__sub { position: relative; display: block; margin-top: 18px; font-family: var(--font-mono); font-size: var(--home-micro); letter-spacing: .08em; color: rgba(255, 244, 238, .85); }

/* ---- faq — asymmetric intro + single-column ruled accordion ---- */
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 6vw, 92px);
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}
.faq-intro { position: sticky; top: 96px; }
.faq-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-sechead);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-display);
  color: var(--head-mute);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .92), 0 -1px 2px rgba(26, 22, 19, .08);
  text-wrap: balance;
}
.faq-title em { font-style: normal; color: var(--espresso); }
.faq-lead { margin: 15px 0 24px; max-width: 38ch; font-size: var(--home-body); line-height: var(--lh-normal); color: var(--ink-2); }

.faq-list { border-top: 1px solid var(--rule); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  width: 100%; text-align: left;
  appearance: none; -webkit-appearance: none; background: none; border: 0; cursor: pointer;
  padding: 22px 2px;
  font-family: var(--font-body); font-weight: 500;
  font-size: var(--home-body); color: var(--ink);
  transition: color .18s var(--ease);
}
.faq-q:hover { color: var(--espresso); }
.faq-q:active { color: var(--coral-ink); }
.faq-q:focus-visible { outline: 2px solid var(--coral-2); outline-offset: 2px; border-radius: 8px; }
.faq-item.is-open .faq-q { color: var(--coral-ink); font-weight: 600; }
.faq-mark {
  box-sizing: border-box; flex: 0 0 auto; width: 10px; height: 10px; margin: -2px 6px 0 0;
  border: 2px solid currentColor; border-top: 0; border-left: 0;
  transform: rotate(45deg);
  transition: transform .3s var(--ease), color .18s var(--ease);
  color: var(--ink-3);
}
.faq-item.is-open .faq-mark { transform: rotate(-135deg); color: var(--coral-ink); }
.faq-ans { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .44s var(--ease); }
.faq-item.is-open .faq-ans { grid-template-rows: 1fr; }
.faq-ans__inner { overflow: hidden; }
.faq-ans p { margin: 0; padding: 0 42px 24px 2px; max-width: 62ch; color: var(--ink-2); line-height: 1.65; font-size: var(--home-small); opacity: 0; transform: translateY(-5px); transition: opacity .28s var(--ease), transform .32s var(--ease); }
.faq-item.is-open .faq-ans p { opacity: 1; transform: none; transition-delay: .08s, .08s; }
.faq-more { display: inline-block; margin-top: 20px; font-family: var(--font-mono); font-size: var(--home-micro); letter-spacing: .08em; color: var(--coral-ink); }
.faq-more:hover { text-decoration: underline; }
@media (max-width: 860px) {
  .faq-layout { grid-template-columns: 1fr; gap: clamp(22px, 5vw, 36px); }
  .faq-intro { position: static; }
}
@media (prefers-reduced-motion: reduce) {
  .faq-ans { transition: none; }
  .faq-ans p { opacity: 1; transform: none; transition: none; }
  .faq-mark { transition: none; }
  .when.is-tick, .hchat__hold.is-tick { animation: none; }
}

/* ---- footer — dark, full-bleed base of the page card ---- */
.footer {
  background: #1a1613;
  color: #a39a8d;
  /* break out of the .page padding so the dark fills to the card's rounded base */
  margin: clamp(48px, 8vh, 104px) calc(-1 * clamp(20px, 3.2vw, 44px)) calc(-1 * clamp(30px, 3.4vw, 60px));
  padding-block: clamp(52px, 7vh, 84px) clamp(26px, 3.2vh, 38px);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(20px, 3.2vw, 44px);
}
.footer__main {
  display: flex;
  justify-content: space-between;
  gap: clamp(40px, 6vw, 96px);
  flex-wrap: wrap;
  padding-bottom: clamp(40px, 6vh, 60px);
  border-bottom: 1px solid rgba(244, 240, 234, .1);
}
.footer__brand { max-width: 340px; }
.footer__brand img { height: 30px; width: auto; margin-bottom: 18px; }
.footer__brand p { margin: 0; font-size: var(--home-small); line-height: 1.6; color: #a39a8d; }
.footer__brand p.footer__works { margin: 14px 0 0; font-family: var(--font-mono); font-size: var(--home-micro); letter-spacing: .04em; color: #8f8678; }
.footer__nav { display: flex; gap: clamp(36px, 5vw, 84px); flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 13px; }
.footer__col h4 {
  margin: 0 0 5px;
  font-family: var(--font-mono);
  font-size: var(--home-micro);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  color: #8c8276;
}
.footer__col a { font-size: var(--home-small); color: #e4ded3; transition: color .15s var(--ease); }
.footer__col a:hover { color: var(--coral-1); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: clamp(22px, 3vh, 30px);
  font-family: var(--font-mono);
  font-size: var(--home-micro);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #918879;
}
/* canon --bp-md (860): footer columns stack with the rest of the page */
@media (max-width: 860px) {
  .footer__main { flex-direction: column; gap: 34px; }
}

/* =============================================================
   AUTH — sign in / magic link
   ============================================================= */
.auth-wrap {
  max-width: 600px;
  margin: clamp(40px, 8vh, 110px) auto 0;
  text-align: center;
}
.auth-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--espresso);
  margin: 0;
  text-wrap: balance;
}
.auth-sub {
  margin: 16px auto 0;
  max-width: 420px;
  font-size: var(--fs-lead);
  line-height: var(--lh-normal);
  color: var(--ink-2);
}
.auth-card {
  margin: clamp(28px, 4vh, 44px) auto 0;
  max-width: 560px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(26, 22, 19, .04), 0 30px 60px -34px rgba(26, 22, 19, .26);
  padding: clamp(26px, 4vw, 38px);
  text-align: left;
}
.auth-label {
  display: block;
  margin-bottom: 9px;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--ink-2);
}
.auth-field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 12px;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.auth-field:focus-within {
  border-color: var(--coral-2);
  box-shadow: 0 0 0 4px rgba(242, 94, 64, .16);
}
.auth-field.is-error,
.auth-field.is-error:focus-within {
  border-color: var(--coral-2);
  box-shadow: 0 0 0 4px rgba(242, 94, 64, .16);
}
.auth-field__icon { flex: 0 0 auto; width: 20px; height: 20px; color: var(--ink); }
.auth-field input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 15px 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--ink);
}
.auth-field input::placeholder { color: var(--ink-3); }
.auth-error {
  margin: 10px 0 0;
  font-size: var(--fs-small);
  color: var(--coral-ink);
}
.auth-cta {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 22px auto 0;
  text-align: center;
}

/* Sent confirmation — quiet, affirming; fresh-system sibling of the form card */
.auth-sent {
  text-align: center;
  align-items: center;
}
.auth-sent__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--coral-2) 13%, var(--surface));
  color: var(--coral-ink);
  margin: 0 auto 16px;
}
.auth-sent__icon svg { width: 26px; height: 26px; }
.auth-sent__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  letter-spacing: -.01em;
  color: var(--espresso);
  margin: 0;
}
.auth-sent__sub {
  margin: 10px auto 0;
  max-width: 380px;
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--ink-2);
}
.auth-sent__sub strong { color: var(--ink); font-weight: 600; }
.auth-sent__resend {
  margin: 18px 0 0;
  font-size: var(--fs-small);
  color: var(--ink-3);
}
.auth-sent__resend button {
  border: 0;
  background: transparent;
  padding: 2px 4px;
  margin: -2px -4px;
  font: inherit;
  font-weight: 600;
  color: var(--coral-ink);
  cursor: pointer;
  border-radius: 6px;
}
.auth-sent__resend button:hover { text-decoration: underline; }
.auth-sent__resend button:focus-visible { outline: 2px solid var(--coral-2); outline-offset: 2px; }
.auth-sent__resend button:disabled { color: var(--ink-3); cursor: default; text-decoration: none; }
@media (prefers-reduced-motion: no-preference) {
  .auth-sent:not([hidden]) { animation: authSentIn .46s var(--ease) both; }
  @keyframes authSentIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: none; }
  }
}

.auth-alt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 560px;
  margin: 18px auto 0;
  padding: clamp(20px, 3vw, 28px);
  border: 1px dashed var(--rule);
  border-radius: 18px;
  text-align: left;
}
.auth-alt__text { display: flex; flex-direction: column; gap: 2px; }
.auth-alt__small { font-size: var(--fs-small); color: var(--ink-2); }
.auth-alt__big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  letter-spacing: -.01em;
  color: var(--espresso);
}
.auth-alt__btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 12px 26px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 600;
  font-size: var(--fs-body);
  border: 1px solid var(--rule);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(26, 22, 19, .04);
  transition: background .18s var(--ease), transform .18s var(--ease);
}
.auth-alt__btn:hover { background: var(--canvas); transform: translateY(-1px); }
.auth-alt__btn:active { transform: translateY(0) scale(.985); transition-duration: var(--dur-fast); }
.auth-alt__btn:focus-visible { outline: 2px solid var(--coral-2); outline-offset: 3px; }

@media (max-width: 560px) {
  .auth-alt { flex-direction: column; align-items: stretch; text-align: center; gap: 14px; }
  .auth-alt__btn { justify-content: center; }
}
