/* =============================================================
   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 { 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: 1px solid var(--rule);
  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;
  margin-bottom: clamp(40px, 7.5vh, 92px);
}
.brand { display: inline-flex; align-items: center; }
.brand img { height: clamp(24px, 2vw, 30px); width: auto; }
.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; }

/* ---- 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(440px, 58vh, 640px);
}
.stage__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

/* chat card */
.chat {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transform-origin: bottom center;
  width: min(480px, 88%);
  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: 26px 26px 0 0;
  box-shadow: 0 -12px 50px -18px rgba(0, 0, 0, .6);
  color: #f4ece0;
  overflow: hidden;
  animation: drawer-up .8s var(--ease) .25s backwards;
  transition: transform .34s var(--ease), box-shadow .34s var(--ease);
  will-change: transform;
}
.chat:hover {
  transform: translateX(-50%) scale(1.018);
  box-shadow: 0 -18px 62px -16px rgba(0, 0, 0, .66);
}
@keyframes drawer-up {
  from { transform: translateX(-50%) translateY(54px); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0); opacity: 1; }
}
.chat__grip {
  width: 42px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .42);
  margin: 11px auto 2px;
}
.chat__head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 4px 18px 12px;
  font-weight: 500;
  font-size: .95rem;
  color: #fff;
}
.chat__head img { width: 20px; height: 20px; border-radius: 5px; background: #fff; padding: 2px; }
.chat__body { padding: 16px 16px 4px; }
.chat__user {
  margin: 0 0 16px auto;
  max-width: 82%;
  width: fit-content;
  background: rgba(255, 255, 255, .13);
  border-radius: 14px;
  padding: 11px 14px;
  font-size: .95rem;
  line-height: 1.4;
  color: #f3ece0;
}
.chat__confirm { padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, .14); }
.chat__label {
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
}
.chat__biz { margin: 12px 0 4px; font-family: var(--font-mono); font-size: .92rem; color: #f4ece0; }
.chat__addr { margin: 0 0 14px; font-family: var(--font-mono); font-size: .85rem; color: #cbbfae; }
/* 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-color: #fff; color: #1a1613; font-size: .85rem; padding: 8px 12px; border-radius: 10px; }
.chat__when .when svg { color: var(--coral-ink); opacity: 1; }
.chat__composer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, .10);
  border-radius: 14px;
  color: #e9ddca;
}
.chat__composer svg { width: 18px; height: 18px; display: block; flex: 0 0 auto; opacity: .8; }
.chat__input {
  flex: 1; min-width: 0;
  font-size: .92rem; line-height: 1.3;
  color: #f3ece0;
  white-space: nowrap; overflow: hidden;
}
.chat__input:empty::before { content: "Message\2026"; color: #a99c89; }
.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(255, 255, 255, .22); border-top-color: var(--coral-1);
  animation: chat-spin .7s linear infinite;
}
@keyframes chat-spin { to { transform: rotate(360deg); } }
.chat__step-ico svg { width: 15px; height: 15px; color: #a7c79b; 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: #f1e9dc;
  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) {
  .chat { width: 94%; }
  .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-mono);
  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); }
@media (max-width: 800px) { .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 ---- */
.jobs { padding-block: clamp(60px, 9vh, 120px); }
.jobs__ledger { max-width: 1120px; margin: 0 auto; border-bottom: 1px solid var(--rule); }
.job {
  display: grid;
  grid-template-columns: 56px minmax(170px, .5fr) 1fr auto;
  grid-template-areas: "num verb what chip";
  align-items: center;
  gap: clamp(16px, 3vw, 44px);
  padding-block: clamp(20px, 3.2vh, 30px);
  border-top: 1px solid var(--rule);
  transition: background var(--dur) var(--ease);
}
.job:hover { background: rgba(255, 255, 255, .55); }
.job__num { grid-area: num; font-family: var(--font-mono); font-size: var(--home-micro); letter-spacing: .12em; color: var(--ink-3); transition: color var(--dur) var(--ease); }
.job:hover .job__num { color: var(--coral-ink); }
.job:hover .job__chip { transform: translateY(-1px); box-shadow: 0 1px 2px rgba(26, 22, 19, .05), 0 8px 18px -8px rgba(26, 22, 19, .22); }
.job__verb { grid-area: verb; margin: 0; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 1.26rem + 1.1vw, 2.25rem); line-height: 1.05; letter-spacing: -.02em; color: var(--espresso); }
.job--book .job__verb { color: var(--coral-ink); }
.job__what { grid-area: what; margin: 0; max-width: 44ch; font-size: var(--home-small); line-height: 1.5; color: var(--ink-2); }
.job__chip {
  grid-area: chip;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .04em;
  color: var(--ink-2);
  box-shadow: 0 1px 2px rgba(26, 22, 19, .05);
  white-space: nowrap;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.job__chip b { font-weight: 500; color: var(--espresso); }
.job--book .job__chip { background: rgba(242, 94, 64, .1); border-color: rgba(216, 73, 44, .3); color: var(--coral-ink); }
.job--book .job__chip b { color: var(--coral-ink); }
.job--soon { opacity: .45; }
.job--soon:hover { background: none; }
.job .pillar__soon { grid-area: chip; justify-self: end; }
@media (max-width: 860px) {
  .job { grid-template-columns: auto 1fr; grid-template-areas: "num chip" "verb verb" "what what"; row-gap: 10px; }
  .job__num { align-self: center; }
}

.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); }
@media (max-width: 640px) { .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; } }

/* ---- 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;
}
@media (max-width: 760px) {
  .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; }
}
