/* ===========================================================
   Atenda.one — landing page styles
   Notion-inspired: white, near-black ink, warm grays, Inter
   =========================================================== */

:root {
  --ink: #1c1c1a;
  --ink-soft: #37352f;
  --muted: #6b6a64;
  --faint: #9a988f;
  --line: #eceae4;
  --line-strong: #e1ded6;
  --paper: #ffffff;
  --gray: #f6f5f1;
  --gray-2: #f0eee8;
  --dark: #0a0a0a;
  --accent: #ec6a2d; /* used sparingly: small marks, dots */
  --radius: 12px;
  --radius-sm: 8px;
  --container: 1080px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv05" 1, "cv08" 1, "ss01" 1;
  line-height: 1.5;
}

h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.03em; line-height: 1.06; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 10px 18px;
  transition: transform .12s var(--ease), background .15s var(--ease), box-shadow .15s var(--ease), border-color .15s var(--ease), color .15s var(--ease);
  white-space: nowrap;
}
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-1px); box-shadow: 0 8px 20px -10px rgba(0,0,0,.5); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--gray); border-color: #d6d3ca; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #f1f1f1; transform: translateY(-1px); }

/* ---------- navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: inline-flex; align-items: center; gap: 0; font-weight: 700; font-size: 24px; letter-spacing: -0.04em; }
.logo-mark {
  width: 26px; height: 26px; border-radius: 7px;
  background: var(--ink);
  color: #fff; font-size: 15px; font-weight: 800; letter-spacing: -0.02em;
  display: inline-flex; align-items: center; justify-content: center;
  display: grid; place-items: center;
  position: relative;
}
.logo-mark::after {
  content: none;
}
.logo-one {
  color: var(--accent); font-weight: 500; letter-spacing: -0.02em;
}
.logo-mark i { display: none; }
.footer .logo-one { color: var(--accent); }

/* ---------- hero ---------- */
.hero { padding: 78px 0 8px; text-align: center; position: relative; overflow: hidden; }

/* hero floating decorations */
.hero-floats { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hf {
  position: absolute;
  will-change: transform;
  transition: transform .15s linear;
}
.hero .container { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--ink-soft);
  background: var(--gray);
  border: 1px solid var(--line);
  padding: 6px 13px 6px 11px;
  border-radius: 999px;
  margin-bottom: 28px;
  white-space: nowrap;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .15s var(--ease), box-shadow .2s var(--ease);
}
.eyebrow:hover { background: #fff; border-color: var(--line-strong); transform: translateY(-1px); box-shadow: 0 6px 16px -8px rgba(40,38,30,.2); }
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  flex: none;
  animation: ebPulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(236,106,45,.4);
}
@keyframes ebPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(236,106,45,.45); transform: scale(1); }
  50% { box-shadow: 0 0 0 5px rgba(236,106,45,0); transform: scale(1.15); }
}
.eyebrow-arrow {
  font-size: 14px;
  color: var(--muted);
  transition: transform .2s var(--ease), color .2s var(--ease);
  display: inline-block;
  margin-left: -2px;
}
.eyebrow:hover .eyebrow-arrow { transform: translateX(3px); color: var(--ink); }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero h1 {
  font-size: clamp(40px, 6.4vw, 74px);
  letter-spacing: -0.045em;
  max-width: 13ch;
  margin: 0 auto;
}
.hero .sub {
  font-size: clamp(17px, 1.9vw, 21px);
  color: var(--muted);
  max-width: 33rem;
  margin: 22px auto 0;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

/* waitlist form */
.waitlist {
  display: flex;
  gap: 8px;
  max-width: 440px;
  margin: 34px auto 0;
}
.waitlist input {
  flex: 1;
  min-width: 0;
  font: inherit;
  font-size: 15px;
  padding: 12px 15px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.waitlist input::placeholder { color: var(--faint); }
.waitlist input:focus { border-color: #bdb9ad; box-shadow: 0 0 0 3px rgba(28,28,26,.07); }
.waitlist .btn { padding-left: 20px; padding-right: 20px; }
.note { font-size: 13.5px; color: var(--faint); margin-top: 14px; letter-spacing: -0.01em; }
.waitlist.dark input { background: #161616; border-color: #2c2c2c; color: #fff; }
.waitlist.dark input::placeholder { color: #777; }
.waitlist.dark input:focus { border-color: #444; box-shadow: 0 0 0 3px rgba(255,255,255,.08); }

.form-wrap.success .waitlist { display: none; }
.form-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 9px;
  max-width: 440px;
  margin: 34px auto 0;
  padding: 13px 18px;
  background: var(--gray);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
}
.form-wrap.success .form-success { display: flex; }
.form-success .check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center; flex: none;
}
.form-success .check svg { width: 12px; height: 12px; }
.form-wrap.dark .form-success { background: #161616; border-color: #2a2a2a; color: #e8e8e8; }
.form-wrap.dark .form-success .check { background: #fff; color: #000; }

/* ---------- hero product mockup ---------- */
.hero-mock-wrap { margin-top: 56px; position: relative; }
.hero-mock-wrap::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 120px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
  pointer-events: none;
}

/* generic app mockup chrome */
.mock {
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow: 0 30px 60px -32px rgba(40,38,30,.28), 0 4px 14px -6px rgba(40,38,30,.10);
  overflow: hidden;
}
.mock-bar {
  height: 40px; display: flex; align-items: center; gap: 7px;
  padding: 0 15px; border-bottom: 1px solid var(--line);
  background: var(--gray);
}
.mock-bar .dotrow { display: flex; gap: 6px; }
.mock-bar .dotrow span { width: 11px; height: 11px; border-radius: 50%; background: #d9d6cd; }
.mock-bar .crumb { font-size: 12.5px; color: var(--faint); margin-left: 10px; font-weight: 500; }

/* ---------- section scaffolding ---------- */
section { scroll-margin-top: 80px; }
.band { padding: 96px 0; }
.band-tight { padding: 64px 0; }
.section-head { max-width: 38rem; }
.section-head.center { margin: 0 auto; text-align: center; }
.kicker {
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(30px, 3.6vw, 44px); letter-spacing: -0.035em; }
.section-head p { color: var(--muted); font-size: 18px; margin-top: 16px; line-height: 1.55; letter-spacing: -0.01em; }

/* ---------- feature strip ---------- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px 26px;
  padding: 26px 0;
}
.strip-item {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 500; color: var(--ink-soft); letter-spacing: -0.01em;
}
.strip-item svg { width: 17px; height: 17px; color: var(--muted); }
.strip-sep { color: var(--line-strong); font-size: 14px; }

/* ---------- feature grid ---------- */
.grid-feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
.fcard {
  background: var(--gray);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 28px 26px 30px;
  transition: background .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease);
}
.fcard:hover { background: #fff; border-color: var(--line-strong); transform: translateY(-3px); box-shadow: 0 18px 40px -26px rgba(40,38,30,.4); }
.ficon {
  width: 40px; height: 40px; border-radius: 10px;
  background: #fff; border: 1px solid var(--line-strong);
  display: grid; place-items: center; color: var(--ink);
  margin-bottom: 18px;
}
.fcard:hover .ficon { background: var(--ink); color: #fff; border-color: var(--ink); }
.ficon svg { width: 19px; height: 19px; }
.fcard h3 { font-size: 18.5px; letter-spacing: -0.025em; }
.fcard p { color: var(--muted); font-size: 14.5px; margin-top: 9px; line-height: 1.55; letter-spacing: -0.005em; }
.fcard .tag {
  display: inline-block; margin-top: 14px; font-size: 12px; font-weight: 600;
  color: var(--accent); letter-spacing: 0.01em;
}

/* ---------- split sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.split .split-copy { position: sticky; top: 96px; }
.split.reverse .split-media { order: 2; }
.split-copy h2 { font-size: clamp(28px, 3.4vw, 42px); letter-spacing: -0.035em; }
.split-copy > p { color: var(--muted); font-size: 18px; margin-top: 16px; line-height: 1.55; letter-spacing: -0.01em; }
.feat-list { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 16px; }
.feat-list li { display: flex; gap: 13px; align-items: flex-start; }
.feat-list .bi {
  width: 24px; height: 24px; border-radius: 7px; flex: none;
  background: var(--gray-2); display: grid; place-items: center; color: var(--ink-soft);
  margin-top: 1px;
}
.feat-list .bi svg { width: 14px; height: 14px; }
.feat-list strong { font-weight: 600; font-size: 15.5px; letter-spacing: -0.01em; }
.feat-list span { color: var(--muted); font-size: 15px; letter-spacing: -0.005em; }
.feat-list .ttl { display: block; }

/* ---------- calendar mockup ---------- */
.cal { padding: 16px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal-head .m { font-size: 15px; font-weight: 700; letter-spacing: -0.02em; }
.views { display: inline-flex; gap: 2px; background: var(--gray); border: 1px solid var(--line); padding: 3px; border-radius: 9px; }
.views span { font-size: 11.5px; font-weight: 600; color: var(--muted); padding: 5px 11px; border-radius: 6px; cursor: pointer; white-space: nowrap; user-select: none; transition: background .15s var(--ease), color .15s var(--ease), box-shadow .15s var(--ease); }
.views span:hover { color: var(--ink); }
.views span.on { background: #fff; color: var(--ink); box-shadow: 0 1px 2px rgba(40,38,30,.12); }
.cal-grid { display: grid; grid-template-columns: 38px repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.cal-grid .col-head { font-size: 11px; font-weight: 600; color: var(--muted); padding: 9px 0; text-align: center; background: var(--gray); border-bottom: 1px solid var(--line); }
.cal-grid .col-head.tcell { background: var(--gray); }
.cal-rows { display: contents; }
.cal-cell { position: relative; height: 46px; border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); }
.cal-cell.tcell { border-left: none; font-size: 10px; color: var(--faint); padding: 5px 6px 0; text-align: right; background: #fff; }
.cal-evt {
  position: absolute; left: 4px; right: 4px; top: 4px;
  border-radius: 6px; padding: 5px 7px; font-size: 10.5px; font-weight: 600;
  color: #fff; overflow: hidden; line-height: 1.25;
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
  cursor: pointer; transition: filter .12s var(--ease), transform .12s var(--ease);
}
.cal-evt:hover { filter: brightness(1.14); transform: translateY(-1px); }
.cal-evt small { display: block; font-weight: 500; opacity: .85; font-size: 9.5px; }
.evt-loc { display: inline-block; font-size: 8px; font-weight: 800; letter-spacing: 0.04em; padding: 1px 4px; border-radius: 3px; color: #fff; opacity: .75; margin-left: 3px; vertical-align: middle; line-height: 1.3; }

/* ---------- slot detail card ---------- */
#hero-calendar { position: relative; }
.slot-backdrop {
  position: absolute; inset: 0; z-index: 8;
  background: rgba(28,28,26,.22); border-radius: 0 0 10px 10px;
  opacity: 0; transition: opacity .2s var(--ease); cursor: pointer;
}
.slot-backdrop.show { opacity: 1; }
.slot-card {
  position: absolute; z-index: 9;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.96);
  width: 290px; max-height: 88%; text-align: left;
  background: #fff; border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow: 0 24px 48px -16px rgba(28,28,26,.38), 0 4px 12px -4px rgba(28,28,26,.14);
  overflow-y: auto; scrollbar-width: none;
  opacity: 0; transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.slot-card.show { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.slot-card::-webkit-scrollbar { display: none; }
.slot-close {
  position: sticky; top: 0; float: right;
  margin: 10px 10px 0 0;
  width: 26px; height: 26px; border-radius: 7px;
  border: 1px solid var(--line); background: var(--gray);
  color: var(--muted); font-size: 17px; line-height: 1;
  display: grid; place-items: center; cursor: pointer; z-index: 1;
  transition: background .12s var(--ease), color .12s var(--ease);
}
.slot-close:hover { background: #fff; color: var(--ink); border-color: var(--line-strong); }
.slot-header {
  display: flex; align-items: center; gap: 11px;
  padding: 16px 16px 12px; clear: both;
}
.slot-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 800; color: #fff; letter-spacing: -0.02em;
}
.slot-header-info { flex: 1; min-width: 0; }
.slot-name { font-size: 14.5px; font-weight: 700; letter-spacing: -0.02em; text-align: left; }
.slot-type-row { display: flex; align-items: center; gap: 7px; margin-top: 3px; }
.slot-badge {
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.02em;
  padding: 2px 7px; border-radius: 999px;
}
.slot-badge.vip { background: #fef3c7; color: #92400e; }
.slot-badge.new { background: #dcfce7; color: #166534; }
.slot-badge.regular { background: #e0e7ff; color: #3730a3; }
.slot-badge.walkin { background: var(--gray-2); color: var(--muted); }
.slot-badge.recurring { background: var(--gray-2); color: var(--muted); }
.slot-visits { font-size: 10.5px; color: var(--faint); font-weight: 600; }
.slot-section { padding: 0 16px 12px; }
.slot-sec-label {
  font-size: 9.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--faint); margin-bottom: 8px;
  padding-top: 10px; border-top: 1px solid var(--line);
}
.slot-detail-grid { display: flex; flex-direction: column; gap: 5px; }
.slot-detail { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.sd-lbl { font-size: 11.5px; color: var(--muted); font-weight: 500; }
.sd-val { font-size: 12px; font-weight: 600; letter-spacing: -0.01em; display: flex; align-items: center; gap: 5px; }
.sd-bav { width: 17px; height: 17px; border-radius: 50%; object-fit: cover; object-position: center 22%; }
.slot-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  text-align: center;
}
.slot-stat {
  padding: 7px 4px; background: var(--gray); border-radius: 8px;
}
.ss-val { font-size: 14px; font-weight: 700; letter-spacing: -0.02em; }
.ss-lbl { font-size: 9.5px; color: var(--faint); font-weight: 600; margin-top: 1px; }
.slot-note {
  margin-top: 8px; padding: 6px 9px;
  background: var(--gray); border-radius: 7px;
  font-size: 11px; color: var(--ink-soft); line-height: 1.45; font-style: italic;
}
.slot-contact {
  font-size: 11.5px; font-weight: 500; color: var(--ink-soft);
  padding: 3px 0; letter-spacing: -0.005em;
  display: flex; align-items: center; gap: 7px;
}
.sc-icon { width: 14px; height: 14px; color: var(--faint); flex: none; display: grid; place-items: center; }
.sc-icon svg { width: 13px; height: 13px; }
.evt-a { background: #3b5bb5; }
.evt-b { background: #ca6a3a; }
.evt-c { background: #2f8f6b; }
.evt-d { background: #6a5ba0; }
.evt-tall { height: 86px; }
.evt-drag { outline: 2px dashed rgba(255,255,255,.6); outline-offset: -3px; }

/* ---------- interactive hero calendar ---------- */
.cal-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.cal-date { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.cal-navs { display: inline-flex; gap: 5px; }
.cal-nav { width: 27px; height: 27px; border-radius: 7px; border: 1px solid var(--line-strong); background: #fff; color: var(--muted); font-size: 15px; line-height: 1; display: grid; place-items: center; cursor: pointer; transition: background .15s var(--ease), border-color .15s var(--ease), color .15s var(--ease); }
.cal-nav:hover { background: var(--gray); border-color: #d6d3ca; color: var(--ink); }
.cal-range { font-size: 15px; font-weight: 700; letter-spacing: -0.02em; }
.onshift { display: flex; align-items: center; gap: 8px; padding-left: 12px; margin-left: 4px; border-left: 1px solid var(--line); }
.onshift .osl { font-size: 11px; color: var(--faint); font-weight: 600; letter-spacing: -0.01em; }
.onshift .stack { display: flex; }
.onshift .stack img { width: 25px; height: 25px; border-radius: 50%; object-fit: cover; object-position: center 22%; border: 2px solid #fff; margin-left: -8px; background: #eee; }
.onshift .stack img:first-child { margin-left: 0; }

.cal-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 13px; }
.bchip { display: inline-flex; align-items: center; gap: 8px; padding: 4px 12px 4px 4px; border: 1px solid var(--line-strong); border-radius: 999px; background: #fff; cursor: pointer; font-size: 12.5px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink-soft); transition: background .15s var(--ease), border-color .15s var(--ease), opacity .15s var(--ease); user-select: none; }
.bchip img { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; object-position: center 22%; background: #eee; }
.bchip .bdot { width: 9px; height: 9px; border-radius: 50%; }
.bchip:hover { border-color: #d6d3ca; }
.bchip.off { opacity: .5; background: var(--gray); }
.bchip.off img { filter: grayscale(1); }

/* ---------- location filters ---------- */
.cal-loc-filters {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.loc-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px 5px 9px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--muted);
  transition: background .15s var(--ease), border-color .15s var(--ease), color .15s var(--ease);
  user-select: none;
  white-space: nowrap;
}
.loc-chip:hover { border-color: #d6d3ca; color: var(--ink-soft); }
.loc-chip.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.loc-chip.on .loc-dot { box-shadow: 0 0 0 1.5px rgba(255,255,255,.45); }
.loc-dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.loc-pin { width: 13px; height: 13px; flex: none; }

.cal-body.cal-grid { transition: none; }
/* today column highlight in grid views */
.col-head.col-today { background: hsl(220 40% 96%); color: var(--ink); }
.col-head.col-today em { background: var(--ink); color: #fff; border-radius: 50%; width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; font-size: 10.5px; margin-left: 3px; }
.cal-cell.col-today { background: hsl(220 30% 98%); }

.col-head em { font-style: normal; color: var(--faint); font-weight: 600; margin-left: 2px; }
.cal-evt .cli { font-weight: 700; display: block; }

/* month view */
.cal-month { display: grid; grid-template-columns: repeat(7, 1fr); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.cal-month .mh { font-size: 10.5px; font-weight: 600; color: var(--muted); text-align: center; padding: 8px 0; background: var(--gray); border-bottom: 1px solid var(--line); }
.mcell { min-height: 56px; border-left: 1px solid var(--line); border-top: 1px solid var(--line); padding: 6px 7px; display: flex; flex-direction: column; gap: 6px; }
.mcell.empty { background: #fafaf8; }
.mcell.today { background: var(--gray); }
.mcell .dnum { font-size: 11px; font-weight: 600; color: var(--ink-soft); }
.mcell.today .dnum { color: var(--ink); }
.mdots { display: flex; gap: 3px; flex-wrap: wrap; }
.mdot { width: 7px; height: 7px; border-radius: 50%; }

/* live-demo affordances */
.live-badge { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink-soft); background: #fff; border: 1px solid var(--line-strong); padding: 3px 9px 3px 8px; border-radius: 999px; }
.lb-dot { width: 7px; height: 7px; border-radius: 50%; background: #2f8f6b; animation: lbpulse 1.9s ease-out infinite; }
@keyframes lbpulse { 0% { box-shadow: 0 0 0 0 rgba(47,143,107,.5); } 70% { box-shadow: 0 0 0 6px rgba(47,143,107,0); } 100% { box-shadow: 0 0 0 0 rgba(47,143,107,0); } }

.cal-hint { position: absolute; left: 50%; top: 8px; z-index: 6; display: inline-flex; align-items: center; gap: 7px; background: var(--ink); color: #fff; font-size: 12.5px; font-weight: 600; letter-spacing: -0.01em; padding: 9px 15px; border-radius: 999px; box-shadow: 0 16px 36px -12px rgba(0,0,0,.55); white-space: nowrap; opacity: 0; pointer-events: none; transform: translate(-50%, calc(-100% + 8px)); transition: opacity .45s var(--ease), transform .45s var(--ease); }
.cal-hint svg { width: 15px; height: 15px; }
.cal-hint::after { content: ""; position: absolute; left: 50%; bottom: -5px; width: 11px; height: 11px; background: var(--ink); border-radius: 2px; transform: translateX(-50%) rotate(45deg); }
.cal-hint.show { opacity: 1; pointer-events: auto; animation: hintbob 2.6s ease-in-out infinite; }
@keyframes hintbob { 0%, 100% { transform: translate(-50%, -100%); } 50% { transform: translate(-50%, calc(-100% - 5px)); } }

.views.nudge { animation: nudgering 1.5s ease-out 2; }
@keyframes nudgering { 0% { box-shadow: 0 0 0 0 rgba(59,91,181,0); } 35% { box-shadow: 0 0 0 5px rgba(59,91,181,.16); } 100% { box-shadow: 0 0 0 0 rgba(59,91,181,0); } }

/* step-by-step onboarding pulse */
@keyframes calObPulse {
  0%   { box-shadow: 0 0 0 1.5px #38bdf8, 0 0 0 1.5px rgba(56,189,248,.5); }
  70%  { box-shadow: 0 0 0 1.5px #38bdf8, 0 0 0 13px rgba(56,189,248,0); }
  100% { box-shadow: 0 0 0 1.5px #38bdf8, 0 0 0 13px rgba(56,189,248,0); }
}
.cal-ob-pulse { animation: calObPulse 1.6s ease-out infinite !important; }
.cal-ob-tip {
  position: absolute; z-index: 10; pointer-events: none; white-space: nowrap;
  transform: translate(-50%, -100%);
  background: var(--ink); color: #fff; font-size: 12.5px; font-weight: 600;
  letter-spacing: -0.01em;
  padding: 9px 15px; border-radius: 999px;
  box-shadow: 0 16px 36px -12px rgba(0,0,0,.55);
  opacity: 0; transition: opacity .2s var(--ease);
}
.cal-ob-tip.show { opacity: 1; }
.cal-ob-tip::after {
  content: ""; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent; border-top-color: var(--ink);
}
@media (max-width: 480px) {
  .cal-ob-tip { font-size: 10.5px; padding: 6px 11px; }
  .hero-mock-wrap .mock,
  .analytics-mock .mock { overflow: hidden; }
  @keyframes calObPulse {
    0%   { box-shadow: 0 0 0 1px #38bdf8, 0 0 0 1px rgba(56,189,248,.4); }
    70%  { box-shadow: 0 0 0 1px #38bdf8, 0 0 0 3px rgba(56,189,248,0); }
    100% { box-shadow: 0 0 0 1px #38bdf8, 0 0 0 3px rgba(56,189,248,0); }
  }
}
.hint-short { display: none; }
@media (max-width: 560px) { .hint-full { display: none; } .hint-short { display: inline; } }

/* section hints — same style as cal-hint */
.sec-hint { position: absolute; left: 50%; top: 8px; z-index: 6; display: inline-flex; align-items: center; gap: 7px; background: var(--ink); color: #fff; font-size: 12.5px; font-weight: 600; letter-spacing: -0.01em; padding: 9px 15px; border-radius: 999px; box-shadow: 0 16px 36px -12px rgba(0,0,0,.55); white-space: nowrap; opacity: 0; pointer-events: none; transform: translate(-50%, calc(-100% + 8px)); transition: opacity .45s var(--ease), transform .45s var(--ease); }
#site-hint { top: -12px; }
.sec-hint svg { width: 15px; height: 15px; }
.sec-hint::after { content: ""; position: absolute; left: 50%; bottom: -5px; width: 11px; height: 11px; background: var(--ink); border-radius: 2px; transform: translateX(-50%) rotate(45deg); }
.sec-hint.show { opacity: 1; pointer-events: auto; animation: hintbob 2.6s ease-in-out infinite; }

/* ---------- email campaigns mockup ---------- */
.ecamp { padding: 18px; }

/* crumb icon */
.mock-bar .crumb svg { width: 13px; height: 13px; display: inline; vertical-align: -2px; margin-right: 2px; }

/* campaign selector cards */
.ecamp-cards { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.ecamp-card {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px;
  background: #fff; cursor: pointer; font: inherit;
  transition: border-color .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
}
.ecamp-card:hover { border-color: var(--line-strong); background: var(--gray); }
.ecamp-card.on {
  border-color: var(--camp); background: var(--camp); color: #fff;
  box-shadow: 0 6px 16px -8px color-mix(in srgb, var(--camp) 50%, transparent);
}
.ecamp-dot {
  width: 10px; height: 10px; border-radius: 50%; flex: none;
  transition: box-shadow .18s var(--ease);
}
.ecamp-card.on .ecamp-dot { box-shadow: 0 0 0 2px rgba(255,255,255,.35); }
.ecamp-card-info { flex: 1; min-width: 0; text-align: left; }
.ecamp-card-nm { display: block; font-size: 13px; font-weight: 700; letter-spacing: -0.01em; }
.ecamp-card-desc { display: block; font-size: 10.5px; color: var(--faint); margin-top: 1px; }
.ecamp-card.on .ecamp-card-desc { color: rgba(255,255,255,.55); }
.ecamp-badge {
  font-size: 11px; font-weight: 800; letter-spacing: -0.01em;
  min-width: 24px; height: 24px; border-radius: 999px;
  display: grid; place-items: center;
  background: var(--gray); color: var(--ink-soft);
  flex: none; transition: background .18s var(--ease), color .18s var(--ease);
}
.ecamp-card.on .ecamp-badge { background: rgba(255,255,255,.22); color: #fff; }

/* found clients row */
.ecamp-found {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; background: var(--gray); border: 1px solid var(--line);
  border-radius: 10px; margin-bottom: 12px;
}
.ecamp-found-avatars { display: flex; flex: none; }
.efa {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-size: 9px; font-weight: 800; color: #fff; letter-spacing: -0.02em;
  border: 2px solid #fff; margin-left: -8px;
}
.efa:first-child { margin-left: 0; }
.ecamp-found-text {
  font-size: 11.5px; color: var(--ink-soft); font-weight: 500;
  letter-spacing: -0.01em; line-height: 1.35;
}

/* email preview panel */
.ecamp-email { display: none; flex-direction: column; gap: 10px; }
.ecamp-email.active { display: flex; }

.ecamp-email-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--faint);
}
.ecamp-email-label svg { width: 13px; height: 13px; }

.ecamp-email-card {
  border: 1px solid var(--line-strong); border-radius: 10px;
  overflow: hidden; background: #fff;
  box-shadow: 0 4px 12px -6px rgba(40,38,30,.12);
}

/* mail toolbar — Gmail/Outlook style */
.ecamp-mail-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 10px; background: var(--gray); border-bottom: 1px solid var(--line);
}
.ecamp-mail-actions { display: flex; gap: 2px; }
.ema {
  width: 26px; height: 26px; border-radius: 6px;
  display: grid; place-items: center; color: var(--muted);
  cursor: default;
}
.ema svg { width: 13px; height: 13px; }

/* email header — from / to / time */
.ecamp-email-hd {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px 10px; border-bottom: 1px solid var(--line);
}
.ecamp-email-logo {
  width: 32px; height: 32px; border-radius: 50%; background: var(--ink);
  flex: none; display: grid; place-items: center; position: relative; margin-top: 1px;
}
.ecamp-email-logo::after { content: ""; width: 10px; height: 10px; border-radius: 50%; border: 2px solid #fff; }
.ecamp-email-meta { flex: 1; min-width: 0; }
.ecamp-email-from-row {
  font-size: 12.5px; letter-spacing: -0.01em;
  display: flex; align-items: baseline; gap: 5px; flex-wrap: wrap;
}
.ecamp-email-from-row strong { font-weight: 700; color: var(--ink); }
.ecamp-email-addr { font-size: 11px; color: var(--faint); font-weight: 400; }
.ecamp-email-to { font-size: 11px; color: var(--faint); margin-top: 2px; }
.ecamp-email-time { font-size: 10.5px; color: var(--faint); white-space: nowrap; flex: none; margin-top: 2px; }

/* subject line */
.ecamp-email-subj-row {
  padding: 10px 14px; font-size: 14px; font-weight: 700;
  letter-spacing: -0.02em; color: var(--ink); border-bottom: 1px solid var(--line);
}

.ecamp-email-bd { padding: 14px; }
.ecamp-email-bd p {
  font-size: 12px; color: var(--ink-soft); line-height: 1.55;
  margin: 0 0 6px; letter-spacing: -0.005em;
}
.ecamp-email-bd p:last-of-type { margin-bottom: 12px; }
.ecamp-email-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: 8px; color: #fff;
  font-size: 12.5px; font-weight: 700; letter-spacing: -0.01em;
  text-decoration: none; cursor: default;
}
.ecamp-email-cta svg { width: 13px; height: 13px; }

/* send button */
.ecamp-send {
  width: 100%; padding: 11px; border: none; border-radius: 9px;
  background: var(--ink); color: #fff;
  font: inherit; font-size: 13px; font-weight: 700; letter-spacing: -0.01em;
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  transition: background .15s var(--ease), transform .12s var(--ease);
}
.ecamp-send svg { width: 14px; height: 14px; }
.ecamp-send:hover { background: #000; transform: translateY(-1px); }
.ecamp-send.sent { background: #3d6e3a; pointer-events: none; }

/* campaign-specific send colors */
.ecamp-email[data-email="comeback"] .ecamp-send { background: #3b5bb5; }
.ecamp-email[data-email="comeback"] .ecamp-send:hover { background: #2d4a96; }
.ecamp-email[data-email="winback"] .ecamp-send { background: #ca6a3a; }
.ecamp-email[data-email="winback"] .ecamp-send:hover { background: #a8562e; }
.ecamp-email[data-email="birthday"] .ecamp-send { background: #2f8f6b; }
.ecamp-email[data-email="birthday"] .ecamp-send:hover { background: #267856; }
.team { padding: 18px; }
.pay-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.team h4 { font-size: 15px; letter-spacing: -0.02em; margin-bottom: 3px; }
.team .muted-sm { font-size: 12px; color: var(--faint); }
.pay-total-chip { font-size: 12px; font-weight: 700; letter-spacing: -0.01em; background: var(--ink); color: #fff; padding: 6px 11px; border-radius: 999px; white-space: nowrap; }

/* pay summary chips */
.pay-summary-chips { display: flex; flex-direction: column; gap: 5px; align-items: flex-end; }
.pay-chip { font-size: 11.5px; font-weight: 600; padding: 4px 10px; border-radius: 999px; white-space: nowrap; display: inline-flex; align-items: center; gap: 4px; letter-spacing: -0.01em; }
.pay-chip svg { width: 12px; height: 12px; }
.pay-chip-out { background: #fef0ec; color: #b4502a; }
.pay-chip-in { background: #eef6ee; color: #3d6e3a; }

/* pay model tags */
.pay-model-tag { font-size: 10.5px; font-weight: 600; padding: 3px 8px; border-radius: 6px; white-space: nowrap; display: inline-flex; align-items: center; gap: 4px; letter-spacing: 0; text-transform: uppercase; }
.pay-model-tag svg { width: 11px; height: 11px; }
.tag-hourly { background: #fef0ec; color: #b4502a; }
.tag-rental { background: #eef6ee; color: #3d6e3a; }
.tag-split { background: #f0edfa; color: #6a4ca0; }

/* income / expense amounts */
.amt-expense { color: #b4502a; }
.amt-income { color: #3d6e3a; }
.amt-split { color: #6a4ca0; }
.rt-expense { color: #b4502a; }
.rt-income { color: #3d6e3a; }
.rt-split { color: #6a4ca0; }

/* detail label */
.pay-detail-label { font-size: 11px; font-weight: 500; color: var(--faint); padding: 10px 0 4px; letter-spacing: -0.005em; }

/* split dots */
.rdot.split-dot { background: #6a4ca0; }
.rdot.split-his { background: #b4502a; }
.rdot.split-yours { background: #3d6e3a; }

/* net summary bar */
.pay-net { background: var(--gray); border-radius: 10px; padding: 13px 14px; margin-top: 4px; }
.pay-net-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; font-weight: 700; letter-spacing: -0.01em; }
.pay-net-val { font-size: 17px; letter-spacing: -0.02em; color: #3d6e3a; font-variant-numeric: tabular-nums; }
.pay-net-hint { font-size: 10.5px; color: var(--faint); margin-top: 3px; font-weight: 400; }

.avatar { width: 38px; height: 38px; border-radius: 50%; flex: none; display: grid; place-items: center; font-size: 12px; font-weight: 700; color: #fff; letter-spacing: -0.02em; overflow: hidden; background: var(--gray-2); border: 1px solid var(--line); }
.avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }

.pay-row { border: 1px solid var(--line); border-radius: 11px; background: #fff; margin-bottom: 10px; overflow: hidden; transition: border-color .15s var(--ease), box-shadow .18s var(--ease); }
.pay-row:hover { border-color: var(--line-strong); }
.pay-row.open { border-color: var(--line-strong); box-shadow: 0 14px 32px -20px rgba(40,38,30,.45); }
.pay-main { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; padding: 12px 14px; cursor: pointer; user-select: none; }
.pay-main .who { display: flex; align-items: center; gap: 11px; }
.pay-main .nm { font-size: 13.5px; font-weight: 600; letter-spacing: -0.01em; }
.pay-main .ro { font-size: 11.5px; color: var(--faint); margin-top: 1px; }
.pay-right { display: flex; align-items: center; gap: 12px; }
.pay-right .amt { font-size: 15px; font-weight: 700; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.chev { width: 22px; height: 22px; border-radius: 6px; background: var(--gray); display: grid; place-items: center; color: var(--muted); flex: none; }
.chev svg { width: 14px; height: 14px; transition: transform .22s var(--ease); }
.pay-row.open .chev { background: var(--ink); color: #fff; }
.pay-row.open .chev svg { transform: rotate(180deg); }

.pay-detail { display: none; padding: 2px 14px 13px; border-top: 1px dashed var(--line-strong); }
.pay-row.open .pay-detail { display: block; }
.rate-row { display: grid; grid-template-columns: 1fr auto 58px; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.rate-lbl { font-size: 12.5px; font-weight: 600; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; letter-spacing: -0.01em; }
.rdot { width: 8px; height: 8px; border-radius: 2px; flex: none; }
.rdot.std { background: #2f2e2b; }
.rdot.wknd { background: #4a6a8a; }
.rdot.emrg { background: #c2571f; }
.rdot.rent { background: #5a7d57; }
.rate-calc { font-size: 11.5px; color: var(--faint); font-variant-numeric: tabular-nums; }
.rate-amt { font-size: 13px; font-weight: 700; letter-spacing: -0.01em; text-align: right; font-variant-numeric: tabular-nums; }
.rate-total { display: flex; align-items: center; justify-content: space-between; padding-top: 11px; font-weight: 700; font-size: 13px; letter-spacing: -0.01em; }
.rate-total .rt-big { font-size: 17px; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }

/* ---------- analytics dashboard ---------- */
.analytics-band { background: var(--gray); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.analytics-band .section-head { margin-bottom: 44px; }
.analytics-mock { max-width: 920px; margin: 0 auto; }
.hero-mock-wrap .mock,
.analytics-mock .mock { overflow: clip; overflow-clip-margin: 6px; margin-bottom: 2px; }
.analytics-mock .mock-bar { border-radius: 14px 14px 0 0; }

.an-body { padding: 20px 22px 24px; }

/* filters — reuses .loc-chip, .bchip, .views from calendar */
.an-filters { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.an-filter-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.an-loc-filters { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.an-barber-filters { display: flex; flex-wrap: wrap; gap: 8px; padding-left: 16px; border-left: 1px solid var(--line); }
.an-barber-filters .bchip { cursor: pointer; }
.an-barber-filters .bchip.off { opacity: .5; background: var(--gray); }
.an-barber-filters .bchip.off img { filter: grayscale(1); }
.an-period-wrap { margin-left: auto; }
.an-views span { padding: 5px 11px; }

/* KPI cards */
.an-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 16px; }
.an-kpi { background: var(--gray); border: 1px solid var(--line); border-radius: 12px; padding: 18px 18px 14px; transition: background .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease); }
.an-kpi:hover { background: #fff; border-color: var(--line-strong); transform: translateY(-2px); box-shadow: 0 14px 30px -20px rgba(40,38,30,.35); }
.an-kpi-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.an-kpi-icon { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; transition: transform .18s var(--ease); }
.an-kpi:hover .an-kpi-icon { transform: scale(1.08); }
.an-kpi[data-kpi="revenue"] .an-kpi-icon  { background: #eef6ee; color: #3d6e3a; }
.an-kpi[data-kpi="clients"] .an-kpi-icon  { background: #e9edf8; color: #3b5bb5; }
.an-kpi[data-kpi="ticket"] .an-kpi-icon   { background: #f0edfa; color: #6a4ca0; }
.an-kpi[data-kpi="bookings"] .an-kpi-icon { background: #fef0ec; color: #b4502a; }
.an-kpi-icon svg { width: 16px; height: 16px; }
.an-kpi-delta { font-size: 11.5px; font-weight: 700; letter-spacing: -0.01em; }
.an-kpi-delta.up { color: #5a7d57; }
.an-kpi-delta.down { color: #b4502a; }
.an-kpi-val { font-size: 28px; font-weight: 800; letter-spacing: -0.04em; line-height: 1.1; font-variant-numeric: tabular-nums; transition: opacity .2s var(--ease), transform .2s var(--ease); }
.an-kpi[data-kpi="revenue"]  .an-kpi-val { color: #2d5a2d; }
.an-kpi[data-kpi="clients"]  .an-kpi-val { color: #2c4a8a; }
.an-kpi[data-kpi="ticket"]   .an-kpi-val { color: #5a3d8a; }
.an-kpi[data-kpi="bookings"] .an-kpi-val { color: #8a3a1a; }
.an-kpi-lbl { font-size: 12px; color: var(--muted); font-weight: 500; margin-top: 4px; letter-spacing: -0.005em; }
.an-kpi-spark { display: flex; align-items: flex-end; gap: 3px; height: 32px; margin-top: 12px; }
.an-kpi-spark i { flex: 1; border-radius: 2px 2px 0 0; transition: height .4s var(--ease); }
.an-kpi[data-kpi="revenue"]  .an-kpi-spark i { background: #d4e8d4; }
.an-kpi[data-kpi="revenue"]  .an-kpi-spark i.hi { background: #3d6e3a; }
.an-kpi[data-kpi="clients"]  .an-kpi-spark i { background: #d6ddf2; }
.an-kpi[data-kpi="clients"]  .an-kpi-spark i.hi { background: #3b5bb5; }
.an-kpi[data-kpi="ticket"]   .an-kpi-spark i { background: #ddd8ef; }
.an-kpi[data-kpi="ticket"]   .an-kpi-spark i.hi { background: #6a4ca0; }
.an-kpi[data-kpi="bookings"] .an-kpi-spark i { background: #f0d9cf; }
.an-kpi[data-kpi="bookings"] .an-kpi-spark i.hi { background: #b4502a; }

/* secondary panels */
.an-secondary { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.an-panel { background: var(--gray); border: 1px solid var(--line); border-radius: 12px; padding: 18px; }
.an-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.an-panel-ttl { font-size: 13.5px; font-weight: 700; letter-spacing: -0.02em; display: inline-flex; align-items: center; gap: 7px; }
.an-panel-ttl svg { width: 15px; height: 15px; }
.an-leaderboard .an-panel-ttl svg { color: #ca6a3a; }
.an-heatmap .an-panel-ttl svg { color: #3b5bb5; }
.an-panel-sub { font-size: 11px; color: var(--faint); font-weight: 500; }

/* leaderboard */
.an-board { display: flex; flex-direction: column; gap: 10px; }
.an-board-row { display: grid; grid-template-columns: 20px 30px 1fr 90px auto; align-items: center; gap: 10px; }
.an-rank { font-size: 12px; font-weight: 800; color: var(--faint); text-align: center; }
.an-board-row:nth-child(1) .an-rank { color: #3b5bb5; }
.an-board-row:nth-child(2) .an-rank { color: #ca6a3a; }
.an-board-row:nth-child(3) .an-rank { color: #2f8f6b; }
.an-board-av { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; object-position: center 22%; flex: none; }
.an-board-info { min-width: 0; }
.an-board-nm { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.an-board-sub { display: block; font-size: 10px; color: var(--faint); margin-top: 1px; }
.an-board-bar-wrap { height: 6px; background: var(--line); border-radius: 3px; overflow: hidden; }
.an-board-bar { height: 100%; border-radius: 3px; transition: width .5s var(--ease); }
.an-board-row:nth-child(1) .an-board-bar { background: #3b5bb5; }
.an-board-row:nth-child(2) .an-board-bar { background: #ca6a3a; }
.an-board-row:nth-child(3) .an-board-bar { background: #2f8f6b; }
.an-board-val { font-size: 13px; font-weight: 800; letter-spacing: -0.02em; text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }

/* busiest hours */
.an-hours { display: flex; flex-direction: column; gap: 5px; }
.an-hour-row { display: grid; grid-template-columns: 34px 1fr 28px; align-items: center; gap: 8px; }
.an-hour-lbl { font-size: 10.5px; font-weight: 600; color: var(--faint); text-align: right; font-variant-numeric: tabular-nums; }
.an-hour-bar-wrap { height: 7px; background: var(--line); border-radius: 4px; overflow: hidden; }
.an-hour-bar { height: 100%; border-radius: 4px; transition: width .5s var(--ease), background .3s var(--ease); background: #bfc5d6; }
.an-hour-bar.hot { background: #3b5bb5; }
.an-hour-cnt { font-size: 10.5px; font-weight: 700; color: var(--ink-soft); text-align: right; font-variant-numeric: tabular-nums; }

/* feature bullets below */
.an-feat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.an-feat { display: flex; gap: 13px; align-items: flex-start; }
.an-feat .bi { width: 28px; height: 28px; border-radius: 8px; flex: none; background: #fff; border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--ink-soft); margin-top: 1px; }
.an-feat .bi svg { width: 15px; height: 15px; }
.an-feat strong { font-weight: 700; font-size: 14.5px; letter-spacing: -0.01em; display: block; }
.an-feat span { color: var(--muted); font-size: 13.5px; letter-spacing: -0.005em; line-height: 1.5; }

/* clickable KPI cards */
.an-kpi-clickable { cursor: pointer; position: relative; }
.an-kpi-clickable::after {
  content: ""; position: absolute; inset: 0; border-radius: 12px;
  border: 2px solid transparent; transition: border-color .18s var(--ease); pointer-events: none;
}
.an-kpi-clickable:hover::after { border-color: var(--ink); }
.an-kpi-clickable:active { transform: scale(.98); }

/* expanded chart view */
.an-expanded { animation: anExpandIn .3s var(--ease) both; }
@keyframes anExpandIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.an-expanded-head {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px; flex-wrap: wrap;
}
.an-back {
  width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--line-strong);
  background: #fff; color: var(--ink); display: grid; place-items: center;
  cursor: pointer; flex: none; transition: background .15s var(--ease), border-color .15s var(--ease);
}
.an-back:hover { background: var(--gray); border-color: #d6d3ca; }
.an-back svg { width: 16px; height: 16px; }

.an-expanded-kpi { display: flex; align-items: center; gap: 10px; }
.an-expanded-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center; flex: none;
}
.an-expanded-icon svg { width: 18px; height: 18px; }
.an-expanded-label { font-size: 12px; color: var(--muted); font-weight: 500; letter-spacing: -0.005em; }
.an-expanded-val-row { display: flex; align-items: baseline; gap: 10px; }
.an-expanded-val { font-size: 26px; font-weight: 800; letter-spacing: -0.04em; line-height: 1.1; font-variant-numeric: tabular-nums; }
.an-expanded-delta { font-size: 12px; font-weight: 700; letter-spacing: -0.01em; }
.an-expanded-delta.up { color: #5a7d57; }
.an-expanded-delta.down { color: #b4502a; }

.an-metric-pills { display: flex; gap: 4px; margin-left: auto; flex-wrap: wrap; }
.an-pill {
  font: inherit; font-size: 11.5px; font-weight: 600; letter-spacing: -0.01em;
  padding: 5px 12px; border-radius: 7px; border: 1px solid var(--line-strong);
  background: #fff; color: var(--muted); cursor: pointer;
  transition: background .15s var(--ease), color .15s var(--ease), border-color .15s var(--ease);
}
.an-pill:hover { color: var(--ink); border-color: #d6d3ca; }
.an-pill.on { background: var(--ink); color: #fff; border-color: var(--ink); }

.an-chart-wrap {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 24px 20px 16px; position: relative; min-height: 320px;
}
#an-chart-canvas { width: 100%; height: 320px; display: block; }

/* responsive */
@media (max-width: 880px) {
  .an-kpis { grid-template-columns: repeat(2, 1fr); }
  .an-secondary { grid-template-columns: 1fr; }
  .an-feat-row { grid-template-columns: 1fr; gap: 16px; }
  .an-period-wrap { margin-left: 0; width: 100%; }
  .an-views { width: 100%; display: flex; }
  .an-views span { flex: 1; text-align: center; }
  .an-filters { gap: 12px; }
  .an-filter-row { gap: 12px; }
  .an-barber-filters { padding-left: 0; border-left: none; }
  .an-metric-pills { margin-left: 0; width: 100%; }
  .an-expanded-head { gap: 10px; }
}
@media (max-width: 560px) {
  .an-body { padding: 14px 14px 18px; }
  .an-kpis { grid-template-columns: 1fr 1fr; gap: 8px; }
  .an-kpi { padding: 14px 14px 12px; }
  .an-kpi-val { font-size: 22px; }
  .an-board-row { grid-template-columns: 16px 24px 1fr 60px auto; gap: 7px; }
  .an-board-av { width: 24px; height: 24px; }
  .an-board-nm { font-size: 11px; }
  .an-board-val { font-size: 11.5px; }
}

/* ---------- more features grid ---------- */
.grid-more { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 52px; border: 1px solid var(--line-strong); border-radius: var(--radius); overflow: hidden; }
.mcard { padding: 22px 22px 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); transition: background .15s var(--ease); }
.mcard:hover { background: #fff; box-shadow: 0 8px 24px -12px rgba(40,38,30,.18); }
.mcard:nth-child(3n) { border-right: none; }
.mcard:nth-child(n+4) { } /* last row borders handled below */
.grid-more .mcard:nth-last-child(-n+3) { border-bottom: none; }
.mhead { display: flex; align-items: center; gap: 10px; margin-bottom: 7px; }
.mcard .mi { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 9px; background: var(--gray); color: var(--ink); flex: none; }
.mcard:hover .mi { background: #fff; border: 1px solid var(--line-strong); }
.mcard .mi svg { width: 17px; height: 17px; }
.mcard h3 { font-size: 16.5px; letter-spacing: -0.025em; }
.mcard p { color: var(--muted); font-size: 13.5px; margin-top: 0; line-height: 1.55; }

/* feature card mini-previews */
.mviz { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 13px; margin-bottom: 16px; min-height: 124px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; transition: border-color .15s var(--ease), box-shadow .18s var(--ease); }
.mcard:hover .mviz { border-color: var(--line-strong); box-shadow: 0 12px 26px -18px rgba(40,38,30,.45); }

/* CRM */
.crm-card { display: flex; flex-direction: column; gap: 10px; }
.crm-top { display: flex; align-items: center; gap: 9px; }
.crm-av { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; object-position: center 22%; flex: none; background: #eee; }
.crm-nm { font-size: 12.5px; font-weight: 700; letter-spacing: -0.01em; }
.crm-sub { font-size: 10.5px; color: var(--faint); margin-top: 1px; }
.crm-tag { margin-left: auto; width: 22px; height: 22px; border-radius: 6px; background: #fbf1e1; color: #d9982c; display: grid; place-items: center; flex: none; }
.crm-tag svg { width: 12px; height: 12px; fill: currentColor; }
.crm-hist { display: flex; gap: 4px; align-items: flex-end; height: 24px; }
.crm-hist span { flex: 1; background: var(--gray-2); border-radius: 2px; }
.crm-hist span.on { background: #3b5bb5; }
.crm-note { font-size: 10.5px; color: var(--muted); background: var(--gray); border-radius: 6px; padding: 5px 8px; }

/* marketing campaigns */
.camp { display: flex; flex-direction: column; gap: 8px; }
.camp-row { display: flex; align-items: center; gap: 8px; font-size: 11.5px; font-weight: 600; color: var(--ink-soft); letter-spacing: -0.01em; }
.cdot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.camp-st { margin-left: auto; font-size: 9.5px; font-weight: 700; padding: 2px 8px; border-radius: 999px; letter-spacing: .01em; }
.camp-st.sent { background: #e7f1ec; color: #2f8f6b; }
.camp-st.sched { background: #e9edf8; color: #3b5bb5; }
.camp-st.auto { background: var(--gray-2); color: var(--muted); }

/* unified inbox */
.inbox { display: flex; flex-direction: column; gap: 7px; }
.inbox-ch { display: flex; gap: 5px; margin-bottom: 2px; }
.ch { font-size: 9px; font-weight: 800; letter-spacing: .03em; color: #fff; padding: 2px 6px; border-radius: 5px; }
.ch.wa { background: #25a566; }
.ch.ig { background: #c2418f; }
.ch.sms { background: #3b5bb5; }
.bub { font-size: 11px; padding: 6px 10px; border-radius: 10px; max-width: 88%; line-height: 1.3; letter-spacing: -0.01em; }
.bub.in { background: var(--gray-2); color: var(--ink-soft); border-bottom-left-radius: 3px; align-self: flex-start; }
.bub.out { background: var(--ink); color: #fff; border-bottom-right-radius: 3px; align-self: flex-end; }

/* reviews */
.rev { display: flex; flex-direction: column; gap: 9px; }
.rev-top { display: flex; align-items: center; gap: 11px; }
.rev-score { font-size: 27px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.rev-stars { display: flex; gap: 2px; }
.rev-stars svg { width: 13px; height: 13px; fill: #e8a33d; color: #e8a33d; }
.rev-snip { font-size: 11px; color: var(--muted); font-style: italic; margin-top: 4px; }
.rev-tag { align-self: flex-start; font-size: 9.5px; font-weight: 700; color: #2f8f6b; background: #e7f1ec; padding: 3px 9px 3px 7px; border-radius: 999px; display: inline-flex; align-items: center; gap: 4px; }
.rev-tag svg { width: 11px; height: 11px; }

/* loyalty */
.loyal { display: flex; flex-direction: column; gap: 10px; }
.loyal-top { display: flex; align-items: center; font-size: 11.5px; font-weight: 700; letter-spacing: -0.01em; }
.loyal-cnt { margin-left: auto; color: var(--muted); font-size: 11px; font-weight: 600; }
.stamps { display: flex; gap: 5px; flex-wrap: wrap; }
.stamps span { width: 15px; height: 15px; border-radius: 50%; border: 1.5px solid var(--line-strong); }
.stamps span.on { background: #ca6a3a; border-color: #ca6a3a; }
.loyal-foot { font-size: 10.5px; color: var(--muted); }

/* no marketplace */
.market { display: flex; flex-direction: column; gap: 6px; }
.market-row { display: flex; align-items: center; gap: 9px; font-size: 11.5px; font-weight: 600; padding: 6px 9px; border-radius: 8px; letter-spacing: -0.01em; }
.market-row.you { background: #e9edf8; color: #3b5bb5; }
.market-row.you img { width: 20px; height: 20px; border-radius: 50%; object-fit: cover; object-position: center 22%; flex: none; }
.market-row.you .only { margin-left: auto; font-size: 9px; font-weight: 800; background: #3b5bb5; color: #fff; padding: 2px 8px; border-radius: 999px; letter-spacing: .02em; }
.market-row.off { color: var(--faint); }
.market-row.off .x { width: 18px; height: 18px; border-radius: 50%; background: var(--gray-2); display: grid; place-items: center; flex: none; }
.market-row.off .x::before { content: "×"; font-size: 12px; color: var(--faint); line-height: 1; }
.market-row.off .lbl { text-decoration: line-through; text-decoration-color: var(--line-strong); }

/* ---------- branded booking site ---------- */
.site-band { background: var(--gray); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.site-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 56px; }

/* phone */
.site-stage { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.phone { width: 290px; }
.phone-frame { position: relative; background: #0a0a0a; border-radius: 42px; padding: 11px; box-shadow: 0 40px 70px -34px rgba(20,18,14,.55), 0 6px 16px -8px rgba(20,18,14,.25); }
.phone-cam { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 64px; height: 18px; background: #0a0a0a; border-radius: 999px; z-index: 4; }
.phone-cam { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 64px; height: 18px; background: #0a0a0a; border-radius: 999px; z-index: 6; }
.phone-screen { position: relative; border-radius: 32px; overflow: hidden; background: #fff; height: 560px; transition: background .3s var(--ease), color .3s var(--ease); }

/* stacked views */
.bp-view { position: absolute; inset: 0; display: flex; flex-direction: column; background-color: inherit; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.bp-view:not(.active) { opacity: 0; transform: translateX(6%); pointer-events: none; }
.bp-view.active { opacity: 1; transform: none; }
.bp-scroll { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.bp-scroll::-webkit-scrollbar { display: none; }

/* status bar */
.bp-statusbar { display: flex; align-items: center; justify-content: space-between; padding: 13px 20px 4px; color: var(--bp-ink, #1c1c1a); }
.bp-time { font-size: 12px; font-weight: 700; letter-spacing: -0.02em; }
.bp-sysicons { display: inline-flex; gap: 5px; }
.bp-sysicons svg { width: 14px; height: 14px; }

/* booking page content */
.bp-cover { height: 100px; flex: none; position: relative; background: var(--bp-accent, #1c1c1a); transition: background .3s var(--ease); }
.bp-share { position: absolute; top: 42px; right: 14px; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.22); backdrop-filter: blur(4px); display: grid; place-items: center; color: #fff; cursor: pointer; }
.bp-share svg { width: 15px; height: 15px; }
.bp-head { padding: 8px 20px 0; text-align: center; }
.bp-av { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; object-position: center 22%; border: 4px solid #fff; margin: 0 auto; background: #eee; }
.phone-screen.is-dark .bp-av { border-color: var(--bp-card, #15151b); }
.bp-name { font-size: 19px; font-weight: 800; letter-spacing: -0.03em; margin-top: 9px; }
.bp-handle { font-size: 11.5px; color: var(--bp-muted, #8a887f); margin-top: 2px; }
.bp-rating { font-size: 12px; font-weight: 700; margin-top: 9px; display: inline-flex; align-items: center; gap: 5px; }
.bp-rating em { font-style: normal; font-weight: 500; color: var(--bp-muted, #8a887f); }
.bp-stars { display: inline-flex; gap: 1px; }
.bp-stars svg { width: 12px; height: 12px; fill: #e8a33d; color: #e8a33d; }
.bp-cta { margin: 16px 20px 4px; padding: 13px; border-radius: 12px; border: none; background: var(--bp-accent, #1c1c1a); color: var(--bp-cta-ink, #fff); font-size: 14px; font-weight: 700; letter-spacing: -0.01em; cursor: pointer; transition: transform .12s var(--ease), filter .15s var(--ease), opacity .15s var(--ease); }
.bp-cta:hover:not(:disabled) { transform: translateY(-1px); filter: brightness(1.08); }
.bp-cta:disabled { opacity: .4; cursor: default; }
.bp-cta.bp-full { margin: 0; width: 100%; }
.bp-srv-label, .bp-sec-lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--bp-muted, #8a887f); padding: 0 20px; margin: 16px 0 9px; }
.bp-services { padding: 0 20px; display: flex; flex-direction: column; gap: 9px; }
.bp-srv { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 14px; border-radius: 11px; background: var(--bp-card, #f6f5f1); border: 1px solid var(--bp-line, #ecebe5); transition: background .3s var(--ease), border-color .3s var(--ease), transform .12s var(--ease); text-align: left; cursor: pointer; color: inherit; font-family: inherit; }
.bp-srv:hover { transform: translateY(-1px); border-color: var(--bp-accent, #1c1c1a); }
.bp-srv-nm { font-size: 13px; font-weight: 700; letter-spacing: -0.01em; }
.bp-srv-meta { font-size: 10.5px; color: var(--bp-muted, #8a887f); margin-top: 2px; }
.bp-srv-r { display: flex; align-items: center; gap: 4px; }
.bp-srv-r svg { width: 15px; height: 15px; color: var(--bp-muted, #b3b1a8); }
.bp-srv-price { font-size: 13.5px; font-weight: 800; letter-spacing: -0.02em; color: var(--bp-accent-text, #1c1c1a); }
.bp-socials { display: flex; justify-content: center; gap: 10px; padding: 18px 20px 0; }
.bp-soc { width: 36px; height: 36px; border-radius: 50%; background: var(--bp-card, #f6f5f1); border: 1px solid var(--bp-line, #ecebe5); display: grid; place-items: center; color: var(--bp-ink, #1c1c1a); transition: background .15s var(--ease), color .15s var(--ease), transform .12s var(--ease); cursor: pointer; }
.bp-soc:hover { transform: translateY(-2px); }
.bp-soc svg { width: 16px; height: 16px; }
.bp-foot { padding: 18px 16px 20px; text-align: center; font-size: 10px; font-weight: 600; letter-spacing: .02em; color: var(--bp-muted, #b3b1a8); }

/* sub-view nav + actions */
.bp-nav { flex: none; display: flex; align-items: center; gap: 8px; padding: 44px 16px 12px; border-bottom: 1px solid var(--bp-line, #ecebe5); }
.bp-back { width: 30px; height: 30px; border-radius: 9px; border: 1px solid var(--bp-line, #ecebe5); background: var(--bp-card, #f6f5f1); color: var(--bp-ink, #1c1c1a); display: grid; place-items: center; cursor: pointer; flex: none; }
.bp-back svg { width: 16px; height: 16px; }
.bp-nav-ttl { font-size: 14px; font-weight: 800; letter-spacing: -0.02em; }
.bp-action { flex: none; padding: 12px 20px 18px; border-top: 1px solid var(--bp-line, #ecebe5); }

/* calendar inside phone */
.bp-pick-srv { margin: 14px 20px 0; padding: 11px 14px; border-radius: 11px; background: var(--bp-card, #f6f5f1); border: 1px solid var(--bp-line, #ecebe5); display: flex; align-items: center; justify-content: space-between; }
.bp-pick-srv .ps-nm { font-size: 12.5px; font-weight: 700; letter-spacing: -0.01em; }
.bp-pick-srv .ps-meta { font-size: 10.5px; color: var(--bp-muted, #8a887f); margin-top: 2px; }
.bp-pick-srv .ps-price { font-size: 13px; font-weight: 800; color: var(--bp-accent-text, #1c1c1a); }
.bp-dates { display: flex; gap: 8px; padding: 0 20px; overflow-x: auto; scrollbar-width: none; }
.bp-dates::-webkit-scrollbar { display: none; }
.bp-date { flex: none; width: 50px; padding: 9px 0; border-radius: 11px; border: 1px solid var(--bp-line, #ecebe5); background: var(--bp-card, #f6f5f1); cursor: pointer; text-align: center; transition: background .12s var(--ease), border-color .12s var(--ease), color .12s var(--ease); }
.bp-date .dw { font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--bp-muted, #8a887f); }
.bp-date .dn { font-size: 16px; font-weight: 800; letter-spacing: -0.02em; margin-top: 2px; color: var(--bp-ink, #1c1c1a); }
.bp-date.sel { background: var(--bp-accent, #1c1c1a); border-color: var(--bp-accent, #1c1c1a); color: var(--bp-cta-ink, #fff); }
.bp-date.sel .dw { color: var(--bp-cta-ink, #fff); opacity: .72; }
.bp-date.sel .dn { color: var(--bp-cta-ink, #fff); }
.bp-times { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 0 20px 8px; }
.bp-slot { padding: 10px 0; border-radius: 10px; border: 1px solid var(--bp-line, #ecebe5); background: var(--bp-card, #f6f5f1); font-size: 12.5px; font-weight: 700; letter-spacing: -0.01em; cursor: pointer; color: inherit; transition: background .12s var(--ease), border-color .12s var(--ease), color .12s var(--ease); }
.bp-slot.sel { background: var(--bp-accent, #1c1c1a); border-color: var(--bp-accent, #1c1c1a); color: var(--bp-cta-ink, #fff); }
.bp-slot:disabled { opacity: .35; text-decoration: line-through; cursor: default; }

/* confirm summary */
.bp-summary { margin: 16px 20px 0; border: 1px solid var(--bp-line, #ecebe5); border-radius: 13px; overflow: hidden; }
.bp-sum-row { display: flex; align-items: center; gap: 11px; padding: 13px 15px; border-bottom: 1px solid var(--bp-line, #ecebe5); }
.bp-sum-row:last-child { border-bottom: none; }
.bp-sum-row svg { width: 17px; height: 17px; color: var(--bp-muted, #8a887f); flex: none; }
.bp-sum-row .sl { font-size: 10.5px; color: var(--bp-muted, #8a887f); }
.bp-sum-row .sv { font-size: 13px; font-weight: 700; letter-spacing: -0.01em; margin-top: 1px; }
.bp-sum-row .sx { margin-left: auto; font-size: 14px; font-weight: 800; letter-spacing: -0.02em; color: var(--bp-accent-text, #1c1c1a); }
.bp-sum-av { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; object-position: center 22%; flex: none; }
.bp-policy { margin: 14px 20px 0; display: flex; gap: 9px; font-size: 10.5px; line-height: 1.5; color: var(--bp-muted, #8a887f); }
.bp-policy svg { width: 26px; height: 26px; flex: none; color: var(--bp-accent-text, #1c1c1a); }

/* done */
.bp-done { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 30px 24px; }
.bp-check { width: 60px; height: 60px; border-radius: 50%; background: var(--bp-accent, #1c1c1a); color: var(--bp-cta-ink, #fff); display: grid; place-items: center; }
.bp-check svg { width: 30px; height: 30px; }
.bp-done-ttl { font-size: 21px; font-weight: 800; letter-spacing: -0.03em; margin-top: 18px; }
.bp-done-sub { font-size: 12.5px; color: var(--bp-muted, #8a887f); margin-top: 7px; line-height: 1.5; }
.bp-done-card { width: 100%; margin: 20px 0 24px; padding: 14px 16px; border-radius: 13px; background: var(--bp-card, #f6f5f1); border: 1px solid var(--bp-line, #ecebe5); font-size: 13px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.6; }

/* chat sheet */
.bp-sheet { position: absolute; left: 0; right: 0; bottom: 0; z-index: 7; background: var(--bp-card, #fff); border-radius: 22px 22px 0 0; box-shadow: 0 -20px 40px -18px rgba(0,0,0,.4); transform: translateY(100%); transition: transform .32s var(--ease); display: flex; flex-direction: column; max-height: 78%; }
.phone-screen:not(.is-dark) .bp-sheet { background: #fff; }
.bp-sheet.open { transform: none; }
.bp-sheet-grab { width: 36px; height: 4px; border-radius: 999px; background: var(--bp-line, #ddd); margin: 9px auto 4px; }
.bp-sheet-head { display: flex; align-items: center; gap: 10px; padding: 8px 16px 12px; border-bottom: 1px solid var(--bp-line, #ecebe5); }
.bp-sheet-head img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; object-position: center 22%; }
.bp-sheet-nm { font-size: 13px; font-weight: 800; letter-spacing: -0.02em; }
.bp-sheet-st { font-size: 10px; color: var(--bp-muted, #8a887f); margin-top: 1px; }
.bp-sheet-x { margin-left: auto; width: 28px; height: 28px; border-radius: 8px; border: none; background: var(--bp-card, #f1f0ec); color: var(--bp-ink, #1c1c1a); display: grid; place-items: center; cursor: pointer; }
.phone-screen:not(.is-dark) .bp-sheet-x { background: #f1f0ec; }
.bp-sheet-x svg { width: 15px; height: 15px; }
.bp-sheet-body { padding: 14px 16px; display: flex; flex-direction: column; gap: 9px; overflow-y: auto; }
.bp-msg { font-size: 12px; line-height: 1.4; padding: 8px 12px; border-radius: 13px; max-width: 82%; letter-spacing: -0.01em; }
.bp-msg.in { background: var(--bp-card, #f1f0ec); color: var(--bp-ink, #1c1c1a); align-self: flex-start; border-bottom-left-radius: 4px; }
.phone-screen:not(.is-dark) .bp-msg.in { background: #f1f0ec; }
.bp-msg.out { background: var(--bp-accent, #1c1c1a); color: var(--bp-cta-ink, #fff); align-self: flex-end; border-bottom-right-radius: 4px; }
.bp-sheet-input { display: flex; align-items: center; gap: 10px; margin: 4px 16px 18px; padding: 10px 12px 10px 16px; border-radius: 999px; border: 1px solid var(--bp-line, #ecebe5); color: var(--bp-muted, #8a887f); font-size: 12.5px; }
.bp-sheet-input i { margin-left: auto; }
.bp-sheet-input svg { width: 28px; height: 28px; padding: 6px; border-radius: 50%; background: var(--bp-accent, #1c1c1a); color: var(--bp-cta-ink, #fff); }

/* toast */
.bp-toast { position: absolute; left: 50%; bottom: 22px; transform: translate(-50%, 16px); z-index: 8; background: rgba(20,18,14,.92); color: #fff; font-size: 11.5px; font-weight: 600; letter-spacing: -0.01em; padding: 9px 15px; border-radius: 999px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .25s var(--ease), transform .25s var(--ease); }
.bp-toast.show { opacity: 1; transform: translate(-50%, 0); }

/* themes */
.phone-screen { --bp-accent:#3b5bb5; --bp-accent-text:#3b5bb5; --bp-cta-ink:#fff; --bp-card:#eef1fb; --bp-line:#dde3f4; --bp-ink:#1b2237; --bp-muted:#7e85a3; background:#fbfbfe; color:#1b2237; }

.site-url { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--muted); background: #fff; border: 1px solid var(--line-strong); padding: 8px 15px; border-radius: 999px; letter-spacing: -0.01em; }
.site-url strong { color: var(--ink); font-weight: 700; }
.site-url svg { width: 15px; height: 15px; }

/* picker */
.site-picker h3 { font-size: 22px; letter-spacing: -0.03em; }
.site-picker-sub { color: var(--muted); font-size: 15px; margin-top: 8px; line-height: 1.5; letter-spacing: -0.01em; }
.brand-block { margin-top: 24px; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.brand-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand-row + .brand-row { margin-top: 18px; }
.brand-lbl { font-size: 13px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.swatches { display: flex; gap: 9px; flex-wrap: wrap; }
.sw { width: 30px; height: 30px; border-radius: 50%; background: var(--sw); border: none; cursor: pointer; position: relative; transition: transform .14s var(--ease); box-shadow: inset 0 0 0 1px rgba(0,0,0,.08); }
.sw:hover { transform: scale(1.12); }
.sw.is-active { box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--sw); }
.sw.is-active::after { content: ""; position: absolute; inset: 0; margin: auto; width: 9px; height: 9px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.12); }
.mode-toggle { display: inline-flex; gap: 2px; background: var(--gray); border: 1px solid var(--line); padding: 3px; border-radius: 9px; }
.mode-toggle button { border: none; background: transparent; font: inherit; font-size: 12.5px; font-weight: 600; color: var(--muted); padding: 6px 15px; border-radius: 6px; cursor: pointer; transition: background .15s var(--ease), color .15s var(--ease), box-shadow .15s var(--ease); }
.mode-toggle button.on { background: #fff; color: var(--ink); box-shadow: 0 1px 2px rgba(40,38,30,.12); }
.hex-field { display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--line-strong); border-radius: 9px; overflow: hidden; background: #fff; transition: border-color .15s var(--ease), box-shadow .15s var(--ease); }
.hex-field:focus-within { border-color: #bdb9ad; box-shadow: 0 0 0 3px rgba(28,28,26,.07); }
.color-well { position: relative; width: 34px; height: 34px; flex: none; cursor: pointer; background: var(--well, #3b5bb5); border-right: 1px solid var(--line); display: block; }
.color-well input[type="color"] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; border: none; padding: 0; }
.hex-hash { padding: 0 2px 0 11px; font-size: 13.5px; font-weight: 700; color: var(--faint); }
.hex-input { border: none; outline: none; font: inherit; font-size: 13.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; width: 84px; padding: 8px 12px 8px 2px; color: var(--ink); background: transparent; }
.brand-hint { display: flex; align-items: center; gap: 8px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--muted); letter-spacing: -0.01em; }
.brand-hint svg { width: 15px; height: 15px; color: var(--ink); flex: none; }
.site-feats { margin-top: 28px; }

/* ---------- page builder UI ---------- */
.builder { margin-top: 22px; }
.bd-sec { padding: 16px 0; border-top: 1px solid var(--line); }
.bd-sec:first-child { border-top: none; padding-top: 4px; }
.bd-sec-h { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.bd-hint-sm { margin-left: auto; text-transform: none; letter-spacing: -0.01em; font-weight: 500; color: var(--faint); font-size: 11px; display: inline-flex; align-items: center; gap: 3px; }
.bd-hint-sm svg { width: 12px; height: 12px; }

/* template chips */
.tpl-chips { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.tpl-chip { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 12px 6px; border: 1px solid var(--line-strong); border-radius: 11px; background: #fff; font: inherit; font-size: 12px; font-weight: 600; color: var(--ink-soft); cursor: pointer; letter-spacing: -0.01em; transition: border-color .15s var(--ease), background .15s var(--ease), transform .12s var(--ease); }
.tpl-chip svg { width: 18px; height: 18px; color: var(--muted); }
.tpl-chip:hover { transform: translateY(-2px); border-color: #d6d3ca; }
.tpl-chip.is-active { border-color: var(--ink); background: var(--ink); color: #fff; }
.tpl-chip.is-active svg { color: #fff; }

/* block list */
.bd-blocks { display: flex; flex-direction: column; gap: 8px; }
.bd-block { border: 1px solid var(--line); border-radius: 11px; background: #fff; transition: border-color .15s var(--ease), box-shadow .15s var(--ease); overflow: hidden; }
.bd-block[draggable="true"] { cursor: grab; }
.bd-block.dragging { opacity: .55; border-color: var(--ink); box-shadow: 0 14px 30px -16px rgba(40,38,30,.5); }
.bd-block.bd-fixed { background: var(--gray); display: flex; align-items: center; gap: 11px; padding: 10px 12px; }
.bd-block.bd-expanded { border-color: var(--line-strong); box-shadow: 0 8px 20px -12px rgba(40,38,30,.2); }
.bd-block-head { display: flex; align-items: center; gap: 11px; padding: 10px 12px; cursor: pointer; user-select: none; }
.bd-grip { color: var(--faint); display: grid; place-items: center; flex: none; }
.bd-grip svg { width: 16px; height: 16px; }
.bd-grip-off { color: var(--line-strong); }
.bd-bi { width: 30px; height: 30px; border-radius: 8px; background: var(--gray); display: grid; place-items: center; color: var(--ink); flex: none; }
.bd-block.bd-fixed .bd-bi { background: #fff; }
.bd-block.bd-expanded .bd-bi { background: var(--ink); color: #fff; }
.bd-bi svg { width: 16px; height: 16px; }
.bd-block-info { display: flex; flex-direction: column; gap: 1px; flex: 1; min-width: 0; }
.bd-bn { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }
.bd-bn em { font-style: normal; font-weight: 500; color: var(--faint); font-size: 12px; }
.bd-bd { font-size: 11.5px; color: var(--faint); letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bd-expand-icon { width: 22px; height: 22px; display: grid; place-items: center; color: var(--faint); flex: none; }
.bd-expand-icon svg { width: 14px; height: 14px; }
.bd-tog { width: 38px; height: 22px; border-radius: 999px; border: none; background: var(--line-strong); position: relative; cursor: pointer; flex: none; transition: background .18s var(--ease); }
.bd-tog::after { content: ""; position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; border-radius: 50%; background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.25); transition: transform .18s var(--ease); }
.bd-tog.is-on { background: var(--ink); }
.bd-tog.is-on::after { transform: translateX(16px); }
.bd-tog.is-locked { cursor: default; opacity: .55; }

/* block settings panel */
.bd-settings { padding: 0 12px 12px; border-top: 1px solid var(--line); animation: bdSlideDown .2s var(--ease); }
@keyframes bdSlideDown { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
.bd-set-lbl { display: block; font-size: 11.5px; font-weight: 600; color: var(--muted); margin: 12px 0 6px; letter-spacing: -0.01em; }
.bd-char-count { text-align: right; font-size: 11px; color: var(--faint); margin-top: 4px; font-variant-numeric: tabular-nums; }

/* service rows in settings */
.bd-srv-row { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.bd-srv-row:last-of-type { border-bottom: none; }
.bd-srv-info { flex: 1; min-width: 0; }
.bd-srv-nm { font-size: 13px; font-weight: 600; letter-spacing: -0.01em; }
.bd-srv-meta { font-size: 11px; color: var(--faint); margin-top: 1px; }
.bd-srv-edit { width: 26px; height: 26px; border-radius: 7px; border: 1px solid var(--line); background: var(--gray); display: grid; place-items: center; color: var(--muted); cursor: pointer; flex: none; }
.bd-srv-edit:hover { background: #fff; border-color: var(--line-strong); color: var(--ink); }
.bd-srv-edit svg { width: 12px; height: 12px; }

/* portfolio grid in settings */
.bd-port-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin: 12px 0 8px; }
.bd-port-thumb { position: relative; aspect-ratio: 1; border-radius: 8px; overflow: hidden; background: var(--gray); }
.bd-port-thumb img { width: 100%; height: 100%; object-fit: cover; }
.bd-port-remove { position: absolute; top: 4px; right: 4px; width: 20px; height: 20px; border-radius: 50%; border: none; background: rgba(0,0,0,.6); color: #fff; display: grid; place-items: center; cursor: pointer; opacity: 0; transition: opacity .15s; }
.bd-port-thumb:hover .bd-port-remove { opacity: 1; }
.bd-port-remove svg { width: 10px; height: 10px; }

/* review rows in settings */
.bd-review-row { padding: 9px 0; border-bottom: 1px solid var(--line); }
.bd-review-row:last-child { border-bottom: none; }
.bd-review-info { display: flex; flex-direction: column; gap: 3px; }
.bd-review-nm { font-size: 12.5px; font-weight: 700; letter-spacing: -0.01em; }
.bd-review-text { font-size: 12px; color: var(--muted); font-style: italic; }

/* hours settings */
.bd-hours-row { display: flex; gap: 8px; margin: 6px 0; }
.bd-hours-day, .bd-hours-time { flex: 1; font: inherit; font-size: 13px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 8px; background: var(--gray); color: var(--ink); outline: none; transition: border-color .15s var(--ease); }
.bd-hours-day:focus, .bd-hours-time:focus { border-color: #bdb9ad; background: #fff; }
.bd-hours-day { font-weight: 600; }

/* address input */
.bd-addr-input { width: 100%; font: inherit; font-size: 13px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 8px; background: var(--gray); color: var(--ink); outline: none; transition: border-color .15s var(--ease); }
.bd-addr-input:focus { border-color: #bdb9ad; background: #fff; }

/* social rows in settings */
.bd-social-row { display: flex; align-items: center; gap: 8px; padding: 7px 0; border-bottom: 1px solid var(--line); }
.bd-social-row:last-child { border-bottom: none; }
.bd-social-row svg { width: 16px; height: 16px; color: var(--muted); flex: none; }
.bd-social-input { flex: 1; font: inherit; font-size: 13px; padding: 6px 8px; border: 1px solid var(--line); border-radius: 7px; background: var(--gray); color: var(--ink); outline: none; }
.bd-social-input:focus { border-color: #bdb9ad; background: #fff; }
.bd-social-fixed { font-size: 12.5px; color: var(--muted); }

/* add button (shared) */
.bd-add-btn { display: flex; align-items: center; justify-content: center; gap: 6px; width: 100%; padding: 8px; margin-top: 6px; border: 1px dashed var(--line-strong); border-radius: 8px; background: transparent; font: inherit; font-size: 12.5px; font-weight: 600; color: var(--muted); cursor: pointer; transition: background .15s var(--ease), color .15s var(--ease); }
.bd-add-btn:hover { background: var(--gray); color: var(--ink); }
.bd-add-btn svg { width: 14px; height: 14px; }
.bd-sec-first { border-top: none; padding-top: 4px; }

/* header upload */
.bd-upload { display: flex; gap: 8px; }
.bd-up-btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px; border: 1px dashed var(--line-strong); border-radius: 11px; background: var(--gray); font: inherit; font-size: 13px; font-weight: 600; color: var(--ink-soft); cursor: pointer; letter-spacing: -0.01em; transition: border-color .15s var(--ease), background .15s var(--ease); }
.bd-up-btn:hover { border-color: #cfccc2; background: #f0eee8; }
.bd-up-btn svg { width: 16px; height: 16px; }
.bd-up-clear { width: 42px; border: 1px solid var(--line-strong); border-radius: 11px; background: #fff; color: var(--muted); cursor: pointer; display: grid; place-items: center; }
.bd-up-clear:hover { background: var(--gray); color: var(--ink); }
.bd-up-clear svg { width: 16px; height: 16px; }

/* about textarea */
.bd-textarea { width: 100%; resize: none; font: inherit; font-size: 13.5px; line-height: 1.5; color: var(--ink); padding: 11px 13px; border: 1px solid var(--line-strong); border-radius: 11px; background: #fff; outline: none; letter-spacing: -0.01em; transition: border-color .15s var(--ease), box-shadow .15s var(--ease); }
.bd-textarea:focus { border-color: #bdb9ad; box-shadow: 0 0 0 3px rgba(28,28,26,.07); }

/* colour row */
.bd-colour-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 12px; flex-wrap: wrap; }

/* ---------- new phone blocks ---------- */
/* header photo */
.bp-cover-photo { height: 124px; flex: none; background-size: cover; background-position: center; position: relative; }
.bp-cover-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.32), rgba(0,0,0,0) 55%); }
.bp-statusbar.on-photo { position: absolute; top: 0; left: 0; right: 0; color: #fff; z-index: 2; text-shadow: 0 1px 3px rgba(0,0,0,.5); }
.bp-head.pulled { margin-top: -36px; position: relative; z-index: 2; }
.bp-head.pulled .bp-av { box-shadow: 0 2px 10px rgba(0,0,0,.18); }

/* about */
.bp-about { margin: 0 20px; font-size: 12.5px; line-height: 1.6; color: var(--bp-muted, #8a887f); letter-spacing: -0.005em; }

/* reviews in phone */
.bp-reviews { padding: 0 20px; display: flex; flex-direction: column; gap: 8px; }
.bp-review { padding: 10px 12px; border-radius: 10px; background: var(--bp-card, #f6f5f1); border: 1px solid var(--bp-line, #ecebe5); }
.bp-review-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.bp-review-name { font-size: 11.5px; font-weight: 700; letter-spacing: -0.01em; }
.bp-review-stars { display: flex; gap: 1px; }
.bp-review-stars svg { width: 11px; height: 11px; fill: #e8a33d; color: #e8a33d; }
.bp-review-text { font-size: 11px; color: var(--bp-muted, #8a887f); margin-top: 5px; font-style: italic; line-height: 1.45; }

/* hours in phone */
.bp-hours { padding: 0 20px; display: flex; flex-direction: column; gap: 0; }
.bp-hour-row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid var(--bp-line, #ecebe5); font-size: 12px; }
.bp-hour-row:last-child { border-bottom: none; }
.bp-hour-day { font-weight: 600; font-size: 11.5px; }
.bp-hour-time { font-size: 11.5px; color: var(--bp-muted, #8a887f); font-variant-numeric: tabular-nums; }
.bp-hour-row.closed .bp-hour-time { color: #c0392f; font-weight: 600; }

/* portfolio */
.bp-port { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 0 20px; }
.bp-port-t { aspect-ratio: 1 / 1; border-radius: 11px; background-size: cover; background-position: center 22%; background-color: var(--bp-card, #f6f5f1); }
.bp-port-more { display: grid; place-items: center; color: var(--bp-muted, #8a887f); font-weight: 800; font-size: 15px; letter-spacing: -0.02em; }

/* map */
.bp-map { height: 116px; margin: 0 20px; border-radius: 12px; position: relative; overflow: hidden; border: 1px solid var(--bp-line, #ecebe5); background-color: var(--bp-card, #f1f1ec); background-image: repeating-linear-gradient(0deg, var(--bp-line, #e6e4dd) 0 1px, transparent 1px 26px), repeating-linear-gradient(90deg, var(--bp-line, #e6e4dd) 0 1px, transparent 1px 26px); }
.bp-map-road { position: absolute; left: -10%; right: -10%; top: 58%; height: 12px; background: var(--bp-line, #e0ded6); transform: rotate(-13deg); }
.bp-map-pin { position: absolute; left: 50%; top: 44%; transform: translate(-50%, -50%); width: 30px; height: 30px; border-radius: 50% 50% 50% 0; background: var(--bp-accent, #1c1c1a); transform: translate(-50%, -50%) rotate(-45deg); display: grid; place-items: center; box-shadow: 0 4px 10px -2px rgba(0,0,0,.35); }
.bp-map-pin svg { width: 15px; height: 15px; color: var(--bp-cta-ink, #fff); transform: rotate(45deg); }
.bp-map-addr { display: flex; align-items: center; gap: 10px; margin: 10px 20px 0; padding: 11px 14px; border-radius: 11px; background: var(--bp-card, #f6f5f1); border: 1px solid var(--bp-line, #ecebe5); }
.bp-map-addr > svg { width: 17px; height: 17px; color: var(--bp-accent-text, #1c1c1a); flex: none; }
.bp-map-addr .ma-1 { font-size: 12.5px; font-weight: 700; letter-spacing: -0.01em; }
.bp-map-addr .ma-2 { font-size: 10.5px; color: var(--bp-muted, #8a887f); margin-top: 1px; }
.bp-map-addr .ma-go { margin-left: auto; font-size: 11px; font-weight: 700; color: var(--bp-accent-text, #1c1c1a); }

@media (max-width: 880px) {
  .site-layout { grid-template-columns: 1fr; gap: 44px; justify-items: center; }
  .site-picker { width: 100%; max-width: 420px; order: -1; }
  .site-picker h3 { display: none; }
  .site-picker-sub { display: none; }
  .bd-sec-first { display: none; }
  .builder { margin-top: 0; }
  .builder .bd-sec { border-top: none; padding-top: 0; }
  .hex-field { display: none; }
  .bd-colour-row { margin-top: 10px; }
  .mode-toggle { width: 100%; display: flex; }
  .mode-toggle button { flex: 1; }
}

/* ---------- migration ---------- */
.migrate { text-align: center; }
.badges { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; margin-top: 36px; }
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 600; letter-spacing: -0.015em; color: var(--ink-soft);
  background: var(--gray); border: 1px solid var(--line);
  padding: 11px 18px; border-radius: 999px;
  transition: transform .15s var(--ease), background .15s var(--ease);
}
.badge:hover { transform: translateY(-2px); background: #fff; border-color: var(--line-strong); }
.badge .sq { width: 16px; height: 16px; border-radius: 5px; }

/* ---------- pricing ---------- */
.pricing-band { }
.more-band { background: var(--gray); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pricing-band .section-head { margin-bottom: 48px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.pcard {
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
  position: relative;
}
.pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(40,38,30,.3);
}

/* featured card */
.pcard-featured {
  border: 2px solid var(--ink);
  box-shadow: 0 18px 40px -22px rgba(40,38,30,.4);
  transform: scale(1.03);
  z-index: 1;
}
.pcard-featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 28px 54px -22px rgba(40,38,30,.45);
}
.pcard-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pcard-head {
  padding: 32px 28px 0;
  text-align: center;
}
.plan-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.pcard-featured .plan-label { color: var(--accent); }
.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-top: 10px;
}
.plan-price .currency {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
  align-self: flex-start;
  margin-top: 6px;
}
.plan-price .amount {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--ink);
}
.plan-price .amount-custom {
  font-size: 30px;
  letter-spacing: -0.03em;
}
.plan-price .period {
  font-size: 16px;
  font-weight: 500;
  color: var(--faint);
  margin-left: 2px;
}
.plan-quip {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
  letter-spacing: -0.01em;
}

.pcard-body {
  padding: 24px 28px 0;
  flex: 1;
}
.plan-includes {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--faint);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.plan-features li svg {
  width: 16px;
  height: 16px;
  flex: none;
  color: #2f8f6b;
  margin-top: 1px;
}
.pcard-featured .plan-features li svg { color: var(--ink); }

.pcard-foot {
  padding: 24px 28px 28px;
}
.btn-plan {
  width: 100%;
  padding: 12px 18px;
  font-size: 15px;
}

/* price-lock + early-access banners — side by side */
.pricing-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.price-lock-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 26px;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow: 0 8px 24px -14px rgba(40,38,30,.18);
}
.price-lock-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #eef6ee;
  color: #2f8f6b;
  display: grid;
  place-items: center;
  flex: none;
}
.price-lock-icon svg { width: 20px; height: 20px; }
.price-lock-copy h3 {
  font-size: 17px;
  letter-spacing: -0.025em;
  margin-bottom: 6px;
}
.price-lock-copy p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  letter-spacing: -0.01em;
}
.price-lock-copy strong { color: var(--ink); font-weight: 700; }

/* early-access banner */
.ea-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 26px;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 40px -22px rgba(10,10,10,.55);
}
.ea-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.12);
  color: #fff;
  display: grid;
  place-items: center;
  flex: none;
}
.ea-icon svg { width: 20px; height: 20px; }
.ea-copy { flex: 1; }
.ea-copy h3 {
  font-size: 17px;
  letter-spacing: -0.025em;
  margin-bottom: 4px;
  color: #fff;
}
.ea-copy p {
  font-size: 14px;
  color: #a8a8a3;
  line-height: 1.55;
  letter-spacing: -0.01em;
}
.ea-copy strong { color: #fff; font-weight: 700; }
.btn-ea {
  align-self: flex-start;
  white-space: nowrap;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}
.btn-ea:hover { background: #f1f1f1; transform: translateY(-1px); }

/* pricing responsive */
@media (max-width: 880px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; gap: 20px; }
  .pcard-featured { transform: none; }
  .pcard-featured:hover { transform: translateY(-4px); }
  .pricing-banners { grid-template-columns: 1fr; max-width: 380px; }
}
@media (max-width: 560px) {
  .pcard-head { padding: 28px 22px 0; }
  .pcard-body { padding: 20px 22px 0; }
  .pcard-foot { padding: 20px 22px 24px; }
  .price-lock-inner { padding: 20px 18px; }
  .ea-inner { padding: 20px 18px; }
}

/* ---------- final CTA ---------- */
.cta-dark { background: var(--dark); color: #fff; }
.cta-dark .container { text-align: center; }
.cta-dark h2 { font-size: clamp(32px, 4.4vw, 54px); letter-spacing: -0.04em; color: #fff; }
.cta-dark .sub { color: #a8a8a3; font-size: 19px; max-width: 30rem; margin: 20px auto 0; line-height: 1.5; letter-spacing: -0.01em; }
.cta-dark .note { color: #6f6f6a; }

/* ---------- blog ---------- */
.blog-container { max-width: 720px; }

.blog-meta {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.blog-back {
  font-size: 14px; font-weight: 500; color: var(--muted);
  transition: color .15s var(--ease);
}
.blog-back:hover { color: var(--ink); }
.blog-meta time { font-size: 14px; color: var(--faint); font-weight: 500; }

.blog-tag {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.01em;
  color: var(--accent);
  background: rgba(236, 106, 45, 0.08);
  padding: 3px 10px;
  border-radius: 999px;
}

.blog-post h1 {
  font-size: clamp(30px, 4.2vw, 48px);
  letter-spacing: -0.04em;
  line-height: 1.1;
  max-width: 20ch;
  margin-bottom: 32px;
}

.blog-container > picture { display: block; }
.blog-hero-img {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}

.blog-body h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  letter-spacing: -0.03em;
  margin: 48px 0 16px;
}
.blog-body h3 {
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: -0.025em;
  margin: 36px 0 12px;
}
.blog-body p {
  font-size: 17px; line-height: 1.7; color: var(--ink-soft);
  margin-bottom: 20px; letter-spacing: -0.01em;
}
.blog-body a {
  color: var(--accent); text-decoration: underline;
  text-underline-offset: 2px;
}
.blog-body a:hover { color: var(--ink); }
.blog-body ul, .blog-body ol {
  margin: 0 0 20px 20px; color: var(--ink-soft);
  font-size: 17px; line-height: 1.7;
}
.blog-body li { margin-bottom: 8px; }
.blog-body blockquote {
  border-left: 3px solid var(--accent);
  margin: 32px 0;
  padding: 16px 24px;
  background: var(--gray);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.blog-body blockquote p { color: var(--ink); font-style: italic; margin-bottom: 8px; }
.blog-body blockquote cite { font-size: 14px; color: var(--muted); font-style: normal; }
.blog-body figure { margin: 32px 0; }
.blog-body figure img { width: 100%; border-radius: var(--radius); }
.blog-body figcaption { font-size: 13px; color: var(--faint); margin-top: 8px; text-align: center; }
.blog-body img { max-width: 100%; height: auto; border-radius: var(--radius); }
.blog-body pre {
  background: var(--dark); color: #e8e8e8;
  padding: 20px 24px; border-radius: var(--radius);
  overflow-x: auto; font-size: 14px; line-height: 1.6;
  margin: 24px 0;
}
.blog-body code {
  font-size: 0.9em; background: var(--gray);
  padding: 2px 6px; border-radius: 4px;
}
.blog-body pre code { background: none; padding: 0; border-radius: 0; }
.blog-body hr { border: none; border-top: 1px solid var(--line); margin: 40px 0; }
.blog-body .table-wrap { overflow-x: auto; margin: 24px 0; }
.blog-body table { width: 100%; border-collapse: collapse; font-size: 15px; line-height: 1.5; }
.blog-body th { text-align: left; font-weight: 600; color: var(--ink); padding: 12px 16px; border-bottom: 2px solid var(--line-strong); }
.blog-body td { padding: 10px 16px; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.blog-body tr:last-child td { border-bottom: none; }
.blog-body th:first-child, .blog-body td:first-child { font-weight: 600; color: var(--ink); white-space: nowrap; }

/* callout boxes */
.blog-callout {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 28px 0;
}
.blog-callout p { color: var(--ink); margin-bottom: 0; }
.blog-callout--accent {
  background: rgba(236, 106, 45, 0.06);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* CTA block */
.blog-cta {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px 32px;
  margin: 40px 0;
  text-align: center;
}
.blog-cta h3 { color: #fff; margin: 0 0 12px; }
.blog-cta p { color: rgba(255,255,255,.75); margin-bottom: 20px; }
.blog-cta .btn-accent {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: transform .12s var(--ease), background .15s var(--ease);
}
.blog-cta .btn-accent:hover { background: #d45a20; transform: translateY(-1px); }

/* FAQ accordion */
.blog-faq { margin: 24px 0 32px; }
.blog-faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  transition: border-color .15s var(--ease);
}
.blog-faq details[open] { border-color: var(--line-strong); }
.blog-faq summary {
  font-weight: 600;
  font-size: 16px;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.blog-faq summary::-webkit-details-marker { display: none; }
.blog-faq summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform .2s var(--ease);
}
.blog-faq details[open] summary::after { content: "\2212"; }
.blog-faq details p {
  padding: 0 20px 16px;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ---------- blog listing ---------- */
.blog-listing h1 { font-size: clamp(30px, 4.2vw, 48px); }

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}

.blog-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
}
.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -20px rgba(40,38,30,.35);
  border-color: var(--line-strong);
}

.blog-card-img {
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: var(--gray);
}
.blog-card-img picture { display: block; width: 100%; height: 100%; }
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s var(--ease);
}
.blog-card:hover .blog-card-img img { transform: scale(1.03); }
.blog-card-img-empty {
  display: flex; align-items: center; justify-content: center;
}

.blog-card-body {
  padding: 16px 20px 18px;
  display: flex; flex-direction: column; flex: 1;
}
.blog-card-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 6px; }
.blog-card h2 { font-size: 17px; letter-spacing: -0.025em; line-height: 1.25; margin-bottom: 6px; }
.blog-card p {
  font-size: 13.5px; color: var(--muted); line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card time { font-size: 13px; color: var(--faint); margin-top: auto; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer .logo { font-size: 16px; }
.footer .links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer .links a { font-size: 14px; color: var(--muted); transition: color .15s var(--ease); }
.footer .links a:hover { color: var(--ink); }
.footer .copy { font-size: 13px; color: var(--faint); width: 100%; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 880px) {
  .grid-feats { grid-template-columns: repeat(2, 1fr); }
  .grid-more { grid-template-columns: repeat(2, 1fr); }
  .mcard:nth-child(3n) { border-right: 1px solid var(--line); }
  .mcard:nth-child(2n) { border-right: none; }
  .grid-more .mcard:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .grid-more .mcard:nth-last-child(-n+2) { border-bottom: none; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split .split-copy { position: static; }
  .split.reverse .split-copy { order: 0; }
  .split.reverse .split-media { order: 1; }
  .band { padding: 72px 0; }

  /* site builder: stack phone + builder on tablet */
  .site-layout { grid-template-columns: 1fr; gap: 40px; }
  .site-stage { order: 1; }
  .site-picker { order: 0; }
  .blog-card-img { aspect-ratio: 16 / 9; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .hero { padding: 52px 0 0; }
  .grid-feats { grid-template-columns: 1fr; }
  .grid-more { grid-template-columns: 1fr; }
  .mcard { border-right: none !important; }
  .grid-more .mcard { border-bottom: 1px solid var(--line); }
  .grid-more .mcard:last-child { border-bottom: none; }
  .waitlist { flex-direction: column; }
  .waitlist .btn { width: 100%; }
  .stats { grid-template-columns: 1fr; }
  .nav-inner { height: 58px; }
  .band { padding: 60px 0; }

  /* builder mobile: tighter padding */
  .bd-block-head { padding: 9px 10px; gap: 9px; }
  .bd-settings { padding: 0 10px 10px; }
  .bd-port-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .bd-colour-row { flex-direction: column; gap: 10px; align-items: flex-start; }
  .bd-colour-row .mode-toggle { width: 100%; display: flex; }
  .bd-colour-row .mode-toggle button { flex: 1; }
  .swatches { gap: 7px; }
  .sw { width: 28px; height: 28px; }

  /* phone preview: slightly smaller on mobile */
  .phone { width: 260px; }
  .phone-screen { height: 500px; }

  /* Feature Strip */
  .strip { padding: 16px 0; }
  .strip-inner {
    justify-content: center;
    align-items: center;
    gap: 8px 16px;
  }
  .strip-sep { display: none; }
  .strip-item {
    font-size: 13.5px;
    gap: 7px;
    padding: 6px 13px;
    background: var(--gray);
    border: 1px solid var(--line);
    border-radius: 999px;
    white-space: nowrap;
  }
  .strip-item svg { width: 15px; height: 15px; }
}

/* =============================================================
   MOBILE-FIRST OVERHAUL — 320px target (covers ≤480px)
   =============================================================
   Every section re-tuned for narrow mobile screens.
   Focus: legibility, tap targets, zero horizontal overflow,
   all features visible — nothing important hidden.
   ============================================================= */

@media (max-width: 480px) {

  /* ---- Foundation ---- */
  .container { padding: 0 16px; }
  .band { padding: 44px 0; }
  .band-tight { padding: 36px 0; }
  section { scroll-margin-top: 60px; }

  /* ---- Navbar ---- */
  .nav { position: relative; }
  .nav-inner { height: 50px; }
  .logo { font-size: 17px; gap: 0; }
  .logo-mark { width: 22px; height: 22px; border-radius: 6px; font-size: 13px; }
  .nav .btn { font-size: 12.5px; padding: 7px 13px; border-radius: 7px; }

  /* ---- Hero ---- */
  .hero { padding: 32px 0 0; overflow: visible; }
  .hero-floats { display: none; }
  .eyebrow { font-size: 11px; padding: 5px 10px 5px 9px; margin-bottom: 18px; }
  .hero h1 { font-size: 30px; letter-spacing: -0.04em; line-height: 1.1; max-width: 14ch; }
  .hero .sub { font-size: 14.5px; margin-top: 14px; line-height: 1.5; max-width: 100%; }
  .form-wrap { margin-top: 22px; }
  .form-wrap .btn { width: 100%; padding: 12px 16px; font-size: 14.5px; }
  .note { font-size: 12px; margin-top: 8px; }

  /* Hero mock — scale to fit & reveal */
  .hero-mock-wrap { margin-top: 28px; }
  .hero-mock-wrap::after { height: 60px; }

  /* Mock chrome (shared) */
  .mock { border-radius: 10px; }
  .mock-bar { height: 32px; padding: 0 10px; gap: 5px; border-radius: 10px 10px 0 0; }
  .mock-bar .dotrow { gap: 4px; }
  .mock-bar .dotrow span { width: 8px; height: 8px; }
  .mock-bar .crumb { font-size: 10px; margin-left: 6px; }
  .live-badge { font-size: 9px; padding: 2px 7px 2px 6px; gap: 4px; }
  .lb-dot { width: 5px; height: 5px; }

  /* Hints */
  .cal-hint, .sec-hint { font-size: 10.5px; padding: 7px 11px; gap: 5px; }
  .cal-hint svg, .sec-hint svg { width: 12px; height: 12px; }

  /* Calendar on mobile */
  .cal { padding: 8px; }
  .cal { display: flex; flex-direction: column; }
  .cal-toolbar { gap: 6px; margin-bottom: 6px; flex-wrap: wrap; order: -1; }
  .cal-range { font-size: 12.5px; }
  .cal-navs { gap: 3px; }
  .cal-nav { width: 24px; height: 24px; font-size: 13px; border-radius: 6px; }
  .views { width: 100%; display: flex; padding: 2px; border-radius: 7px; gap: 1px; margin: 2px 0; }
  .views span { flex: 1; text-align: center; font-size: 10px; padding: 4px 0; border-radius: 5px; }
  .onshift { padding-left: 6px; margin-left: 2px; gap: 4px; }
  .onshift .osl { font-size: 9px; display: none; }
  .onshift .stack img { width: 18px; height: 18px; margin-left: -5px; border-width: 1.5px; }

  /* Cal filters */
  .cal-filters { gap: 4px; margin-bottom: 6px; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding: 2px; scrollbar-width: none; }
  .cal-filters::-webkit-scrollbar { display: none; }
  .bchip { font-size: 10.5px; padding: 3px 8px 3px 3px; gap: 4px; flex-shrink: 0; }
  .bchip img { width: 18px; height: 18px; }
  .bchip .bdot { width: 6px; height: 6px; }

  /* Location filters */
  .cal-loc-filters { gap: 4px; margin-bottom: 6px; padding: 2px; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .cal-loc-filters::-webkit-scrollbar { display: none; }
  .loc-chip { font-size: 10px; padding: 3px 8px 3px 6px; gap: 4px; flex-shrink: 0; }
  .loc-pin { width: 10px; height: 10px; }
  .loc-dot { width: 6px; height: 6px; }

  /* Cal grid cells */
  .cal-grid { border-radius: 8px; }
  .cal-grid .col-head { font-size: 9px; padding: 5px 0; }
  .cal-grid .col-head em { font-size: 8.5px; margin-left: 1px; }
  .col-head.col-today em { width: 16px; height: 16px; font-size: 8.5px; }
  .cal-cell { height: 38px; overflow: hidden; }
  .cal-cell.tcell { font-size: 8px; padding: 3px 3px 0; }
  .cal-evt { font-size: 8.5px; padding: 3px 4px; left: 2px; right: 2px; top: 2px; border-radius: 4px; line-height: 1.2; max-height: calc(100% - 2px); }
  .cal-evt small { font-size: 7.5px; }
  .cal-evt .cli { font-size: 8.5px; }
  .evt-tall { height: 70px; }
  .evt-loc { font-size: 6.5px; padding: 1px 3px; border-radius: 2px; margin-left: 2px; }

  /* Month view */
  .cal-month { border-radius: 8px; }
  .cal-month .mh { font-size: 9px; padding: 5px 0; }
  .mcell { min-height: 38px; padding: 3px 4px; gap: 3px; }
  .mcell .dnum { font-size: 9px; }
  .mdots { gap: 2px; }
  .mdot { width: 5px; height: 5px; }

  /* Slot detail card */
  .slot-card { width: 250px; border-radius: 12px; }
  .slot-header { padding: 12px 12px 10px; gap: 9px; }
  .slot-avatar { width: 32px; height: 32px; font-size: 11px; }
  .slot-name { font-size: 13px; }
  .slot-badge { font-size: 8.5px; padding: 2px 6px; }
  .slot-visits { font-size: 9.5px; }
  .slot-section { padding: 0 12px 10px; }
  .slot-sec-label { font-size: 8.5px; margin-bottom: 6px; padding-top: 8px; }
  .sd-lbl { font-size: 10.5px; }
  .sd-val { font-size: 11px; gap: 4px; }
  .sd-bav { width: 15px; height: 15px; }
  .slot-stat { padding: 5px 3px; border-radius: 6px; }
  .ss-val { font-size: 12px; }
  .ss-lbl { font-size: 8.5px; }
  .slot-note { font-size: 10px; padding: 5px 7px; border-radius: 6px; }
  .slot-contact { font-size: 10.5px; gap: 5px; }
  .sc-icon { width: 12px; height: 12px; }
  .sc-icon svg { width: 11px; height: 11px; }
  .slot-close { width: 24px; height: 24px; margin: 8px 8px 0 0; font-size: 15px; }

  /* ---- Feature Strip ---- */
  .strip { display: none; }
  .strip-item {
    font-size: 13px;
    gap: 6px;
    padding: 6px 12px;
    background: var(--gray);
    border: 1px solid var(--line);
    border-radius: 999px;
    white-space: nowrap;
  }
  .strip-item svg { width: 14px; height: 14px; }

  /* ---- Section heads ---- */
  .section-head h2 { font-size: 24px; letter-spacing: -0.035em; }
  .section-head p { font-size: 14.5px; margin-top: 10px; line-height: 1.5; }
  .kicker { font-size: 11px; margin-bottom: 10px; letter-spacing: 0.03em; }

  /* ---- Booking site section ---- */
  #site-hint { top: 8px; }
  .site-band { padding: 44px 0; }
  .site-layout { margin-top: 32px; gap: 32px; }
  .phone { width: 240px; }
  .phone-frame { border-radius: 36px; padding: 9px; }
  .phone-cam { width: 54px; height: 16px; top: 17px; }
  .phone-screen { height: 460px; border-radius: 28px; }
  .site-url { font-size: 11px; padding: 5px 10px; gap: 5px; border-radius: 999px; }
  .site-url svg { width: 12px; height: 12px; }

  /* Booking summary — phone is only 240px wide */
  .bp-summary { margin: 12px 12px 0; border-radius: 10px; }
  .bp-sum-row { gap: 8px; padding: 9px 10px; }
  .bp-sum-row svg { width: 14px; height: 14px; }
  .bp-sum-row .sl { font-size: 9px; }
  .bp-sum-row .sv { font-size: 11px; }
  .bp-sum-row .sx { font-size: 11px; }
  .bp-sum-av { width: 22px; height: 22px; }

  /* Phone internals tighter */
  .bp-head { padding: 6px 16px 0; }
  .bp-av { width: 56px; height: 56px; border-width: 3px; }
  .bp-name { font-size: 16px; margin-top: 7px; }
  .bp-handle { font-size: 10.5px; }
  .bp-rating { font-size: 11px; margin-top: 7px; gap: 4px; }
  .bp-cta { margin: 12px 16px 4px; padding: 11px; font-size: 13px; border-radius: 10px; }
  .bp-srv-label, .bp-sec-lbl { font-size: 10px; padding: 0 16px; margin: 12px 0 7px; }
  .bp-services { padding: 0 16px; gap: 7px; }
  .bp-srv { padding: 9px 11px; border-radius: 9px; gap: 8px; }
  .bp-srv-nm { font-size: 12px; }
  .bp-srv-meta { font-size: 9.5px; }
  .bp-srv-price { font-size: 12px; }
  .bp-cover { height: 80px; }
  .bp-cover-photo { height: 100px; }
  .bp-about { margin: 0 16px; font-size: 11.5px; }
  .bp-reviews { padding: 0 16px; gap: 6px; }
  .bp-review { padding: 8px 10px; border-radius: 8px; }
  .bp-review-name { font-size: 10.5px; }
  .bp-review-stars svg { width: 10px; height: 10px; }
  .bp-review-text { font-size: 10px; margin-top: 4px; }
  .bp-hours { padding: 0 16px; }
  .bp-hour-row { font-size: 11px; padding: 6px 0; }
  .bp-hour-day { font-size: 10.5px; }
  .bp-hour-time { font-size: 10.5px; }
  .bp-port { gap: 6px; padding: 0 16px; }
  .bp-map { height: 90px; margin: 0 16px; border-radius: 10px; }
  .bp-map-addr { margin: 8px 16px 0; padding: 9px 12px; border-radius: 9px; gap: 8px; }
  .bp-map-addr > svg { width: 15px; height: 15px; }
  .bp-map-addr .ma-1 { font-size: 11.5px; }
  .bp-map-addr .ma-2 { font-size: 9.5px; }
  .bp-socials { padding: 14px 16px 0; gap: 8px; }
  .bp-soc { width: 32px; height: 32px; }
  .bp-soc svg { width: 14px; height: 14px; }
  .bp-foot { padding: 14px 14px 16px; font-size: 9px; }
  .bp-statusbar { padding: 10px 16px 3px; }
  .bp-time { font-size: 11px; }
  .bp-sysicons svg { width: 12px; height: 12px; }

  /* Chat sheet */
  .bp-sheet-head img { width: 28px; height: 28px; }
  .bp-sheet-nm { font-size: 12.5px; }
  .bp-sheet-st { font-size: 10px; }
  .bp-msg { font-size: 11.5px; padding: 7px 10px; }

  /* Sub-view nav */
  .bp-nav { padding: 38px 14px 10px; gap: 7px; }
  .bp-back { width: 28px; height: 28px; border-radius: 8px; }
  .bp-back svg { width: 14px; height: 14px; }
  .bp-nav-ttl { font-size: 13px; }
  .bp-action { padding: 10px 16px 14px; }
  .bp-pick-srv { margin: 12px 16px 0; padding: 9px 12px; border-radius: 9px; }
  .bp-pick-srv .ps-nm { font-size: 11.5px; }
  .bp-pick-srv .ps-meta { font-size: 9.5px; }
  .bp-pick-srv .ps-price { font-size: 12px; }
  .bp-dates { padding: 0 16px; gap: 6px; }
  .bp-date { width: 44px; padding: 7px 0; border-radius: 9px; }
  .bp-date .dw { font-size: 8.5px; }
  .bp-date .dn { font-size: 14px; }
  .bp-times { padding: 0 16px; }

  /* Builder panel */
  .site-picker { max-width: 100%; }
  .bd-sec { padding: 12px 0; }
  .bd-sec-h { font-size: 10px; margin-bottom: 10px; letter-spacing: 0.07em; }
  .bd-hint-sm { font-size: 10px; }
  .bd-blocks { gap: 6px; }
  .bd-block { border-radius: 9px; }
  .bd-block-head { padding: 8px 10px; gap: 7px; }
  .bd-bi { width: 26px; height: 26px; border-radius: 7px; }
  .bd-bi svg { width: 13px; height: 13px; }
  .bd-bn { font-size: 13px; }
  .bd-bn em { font-size: 11px; }
  .bd-bd { font-size: 10px; }
  .bd-tog { width: 34px; height: 20px; }
  .bd-tog::after { width: 16px; height: 16px; }
  .bd-tog.is-on::after { transform: translateX(14px); }
  .bd-expand-icon { width: 18px; height: 18px; }
  .bd-expand-icon svg { width: 12px; height: 12px; }
  .bd-grip svg { width: 13px; height: 13px; }

  .bd-settings { padding: 0 10px 10px; }
  .bd-set-lbl { font-size: 10.5px; margin: 10px 0 5px; }
  .bd-srv-row { padding: 7px 0; gap: 8px; }
  .bd-srv-nm { font-size: 12px; }
  .bd-srv-meta { font-size: 10px; }
  .bd-srv-edit { width: 24px; height: 24px; border-radius: 6px; }
  .bd-srv-edit svg { width: 11px; height: 11px; }
  .bd-port-grid { grid-template-columns: repeat(3, 1fr); gap: 5px; margin: 10px 0 6px; }
  .bd-review-nm { font-size: 11.5px; }
  .bd-review-text { font-size: 11px; }
  .bd-hours-row { gap: 6px; margin: 5px 0; }
  .bd-hours-day, .bd-hours-time { font-size: 12px; padding: 7px 8px; }
  .bd-addr-input { font-size: 12px; padding: 7px 8px; }
  .bd-social-row { padding: 6px 0; gap: 6px; }
  .bd-social-row svg { width: 14px; height: 14px; }
  .bd-social-input { font-size: 12px; padding: 5px 7px; }
  .bd-textarea { font-size: 12.5px; padding: 9px 11px; }
  .bd-char-count { font-size: 10px; }
  .bd-add-btn { padding: 7px; font-size: 11.5px; }
  .bd-up-btn { padding: 9px; font-size: 12px; gap: 6px; }
  .bd-up-btn svg { width: 14px; height: 14px; }

  .swatches { gap: 6px; }
  .sw { width: 26px; height: 26px; }
  .sw.is-active::after { width: 7px; height: 7px; }

  .bd-colour-row { flex-direction: column; gap: 8px; align-items: stretch; }
  .hex-field { border-radius: 7px; }
  .color-well { width: 32px; height: 32px; }
  .hex-hash { font-size: 12px; padding: 0 2px 0 8px; }
  .hex-input { font-size: 12px; width: 68px; padding: 7px 8px 7px 2px; letter-spacing: 0.05em; }
  .mode-toggle { width: 100%; display: flex; padding: 2px; border-radius: 8px; }
  .mode-toggle button { flex: 1; font-size: 12px; padding: 6px 8px; border-radius: 6px; }

  .brand-hint { font-size: 11px; gap: 6px; margin-top: 12px; padding-top: 10px; }
  .brand-hint svg { width: 13px; height: 13px; }

  /* ---- Split sections (Email campaigns, Team) ---- */
  /* Text first, mock second on mobile — both splits */
  .split-copy { order: 1; }
  .split-media { order: 2; }
  .split.reverse .split-media { order: 2; }
  .split { gap: 24px; }
  .split-copy h2 { font-size: 22px; letter-spacing: -0.035em; }
  .split-copy > p { font-size: 14px; margin-top: 10px; }
  .feat-list { margin-top: 18px; gap: 12px; }
  .feat-list li { gap: 10px; }
  .feat-list .bi { width: 22px; height: 22px; border-radius: 6px; margin-top: 2px; }
  .feat-list .bi svg { width: 12px; height: 12px; }
  .feat-list strong { font-size: 13.5px; }
  .feat-list span { font-size: 13px; line-height: 1.45; }

  /* Email campaign mock */
  .ecamp { padding: 10px; }
  .ecamp-cards { gap: 4px; margin-bottom: 10px; }
  .ecamp-card { padding: 8px 9px; gap: 7px; border-radius: 8px; }
  .ecamp-card-nm { font-size: 11.5px; }
  .ecamp-card-desc { font-size: 9px; }
  .ecamp-dot { width: 8px; height: 8px; }
  .ecamp-badge { width: 20px; height: 20px; font-size: 9.5px; min-width: 20px; }

  .ecamp-found { padding: 7px 9px; gap: 7px; border-radius: 8px; margin-bottom: 10px; }
  .efa { width: 20px; height: 20px; font-size: 7.5px; margin-left: -6px; border-width: 1.5px; }
  .ecamp-found-text { font-size: 10px; line-height: 1.3; }

  .ecamp-email { gap: 8px; }
  .ecamp-email-label { font-size: 9px; gap: 4px; }
  .ecamp-email-label svg { width: 11px; height: 11px; }
  .ecamp-email-card { border-radius: 8px; }
  .ecamp-mail-toolbar { padding: 4px 7px; }
  .ema { width: 20px; height: 20px; border-radius: 5px; }
  .ema svg { width: 10px; height: 10px; }

  .ecamp-email-hd { padding: 9px 10px 7px; gap: 7px; }
  .ecamp-email-logo { width: 26px; height: 26px; }
  .ecamp-email-logo::after { width: 7px; height: 7px; border-width: 1.5px; }
  .ecamp-email-from-row { font-size: 11px; gap: 4px; }
  .ecamp-email-addr { font-size: 9px; }
  .ecamp-email-to { font-size: 9.5px; }
  .ecamp-email-time { font-size: 9px; }
  .ecamp-email-subj-row { padding: 7px 10px; font-size: 12px; }
  .ecamp-email-bd { padding: 9px 10px; }
  .ecamp-email-bd p { font-size: 10.5px; margin: 0 0 5px; }
  .ecamp-email-cta { padding: 7px 12px; font-size: 10.5px; border-radius: 6px; gap: 4px; }
  .ecamp-email-cta svg { width: 10px; height: 10px; }

  .ecamp-send { padding: 9px; font-size: 11.5px; border-radius: 7px; gap: 5px; }
  .ecamp-send svg { width: 12px; height: 12px; }

  /* Team & Finance mock */
  .team { padding: 10px; }
  .pay-head { flex-direction: column; gap: 8px; align-items: flex-start; }
  .pay-summary-chips { flex-direction: row; align-items: flex-start; gap: 4px; flex-wrap: wrap; }
  .pay-chip { font-size: 10px; padding: 3px 7px; }
  .pay-chip svg { width: 10px; height: 10px; }
  .team h4 { font-size: 13px; }
  .team .muted-sm { font-size: 10.5px; }

  .pay-row { border-radius: 9px; margin-bottom: 7px; }
  .pay-main { padding: 9px 10px; gap: 6px; grid-template-columns: 1fr auto; }
  .pay-main .who { gap: 7px; }
  .avatar { width: 30px; height: 30px; }
  .pay-main .nm { font-size: 12px; }
  .pay-main .ro { font-size: 10px; }
  .pay-right { gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
  .pay-right .amt { font-size: 13px; }
  .pay-model-tag { font-size: 8.5px; padding: 2px 5px; gap: 2px; }
  .pay-model-tag svg { width: 9px; height: 9px; }
  .chev { width: 18px; height: 18px; border-radius: 5px; }
  .chev svg { width: 11px; height: 11px; }

  .pay-detail { padding: 2px 10px 10px; }
  .pay-detail-label { font-size: 10px; padding: 7px 0 3px; }
  .rate-row { grid-template-columns: 1fr auto auto; gap: 6px; padding: 6px 0; }
  .rate-lbl { font-size: 10.5px; gap: 5px; }
  .rdot { width: 6px; height: 6px; }
  .rate-calc { font-size: 10px; }
  .rate-amt { font-size: 11px; min-width: 44px; }
  .rate-total { padding-top: 8px; font-size: 11.5px; }
  .rate-total .rt-big { font-size: 14px; }

  .pay-net { padding: 9px 10px; border-radius: 8px; margin-top: 3px; }
  .pay-net-row { font-size: 11.5px; }
  .pay-net-val { font-size: 14px; }
  .pay-net-hint { font-size: 9px; margin-top: 2px; }

  /* ---- Analytics ---- */
  .analytics-band { padding: 44px 0; }
  .analytics-band .section-head { margin-bottom: 24px; }
  .analytics-mock .mock-bar { height: 32px; padding: 0 10px; border-radius: 10px 10px 0 0; }

  .an-body { padding: 10px 8px 12px; }

  /* Filters — horizontal scroll */
  .an-filters { gap: 6px; margin-bottom: 12px; padding-bottom: 10px; flex-direction: column; }
  .an-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    width: 100%;
  }
  .an-loc-filters { width: 100%; margin-bottom: 0; padding: 2px; border-bottom: none; gap: 4px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .an-loc-filters::-webkit-scrollbar { display: none; }
  .an-barber-filters { width: 100%; gap: 4px; padding: 2px; padding-left: 0; border-left: none; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .an-barber-filters::-webkit-scrollbar { display: none; }
  .an-loc-filters .loc-chip { font-size: 9.5px; padding: 3px 7px 3px 5px; }
  .an-barber-filters .bchip { font-size: 9.5px; padding: 2px 7px 2px 2px; gap: 4px; white-space: nowrap; }
  .an-barber-filters .bchip img { width: 16px; height: 16px; }
  .an-barber-filters .bchip .bdot { width: 5px; height: 5px; }
  .an-period-wrap { margin-left: 0; width: 100%; }
  .an-views { width: 100%; display: flex; border-radius: 7px; padding: 2px; }
  .an-views span { flex: 1; text-align: center; font-size: 10px; padding: 4px 0; border-radius: 5px; }

  /* KPI cards */
  .an-kpis { gap: 6px; }
  .an-kpi { padding: 10px 9px 8px; border-radius: 9px; }
  .an-kpi-top { margin-bottom: 6px; }
  .an-kpi-icon { width: 26px; height: 26px; border-radius: 7px; }
  .an-kpi-icon svg { width: 13px; height: 13px; }
  .an-kpi-delta { font-size: 9.5px; }
  .an-kpi-val { font-size: 18px; }
  .an-kpi-lbl { font-size: 10px; margin-top: 2px; }
  .an-kpi-spark { height: 20px; margin-top: 6px; gap: 2px; }
  .an-kpi-spark i { border-radius: 1.5px 1.5px 0 0; }

  /* KPI clickable border */
  .an-kpi-clickable::after { border-radius: 9px; }

  /* Secondary panels */
  .an-secondary { gap: 8px; }
  .an-panel { padding: 10px; border-radius: 9px; }
  .an-panel-head { margin-bottom: 8px; }
  .an-panel-ttl { font-size: 11.5px; gap: 5px; }
  .an-panel-ttl svg { width: 12px; height: 12px; }
  .an-panel-sub { font-size: 9.5px; }

  .an-board { gap: 7px; }
  .an-board-row { grid-template-columns: 14px 20px 1fr 46px auto; gap: 5px; }
  .an-rank { font-size: 10px; }
  .an-board-av { width: 20px; height: 20px; }
  .an-board-nm { font-size: 10px; }
  .an-board-sub { font-size: 8px; }
  .an-board-bar-wrap { height: 4px; }
  .an-board-val { font-size: 10px; }

  .an-hours { gap: 4px; }
  .an-hour-row { grid-template-columns: 26px 1fr 22px; gap: 5px; }
  .an-hour-lbl { font-size: 8.5px; }
  .an-hour-bar-wrap { height: 5px; border-radius: 3px; }
  .an-hour-bar { border-radius: 3px; }
  .an-hour-cnt { font-size: 8.5px; }

  /* Expanded chart view */
  .an-expanded-head { gap: 6px; }
  .an-back { width: 28px; height: 28px; border-radius: 7px; }
  .an-back svg { width: 14px; height: 14px; }
  .an-expanded-kpi { gap: 8px; }
  .an-expanded-icon { width: 30px; height: 30px; border-radius: 8px; }
  .an-expanded-icon svg { width: 15px; height: 15px; }
  .an-expanded-label { font-size: 10.5px; }
  .an-expanded-val { font-size: 20px; }
  .an-expanded-delta { font-size: 10.5px; }
  .an-metric-pills { gap: 3px; margin-left: 0; width: 100%; }
  .an-pill { font-size: 9.5px; padding: 4px 7px; border-radius: 5px; }
  .an-chart-wrap { padding: 12px 8px 8px; min-height: 200px; border-radius: 9px; }
  #an-chart-canvas { height: 200px; }

  /* Feature row below analytics */
  .an-feat-row { gap: 12px; margin-top: 24px; }
  .an-feat { gap: 9px; }
  .an-feat .bi { width: 24px; height: 24px; border-radius: 6px; }
  .an-feat .bi svg { width: 12px; height: 12px; }
  .an-feat strong { font-size: 13px; }
  .an-feat span { font-size: 12px; }

  /* ---- More Features grid ---- */
  .grid-more { border-radius: 10px; margin-top: 32px; }
  .mcard { padding: 16px 14px 18px; }
  .mhead { gap: 7px; margin-bottom: 5px; }
  .mcard .mi { width: 26px; height: 26px; border-radius: 7px; }
  .mcard .mi svg { width: 14px; height: 14px; }
  .mcard h3 { font-size: 14.5px; }
  .mcard p { font-size: 12.5px; line-height: 1.5; }
  .mviz { padding: 9px; min-height: 90px; border-radius: 8px; }

  /* CRM viz */
  .crm-top { gap: 6px; }
  .crm-av { width: 24px; height: 24px; }
  .crm-nm { font-size: 11px; }
  .crm-sub { font-size: 9px; }
  .crm-tag { width: 18px; height: 18px; border-radius: 5px; }
  .crm-tag svg { width: 10px; height: 10px; }
  .crm-note { font-size: 9.5px; padding: 4px 6px; border-radius: 5px; }
  .crm-hist { height: 20px; gap: 3px; }

  /* Campaign viz */
  .camp-row { font-size: 10.5px; gap: 6px; }
  .cdot { width: 6px; height: 6px; }
  .camp-st { font-size: 8.5px; padding: 2px 6px; }

  /* Inbox viz */
  .ch { font-size: 7.5px; padding: 1px 5px; border-radius: 4px; }
  .bub { font-size: 10px; padding: 5px 8px; border-radius: 8px; }

  /* Reviews viz */
  .rev-top { gap: 8px; }

  /* Market compare viz */
  .market-row { font-size: 11px; gap: 6px; padding: 6px 0; }

  /* ---- Pricing ---- */
  .pricing-band { padding: 44px 0; }
  .pricing-band .section-head { margin-bottom: 28px; }
  .pricing-grid { max-width: 100%; gap: 14px; }

  .pcard { border-radius: 12px; }
  .pcard-featured { transform: none; }
  .pcard-featured:hover { transform: translateY(-3px); }
  .pcard-badge { font-size: 9.5px; padding: 3px 10px; top: -10px; }
  .pcard-head { padding: 22px 18px 0; }
  .pcard-body { padding: 16px 18px 0; }
  .pcard-foot { padding: 16px 18px 20px; }

  .plan-label { font-size: 11px; }
  .plan-price .currency { font-size: 18px; margin-top: 4px; }
  .plan-price .amount { font-size: 42px; }
  .plan-price .amount-custom { font-size: 24px; }
  .plan-price .period { font-size: 13px; }
  .plan-quip { font-size: 12px; margin-top: 5px; }
  .plan-includes { font-size: 11px; margin-bottom: 7px; }
  .plan-features { gap: 7px; }
  .plan-features li { font-size: 12.5px; gap: 8px; line-height: 1.4; }
  .plan-features li svg { width: 13px; height: 13px; }
  .btn-plan { padding: 11px 14px; font-size: 13.5px; }

  .pricing-banners { gap: 10px; max-width: 100%; }
  .price-lock-inner { padding: 16px 14px; gap: 10px; border-radius: 11px; }
  .ea-inner { padding: 16px 14px; gap: 10px; border-radius: 11px; }
  .price-lock-icon, .ea-icon { width: 34px; height: 34px; border-radius: 8px; }
  .price-lock-icon svg, .ea-icon svg { width: 17px; height: 17px; }
  .price-lock-copy h3, .ea-copy h3 { font-size: 14.5px; margin-bottom: 4px; }
  .price-lock-copy p, .ea-copy p { font-size: 12px; line-height: 1.55; }

  /* ---- Migration ---- */
  .badges { gap: 7px; margin-top: 20px; }
  .badge { font-size: 12.5px; padding: 8px 13px; gap: 6px; }
  .badge .sq { width: 13px; height: 13px; border-radius: 4px; }

  /* ---- Final CTA ---- */
  .cta-dark h2 { font-size: 26px; letter-spacing: -0.04em; }
  .cta-dark .sub { font-size: 15px; margin-top: 14px; }
  .cta-dark .note { font-size: 12px; }

  /* ---- Footer ---- */
  .footer { padding: 24px 0; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
  .footer .logo { font-size: 14.5px; }
  .footer .links { gap: 14px; justify-content: center; flex-wrap: wrap; }
  .footer .links a { font-size: 13px; }
  .footer .copy { text-align: center; font-size: 11.5px; }

  /* ---- Scroll reveal: reduce animation distance ---- */
  .reveal { transform: translateY(12px); }
}

/* =============================================================
   ULTRA-NARROW — 320px and below
   ============================================================= */

@media (max-width: 360px) {

  .container { padding: 0 14px; }

  /* Type scale */
  .hero h1 { font-size: 27px; letter-spacing: -0.04em; }
  .hero .sub { font-size: 13.5px; }
  .section-head h2 { font-size: 22px; }
  .section-head p { font-size: 13.5px; }
  .split-copy h2 { font-size: 20px; }
  .split-copy > p { font-size: 13px; }

  /* Team pay rows — stack on narrow */
  .pay-main { grid-template-columns: 1fr; gap: 6px; padding: 8px 8px; }
  .pay-right { justify-content: flex-start; }
  .chev { margin-left: auto; }
  .pay-main .nm { font-size: 11px; }
  .pay-main .ro { font-size: 9px; }
  .pay-right .amt { font-size: 12px; }
  .avatar { width: 26px; height: 26px; }

  /* Even tighter mocks */
  .cal { padding: 6px; }
  .ecamp { padding: 8px; }
  .team { padding: 8px; }
  .an-body { padding: 8px 6px 10px; }

  /* Calendar */
  .cal-toolbar { flex-direction: column; align-items: flex-start; gap: 4px; }
  .cal-cell { height: 34px; overflow: hidden; }
  .cal-evt { font-size: 7.5px; padding: 2px 3px; border-radius: 3px; max-height: 100%; }
  .cal-evt small { font-size: 7px; }
  .cal-evt .cli { font-size: 7.5px; }
  .cal-grid .col-head { font-size: 8px; padding: 4px 0; }
  .cal-cell.tcell { font-size: 7.5px; }
  .mcell { min-height: 32px; }

  /* Phone shrinks more */
  .phone { width: 220px; }
  .phone-frame { border-radius: 32px; padding: 8px; }
  .phone-cam { width: 48px; height: 14px; top: 15px; }
  .phone-screen { height: 420px; border-radius: 25px; }

  /* KPIs */
  .an-kpi-val { font-size: 16px; }
  .an-kpi { padding: 8px 7px 6px; }

  /* Pricing */
  .plan-price .amount { font-size: 36px; }
  .plan-features li { font-size: 12px; gap: 7px; }
  .pcard-head { padding: 20px 16px 0; }
  .pcard-body { padding: 14px 16px 0; }
  .pcard-foot { padding: 14px 16px 18px; }

  /* Banners */
  .price-lock-inner, .ea-inner { padding: 14px 12px; }
  .price-lock-copy h3, .ea-copy h3 { font-size: 13.5px; }
  .price-lock-copy p, .ea-copy p { font-size: 11.5px; }

  /* CTA */
  .cta-dark h2 { font-size: 23px; }
  .cta-dark .sub { font-size: 14px; }

  /* Feature list */
  .feat-list strong { font-size: 13px; }
  .feat-list span { font-size: 12.5px; }

  /* Nav */
  .logo { font-size: 16px; }
  .nav .btn { font-size: 11.5px; padding: 6px 11px; }

  /* Blog */
  .blog-post h1 { font-size: 26px; margin-bottom: 20px; }
  .blog-body h2 { font-size: 20px; margin-top: 36px; }
  .blog-body p { font-size: 15.5px; }
  .blog-body ul, .blog-body ol { font-size: 15.5px; }
  .blog-card-body { padding: 16px; }
  .blog-card h2 { font-size: 17px; }
  .blog-card p { font-size: 13.5px; }
}
