:root {
  --bg: #f5f5f7;
  --bg-2: #e8e8ed;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: #d2d2d7;
  --card: #ffffff;
  --card-solid: #ffffff;
  --accent: #0071e3;
  --accent-2: #2997ff;
  --accent-soft: #e8f1fc;
  --product: #0a7c72;
  --danger: #b42318;
  --ok: #157a3a;
  --warn: #b45309;
  --shadow: 0 2px 8px rgba(0, 0, 0, .04), 0 32px 80px rgba(0, 0, 0, .08);
  --radius: 18px;
  --font: "Inter Tight", "SF Pro Display", "Segoe UI", system-ui, sans-serif;
  --display: "Inter Tight", "SF Pro Display", "Segoe UI", system-ui, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Menlo, monospace;
  --max: 1080px;
  --header-h: 52px;
  --pad: clamp(20px, 5vw, 40px);
  --ease: cubic-bezier(.16, 1, .3, 1);
}
html.dark {
  --bg: #000000;
  --bg-2: #1d1d1f;
  --ink: #f5f5f7;
  --muted: #a1a1a6;
  --line: #3a3a3c;
  --card: #1d1d1f;
  --card-solid: #1d1d1f;
  --accent: #2997ff;
  --accent-soft: #0b1f33;
  --product: #5eead4;
  --danger: #fca5a5;
  --ok: #4ade80;
  --warn: #fbbf24;
  --shadow: 0 24px 80px rgba(0, 0, 0, .55);
}
* { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
}
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.47;
  font-size: 17px;
  min-height: 100vh;
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: -.011em;
}
img, video, iframe, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--display);
  letter-spacing: -.045em;
  line-height: .96;
  margin: 0 0 .4em;
  font-weight: 600;
  scroll-margin-top: 72px;
}
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
[hidden] { display: none !important; }

.wrap { width: min(var(--max), calc(100% - 2 * var(--pad))); margin-inline: auto; }
.section { padding: clamp(72px, 12vw, 140px) 0; }
.section-alt { background: var(--card); }
.section-head { margin-bottom: clamp(28px, 5vw, 48px); max-width: 18em; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2, .statement h2, .cinema h2, .final-cta h2 {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
}
.center-note { text-align: center; margin-top: 36px; font-size: 14px; }
.center-note a { color: var(--accent); font-weight: 500; text-decoration: none; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(0, 0, 0, .72);
  color: #f5f5f7;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: .5px solid rgba(255, 255, 255, .08);
  transition: background .35s var(--ease);
}
body.is-scrolled .site-header { background: rgba(0, 0, 0, .92); }
main { padding-top: var(--header-h); }
.auth-screen,
.install-screen { padding-top: 0; }
.site-header .brand,
.site-header .nav a,
.site-header .nav-toggle,
.site-header .theme-toggle,
.site-header .nav .btn.ghost {
  color: #f5f5f7;
}
.site-header .mark {
  background: #f5f5f7;
  color: #0f0f0f;
}
.site-header .brand-light .mark,
.site-header .brand .mark {
  background: #f5f5f7;
}
.site-header .nav-toggle,
.site-header .theme-toggle {
  border-color: rgba(255, 255, 255, .2);
  background: transparent;
}
.site-header-bar {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-header .nav {
  margin-left: auto;
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links, .nav-actions {
  display: flex;
  align-items: center;
  gap: 2px;
}
.site-header .nav form { margin: 0; }
.site-footer {
  background: #f5f5f7;
  color: #1d1d1f;
  border-top: .5px solid #d2d2d7;
  font-size: 13px;
}
html.dark .site-footer {
  background: #000;
  color: #f5f5f7;
  border-top-color: #3a3a3c;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
  gap: 40px 32px;
  padding: 72px 0 48px;
}
.footer-brand p {
  margin-top: 14px;
  max-width: 22em;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.footer-title {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -.01em;
}
.footer-grid a {
  display: block;
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  padding: 5px 0;
}
.footer-grid a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px 0 calc(22px + env(safe-area-inset-bottom, 0px));
  border-top: .5px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.brand-name {
  font-weight: 600;
  letter-spacing: -.055em;
  font-size: 16px;
  line-height: 1;
}
.mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #1d1d1f;
  color: #f5f5f7;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.mark img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}
.mark svg {
  width: 15px;
  height: 15px;
  display: block;
  fill: currentColor;
}
.brand-light { color: #f5f5f7; }
.brand-light .mark {
  background: #f5f5f7;
  color: #000;
}
.nav { display: flex; gap: 2px; align-items: center; flex-wrap: wrap; }
.site-header .nav-links a {
  font-family: var(--display);
  text-decoration: none;
  color: #f5f5f7;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.022em;
  font-feature-settings: "kern" 1, "liga" 1;
  padding: 7px 12px;
  border-radius: 980px;
  opacity: .92;
  transition: opacity .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.site-header .nav-links a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, .1);
}
.site-header .nav-links a.nav-link-emphasis {
  font-weight: 600;
  letter-spacing: -0.028em;
  color: #fff;
  background: var(--accent);
  border: 0;
  opacity: 1;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .12);
}
.site-header .nav-links a.nav-link-emphasis:hover {
  color: #fff;
  background: #0077ed;
}
.site-header .nav-actions a {
  font-family: var(--display);
  text-decoration: none;
  color: #f5f5f7;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.02em;
  padding: 7px 12px;
  border-radius: 980px;
  opacity: .9;
}
.site-header .nav-actions a:hover { opacity: 1; background: rgba(255, 255, 255, .08); }
.site-header .nav a {
  text-decoration: none;
  color: #f5f5f7;
}
.site-header .nav a.btn.accent {
  color: #fff;
  background: var(--accent);
  opacity: 1;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.site-header .nav a.btn.accent:hover { color: #fff; background: #0077ed; }

.btn, button.btn, input[type=submit] {
  appearance: none;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  background: var(--ink);
  color: #fff;
  border-radius: 980px;
  padding: 12px 22px;
  font-weight: 500;
  font-size: 15px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: -.01em;
  transition: transform .35s var(--ease), background .2s ease, opacity .2s ease;
}
.btn:hover { transform: scale(1.03); }
.btn.secondary { background: var(--bg-2); color: var(--ink); border: 0; }
.btn.accent { background: var(--accent); color: #fff; }
.btn.accent:hover { background: #0077ed; }
.btn.ghost { background: transparent; color: var(--ink); box-shadow: none; }
.btn.ghost-light { background: #fff; color: #000; }
.btn.danger { background: var(--danger); color: #fff; }

.eyebrow, .kicker {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.hero-band {
  background: #000;
  color: #f5f5f7;
  overflow: hidden;
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);
}
.hero-band .eyebrow { color: #86868b; }
.hero-band .lede { color: #a1a1a6; }
.hero {
  padding: clamp(48px, 10vw, 96px) 0 clamp(40px, 8vw, 80px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.hero-copy { text-align: left; }
.hero h1 {
  font-size: clamp(3.2rem, 8.5vw, 7rem);
  max-width: 8ch;
  color: #fff;
  margin-bottom: 18px;
}
.lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 32em;
  font-weight: 400;
  line-height: 1.45;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-actions .btn { min-width: 148px; }

.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}
.hero-stage::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(10, 124, 114, .45), rgba(0, 113, 227, .12) 42%, transparent 68%);
  filter: blur(28px);
  animation: glow 8s var(--ease) infinite alternate;
}
.device { position: relative; z-index: 1; }
.device-chrome {
  width: min(320px, 82vw);
  border-radius: 36px;
  padding: 10px;
  background: linear-gradient(160deg, #3a3a3c, #1d1d1f 40%, #000);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.12),
    0 40px 80px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.2);
  animation: floaty 7s ease-in-out infinite;
}
.device-island {
  width: 92px;
  height: 22px;
  background: #000;
  border-radius: 20px;
  margin: 6px auto 10px;
}
.device-screen {
  background: #0c0c0d;
  color: #f5f5f7;
  border-radius: 26px;
  padding: 18px 16px 20px;
  min-height: 360px;
}
.hero-card, .card, .panel, .auth-card, .install-card {
  background: var(--card);
  border: .5px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.hero-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.device-screen .kicker { color: #64d2ff; }
.device-screen h2 { color: #fff; font-size: 1.35rem; margin: 0; }
.hero-agenda { display: grid; gap: 8px; }
.agenda-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: .5px solid rgba(255,255,255,.08);
  transition: background .6s var(--ease), transform .6s var(--ease);
}
.agenda-row time { font-family: var(--mono); font-size: 12px; font-weight: 500; color: #64d2ff; }
.agenda-row.is-live {
  background: rgba(10, 124, 114, .28);
  border-color: rgba(94, 234, 212, .35);
  transform: scale(1.02);
}
.agenda-row.is-free { border-style: dashed; }
.device-screen .muted { color: #86868b; font-size: 13px; }
.device-screen--photo {
  padding: 0;
  min-height: 0;
  overflow: hidden;
  line-height: 0;
}
.device-screen--photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}
.store-badges--center { justify-content: center; }
.store-badges--footer { margin-top: 14px; }
.store-badges--light .store-badge img { filter: none; }
.store-badge {
  display: block;
  line-height: 0;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.store-badge:hover { transform: translateY(-2px); opacity: .92; }
.store-badge img {
  display: block;
  width: auto;
  height: 40px;
  max-width: min(150px, 42vw);
}

.media-carousel-band {
  background: linear-gradient(180deg, #f5f5f7 0%, #fff 100%);
  padding: clamp(56px, 9vw, 96px) 0;
  border-bottom: .5px solid var(--line);
}
.media-carousel-band--preview {
  padding: 0 0 20px;
  background: transparent;
  border: none;
}
.media-carousel-band .section-head h2 { max-width: 14ch; margin-inline: auto; }
.marketing-preview-label { text-align: center; margin: 0 0 12px; font-size: 13px; }

.mkt-carousel {
  position: relative;
  max-width: 980px;
  margin: 36px auto 0;
}
.media-carousel-band--preview .mkt-carousel { margin-top: 0; max-width: 100%; }
.mkt-carousel__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: min(56vh, 520px);
  overflow: hidden;
  border-radius: 18px;
}
.mkt-carousel__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  display: none;
}
.mkt-carousel__slide[aria-hidden="false"] {
  display: block;
}
.mkt-carousel__frame {
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #1d1d1f;
  padding: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .08), 0 32px 64px rgba(15, 15, 15, .14);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.mkt-carousel__frame::before {
  content: "";
  flex: 0 0 auto;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5f57;
  box-shadow: 16px 0 0 #febc2e, 32px 0 0 #28c840;
  margin: 10px 0 8px 14px;
}
.mkt-carousel__frame img {
  display: block;
  flex: 1 1 0;
  width: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
  background: #f5f5f7;
}
.mkt-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
}
.mkt-carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: .5px solid var(--line);
  background: var(--card);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.mkt-carousel__btn:hover { background: #fff; }
.mkt-carousel__dots { display: flex; gap: 8px; }
.mkt-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(15, 15, 15, .18);
  cursor: pointer;
}
.mkt-carousel__dot[aria-selected="true"] {
  background: var(--accent, #0071e3);
  transform: scale(1.15);
}

.marketing-table-wrap { overflow-x: auto; margin-bottom: 16px; }
.marketing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.marketing-table th,
.marketing-table td {
  padding: 10px 12px;
  border-bottom: .5px solid var(--line);
  vertical-align: middle;
  text-align: left;
}
.marketing-table-thumb { width: 88px; }
.marketing-table-thumb img {
  display: block;
  max-width: 72px;
  max-height: 128px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  border: .5px solid var(--line);
  background: #f5f5f7;
}
.marketing-inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.marketing-inline-form input[type="text"],
.marketing-inline-form input:not([type="hidden"]):not([type="number"]) {
  flex: 1 1 180px;
  min-width: 0;
}
.marketing-order-input { width: 4.5rem; }
.marketing-table-actions form { margin: 0; }
.marketing-upload-form { margin-top: 8px; padding-top: 16px; border-top: .5px solid var(--line); }

.proof-bar {
  background: #04332e;
  color: #e8f6f3;
  padding: 48px 0;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.proof-grid strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -.05em;
  font-weight: 600;
  color: #fff;
}
.proof-grid span { color: #9ec9c2; font-size: 13px; }

.statement {
  padding: clamp(80px, 16vw, 160px) 0 40px;
  text-align: center;
  background: linear-gradient(180deg, #cfeee6 0%, #e8f6f2 55%, #f5f5f7 100%);
}
.statement .lede { margin-inline: auto; }

.band-mint { background: linear-gradient(180deg, #f5f5f7 0%, #d8f0ea 100%); }
.band-blue { background: #dce9fb; }
.band-sky { background: #eaf3ff; }
.band-cream { background: #f7f1e6; }
.band-ink-soft { background: #ece8df; }

.bento {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.bento-tile {
  background: var(--card);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 44px);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  border: .5px solid var(--line);
}
.bento-tile:first-child { grid-row: span 2; min-height: 420px; }
.bento-tile h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.bento-tile p { color: var(--muted); max-width: 28em; }
.bento-dark {
  background: #1d1d1f;
  color: #f5f5f7;
  border: 0;
}
.bento-dark p, .bento-dark .eyebrow { color: #a1a1a6; }
.bento-dark h3 { color: #fff; }
.bento-sky { background: #e8f1fc; border-color: transparent; }
.bento-peach { background: #ffe8d6; border-color: transparent; }
.bento-gold { background: #f3e7c7; border-color: transparent; }
.text-link {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  font-size: 15px;
  margin-top: 8px;
}
.bento-dark .text-link { color: #64d2ff; }
.bento-tile--visual {
  padding: 0;
  gap: 0;
  justify-content: flex-end;
  overflow: hidden;
}
.bento-tile-shot {
  flex: 1 1 auto;
  margin: 0;
  min-height: 160px;
  max-height: min(42vh, 280px);
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  background: #0c0c0d;
}
.bento-tile-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.bento-tile-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(22px, 3vw, 32px) clamp(28px, 4vw, 44px) clamp(28px, 4vw, 44px);
}

.cinema {
  background: #000;
  color: #f5f5f7;
  padding: clamp(80px, 14vw, 140px) 0;
}
.cinema .eyebrow { color: #86868b; }
.cinema-steps {
  list-style: none;
  padding: 0;
  margin: 56px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.cinema-steps span {
  display: block;
  font-size: 13px;
  color: #86868b;
  letter-spacing: .14em;
  margin-bottom: 16px;
}
.cinema-steps h3 { font-size: 1.5rem; color: #fff; }
.cinema-steps p { color: #a1a1a6; }

.quote-band {
  background: #ffd7bf;
  padding: clamp(88px, 14vw, 150px) 0;
  text-align: center;
}
.quote-band blockquote {
  margin: 0 auto;
  max-width: 16em;
  font-size: clamp(1.8rem, 4.6vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.12;
}
.quote-band cite {
  display: block;
  margin-top: 28px;
  font-style: normal;
  color: #8a5a3c;
  font-size: 15px;
  font-weight: 500;
}

.compare-band {
  background: #000;
  color: #f5f5f7;
  padding: clamp(80px, 12vw, 140px) 0;
}
.compare-band .section-head { max-width: 20em; }
.compare-band .eyebrow { color: #86868b; }
.compare-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.compare-card {
  border-radius: 28px;
  padding: clamp(28px, 4vw, 40px);
  min-height: 280px;
}
.compare-card h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.compare-card ul { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 10px; }
.compare-bad { background: #f5f5f7; color: #1d1d1f; }
.compare-bad .eyebrow, .compare-bad li { color: #6e6e73; }
.compare-bad li { padding-left: 1.2em; position: relative; }
.compare-bad li::before { content: "–"; position: absolute; left: 0; color: #86868b; }
.compare-good { background: #0a7c72; color: #f5fffc; }
.compare-good .eyebrow, .compare-good li { color: #c6efe8; }
.compare-good li { padding-left: 1.2em; position: relative; }
.compare-good li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: #5eead4; }

.duo-band { background: #f5f5f7; padding: clamp(40px, 7vw, 72px) 0 clamp(72px, 10vw, 120px); }
.duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.duo-tile {
  border-radius: 28px;
  padding: clamp(32px, 5vw, 48px);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}
.duo-tile h3 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.duo-tile p { max-width: 22em; }
.duo-teal { background: #0a7c72; color: #f5fffc; }
.duo-teal .eyebrow, .duo-teal p { color: #c6efe8; }
.duo-navy { background: #12325c; color: #f0f6ff; }
.duo-navy .eyebrow, .duo-navy p { color: #b9d0f0; }

.orbit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.orbit-chip {
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 980px;
  background: var(--card);
  border: .5px solid var(--line);
  font-weight: 500;
  font-size: 15px;
  transition: transform .35s var(--ease), background .2s ease;
}
.orbit-chip:hover { transform: scale(1.04); background: var(--ink); color: var(--bg); }

.showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 16px;
}
.showcase-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
  padding: 22px;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}
.showcase-cover {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 20%, rgba(0,0,0,.72)),
    linear-gradient(135deg, #2c2c2e, #0a7c72);
}
.showcase-card strong, .showcase-card span { position: relative; z-index: 1; }
.showcase-card span { color: rgba(255,255,255,.75); font-size: 14px; }

.plan-row, .grid-auto, .grid-3, .grid-4, .cards, .split-cards, .compare-grid, .steps {
  display: grid;
  gap: 16px;
}
.plan-row { grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); align-items: stretch; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.split-cards, .compare-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.steps { grid-template-columns: repeat(3, minmax(0, 1fr)); list-style: none; padding: 0; }
a.card { text-decoration: none; color: inherit; }
.card { transition: transform .4s var(--ease); }
a.card:hover, .feature-card:hover, .cat-card:hover, .biz-card:hover { transform: translateY(-4px); }
.muted { color: var(--muted); }
.check-list { list-style: none; padding: 0; display: grid; gap: 8px; margin: 16px 0 0; color: var(--muted); font-size: 14px; }
.check-list li { padding-left: 1.15em; position: relative; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
#how, #faq, #oficios, #pricing, #oferta { scroll-margin-top: 56px; }
.plan-card {
  background: var(--card);
  border-radius: 28px;
  padding: 28px 24px;
  border: .5px solid var(--line);
  display: flex;
  flex-direction: column;
}
.plan-card .btn { margin-top: auto; align-self: flex-start; }
.plan-card.featured {
  background: #1d1d1f;
  color: #f5f5f7;
  border: 0;
}
.plan-card.featured .muted, .plan-card.featured .kicker, .plan-card.featured .check-list { color: #a1a1a6; }
.plan-tagline { margin: 8px 0 0; font-weight: 500; }
.price { font-size: clamp(2rem, 4vw, 2.6rem); letter-spacing: -.05em; margin: .15em 0; font-weight: 600; }
.price-period { font-size: .42em; letter-spacing: -.02em; font-weight: 500; color: var(--muted); }
.price-hero .hero-stage { min-height: 0; }
.price-hero-card {
  width: min(100%, 420px);
  background: #1d1d1f;
  color: #f5f5f7;
  border-radius: 28px;
  padding: 28px 26px 32px;
  box-shadow: var(--shadow);
}
.price-hero-card .kicker { color: #86868b; }
.price-hero-card .muted, .price-hero-card .check-list { color: #a1a1a6; }
.price-hero-amount {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  letter-spacing: -.06em;
  font-weight: 600;
  margin: .1em 0 .05em;
}
.price-offer {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 0;
  background: var(--card);
  border-radius: 32px;
  overflow: hidden;
  border: .5px solid var(--line);
  box-shadow: var(--shadow);
}
.price-offer-main, .seat-calc { padding: clamp(28px, 4vw, 48px); }
.price-offer-main .lede { margin: 12px 0 24px; }
.price-offer-main .btn { margin-top: 4px; }
.seat-calc { background: #f5f5f7; border-left: .5px solid var(--line); }
.seat-calc h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 18px; }
.seat-calc-control { display: grid; gap: 10px; margin-bottom: 8px; }
.seat-calc-label { font-weight: 600; font-size: 15px; }
.seat-calc input[type=range] {
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  accent-color: var(--accent);
  box-shadow: none;
}
.seat-calc-total { margin: 8px 0 4px; }
.pricing-features-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 4vw, 40px);
  margin-bottom: clamp(28px, 5vw, 48px);
}
.pricing-features-head--visual {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
}
.pricing-features-head .section-head {
  margin-bottom: 0;
  max-width: none;
}
.pricing-features-shot {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(15, 15, 15, .12);
  border: .5px solid rgba(15, 15, 15, .08);
  background: #fff;
}
.pricing-features-shot img {
  display: block;
  width: 100%;
  height: auto;
}
.pricing-app-band {
  background: #000;
  color: #f5f5f7;
  padding: clamp(56px, 10vw, 100px) 0;
  border-bottom: .5px solid rgba(255, 255, 255, .08);
}
.pricing-app-band .eyebrow { color: #86868b; }
.pricing-app-band .lede { color: #a1a1a6; max-width: 36em; }
.pricing-app-band .store-badges { margin-top: 20px; }
.pricing-app-band .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}
.pricing-app-intro h2 { color: #fff; max-width: 14ch; }
.pricing-app-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 4vw, 40px);
}
.app-phone-carousel { width: 100%; max-width: 300px; margin-inline: auto; }
.app-phone-carousel--preview { max-width: 260px; margin: 0 auto 16px; }
.app-phone-carousel__engine { max-width: 100%; margin: 0; }
.app-phone-carousel__device { margin: 0 auto; }
.app-phone-carousel__screen {
  position: relative;
  min-height: 360px;
}
.app-phone-carousel__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  display: none;
}
.app-phone-carousel__slide[aria-hidden="false"] { display: block; }
.app-phone-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.app-phone-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.app-phone-carousel__dot { background: rgba(255, 255, 255, .25); }
.app-phone-carousel__dot[aria-selected="true"] { background: #64d2ff; }
.pricing-ipad-spotlight {
  width: 100%;
  max-width: 720px;
  margin: 0;
}
.pricing-ipad-spotlight img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 28px 56px rgba(0, 0, 0, .4);
}

.price-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.price-feature {
  background: var(--card);
  border-radius: 22px;
  padding: 22px 22px 24px;
  border: .5px solid var(--line);
}
.price-feature h3 { font-size: 1.15rem; letter-spacing: -.03em; margin-bottom: 8px; }
.seat-note {
  background: var(--card);
  border: .5px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  margin-bottom: 18px;
}
.seat-note p { margin: 0; }
.seat-note .muted { margin-top: 6px; }
.faq-list { display: grid; gap: 0; max-width: 720px; margin-inline: auto; border-top: .5px solid var(--line); }
.faq-item {
  border-bottom: .5px solid var(--line);
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  min-height: 64px;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -.02em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding-bottom: 20px; }
.final-cta {
  background: #000;
  color: #fff;
  padding: clamp(96px, 16vw, 168px) 0;
  text-align: center;
}
.final-cta .eyebrow { color: #86868b; }
.final-cta h2 { margin-inline: auto; }
.final-cta .lede { margin-inline: auto; color: #a1a1a6; }
.final-cta .hero-actions { justify-content: center; }

.form { display: grid; gap: 14px; }
label { font-weight: 500; font-size: 13px; display: grid; gap: 6px; }
label:has(> input[type=checkbox]) { display: flex; align-items: center; gap: 10px; font-weight: 400; }
input, select, textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: .5px solid var(--line);
  background: #fff;
  color: var(--ink);
  min-height: 44px;
  appearance: none;
  -webkit-appearance: none;
}
input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month],
input[type=week] {
  appearance: auto;
  -webkit-appearance: auto;
  min-height: 44px;
}
input[type=datetime-local] {
  min-width: 0;
}
select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%236e6e73' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
input[type=checkbox],
input[type=radio] {
  width: 18px;
  height: 18px;
  min-height: 0;
  padding: 0;
  margin: 0;
  accent-color: var(--accent);
  flex-shrink: 0;
  appearance: auto;
  -webkit-appearance: checkbox;
  border: 0;
  box-shadow: none;
}
input[type=radio] { -webkit-appearance: radio; }
textarea { min-height: 88px; }
input:focus, select:focus, textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.table-wrap { overflow: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); border: .5px solid var(--line); background: var(--card); }
.table { width: 100%; min-width: 520px; border-collapse: collapse; }
.table th, .table td { padding: 12px 14px; border-bottom: .5px solid var(--line); text-align: left; font-size: 14px; }
.table th { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); background: var(--bg); }
.table tr:last-child td { border-bottom: 0; }

.toast, .alert { padding: 12px 14px; border-radius: 14px; background: var(--accent-soft); margin: 12px 0; }
.alert.error { background: #fde8e6; color: var(--danger); }
.site-header .verify-bar {
  margin: 0;
  background: #fff6e5;
  color: #6b3f00;
  border: 0;
  border-top: .5px solid rgba(0, 0, 0, .08);
}
body.has-verify { --header-h: 108px; }
body.has-verify .hero-band {
  margin-top: 0;
  padding-top: clamp(36px, 6vw, 64px);
}
body.has-flash { --header-h: 108px; }
body.has-flash .hero-band {
  margin-top: 0;
  padding-top: clamp(36px, 6vw, 64px);
}
body.has-verify.has-flash { --header-h: 164px; }
.site-header .flash-bar {
  margin: 0;
  border: 0;
  border-top: .5px solid rgba(0, 0, 0, .08);
  overflow: hidden;
  max-height: 120px;
  transition: opacity .35s var(--ease), max-height .4s var(--ease);
}
.site-header .flash-bar.is-ok { background: #e7f6ec; color: #157a3a; }
.site-header .flash-bar.is-warn { background: #fff6e5; color: #6b3f00; }
.site-header .flash-bar.is-leaving {
  opacity: 0;
  max-height: 0;
  border-top-color: transparent;
}
.flash-bar-inner { padding: 10px 0; font-size: 14px; font-weight: 600; }
.verify-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  flex-wrap: nowrap;
  padding: 10px 0;
  min-height: 52px;
}
.verify-bar p {
  margin: 0;
  color: #6b3f00;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  flex: 1 1 auto;
  min-width: 0;
}
.site-header .verify-bar p,
.site-header .verify-bar a:not(.btn) { color: #6b3f00; }
.verify-bar .btn { flex: 0 0 auto; }
.shell .verify-bar {
  margin: 0 0 16px;
  background: #fff6e5;
  color: #6b3f00;
  border: .5px solid #f0d7a8;
  border-radius: 16px;
  padding: 0 16px;
}
.shell .trial-billing-bar {
  background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
  color: #0c4a6e;
  border-color: #7dd3fc;
}
.shell .trial-billing-bar p {
  color: #075985;
}
.shell .trial-billing-bar strong {
  display: block;
  margin-bottom: 2px;
  font-weight: 700;
}
.shell .subscription-activation-bar {
  background: linear-gradient(135deg, #ecfdf5 0%, #e0f2fe 100%);
  color: #0f4c45;
  border-color: #99d5c9;
}
.shell .subscription-activation-bar p {
  color: #134e4a;
}
.shell .subscription-activation-bar strong {
  display: block;
  margin-bottom: 2px;
  font-weight: 700;
}
.shell .verify-bar-inner { padding: 12px 0; flex-wrap: wrap; }
body.nav-open .site-header .verify-bar { display: none; }
.toast { position: fixed; right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom)); z-index: 80; box-shadow: var(--shadow); }

.embed-body {
  margin: 0;
  background: var(--bg);
}
.embed-shell {
  max-width: 520px;
  margin: 0 auto;
  padding: 20px 16px 28px;
}
.embed-head h1 {
  font-size: 1.35rem;
  margin: 0.25rem 0 0;
}
.embed-form .embed-submit.btn.accent {
  background: var(--embed-accent, var(--accent));
  border-color: var(--embed-accent, var(--accent));
}
.embed-brand {
  margin-top: 20px;
  font-size: 12px;
  text-align: center;
  color: var(--muted);
}
.embed-inactive {
  padding: 24px 8px;
  text-align: center;
}
.code-area {
  width: 100%;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  line-height: 1.45;
  padding: 12px 14px;
  border-radius: 14px;
  border: .5px solid var(--line);
  background: var(--bg);
  color: var(--text);
  resize: vertical;
}

.shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  min-height: 100vh;
}
.sidebar {
  background: var(--card);
  padding: 20px 12px;
  border-right: .5px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: auto;
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
}
.sidebar .brand { padding: 4px 8px 18px; }
.side-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 12px 10px;
  margin: 0;
}
.sidebar nav { display: grid; gap: 2px; }
.sidebar a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: background .18s ease, color .18s ease;
}
.sidebar a .nav-icon { width: 18px; height: 18px; flex: 0 0 18px; opacity: .75; }
.sidebar a:hover { background: var(--bg-2); color: var(--ink); }
.sidebar a.is-active { background: var(--bg-2); color: var(--ink); font-weight: 600; }
.sidebar a.is-active .nav-icon { color: var(--accent); opacity: 1; }
.sidebar-foot { margin-top: auto; padding-top: 18px; display: grid; gap: 10px; }
.side-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 14px;
  background: var(--bg);
  border: .5px solid var(--line);
  min-width: 0;
}
.side-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--card);
  font-size: 14px;
  font-weight: 600;
  flex: 0 0 32px;
}
.side-user-name {
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.side-actions { display: grid; gap: 8px; }
.side-actions .btn { width: 100%; }
.main { padding: clamp(16px, 3vw, 28px) clamp(16px, 3vw, 28px) 48px; min-width: 0; }
.shell-top { display: none; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip, .badge, .slot {
  border: .5px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 500;
  background: var(--bg);
  white-space: nowrap;
}
.chip-ok { background: var(--accent-soft); border-color: transparent; color: var(--accent); }
.chip-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.slot { padding: 9px 11px; background: var(--card); cursor: pointer; font-family: var(--mono); min-height: 40px; }
.slot[aria-pressed="true"] { border-color: var(--accent); background: var(--accent-soft); color: var(--accent); }
.calendar { display: grid; grid-template-columns: 72px repeat(7, minmax(72px, 1fr)); gap: 4px; overflow: auto; }
.cal-item { min-height: 72px; border: .5px solid var(--line); border-radius: 12px; padding: 6px; font-size: 12px; background: var(--card); }
.badge { display: inline-flex; align-items: center; gap: 6px; }
.badge[data-status="confirmed"], .badge[data-status="active"] { background: var(--accent-soft); color: var(--accent); border: 0; }
.badge[data-status="pending"], .badge[data-status="hidden"] { background: #fff4e5; color: var(--warn); border: 0; }
.badge[data-status="cancelled"], .badge[data-status="no_show"], .badge[data-status="deleted"] { background: #fde8e6; color: var(--danger); border: 0; }
.badge[data-status="completed"], .badge[data-status="published"] { background: #e8f7ee; color: var(--ok); border: 0; }
html.dark .badge[data-status="pending"], html.dark .badge[data-status="hidden"] { background: rgba(251, 191, 36, .16); }
html.dark .badge[data-status="cancelled"], html.dark .badge[data-status="no_show"], html.dark .badge[data-status="deleted"] { background: rgba(252, 165, 165, .14); }
html.dark .badge[data-status="completed"], html.dark .badge[data-status="published"] { background: rgba(74, 222, 128, .16); }
.badge.appt-pay { font-size: .72rem; margin-top: .25rem; display: inline-block; }
.badge.appt-pay[data-pay="pending"] { background: #fff4e5; color: var(--warn); border: 0; }
.badge.appt-pay[data-pay="card"], .badge.appt-pay[data-pay="cash"] { background: #e8f7ee; color: var(--ok); border: 0; }
.badge.appt-pay[data-pay="deposit"] { background: var(--accent-soft); color: var(--accent); border: 0; }
.appt-pay-actions { margin-top: .5rem; }
.agenda-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 12px; width: 100%; }
.agenda-grid { display: flex; flex-direction: row; flex-wrap: nowrap; align-items: stretch; gap: 0; border: .5px solid var(--line); border-radius: var(--radius); background: var(--card); }
.agenda-time-col { flex: 0 0 56px; width: 56px; border-right: .5px solid var(--line); position: sticky; left: 0; z-index: 3; background: var(--card); }
.agenda-corner { height: 52px; border-bottom: .5px solid var(--line); }
.agenda-time-slot { height: var(--agenda-slot-h, 36px); font-size: .65rem; color: var(--muted); padding-right: 6px; text-align: right; border-bottom: .5px solid color-mix(in srgb, var(--line) 60%, transparent); }
.agenda-col { flex: 1 1 140px; min-width: 120px; border-right: .5px solid var(--line); }
.agenda-col:last-child { border-right: 0; }
.agenda-col-head { min-height: 52px; display: flex; align-items: center; justify-content: center; padding: 10px; border-bottom: .5px solid var(--line); background: color-mix(in srgb, var(--emp-color, var(--accent)) 12%, var(--card)); font-size: .82rem; line-height: 1.35; text-align: center; }
.agenda-col-body { position: relative; padding-top: var(--agenda-body-pad, 8px); height: calc(var(--agenda-body-pad, 8px) + var(--agenda-slots) * var(--agenda-slot-h, 36px)); }
.agenda-grid-line { height: var(--agenda-slot-h, 36px); border-bottom: .5px solid color-mix(in srgb, var(--line) 50%, transparent); pointer-events: none; }
.agenda-block {
  position: absolute; left: 6px; right: 6px; z-index: 2;
  top: calc(var(--agenda-body-pad, 8px) + var(--block-top) * var(--agenda-slot-h, 36px));
  height: calc(var(--block-span) * var(--agenda-slot-h, 36px) - 4px);
  min-height: 32px;
  padding: 6px 8px 18px; border-radius: 8px; overflow: hidden;
  display: flex; flex-direction: column; gap: 2px;
  background: color-mix(in srgb, var(--block-color, var(--accent)) 22%, var(--card));
  border-left: 3px solid var(--block-color, var(--accent));
  text-decoration: none; color: inherit; font-size: .72rem; line-height: 1.35;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.agenda-block.is-compact { padding-bottom: 6px; }
.agenda-block.is-compact .agenda-block-meta { display: none; }
.agenda-block-title { display: block; font-size: .74rem; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.agenda-block:hover { filter: brightness(.97); }
.agenda-block[data-status="pending"] { opacity: .92; border-style: dashed; }
.agenda-block[data-status="cancelled"], .agenda-block[data-status="no_show"] { opacity: .45; }
.agenda-block-time { display: block; font-weight: 700; font-family: var(--mono, monospace); font-size: .68rem; }
.agenda-block-meta { display: block; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.agenda-block-icons { position: absolute; right: 4px; bottom: 2px; font-size: .65rem; letter-spacing: 2px; }
.pay-guide-checklist { list-style: none; padding: 0; margin: 0 0 16px; display: grid; gap: 8px; }
.pay-guide-checklist li { display: flex; align-items: center; gap: 10px; font-size: .92rem; }
.pay-guide-checklist li.is-done { color: var(--ink); }
.pay-guide-checklist li:not(.is-done):not(.is-muted) { color: var(--muted); }
.pay-guide-check { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: .75rem; background: var(--bg-2); flex-shrink: 0; }
.pay-guide-checklist li.is-done .pay-guide-check { background: color-mix(in srgb, var(--accent) 18%, var(--card)); color: var(--accent); font-weight: 700; }
.pay-guide-sections { display: grid; gap: 20px; margin-top: 20px; }
.pay-guide-section h3 { margin: 0 0 8px; font-size: 1rem; }
.pay-guide-bullets { margin: 8px 0 0; padding-left: 1.2rem; color: var(--muted); font-size: .9rem; }
.pay-guide-bullets li { margin-bottom: 6px; }
.pay-guide-faq { margin-top: 20px; border-top: .5px solid var(--line); padding-top: 12px; }
.pay-guide-faq summary { cursor: pointer; font-weight: 600; margin-bottom: 12px; }
.pay-guide-faq dt { font-weight: 600; margin-top: 12px; font-size: .92rem; }
.pay-guide-faq dd { margin: 4px 0 0; font-size: .88rem; }
.empty { padding: 36px 16px; text-align: center; color: var(--muted); border: .5px dashed var(--line); border-radius: var(--radius); }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 8px; top: 8px; background: var(--card); padding: 8px; z-index: 99; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.main > h1:first-child { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 20px; }
.page-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.page-head h1 { margin: 0; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.stat { padding: 18px; min-height: 110px; display: flex; flex-direction: column; justify-content: space-between; }
.stat h2, .stat .stat-value { font-size: clamp(1.4rem, 3vw, 1.8rem); margin: 0; word-break: break-word; letter-spacing: -.04em; }
.letter-mark {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  font-weight: 600; background: var(--bg-2); color: var(--ink); margin-bottom: 10px;
}
.biz-card .cover {
  height: 140px; border-radius: 16px; margin: -6px -6px 12px;
  background: linear-gradient(135deg, #2c2c2e, #0a7c72);
}
details.card summary { cursor: pointer; list-style: none; padding: 4px 0; min-height: 44px; display: flex; align-items: center; }
details.card summary::-webkit-details-marker { display: none; }

.biz-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  grid-template-areas: "main rail";
  gap: 28px;
  margin-top: 36px;
  align-items: start;
}
.biz-main { grid-area: main; min-width: 0; display: grid; gap: 40px; }
.biz-main h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); margin-bottom: 16px; }
.booking-rail { grid-area: rail; position: sticky; top: calc(var(--header-h) + 20px); align-self: start; }

.biz-page { padding-top: 28px; padding-bottom: 48px; }
.biz-cover {
  height: clamp(180px, 28vw, 320px);
  border-radius: 28px;
  background:
    linear-gradient(180deg, transparent 30%, rgba(0,0,0,.35)),
    linear-gradient(135deg, #2c2c2e, #0a7c72);
  background-size: cover;
  background-position: center;
}
.biz-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.biz-head h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 0 8px;
}
.biz-head .lede { margin-bottom: 10px; }
.biz-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}
.svc-list { display: grid; gap: 10px; }
.svc-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  width: 100%;
  text-align: left;
  background: #fff;
  border: .5px solid var(--line);
  border-radius: 20px;
  padding: 18px 20px;
  cursor: pointer;
  color: inherit;
  appearance: none;
  min-height: 72px;
}
.svc-row strong { display: block; font-size: 17px; letter-spacing: -.02em; }
.svc-row .muted { font-size: 13px; }
.svc-price { text-align: right; display: grid; gap: 4px; }
.svc-price span { color: var(--accent); font-size: 13px; font-weight: 500; }
.svc-row.is-on { border-color: #1d1d1f; box-shadow: 0 0 0 1px #1d1d1f; }
.team-list { display: flex; flex-wrap: wrap; gap: 16px 20px; }
.team-person {
  display: grid;
  justify-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  max-width: 88px;
}
.team-person .who-avatar { width: 56px; height: 56px; }
.team-person .who-pic { width: 56px; height: 56px; }
.hours-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  padding-bottom: 10px;
  border-bottom: .5px solid var(--line);
}
.hours-list li span:last-child { color: var(--muted); }
.review-list { display: grid; gap: 10px; }
.review-card {
  background: #fff;
  border-radius: 20px;
  padding: 18px 20px;
  border: .5px solid var(--line);
}
.review-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 6px; }
.review-top .badge { flex-shrink: 0; }
.book-card {
  background: #fff;
  border-radius: 28px;
  padding: 24px 22px;
  border: .5px solid var(--line);
}
.book-card h2 { font-size: 1.6rem; margin: 0 0 8px; }
.book-picked { font-weight: 500; margin: 0 0 8px; }
.confirm-page {
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(36px, 7vw, 72px) 0 80px;
  text-align: center;
}
.confirm-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e8f7ee;
  color: var(--ok);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}
.confirm-mark.is-pending { background: var(--accent-soft); color: var(--accent); }
.confirm-mark svg { width: 28px; height: 28px; }
.confirm-page h1 {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  letter-spacing: -.04em;
  margin: 0 0 10px;
}
.confirm-lede { margin: 0 auto 32px; max-width: 28em; }
.confirm-card {
  text-align: left;
  background: var(--card);
  border-radius: 28px;
  padding: 22px 24px 20px;
  border: .5px solid var(--line);
  box-shadow: var(--shadow);
}
.confirm-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.confirm-card-head h2 { font-size: 1.35rem; margin: 4px 0 0; letter-spacing: -.03em; }
.confirm-card .bk-facts { margin-bottom: 8px; }
.confirm-card a { color: var(--accent); text-decoration: none; font-weight: 500; }
.confirm-card a:hover { text-decoration: underline; }
.confirm-card code {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .04em;
}
.confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}
.confirm-note { margin: 18px 0 0; font-size: 13px; color: var(--muted); }
.confirm-note a { color: inherit; }
html.dark .confirm-mark { background: rgba(74, 222, 128, .16); }
html.dark .confirm-mark.is-pending { background: var(--accent-soft); }
html.dark .book-card { background: var(--card); }
.discover {
  padding: clamp(36px, 6vw, 64px) 0 80px;
}
.discover-head { margin-bottom: 28px; }
.discover-head h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  letter-spacing: -.045em;
  margin: 0 0 8px;
  line-height: 1.05;
}
.discover-head .lede { margin: 0; }
.discover-search {
  background: var(--card);
  border: .5px solid var(--line);
  border-radius: 28px;
  padding: 12px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}
.discover-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(132px, 180px) auto;
  gap: 8px;
  align-items: stretch;
}
.discover-field { margin: 0; display: block; }
.discover-search input,
.discover-sort select {
  width: 100%;
  border: 0;
  background: var(--bg);
  border-radius: 16px;
  min-height: 48px;
  padding: 0 16px;
  font: inherit;
  color: inherit;
}
.discover-search .btn { min-height: 48px; padding: 0 22px; }
.discover-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.discover-cats {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1 1 auto;
  min-width: 0;
  padding: 2px;
}
.discover-cats::-webkit-scrollbar { display: none; }
.discover-chip {
  flex: 0 0 auto;
  text-decoration: none;
  color: inherit;
  background: var(--bg);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.discover-chip.is-on { background: var(--ink); color: var(--card); }
.discover-sort { margin: 0; flex: 0 0 auto; display: block; }
.discover-sort select {
  min-height: 40px;
  padding: 0 32px 0 12px;
  font-size: 13px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%236e6e73' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  appearance: none;
}
.discover-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 18px;
}
.discover-meta p { margin: 0; }
.discover-clear { font-size: 14px; font-weight: 500; color: var(--accent); text-decoration: none; }
.discover-clear:hover { text-decoration: underline; }
.discover-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.biz-tile {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--card);
  border: .5px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  min-width: 0;
  transition: transform .4s var(--ease);
}
.biz-tile:hover { transform: translateY(-4px); }
.biz-tile-cover {
  position: relative;
  height: 210px;
  background:
    linear-gradient(180deg, transparent 40%, rgba(0,0,0,.18)),
    linear-gradient(135deg, #2c2c2e, #0a7c72);
  background-size: cover;
  background-position: center;
}
.biz-tile-flag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
}
.biz-tile-body {
  display: grid;
  gap: 4px;
  padding: 16px 18px 18px;
}
.biz-tile-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.biz-tile strong {
  font-size: 1.2rem;
  letter-spacing: -.03em;
  line-height: 1.2;
}
.biz-tile-desc {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.discover-empty {
  text-align: center;
  padding: 48px 16px;
  border: .5px dashed var(--line);
  border-radius: 24px;
  display: grid;
  gap: 8px;
  justify-items: center;
}
.discover-empty .btn { margin-top: 8px; }
.discover-pages {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
html.dark .biz-tile-flag { background: rgba(29,29,31,.92); color: var(--ink); }
@media (max-width: 720px) {
  .discover-bar { grid-template-columns: 1fr; }
  .discover-tools { flex-direction: column; align-items: stretch; }
  .discover-sort select { width: 100%; }
  .discover-grid { grid-template-columns: 1fr; }
  .biz-tile-cover { height: 180px; }
}
.book-label { font-size: 13px; font-weight: 500; margin: 8px 0 0; }
.book-pay-methods {
  margin-top: 16px;
  gap: 10px;
}
.book-pay-methods > .book-label {
  margin: 0 0 4px;
  font-weight: 600;
}
.book-pay-methods .check-item > span {
  gap: 6px;
}
.book-pay-methods .check-item .muted {
  line-height: 1.45;
  display: block;
}
.day-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 0 6px;
  -webkit-overflow-scrolling: touch;
}
.day-chip {
  flex: 0 0 auto;
  appearance: none;
  border: .5px solid var(--line);
  background: #fff;
  cursor: pointer;
  color: inherit;
  width: 56px;
  display: grid;
  justify-items: center;
  gap: 2px;
  padding: 10px 4px;
  border-radius: 16px;
}
.day-chip span { font-size: 11px; color: var(--muted); }
.day-chip strong { font-size: 16px; }
.day-chip.is-on {
  background: #1d1d1f;
  color: #fff;
  border-color: #1d1d1f;
}
.day-chip.is-on span { color: #a1a1a6; }
.who-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 10px 0 2px;
}
.who-head .book-label {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.who-nav { display: flex; gap: 8px; flex-shrink: 0; }
.who-nav[hidden] { display: none; }
.who-nav button {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: .5px solid var(--line);
  background: #fff;
  cursor: pointer;
  color: inherit;
  font-size: 20px;
  line-height: 1;
  appearance: none;
}
.who-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 12px 2px 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}
.who-strip::-webkit-scrollbar { display: none; }
.who-card {
  flex: 0 0 84px;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
  scroll-snap-align: start;
}
.who-avatar {
  position: relative;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
}
.who-pic {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #ececec;
  border: 2.5px solid transparent;
  color: #86868b;
}
.who-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.who-anyone { color: #8e8e93; }
.who-initials {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: #1d1d1f;
}
.who-card.is-on .who-pic { border-color: var(--accent); }
.who-dot {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #34c759;
  border: 2px solid #fff;
  z-index: 1;
}
.who-rate {
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: #fff;
  border-radius: 980px;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px 2px 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
  white-space: nowrap;
  color: var(--ink);
  z-index: 1;
}
.who-rate svg { color: #e8a317; }
.who-card.is-on .who-rate svg { color: var(--accent); }
.who-name {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  line-height: 1.25;
  max-width: 84px;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.who-name small { display: block; font-size: 12px; font-weight: 500; }
.who-card.is-on .who-name { color: var(--ink); font-weight: 600; }
html.dark .who-pic { background: #3a3a3c; }
html.dark .who-initials { color: #f5f5f7; }
html.dark .who-nav button { background: #2c2c2e; }
html.dark .who-rate { background: #2c2c2e; }
html.dark .who-dot { border-color: #1d1d1f; }
.slot-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.slot-grid .empty { grid-column: 1 / -1; }
.slot-grid .slot {
  display: grid;
  gap: 2px;
  justify-items: start;
  border-radius: 14px;
  padding: 12px 12px;
  background: #f5f5f7;
  font-family: inherit;
  white-space: normal;
  min-height: 56px;
}
.slot-grid .slot span { font-size: 12px; color: var(--muted); font-weight: 400; }
.slot-grid .slot[aria-pressed="true"] {
  background: #1d1d1f;
  color: #fff;
  border-color: #1d1d1f;
}
.slot-grid .slot[aria-pressed="true"] span { color: #a1a1a6; }
.book-more { border-top: .5px solid var(--line); padding-top: 8px; }
.book-more summary { cursor: pointer; font-size: 14px; font-weight: 500; min-height: 40px; display: flex; align-items: center; }

.service-chain { margin-top: 12px; padding-top: 12px; border-top: .5px solid var(--line); }
.service-chain .form-note { margin: 4px 0 10px; font-size: 13px; }
.service-chain-steps { list-style: none; margin: 0 0 10px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.service-chain-step { display: grid; grid-template-columns: 28px 1fr; gap: 8px; align-items: start; }
.service-chain-num {
  width: 28px; height: 28px; border-radius: 999px; background: var(--surface-2, var(--bg-soft));
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600;
}
.service-chain-step.is-primary .service-chain-body strong { display: block; font-size: 14px; }
.service-chain-extra-fields { display: flex; gap: 8px; align-items: center; width: 100%; }
.service-chain-extra-fields select { flex: 1; min-width: 0; }
.service-chain-remove {
  flex: 0 0 36px; width: 36px; height: 36px; border: .5px solid var(--line); border-radius: 8px;
  background: transparent; font-size: 20px; line-height: 1; cursor: pointer; color: var(--muted);
}
.service-chain-add { width: 100%; margin-top: 4px; }
.service-chain-total { font-size: 13px; margin: 8px 0 0; line-height: 1.45; }

.book-waitlist {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  border: .5px solid var(--line);
  background: var(--surface-2, var(--bg-soft));
}
.book-waitlist .book-label { margin-top: 0; }
.book-waitlist [data-waitlist-submit] { width: 100%; margin-top: 10px; }
.book-card .btn[disabled] { opacity: .45; transform: none; cursor: not-allowed; }
.biz-dock {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: .5px solid var(--line);
  padding: 12px max(20px, env(safe-area-inset-right)) calc(12px + env(safe-area-inset-bottom, 0px)) max(20px, env(safe-area-inset-left));
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.biz-dock > div { display: grid; gap: 2px; min-width: 0; }
.biz-dock strong { font-size: 15px; letter-spacing: -.02em; }

.auth-screen, .install-screen {
  min-height: 100dvh;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  background: #000;
}
.auth-body { background: #000; }
.auth-visual, .install-visual {
  padding: clamp(28px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #f5f5f7;
  background:
    radial-gradient(1200px 500px at 20% 10%, rgba(10, 124, 114, .35), transparent 55%),
    #000;
}
.auth-visual h1, .install-visual h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  max-width: 8ch;
  margin: 0 0 16px;
}
.auth-visual-copy p:last-child {
  color: #a1a1a6;
  max-width: 22em;
  font-size: 17px;
}
.auth-visual-foot { color: #86868b; font-size: 13px; margin: 0; }
.auth-panel, .install-panel {
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 48px) var(--pad);
  background: #f5f5f7;
  min-height: 100%;
}
.auth-card, .install-card {
  width: min(420px, 100%);
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}
.auth-card h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: -.04em;
  margin: 0 0 8px;
}
.auth-card .kicker { margin-bottom: 10px; }
.auth-card-brand { display: none; margin-bottom: 28px; }
.auth-card .btn { width: 100%; }
.auth-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field-hint { font-size: 12px; color: var(--muted); font-weight: 400; }
.auth-choice-label { font-weight: 500; font-size: 13px; margin: 2px 0 0; }
.auth-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.auth-choice label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: 0;
  padding: 0 12px;
  border-radius: 12px;
  border: .5px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  gap: 0;
}
.auth-choice input {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.auth-choice label:has(input:checked) {
  background: #1d1d1f;
  color: #fff;
  border-color: #1d1d1f;
}
.auth-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}
.auth-check span { display: block; }
.auth-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 22px;
  font-size: 14px;
}
.auth-links a, .auth-card a:not(.brand), .auth-check a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.auth-card .brand { color: inherit; }
.auth-links a:hover, .auth-card a:hover { text-decoration: underline; }
.stepper { display: flex; gap: 8px; margin: 16px 0 20px; }
.stepper span { flex: 1; height: 3px; border-radius: 99px; background: var(--line); }
.stepper span.is-done, .stepper span.is-current { background: var(--ink); }
.check-ok { color: var(--ok); font-weight: 600; }
.check-fail { color: var(--danger); font-weight: 600; }
.check-warn { color: var(--warn); font-weight: 600; }

.cookie-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--card) 92%, transparent);
  backdrop-filter: blur(16px);
  border-top: .5px solid var(--line);
  padding: 16px max(20px, env(safe-area-inset-right)) calc(16px + env(safe-area-inset-bottom, 0px)) max(20px, env(safe-area-inset-left));
  box-shadow: 0 -8px 32px rgba(0, 0, 0, .08);
}
.cookie-dock-main {
  max-width: 980px;
  margin: 0 auto;
}
.cookie-dock-title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
}
.cookie-dock-text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.45;
  max-width: 72ch;
}
.cookie-dock-text a { text-decoration: underline; }
.cookie-dock-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.cookie-form-inline { display: inline; margin: 0; }
.cookie-dock-panel {
  margin: 12px 0;
  padding: 12px 14px;
  border-radius: 14px;
  border: .5px solid var(--line);
  background: var(--bg);
}
.cookie-pref {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: .5px solid var(--line);
  font-size: 14px;
}
.cookie-pref:last-child { border-bottom: 0; }
.cookie-pref strong { display: block; }
.cookie-pref .muted { font-size: 13px; }
.legal-doc { max-width: 820px; }
.legal-prose { padding: 24px 22px; margin-top: 20px; }
.legal-prose h2 { font-size: 1.1rem; margin: 1.5rem 0 .65rem; }
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose h3 { font-size: 1rem; margin: 1rem 0 .5rem; }
.legal-prose p, .legal-prose li { line-height: 1.55; color: var(--ink); }
.legal-prose ul { padding-left: 1.2rem; }
.legal-updated { margin-top: 4px; }
.theme-toggle, .nav-toggle {
  border-radius: 980px;
  border: .5px solid var(--line);
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  min-height: 36px;
  font-size: 12px;
}
.theme-toggle { width: auto; padding: 0 12px; }
.nav-toggle {
  display: none;
  margin-left: auto;
  padding: 0 14px;
  font-weight: 500;
}
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 45;
  border: 0;
  background: rgba(0, 0, 0, .4);
  cursor: pointer;
}
body.nav-open { overflow: hidden; }
body.nav-open .nav-backdrop { display: block; }
.cover-hero {
  height: clamp(180px, 32vw, 280px);
  border-radius: 24px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #2c2c2e, #0a7c72);
}
.panel-toolbar { display: flex; gap: 10px; flex-wrap: wrap; align-items: end; margin-bottom: 16px; }

.dash-head { align-items: flex-start; margin-bottom: 22px; }
.dash-head .kicker { margin-bottom: 8px; }
.dash-sub { margin: 6px 0 0; font-size: 15px; }
.page-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.kpi {
  background: var(--card);
  border: .5px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  display: grid;
  gap: 4px;
  align-content: start;
  min-width: 0;
}
.kpi-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--bg-2);
  color: var(--ink);
  margin-bottom: 8px;
}
.kpi-icon svg { width: 19px; height: 19px; }
.kpi-label { margin: 0; font-size: 13px; color: var(--muted); font-weight: 500; }
.kpi-value {
  margin: 0;
  font-size: clamp(1.7rem, 3.4vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.1;
  word-break: break-word;
}
.kpi-foot { margin: 4px 0 0; font-size: 12.5px; color: var(--muted); }
.kpi-foot.is-up { color: var(--ok); }
.kpi-foot.is-down { color: var(--danger); }

.dash-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
  gap: 16px;
  align-items: start;
  margin-top: 16px;
}
.dash-side { display: grid; gap: 16px; min-width: 0; }
.dash-grid .panel { border-radius: 24px; padding: 20px; min-width: 0; }
.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.panel-head h2 { margin: 0; font-size: 1.15rem; letter-spacing: -.02em; }
.panel-head p { margin: 2px 0 0; font-size: 13px; }
.panel-head .btn { min-height: 38px; padding: 8px 14px; font-size: 14px; border: .5px solid var(--line); }

.appt-day {
  margin: 14px 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.appt-day:first-of-type { margin-top: 0; }
.appt-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.appt-row {
  display: grid;
  grid-template-columns: 54px 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: var(--bg);
  border: .5px solid var(--line);
}
.appt-time { display: grid; gap: 1px; text-align: center; }
.appt-time strong { font-size: 15px; letter-spacing: -.02em; }
.appt-time span { font-size: 11.5px; color: var(--muted); }
.appt-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bg-2);
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
}
.appt-main { min-width: 0; }
.appt-main strong { display: block; font-size: 15px; letter-spacing: -.02em; }
.appt-main p {
  margin: 1px 0 0;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.appt-who { font-size: 12.5px; }
.appt-side { display: grid; gap: 6px; justify-items: end; text-align: right; }
.appt-price { font-size: 13px; font-weight: 600; }

.rank-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; counter-reset: rank; }
.rank-top { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; margin-bottom: 6px; }
.rank-top span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rank-top strong { font-variant-numeric: tabular-nums; }
.rank-bar { display: block; height: 6px; border-radius: 999px; background: var(--bg-2); overflow: hidden; }
.rank-bar i { display: block; height: 100%; border-radius: 999px; background: var(--accent); }

.quick-links { display: grid; gap: 6px; }
.quick-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  background: var(--bg);
  border: .5px solid var(--line);
  text-decoration: none;
  color: inherit;
  font-size: 14px;
  font-weight: 500;
  min-height: 44px;
}
.quick-links a::after { content: "›"; color: var(--muted); font-size: 18px; line-height: 1; }
.quick-links a:hover { background: var(--bg-2); }

.back-link { text-decoration: none; letter-spacing: 0; text-transform: none; font-size: 13px; }
.back-link:hover { color: var(--ink); }
.btn-danger { color: var(--danger); }
.btn-danger:hover { background: #fde8e6; }
html.dark .btn-danger:hover { background: rgba(252, 165, 165, .14); }
html.dark .verify-bar,
html.dark .site-header .verify-bar {
  background: #3a2e14;
  color: #fbbf24;
  border-color: #5c4a1f;
}
html.dark .verify-bar p,
html.dark .site-header .verify-bar p { color: #fbbf24; }
html.dark .shell .subscription-activation-bar {
  background: linear-gradient(135deg, #042f2e 0%, #0c4a6e 100%);
  border-color: #115e59;
}
html.dark .shell .subscription-activation-bar p { color: #ccfbf1; }
.btn-block { width: 100%; margin-top: 4px; }
.btn-inline { align-self: start; justify-self: start; min-height: 38px; padding: 8px 14px; font-size: 14px; }
.form-note { font-size: 13px; margin: 0; }

.new-panel { border-radius: 24px; padding: 18px 20px; margin-bottom: 18px; }
.new-panel > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -.02em;
  min-height: 44px;
}
.new-panel > summary::-webkit-details-marker { display: none; }
.new-panel > summary::after { content: "+"; font-size: 22px; font-weight: 400; color: var(--muted); line-height: 1; }
.new-panel[open] > summary::after { content: "−"; }
.new-panel-hint { font-size: 13px; font-weight: 400; color: var(--muted); margin-left: auto; margin-right: 6px; }
.new-panel > form { margin-top: 14px; }

.emp-avatar {
  --emp-color: #0F766E;
  position: relative;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--bg-2);
  background: color-mix(in srgb, var(--emp-color) 16%, transparent);
  box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--emp-color) 45%, transparent);
}
.emp-avatar img { width: 100%; height: 100%; object-fit: cover; }
.emp-initials { font-size: 20px; font-weight: 600; color: var(--emp-color); letter-spacing: -.02em; }
.emp-avatar-lg { width: 96px; height: 96px; flex-basis: 96px; }
.emp-avatar-lg .emp-initials { font-size: 34px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 14px;
}
.team-card {
  background: var(--card);
  border: .5px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  display: grid;
  gap: 14px;
  align-content: space-between;
}
.team-card-main {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.team-card-body { display: grid; gap: 4px; min-width: 0; }
.team-card-body strong { font-size: 16px; letter-spacing: -.02em; }
.team-card-contact {
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.team-card .chips { gap: 6px; margin-top: 4px; }
.team-card-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.team-card-actions .btn { min-height: 40px; padding: 8px 16px; font-size: 14px; }
.team-card-actions .btn.secondary { flex: 1 1 auto; }

.emp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 24px;
  align-items: start;
}
.emp-main, .emp-side { display: grid; gap: 20px; min-width: 0; }
.emp-layout .panel {
  display: grid;
  gap: 20px;
  border-radius: 24px;
  padding: 24px 26px 26px;
  min-width: 0;
}
.emp-layout .panel-head { margin-bottom: 0; }
.emp-layout .panel-body {
  display: grid;
  gap: 18px;
}
.emp-layout .grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 18px;
}
.emp-layout .grid-2 {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.emp-layout .grid-3 {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.emp-side .check-stack {
  display: grid;
  gap: 12px;
}
.emp-side .check-item {
  padding: 14px 16px;
}
.emp-side .check-item > span { gap: 4px; }
.emp-side .panel .btn-block { margin-top: 8px; }
.emp-layout .chips { gap: 10px; margin-top: 2px; }
.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
  padding-top: 20px;
  border-top: .5px solid var(--line);
}
.settings-stack .emp-main .panel,
.settings-stack .emp-side .panel {
  gap: 22px;
  padding: 26px 26px 28px;
}
.settings-stack {
  display: grid;
  gap: 36px;
}
.form.settings-stack,
.form.account-stack {
  gap: 36px;
}
.settings-stack .emp-layout { gap: 28px; }
.settings-stack .emp-main,
.settings-stack .emp-side { gap: 28px; }
.settings-stack > .panel { margin: 0; }
.settings-stack > .panel,
.form.settings-stack > .panel {
  display: grid;
  gap: 20px;
  padding: 26px 26px 28px;
}
.settings-stack .panel-head { margin-bottom: 0; }
.integ-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  white-space: nowrap;
}
.integ-flag.is-off {
  background: var(--bg);
  color: var(--muted);
  border: .5px solid var(--line);
}
.field-note {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.45;
}
.integ-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.integ-test {
  margin-top: 22px;
  padding-top: 18px;
  border-top: .5px solid var(--line);
  display: grid;
  gap: 10px;
}
.integ-test label { margin: 0; }
.plan-pick {
  display: grid;
  gap: 12px;
  margin: 16px 0 8px;
}
.plan-pick-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  align-items: start;
  gap: 20px 28px;
  padding: 22px 24px;
  border-radius: 18px;
  border: .5px solid var(--line);
  background: var(--bg);
}
.plan-pick-card.is-current {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.plan-pick-card__body { min-width: 0; }
.plan-pick-card__title { display: block; font-size: 1.05rem; }
.plan-pick-card__price { margin: 8px 0 0; }
.plan-pick-card__note { margin: 10px 0 0; line-height: 1.45; }
.plan-pick-card__aside {
  width: 100%;
  min-width: 0;
}
.plan-pick-card__aside--flag {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 44px;
}
.plan-pick-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.plan-pick-form__coupon {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-bottom: 4px;
}
.plan-pick-form__coupon > span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}
.plan-pick-form__coupon input {
  width: 100%;
  margin: 0;
  min-height: 44px;
}
.plan-pick-form__actions {
  margin-top: 14px;
  padding-top: 14px;
  border-top: .5px solid var(--line);
}
.plan-pick-form__actions .btn {
  width: 100%;
  justify-content: center;
  margin: 0;
}
.plan-pick-card:not(.is-current) .plan-pick-form__actions:only-child,
.plan-pick-form:not(:has(.plan-pick-form__coupon)) .plan-pick-form__actions {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.plan-pick-form .btn {
  width: 100%;
  justify-content: center;
  margin: 0;
}
.plan-pick-card p { margin: 4px 0 0; }
.grid-auto > * { min-width: 0; }
.settings-stack input[readonly] {
  font-family: var(--mono);
  font-size: 13px;
}
.emp-photo-row { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; margin-bottom: 18px; }
.emp-photo-fields { display: grid; gap: 8px; flex: 1 1 220px; min-width: 0; }
.cover-field { display: grid; gap: 10px; margin: 4px 0 8px; }
.cover-preview {
  height: 120px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2c2c2e, #0a7c72);
  background-size: cover;
  background-position: center;
}
.logo-field { display: grid; gap: 10px; margin: 4px 0 8px; }
.logo-preview {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: .5px solid var(--line);
  background: linear-gradient(135deg, #e8f5f3, #fff);
  background-size: cover;
  background-position: center;
}

.customer-photo-field {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: .5px solid var(--line);
}
.customer-photo-preview {
  background-size: cover;
  background-position: center;
}
.customer-photo-upload { flex: 1; min-width: 200px; display: grid; gap: 8px; }

.emp-avatar-xl {
  width: 112px;
  height: 112px;
  flex-basis: 112px;
}
.emp-avatar-xl .emp-initials { font-size: 40px; }

.customer-profile-hero {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
  background: linear-gradient(145deg, rgba(15, 118, 110, 0.06), rgba(255, 255, 255, 0.9));
}
.customer-profile-hero__main {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.customer-profile-hero__photo {
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  border: 3px solid #fff;
}
.customer-profile-hero__name {
  margin: 4px 0 6px;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: -0.02em;
}
.customer-profile-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}
.customer-profile-stats li {
  padding: 14px 16px;
  border-radius: 16px;
  border: .5px solid var(--line);
  background: var(--bg);
  display: grid;
  gap: 4px;
}
.customer-profile-stats strong {
  font-size: 20px;
  font-variant-numeric: tabular-nums;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 8px;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: .5px solid var(--line);
  background: var(--bg);
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
}
.check-item > span { display: grid; gap: 2px; min-width: 0; }
.check-item strong { font-size: 14px; font-weight: 600; }
.check-item .muted { font-size: 12.5px; }
.check-item:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.check-solo { margin: 0; }

.hours-editor { display: grid; gap: 8px; }
.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 10px 14px;
  border-radius: 14px;
  border: .5px solid var(--line);
  background: var(--bg);
}
.hours-day { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; margin: 0; }
.hours-times { display: flex; align-items: center; gap: 8px; }
.hours-times input { width: auto; min-width: 116px; padding: 8px 10px; min-height: 40px; }
.hours-row:has(.hours-day input:not(:checked)) .hours-times {
  opacity: .38;
  pointer-events: none;
}

.mini-stats { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.mini-stats li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  padding-bottom: 10px;
  border-bottom: .5px solid var(--line);
}
.mini-stats li:last-child { border-bottom: 0; padding-bottom: 0; }
.mini-stats strong { font-size: 16px; letter-spacing: -.02em; }
.appt-row-compact { grid-template-columns: 54px minmax(0, 1fr); }

.svc-duration {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.03em;
  line-height: 1.05;
}
.svc-duration small {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.emp-avatar-sm {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}
.emp-avatar-sm .emp-initials { font-size: 15px; }

.appt-toolbar { justify-content: space-between; align-items: center; gap: 12px; }
.filter-tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--bg-2);
  border-radius: 999px;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: 100%;
}
.filter-tabs::-webkit-scrollbar { display: none; }
.filter-tab {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.filter-tab:hover { color: var(--ink); }
.filter-tab.is-active { background: var(--card); color: var(--ink); box-shadow: 0 1px 3px rgba(0, 0, 0, .08); }
.filter-tab-count {
  display: inline-flex;
  min-width: 1.25rem;
  margin-left: 0.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
  background: color-mix(in srgb, var(--accent, #0f766e) 18%, transparent);
  color: var(--accent, #0f766e);
}
.search-form { display: flex; gap: 8px; align-items: center; flex: 1 1 260px; max-width: 420px; }
.search-form input { min-height: 42px; }
.search-form .btn { min-height: 42px; padding: 8px 16px; font-size: 14px; }

.appt-group { margin-bottom: 18px; }
.appt-day span {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 7px;
  border-radius: 999px;
  background: var(--bg-2);
  color: var(--muted);
  letter-spacing: 0;
}
.appt-card {
  background: var(--card);
  border: .5px solid var(--line);
  border-radius: 18px;
  min-width: 0;
  overflow: hidden;
}
.appt-card .appt-row {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 14px 16px;
  grid-template-columns: 52px 36px minmax(0, 1fr) auto auto;
}
.appt-main .appt-contact {
  font-size: 12.5px;
  color: var(--muted);
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}
.appt-manage { border: 0; }
.appt-manage > summary {
  cursor: pointer;
  list-style: none;
  display: block;
  padding: 0;
  min-height: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.appt-manage > summary::-webkit-details-marker,
.appt-manage > summary::marker { display: none; content: none; }
.appt-manage-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  justify-self: end;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--bg);
  border: .5px solid var(--line);
}
.appt-manage-cta::after { content: "▾"; font-size: 11px; }
.appt-manage[open] .appt-manage-cta {
  color: var(--ink);
  background: var(--bg-2);
}
.appt-manage[open] .appt-manage-cta::after { content: "▴"; }
.appt-manage > summary:hover .appt-manage-cta { color: var(--ink); }
.appt-actions {
  display: grid;
  gap: 12px;
  padding: 4px 16px 16px;
  border-top: .5px solid var(--line);
}
.appt-actions .btn { min-height: 40px; padding: 8px 16px; font-size: 14px; }
.appt-form {
  display: flex;
  gap: 10px;
  align-items: end;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: .5px solid var(--line);
}
.appt-form label { flex: 0 1 220px; margin: 0; font-size: 13px; }
.appt-form input, .appt-form select { min-height: 42px; }
.appt-notes { font-size: 13px; margin: 0; }

.import-form { margin: 0; }
.import-btn { position: relative; overflow: hidden; cursor: pointer; margin: 0; }
.import-btn input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  font-size: 0;
}
.cust-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0 0 8px;
  font-size: 15px;
}
.cust-quick a { color: var(--accent); text-decoration: none; }
.cust-quick a:hover { text-decoration: underline; }
.history-list .appt-row {
  grid-template-columns: 54px minmax(0, 1fr) auto;
  background: var(--bg);
}
.note-form { margin-bottom: 14px; }
.note-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.note-list li {
  padding-bottom: 12px;
  border-bottom: .5px solid var(--line);
}
.note-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.note-list p { margin: 4px 0 6px; font-size: 14px; line-height: 1.45; }
.note-list .muted { font-size: 12.5px; }

.reveal { }
.js .reveal {
  opacity: 0;
  transform: translateY(56px) scale(.975);
  filter: blur(12px);
}
.js .reveal.is-in {
  opacity: 1;
  transform: none;
  filter: none;
  transition:
    opacity 1.05s var(--ease) var(--d, 0ms),
    transform 1.05s var(--ease) var(--d, 0ms),
    filter .85s var(--ease) var(--d, 0ms);
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes glow {
  from { opacity: .7; transform: scale(1); }
  to { opacity: 1; transform: scale(1.08); }
}
@keyframes navIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-tile:first-child { grid-row: auto; min-height: 280px; }
  .nav-toggle { display: inline-flex; align-items: center; }
  .site-header-bar { flex-wrap: wrap; }
  body.nav-open .site-header {
    position: fixed;
    inset: 0;
    height: 100dvh;
    overflow: auto;
    background: #000;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 0;
  }
  .site-header .nav {
    display: none;
    position: static;
    z-index: 55;
    margin: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 36px;
    padding: 28px 0 48px;
    background: transparent;
  }
  .nav-links, .nav-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  body.nav-open .site-header .nav { display: flex; }
  .site-header .nav-links a {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
    font-weight: 600;
    letter-spacing: -.04em;
    padding: 8px 0;
    border-radius: 0;
    opacity: 0;
    background: transparent;
  }
  body.nav-open .site-header .nav-links a {
    animation: navIn .55s var(--ease) forwards;
  }
  body.nav-open .site-header .nav-links a:nth-child(1) { animation-delay: .05s; }
  body.nav-open .site-header .nav-links a:nth-child(2) { animation-delay: .1s; }
  body.nav-open .site-header .nav-links a:nth-child(3) { animation-delay: .15s; }
  body.nav-open .site-header .nav-links a:nth-child(4) { animation-delay: .2s; }
  body.nav-open .site-header .nav-links a:nth-child(5) { animation-delay: .25s; }
  .site-header .nav-actions a,
  .site-header .nav-actions .btn {
    width: auto;
    justify-content: flex-start;
    font-size: 17px;
  }
  .site-header .nav a.btn.accent { color: #fff; padding: 10px 18px; }
  .site-header .nav a.btn.ghost,
  .site-header .nav .theme-toggle { color: #f5f5f7; }
}

@media (max-width: 900px) {
  .hero, .auth-screen, .install-screen { grid-template-columns: 1fr; }
  .hero { text-align: center; padding-top: 36px; }
  .hero-copy { text-align: center; }
  .hero h1 { max-width: none; margin-inline: auto; }
  .hero .lede { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-stage { min-height: 0; }
  .biz-layout { grid-template-columns: 1fr; grid-template-areas: "main" "rail"; }
  .booking-rail { position: static; scroll-margin-top: calc(var(--header-h) + 12px); }
  .biz-dock { display: flex; }
  .biz-page { padding-bottom: 120px; }
  .book-card { margin-bottom: 8px; }
  .auth-visual { display: none; }
  .auth-card-brand { display: block; }
  .auth-panel, .install-panel {
    min-height: 100dvh;
    align-items: start;
    padding-top: max(28px, env(safe-area-inset-top));
    padding-bottom: max(32px, env(safe-area-inset-bottom));
  }
  .auth-body { background: #f5f5f7; }
}

.stats-kpis { margin-bottom: 18px; }
.stats-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.stats-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.chart-legend {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 10px 0 0;
  font-size: 12.5px;
  color: var(--muted);
}
.chart-legend .dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  display: inline-block;
  margin-right: 6px;
}
.chart-legend .dot.now { background: var(--accent); }
.chart-legend .dot.prev { background: color-mix(in srgb, var(--accent) 35%, var(--line)); }
.chart-line {
  height: 168px;
  border-radius: 16px;
  background: var(--bg);
  border: .5px solid var(--line);
  overflow: hidden;
}
.chart-line svg { width: 100%; height: 100%; display: block; }
.chart-now-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linejoin: round;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}
.chart-prev-line {
  fill: none;
  stroke: color-mix(in srgb, var(--accent) 40%, var(--line));
  stroke-width: 1.4;
  stroke-dasharray: 4 3;
  vector-effect: non-scaling-stroke;
}
.chart-bars {
  display: flex;
  align-items: stretch;
  gap: 6px;
  height: 150px;
}
.chart-bars-wide { gap: 4px; }
.chart-hours { gap: 3px; }
.chart-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.chart-stack {
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  background: var(--bg);
  border-radius: 8px 8px 4px 4px;
  padding: 4px 3px 0;
}
.chart-stack i {
  display: block;
  width: 46%;
  min-height: 2px;
  border-radius: 4px 4px 1px 1px;
}
.chart-stack i.now { background: var(--accent); }
.chart-stack i.prev { background: color-mix(in srgb, var(--accent) 32%, var(--line)); }
.chart-col small {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: -.01em;
}
.share-list, .rank-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.share-meta, .rank-meta, .rank-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
}
.rank-list li { flex-wrap: wrap; }
.rank-meta { display: grid; gap: 2px; min-width: 0; flex: 1 1 auto; }
.rank-val { font-weight: 600; font-size: 14px; }
.share-bar {
  display: block;
  height: 6px;
  border-radius: 99px;
  background: var(--bg-2);
  overflow: hidden;
  width: 100%;
}
.share-bar i {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: inherit;
}
.mix { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.mix strong { display: block; font-size: 1.6rem; letter-spacing: -.04em; }
.mix-bar i { max-width: 100%; }
.stats-table { min-width: 0; }
.stats-table td, .stats-table th { white-space: nowrap; }

.account-stack {
  display: grid;
  gap: 28px;
}
.account-stack > .panel,
.account-stack .bk-detail .panel,
.account-stack .note-card.panel {
  margin: 0;
  border-radius: 24px;
  padding: 26px 26px 28px;
  display: grid;
  gap: 20px;
  align-content: start;
}
.account-stack .kpi-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
}
.fold-sum {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  min-height: 44px;
}
.fold-sum::-webkit-details-marker,
.fold-sum::marker { display: none; content: none; }
.rank-list a { color: inherit; font-weight: 600; text-decoration: none; }
.rank-list a:hover { color: var(--accent); }
.account-stack .panel-head { margin-bottom: 0; }
.account-stack .form { display: grid; gap: 16px; }

.check-stack {
  display: grid;
  gap: 12px;
}
.check-stack .check-item {
  padding: 14px 16px;
}
.check-stack .check-item > span { gap: 6px; }
.check-stack .check-item .muted { line-height: 1.45; }

.pref-comms {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}
.pref-comms-label {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}

.panel-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
  margin-top: 4px;
  border-top: .5px solid var(--line);
}
.bk-list { display: grid; gap: 16px; }
.bk-card {
  background: var(--card);
  border: .5px solid var(--line);
  border-radius: 22px;
  padding: 18px 18px 16px;
  min-width: 0;
}
.bk-card-top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.bk-card-body { flex: 1 1 auto; min-width: 0; display: grid; gap: 4px; }
.bk-card-title {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}
.bk-card-title strong { font-size: 1.05rem; }
.bk-when { margin: 0; font-weight: 500; }
.bk-price {
  margin: 0;
  font-weight: 600;
  white-space: nowrap;
  font-size: 15px;
}
.bk-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.bk-card-actions .btn { min-height: 40px; padding: 8px 14px; font-size: 14px; }
.bk-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 28px;
  align-items: start;
}
.bk-side { display: grid; gap: 28px; min-width: 0; }
.bk-facts {
  display: grid;
  gap: 16px;
  margin: 0 0 18px;
}
.bk-facts > div { display: grid; gap: 4px; }
.bk-facts dt { font-size: 12.5px; color: var(--muted); font-weight: 500; }
.bk-facts dd { margin: 0; font-size: 15px; }
.bk-who { display: flex; align-items: center; gap: 10px; }
.bk-cancel {
  margin-top: 20px;
  padding-top: 18px;
  border-top: .5px solid var(--line);
}
.note-list { display: grid; gap: 14px; }
.note-card {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  border: .5px solid var(--line);
  background: var(--card);
}
.note-card.is-unread { box-shadow: inset 3px 0 0 var(--accent); }
.note-card p { margin: 0; }
.rate-block {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 16px;
  border: .5px solid var(--line);
  border-radius: 18px;
  background: var(--bg);
}
.rate-block legend { font-weight: 600; padding: 0 6px; }
.rate-row { display: flex; flex-wrap: wrap; gap: 8px; }
.rate-opt { position: relative; cursor: pointer; }
.rate-opt input {
  position: absolute;
  opacity: 0;
  inset: 0;
  margin: 0;
}
.rate-opt span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 12px;
  border: .5px solid var(--line);
  background: var(--card);
  font-weight: 600;
}
.rate-opt input:checked + span,
.rate-opt input:focus-visible + span {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.review-list { display: grid; gap: 14px; }
.backup-codes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.backup-codes code { font-size: 14px; }
.side-avatar { overflow: hidden; }
.side-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.biz-card .cover {
  background-size: cover;
  background-position: center;
}
.kicker a { color: inherit; text-decoration: none; }
.kicker a:hover { color: var(--accent); }

@media (max-width: 1100px) {
  .dash-grid, .emp-layout { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bk-detail { grid-template-columns: 1fr; }
  .bk-card-top { flex-wrap: wrap; }
  .bk-price { width: 100%; }
  .stats-grid, .stats-grid-3 { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  .grid-3, .shell, .bento, .compare-split, .duo-grid, .price-offer, .price-features, .pricing-features-head--visual, .pricing-app-band .wrap { grid-template-columns: 1fr; }
  .seat-calc { border-left: 0; border-top: .5px solid var(--line); }
  .settings-stack .grid-auto,
  .emp-layout .grid-auto,
  .emp-layout .grid-2,
  .emp-layout .grid-3 { grid-template-columns: 1fr; }
  .integ-test .btn, .plan-pick-card .btn { max-width: 100%; white-space: normal; }
  .sidebar { position: fixed; height: 100%; }
  .page-actions .btn { flex: 0 1 auto; width: auto; }
  .cinema-steps { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .shell-top { display: flex; }
  .sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(86vw, 300px);
    z-index: 55;
    transform: translateX(-110%);
    transition: transform .2s ease;
    box-shadow: var(--shadow);
    padding-top: max(20px, env(safe-area-inset-top));
  }
  body.nav-open .sidebar { transform: none; }
  .hero-card, .device-chrome { animation: none; }
  .agenda-row { grid-template-columns: 52px 1fr; }
  .auth-visual h1, .install-visual h1 { font-size: 2rem; max-width: none; }
  .cookie-dock-actions { flex-direction: column; align-items: stretch; }
  .cookie-dock-actions .btn { width: 100%; }
  .page-head { align-items: stretch; }
  .page-head > .btn { width: 100%; }
}

@media (max-width: 640px) {
  .steps, .split-cards, .compare-grid { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .account-stack .kpi-grid { grid-template-columns: 1fr; }
  .kpi { padding: 14px; border-radius: 18px; }
  .kpi-icon { width: 30px; height: 30px; border-radius: 10px; margin-bottom: 6px; }
  .kpi-icon svg { width: 16px; height: 16px; }
  .dash-grid .panel, .emp-layout .panel, .new-panel { padding: 16px; border-radius: 20px; }
  .appt-toolbar { align-items: stretch; }
  .search-form { max-width: none; }
  .appt-card .appt-row { grid-template-columns: 48px 34px minmax(0, 1fr); }
  .appt-card .appt-side { grid-column: 1 / -1; flex-direction: row; justify-items: start; text-align: left; display: flex; align-items: center; gap: 10px; }
  .appt-manage-cta { grid-column: 1 / -1; justify-self: start; }
  .appt-form label { flex-basis: 100%; }
  .hours-row { justify-content: flex-start; }
  .hours-times { width: 100%; }
  .hours-times input { flex: 1 1 auto; min-width: 0; }
  .team-card-actions .btn { flex: 1 1 auto; }
  .plan-pick-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px 16px;
  }
  .plan-pick-card__aside--flag { justify-content: flex-start; min-height: 0; }
  .plan-pick-form .btn { width: 100%; max-width: 100%; }
  .integ-test .btn { width: auto; max-width: 100%; justify-self: start; white-space: normal; }
  .new-panel-hint { display: none; }
  .appt-row { grid-template-columns: 50px minmax(0, 1fr); gap: 10px; align-items: start; }
  .history-list .appt-row { grid-template-columns: 48px minmax(0, 1fr); }
  .history-list .appt-side { grid-column: 1 / -1; display: flex; align-items: center; gap: 10px; justify-items: start; text-align: left; }
  .appt-avatar { display: none; }
  .appt-time { text-align: left; }
  .appt-side {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    text-align: left;
    margin-top: 2px;
  }
  .price-offer { grid-template-columns: 1fr; }
  .seat-calc { border-left: 0; border-top: .5px solid var(--line); }
  .hero-actions .btn { flex: 1 1 100%; }
  .verify-bar-inner { flex-wrap: wrap; }
  .verify-bar .btn { width: 100%; }
  body.has-verify { --header-h: 156px; }
  body.has-flash { --header-h: 108px; }
  body.has-verify.has-flash { --header-h: 212px; }
  .hero h1 { font-size: clamp(2.6rem, 14vw, 3.4rem); }
  .auth-row, .auth-choice { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .proof-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat { min-height: 0; }
  .cover, .biz-card .cover { height: 88px; }
}

.vertical-hero-visual { align-self: center; width: 100%; max-width: 640px; }
.vertical-showcase {
  position: relative;
  margin: 0;
  padding: 0;
  max-width: 100%;
}
.vertical-showcase > img:first-child {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
}
.vertical-showcase-phone {
  position: absolute;
  right: -4%;
  bottom: -6%;
  width: 34%;
  max-width: 200px;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .28);
  border: 3px solid rgba(255, 255, 255, .9);
}
.vertical-features.bento {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
@media (max-width: 900px) {
  .vertical-showcase-phone {
    position: static;
    display: block;
    width: 46%;
    max-width: 220px;
    margin: 16px auto 0;
  }
}

/* WhatsApp inbox (panel) */
.wa-conv-list { list-style: none; margin: 0; padding: 0; }
.wa-conv-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--line, rgba(0,0,0,.08)); text-decoration: none; color: inherit;
}
.wa-conv-row:hover { background: rgba(15, 118, 110, .04); margin: 0 -12px; padding-left: 12px; padding-right: 12px; border-radius: 12px; }
.wa-conv-main { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.wa-conv-preview { font-size: .9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 42rem; }
.wa-conv-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; flex-shrink: 0; }
.wa-badge {
  display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .02em;
  padding: 3px 8px; border-radius: 999px; background: rgba(15, 118, 110, .12); color: #0F766E;
}
.wa-badge-human { background: rgba(194, 65, 12, .12); color: #C2410C; }
.wa-badge-closed { background: rgba(0,0,0,.08); color: #555; }
.wa-conv-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(240px, 320px); gap: 16px; align-items: start; }
.wa-thread-panel { display: flex; flex-direction: column; gap: 16px; min-height: 320px; }
.wa-thread {
  display: flex; flex-direction: column; gap: 10px; max-height: min(60vh, 520px); overflow-y: auto;
  padding: 8px 4px;
}
.wa-bubble {
  max-width: 85%; padding: 10px 14px; border-radius: 16px; font-size: .95rem; line-height: 1.45;
  background: rgba(0,0,0,.06); align-self: flex-start;
}
.wa-bubble.is-out { align-self: flex-end; background: rgba(15, 118, 110, .14); }
.wa-bubble.is-system { align-self: center; background: transparent; font-size: .85rem; opacity: .85; }
.wa-bubble p { margin: 0; }
.wa-bubble-time { display: block; margin-top: 6px; font-size: .72rem; opacity: .65; }
.wa-reply-form textarea { width: 100%; resize: vertical; }
.wa-conv-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.wa-appt-list, .wa-tool-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.wa-tool-list .is-err code { color: #b91c1c; }
@media (max-width: 900px) {
  .wa-conv-layout { grid-template-columns: 1fr; }
}

.wa-wizard-steps {
  display: flex; flex-wrap: wrap; gap: 12px 20px; margin: 0 0 8px; font-size: .9rem;
}
.wa-wizard-step { display: inline-flex; align-items: center; gap: 8px; color: #666; }
.wa-wizard-step.is-current { color: #0F766E; font-weight: 600; }
.wa-wizard-step.is-done { color: #333; }
.wa-wizard-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.6rem; height: 1.6rem; border-radius: 999px; font-size: .8rem;
  background: rgba(0,0,0,.08); color: inherit;
}
.wa-wizard-step.is-current .wa-wizard-num { background: rgba(15, 118, 110, .18); }
.wa-wizard-progress {
  height: 4px; background: rgba(0,0,0,.08); border-radius: 4px; margin-bottom: 20px; overflow: hidden;
}
.wa-wizard-progress > span {
  display: block; height: 100%; background: #0F766E; border-radius: 4px; transition: width .2s ease;
}
.wa-preset-radios { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.wa-preview-layout { display: flex; flex-direction: column; gap: 12px; max-width: 36rem; }
.wa-preview-thread { min-height: 220px; max-height: 420px; }
.wa-preview-compose { display: flex; flex-direction: column; gap: 8px; }
.wa-preview-compose textarea { width: 100%; resize: vertical; }
.wa-preview-empty { text-align: center; padding: 2rem 1rem; font-size: .9rem; }
.wa-activate-block { margin-top: 1.5rem; }
.wa-activate-block .form-inline { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 12px; }

.wa-stats-kpis {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; margin-bottom: 16px;
}
.wa-stat-card {
  padding: 14px 16px; border-radius: 12px; background: rgba(0,0,0,.04);
  display: flex; flex-direction: column; gap: 4px;
}
.wa-stat-label { font-size: .82rem; color: #666; }
.wa-stat-value { font-size: 1.35rem; letter-spacing: -.02em; }
.wa-limit-bar {
  height: 8px; background: rgba(0,0,0,.08); border-radius: 8px; overflow: hidden; margin-top: 8px;
}
.wa-limit-bar > span {
  display: block; height: 100%; background: #0F766E; border-radius: 8px; max-width: 100%;
}
.panel-warning { border-left: 4px solid #C2410C; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; filter: none; }
  .js .reveal.is-in { transition: none; }
  .pulse-dot, .hero-card, .device-chrome, .hero-stage::before, .card, .btn { animation: none; transition: none; }
  body.nav-open .site-header .nav-links a { animation: none; opacity: 1; }
}
