/* Schedularity — page-specific styles for home (heroes, calculator, walkthrough, etc.) */

/* ─── Hero shared ──────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}

.hero-inner { position: relative; z-index: 2; }

.hero .glow-a {
  width: 820px; height: 820px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -240px; right: -240px;
  opacity: 0.28;
  animation: drift 22s ease-in-out infinite;
}
[data-theme="dark"] .hero .glow-a { opacity: 0.5; }
.hero .glow-b {
  width: 620px; height: 620px;
  background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%);
  bottom: -220px; left: -180px;
  opacity: 0.22;
  animation: drift 26s ease-in-out infinite reverse;
}
[data-theme="dark"] .hero .glow-b { opacity: 0.35; }
.hero .glow-c {
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--accent-6) 0%, transparent 70%);
  top: 30%; left: 40%;
  opacity: 0.14;
  animation: drift 30s ease-in-out infinite;
}
[data-theme="dark"] .hero .glow-c { opacity: 0.25; }

.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.microcopy {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

/* HERO A — Editorial centered */
.hero-a {
  padding: 80px 0 64px;
  text-align: left;
  position: relative;
}
.hero-a .display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(64px, 10vw, 152px);
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-wrap: balance;
  max-width: 1100px;
}
.hero-a .display em { font-style: italic; font-weight: 300; color: var(--fg-muted); }
.hero-a .display .accent-word {
  background: linear-gradient(90deg, var(--accent), var(--accent-2) 50%, var(--accent-6));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 300;
}
.hero-a .sub {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.5;
  max-width: 620px;
  color: var(--fg-muted);
  margin-top: 32px;
}
.hero-a .ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-a .ctas .btn-primary {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.hero-a .ctas .btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-6), var(--accent-2));
  opacity: 0;
  transition: opacity 0.25s var(--ease);
  z-index: 0;
}
.hero-a .ctas .btn-primary:hover::before { opacity: 1; }
.hero-a .ctas .btn-primary > * { position: relative; z-index: 1; }

.hero-a .hero-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 24px;
}

/* Live activity ticker */
.live-ticker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  border: 1px solid var(--hairline-2);
  border-radius: 999px;
  background: var(--bg-elev);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  height: 32px;
  overflow: hidden;
  white-space: nowrap;
}
.live-ticker .ticker-track {
  display: inline-flex;
  gap: 32px;
  animation: marquee 38s linear infinite;
}
.live-ticker-wrap {
  width: 360px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.live-ticker .activity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.live-ticker .activity .city { color: var(--fg); font-weight: 500; }
.live-ticker .activity .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent-2);
  display: inline-block;
}

.hero-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--fg);
  border: 1px solid var(--hairline-2);
  background: var(--bg-elev);
  transition: all 0.18s var(--ease);
}
.hero-pill:hover { transform: translateY(-1px); border-color: var(--ink); }
.hero-pill .pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.hero-pill.indigo .pill-dot { background: var(--accent); }
.hero-pill.clay .pill-dot { background: var(--accent-2); }
.hero-pill.forest .pill-dot { background: var(--accent-3); }
.hero-pill.rose .pill-dot { background: var(--accent-4); }
.hero-pill.ochre .pill-dot { background: var(--accent-5); }
.hero-pill.plum .pill-dot { background: var(--accent-6); }

.hero-stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.hero-stat {
  padding: 24px 24px 24px 0;
  border-right: 1px solid var(--rule);
}
.hero-stat:last-child { border-right: 0; }
.hero-stat .stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}
.hero-stat .stat-val {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 8px;
}
.hero-stat .stat-val em { font-style: italic; font-weight: 300; color: var(--fg-muted); }
.hero-stat .stat-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.hero-a .product-strip {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: start;
}
.hero-a .product-strip > * {
  animation: floatY 8s ease-in-out infinite;
}
.hero-a .product-strip > *:nth-child(2) {
  animation-delay: -3s;
}

@media (max-width: 880px) {
  .hero-a .product-strip { grid-template-columns: 1fr; }
  .hero-stat-bar { grid-template-columns: 1fr 1fr; }
  .hero-stat:nth-child(2) { border-right: 0; }
  .hero-stat:nth-child(3) { border-top: 1px solid var(--rule); }
  .hero-stat:nth-child(4) { border-top: 1px solid var(--rule); }
  .live-ticker-wrap { width: 100%; }
  .hero-a .hero-top { grid-template-columns: 1fr; }
}

/* HERO B — Asymmetric split */
.hero-b {
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-b .display {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 88px);
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.hero-b .display em { font-style: italic; font-weight: 300; }
.hero-b .sub {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: var(--fg-muted);
  margin-top: 24px;
  max-width: 480px;
}
.hero-b .ctas { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
@media (max-width: 880px) {
  .hero-b { grid-template-columns: 1fr; padding: 40px 0; }
}

/* HERO C — Manifesto with mini grid */
.hero-c {
  padding: 80px 0;
}
.hero-c .top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}
.hero-c .display {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 80px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-c .display em { font-style: italic; font-weight: 300; color: var(--fg-muted); }
.hero-c .right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 12px;
}
.hero-c .right .sub {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-muted);
}
.hero-c .ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-c .strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid var(--rule);
  padding-top: 32px;
}
@media (max-width: 880px) {
  .hero-c .top, .hero-c .strip { grid-template-columns: 1fr; }
}

/* Hide/show heroes via data attr on body */
.hero-a, .hero-b, .hero-c { display: none; }
[data-hero="a"] .hero-a { display: block; }
[data-hero="b"] .hero-b { display: grid; }
[data-hero="c"] .hero-c { display: block; }
@media (max-width: 880px) {
  [data-hero="b"] .hero-b { display: grid; }
}

/* ─── Booking widget mock ──────────────────────────── */

.widget {
  background: var(--bg-elev);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(14,17,22,0.25);
  font-family: var(--font-body);
}
[data-theme="dark"] .widget { box-shadow: 0 30px 80px -30px rgba(0,0,0,0.7); }

.widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}
.widget-head .dots { display: flex; gap: 6px; }
.widget-head .dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--hairline-2); }

.widget-progress {
  display: flex;
  gap: 6px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--hairline);
}
.widget-progress .step {
  flex: 1;
  height: 3px;
  background: var(--hairline);
  border-radius: 2px;
  position: relative;
}
.widget-progress .step.done { background: var(--ink); }
.widget-progress .step.active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  border-radius: 2px;
  animation: fill 2.4s ease-in-out infinite;
  transform-origin: left;
}
@keyframes fill {
  0% { transform: scaleX(0); }
  50% { transform: scaleX(1); }
  100% { transform: scaleX(1); }
}

.widget-body { padding: 24px; }
.widget-step-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.widget-title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.service-list { display: flex; flex-direction: column; gap: 8px; }
.service-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s var(--ease);
}
.service-row:hover, .service-row.selected { border-color: var(--ink); background: color-mix(in srgb, var(--bg-elev) 50%, var(--bg) 50%); }
.service-row .left { display: flex; flex-direction: column; gap: 2px; }
.service-row .name { font-weight: 500; font-size: 14px; }
.service-row .meta { font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }
.service-row .price { font-family: var(--font-mono); font-size: 13px; font-weight: 500; }

.calendar-mini {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.calendar-mini .dow {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  padding: 6px 0;
  letter-spacing: 0.06em;
}
.calendar-mini .day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
}
.calendar-mini .day:hover { background: var(--bone-2); }
.calendar-mini .day.muted { color: var(--muted-2); opacity: 0.5; }
.calendar-mini .day.selected { background: var(--ink); color: var(--bone); }
.calendar-mini .day.dot { position: relative; }
.calendar-mini .day.dot::after {
  content: "";
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--accent);
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.slot {
  height: 40px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.15s;
}
.slot:hover { border-color: var(--ink); }
.slot.selected { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.slot.taken { opacity: 0.3; text-decoration: line-through; cursor: not-allowed; }

/* ─── Admin dashboard mock ──────────────────────────── */

.admin {
  background: var(--bg-elev);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(14,17,22,0.25);
  font-family: var(--font-body);
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 520px;
}
[data-theme="dark"] .admin { box-shadow: 0 30px 80px -30px rgba(0,0,0,0.7); }

.admin-sidebar {
  background: color-mix(in srgb, var(--bg) 60%, var(--bg-elev));
  border-right: 1px solid var(--hairline);
  padding: 18px;
}
.admin-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
}
.admin-nav { display: flex; flex-direction: column; gap: 2px; }
.admin-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--fg-muted);
  cursor: pointer;
}
.admin-nav a.active { background: var(--ink); color: var(--bone); }
.admin-nav .num { margin-left: auto; font-family: var(--font-mono); font-size: 10px; opacity: 0.7; }
.admin-nav .ico {
  width: 14px; height: 14px;
  border: 1px solid currentColor;
  border-radius: 3px;
  flex-shrink: 0;
}

.admin-main { padding: 20px 24px; overflow: hidden; }
.admin-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 20px;
}
.admin-head h4 { font-size: 24px; margin: 0; }
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.admin-stat {
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 12px 14px;
}
.admin-stat .label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.admin-stat .val {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.admin-stat .delta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--success);
  margin-top: 2px;
}

.admin-cal {
  border: 1px solid var(--hairline);
  border-radius: 10px;
  overflow: hidden;
}
.admin-cal-head {
  display: grid;
  grid-template-columns: 60px repeat(5, 1fr);
  border-bottom: 1px solid var(--hairline);
  background: color-mix(in srgb, var(--bg) 50%, var(--bg-elev));
}
.admin-cal-head > div {
  padding: 8px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.admin-cal-body {
  display: grid;
  grid-template-columns: 60px repeat(5, 1fr);
  grid-auto-rows: 32px;
  position: relative;
}
.admin-cal-body .time {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  padding: 4px 8px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.admin-cal-body .cell {
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  position: relative;
}
.admin-cal-body .booking {
  position: absolute;
  left: 4px; right: 4px;
  background: var(--accent-soft);
  border-left: 2px solid var(--accent);
  border-radius: 4px;
  padding: 4px 6px;
  font-size: 11px;
  color: var(--fg);
  overflow: hidden;
}
.admin-cal-body .booking.clay {
  background: oklch(0.62 0.14 50 / 0.12);
  border-left-color: var(--accent-2);
}

/* ─── Problem framing ──────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
}
.problem-cell {
  padding: 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.problem-cell:nth-child(4n) { border-right: 0; }
.problem-cell:nth-last-child(-n+1) { border-bottom: 0; }
.problem-cell .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.problem-cell h4 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.problem-cell p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted);
}
@media (max-width: 880px) {
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .problem-cell { border-right: 1px solid var(--rule) !important; }
  .problem-cell:nth-child(2n) { border-right: 0 !important; }
}

/* ─── Solution grid ──────────────────────────── */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
}
.solution-cell {
  padding: 36px 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: background 0.18s var(--ease);
}
.solution-cell:hover { background: var(--bg-elev); }
.solution-cell:nth-child(3n) { border-right: 0; }
.solution-cell:nth-child(n+4) { }
.solution-cell:nth-last-child(-n+3) { border-bottom: 0; }
.solution-cell .icon {
  width: 36px; height: 36px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.solution-cell .icon svg { width: 16px; height: 16px; }
.solution-cell h4 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.solution-cell p { font-size: 14px; line-height: 1.55; color: var(--fg-muted); }
.solution-cell .num-label {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
}
@media (max-width: 880px) {
  .solution-grid { grid-template-columns: 1fr; }
  .solution-cell { border-right: 0; }
}

/* ─── Calculator ──────────────────────────── */
.calc {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 18px;
  overflow: hidden;
}
@media (max-width: 880px) {
  .calc { grid-template-columns: 1fr; }
}
.calc-controls { padding: 36px; border-right: 1px solid var(--rule); }
@media (max-width: 880px) {
  .calc-controls { border-right: 0; border-bottom: 1px solid var(--rule); }
}
.calc-result { padding: 36px; background: var(--ink); color: var(--bone); display: flex; flex-direction: column; justify-content: space-between; }

.calc-row {
  display: grid;
  grid-template-columns: 140px 1fr 70px;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}
.calc-row:last-child { border-bottom: 0; }
.calc-row .label {
  display: flex; flex-direction: column; gap: 2px;
}
.calc-row .label .name { font-weight: 500; font-size: 14px; }
.calc-row .label .sub { font-family: var(--font-mono); font-size: 10px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.calc-row input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}
.calc-row input[type=range]::-webkit-slider-runnable-track {
  height: 2px;
  background: var(--hairline-2);
}
.calc-row input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--ink);
  margin-top: -7px;
  cursor: pointer;
}
[data-theme="dark"] .calc-row input[type=range]::-webkit-slider-thumb { background: var(--bone); }
.calc-row .val { font-family: var(--font-mono); font-size: 13px; text-align: right; }

.calc-result .top { }
.calc-result .label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--bone-3); opacity: 0.7; }
.calc-result .big {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 84px);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 12px 0 8px;
  color: var(--bone);
}
[data-theme="dark"] .calc-result .big { color: var(--ink); }
.calc-result .strike {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  opacity: 0.6;
  font-family: var(--font-mono);
  font-size: 14px;
}
.calc-result .save {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: -0.02em;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--bone) 20%, transparent);
}
.calc-result .save em { color: var(--accent-2); font-style: italic; }

[data-theme="dark"] .calc-result {
  background: var(--bone);
  color: var(--ink);
}

/* ─── Walkthrough tabs ──────────────────────────── */
.walkthrough { display: grid; grid-template-columns: 280px 1fr; gap: 32px; }
@media (max-width: 880px) { .walkthrough { grid-template-columns: 1fr; } }

.walk-tabs { display: flex; flex-direction: column; gap: 0; border-left: 1px solid var(--rule); }
.walk-tab {
  padding: 18px 20px;
  cursor: pointer;
  border-left: 2px solid transparent;
  margin-left: -1px;
  transition: all 0.18s var(--ease);
}
.walk-tab.active { border-left-color: var(--ink); background: var(--bg-elev); }
.walk-tab .num { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; color: var(--muted); }
.walk-tab .name {
  font-family: var(--font-display); font-size: 22px; letter-spacing: -0.02em;
  margin-top: 4px;
}
.walk-tab .desc { font-size: 13px; color: var(--fg-muted); margin-top: 4px; line-height: 1.5; display: none; }
.walk-tab.active .desc { display: block; }

.walk-panels {
  position: relative;
  min-height: 540px;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-elev);
}
.walk-panel { display: none; padding: 24px; }
.walk-panel.active { display: block; }

/* ─── Industries grid ──────────────────────────── */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ind-card {
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 24px;
  aspect-ratio: 1.05;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.18s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.ind-card:hover { background: var(--bg-elev); transform: translateY(-2px); }
.ind-card .num {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--muted); letter-spacing: 0.08em;
}
.ind-card h4 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.ind-card .meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
}
@media (max-width: 880px) {
  .ind-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── Logo bar / marquee ──────────────────────────── */
.logo-bar {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 24px 0;
}
.logo-chip {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.025em;
  color: var(--muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  font-style: italic;
  font-weight: 300;
}
.logo-chip::before {
  content: "";
  width: 18px; height: 18px;
  border: 1px solid currentColor;
  border-radius: 4px;
  display: inline-block;
}

.logo-chip.alt::before { border-radius: 50%; }
.logo-chip.alt2::before { transform: rotate(45deg); border-radius: 0; }

/* ─── Proof points ──────────────────────────── */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.proof-cell {
  padding: 40px 32px;
  border-right: 1px solid var(--rule);
}
.proof-cell:last-child { border-right: 0; }
.proof-cell .num {
  font-family: var(--font-display);
  font-size: 80px;
  letter-spacing: -0.04em;
  line-height: 0.9;
  font-weight: 400;
}
.proof-cell .num em { font-style: italic; font-weight: 300; color: var(--fg-muted); }
.proof-cell .name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 16px;
}
.proof-cell .desc { font-size: 14px; line-height: 1.5; color: var(--fg-muted); margin-top: 8px; }
@media (max-width: 880px) {
  .proof-grid { grid-template-columns: 1fr; }
  .proof-cell { border-right: 0; border-bottom: 1px solid var(--rule); }
  .proof-cell:last-child { border-bottom: 0; }
}

/* ─── Compare table ──────────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table th, .compare-table td {
  padding: 16px 14px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
}
.compare-table th {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.compare-table th.us, .compare-table td.us {
  background: var(--bg-elev);
  border-left: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}
.compare-table th.us { color: var(--fg); font-weight: 600; }
.compare-table td.us { font-weight: 500; }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table th:not(:first-child) { text-align: center; }
.compare-table tbody tr:hover td:first-child { color: var(--accent); }

/* ─── Story / testimonial ──────────────────────────── */
.story {
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}
.story-photo {
  aspect-ratio: 1;
  border-radius: 12px;
  background:
    linear-gradient(135deg, var(--accent-soft), transparent),
    repeating-linear-gradient(45deg, var(--bone-2), var(--bone-2) 8px, var(--bone-3) 8px, var(--bone-3) 16px);
  position: relative;
}
[data-theme="dark"] .story-photo {
  background: linear-gradient(135deg, var(--accent-soft), transparent),
    repeating-linear-gradient(45deg, var(--bone-2), var(--bone-2) 8px, var(--bone-3) 8px, var(--bone-3) 16px);
}
.story-photo > image-slot { position: absolute; inset: 0; }
.story-body { display: flex; flex-direction: column; gap: 24px; justify-content: space-between; }
.story-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.story-meta {
  display: flex; justify-content: space-between; align-items: end;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.story-name { font-weight: 500; }
.story-name .role { display: block; font-weight: 400; color: var(--fg-muted); font-size: 13px; }
.story-metric { text-align: right; }
.story-metric .val { font-family: var(--font-display); font-size: 48px; letter-spacing: -0.03em; line-height: 1; }
.story-metric .lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

@media (max-width: 880px) {
  .story { grid-template-columns: 1fr; padding: 24px; gap: 24px; }
}

/* ─── Dev section (code preview) ──────────────────────────── */
.dev {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 880px) { .dev { grid-template-columns: 1fr; } }
.code {
  background: var(--ink);
  color: var(--bone);
  border-radius: 14px;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  overflow: hidden;
  border: 1px solid var(--ink-2);
}
[data-theme="dark"] .code { background: #06070A; border-color: var(--hairline); }
.code-head {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid color-mix(in srgb, var(--bone) 12%, transparent);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: color-mix(in srgb, var(--bone) 60%, transparent);
}
.code-head .dots { display: flex; gap: 6px; }
.code-head .dots span { width: 8px; height: 8px; border-radius: 50%; background: color-mix(in srgb, var(--bone) 20%, transparent); }
.code pre { margin: 0; padding: 20px; overflow-x: auto; }
.code .kw { color: oklch(0.78 0.16 30); }
.code .str { color: oklch(0.78 0.14 130); }
.code .fn { color: oklch(0.78 0.14 265); }
.code .com { color: color-mix(in srgb, var(--bone) 45%, transparent); font-style: italic; }
.code .ln { display: inline-block; width: 28px; color: color-mix(in srgb, var(--bone) 30%, transparent); user-select: none; }

/* ─── Pricing teaser ──────────────────────────── */
.price-teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.price-card {
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 32px;
  background: var(--bg-elev);
}
.price-card.featured { border-color: var(--ink); position: relative; }
.price-card.featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--fg);
}
.price-tier { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.price-num {
  font-family: var(--font-display);
  font-size: 56px;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 12px;
}
.price-num .unit { font-size: 16px; font-family: var(--font-mono); color: var(--muted); margin-left: 6px; }
.price-feats { list-style: none; padding: 24px 0 0; margin: 24px 0 0; border-top: 1px solid var(--rule); display: grid; gap: 10px; font-size: 13px; }
.price-feats li { padding-left: 18px; position: relative; }
.price-feats li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 8px; height: 1px;
  background: var(--fg);
}
@media (max-width: 880px) { .price-teaser { grid-template-columns: 1fr; } }

/* ─── FAQ ──────────────────────────── */
.faq-list {
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  gap: 24px;
}
.faq-q .plus {
  width: 20px; height: 20px;
  position: relative;
  flex-shrink: 0;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: currentColor;
}
.faq-q .plus::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-0.5px); }
.faq-q .plus::after { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-0.5px); transition: transform 0.2s; }
.faq-item.open .faq-q .plus::after { transform: translateX(-0.5px) scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-muted);
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 24px; }

/* ─── Final CTA ──────────────────────────── */
.cta-final {
  background: var(--ink);
  color: var(--bone);
  border-radius: 0;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
[data-theme="dark"] .cta-final { background: var(--bone); color: var(--ink); }
.cta-final .glow {
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 60%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  opacity: 0.18;
}
.cta-final-inner { text-align: center; position: relative; z-index: 2; }
.cta-final h2 {
  color: var(--bone);
  font-size: clamp(48px, 7vw, 88px);
  letter-spacing: -0.035em;
  max-width: 900px;
  margin: 0 auto;
}
[data-theme="dark"] .cta-final h2 { color: var(--ink); }
.cta-final h2 em { font-style: italic; font-weight: 300; }
.cta-final .ctas { display: inline-flex; gap: 12px; margin-top: 40px; }
.cta-final .btn-primary { background: var(--bone); color: var(--ink); border-color: var(--bone); }
[data-theme="dark"] .cta-final .btn-primary { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.cta-final .btn-ghost { border-color: color-mix(in srgb, var(--bone) 40%, transparent); color: var(--bone); }
[data-theme="dark"] .cta-final .btn-ghost { border-color: color-mix(in srgb, var(--ink) 40%, transparent); color: var(--ink); }
.cta-final .btn-ghost:hover { background: color-mix(in srgb, var(--bone) 10%, transparent); }

/* ─── Live widgets carousel ──────────────────────────── */
.widget-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 980px) {
  .widget-showcase { grid-template-columns: 1fr; }
}
.show-card {
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-elev);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.show-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(14,17,22,0.2);
}
.show-card .show-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: color-mix(in srgb, var(--bg) 30%, var(--bg-elev));
}
.show-card .show-head .live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--success);
  font-weight: 500;
}
.show-card .show-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.show-card .show-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border-top: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.show-card .show-foot .accent-text { color: var(--accent); }

/* SMS preview animation */
.sms-bubble {
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.45;
  max-width: 88%;
  position: relative;
  animation: fadeUp 0.5s var(--ease) both;
}
.sms-bubble.incoming {
  background: var(--bg);
  border: 1px solid var(--hairline);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.sms-bubble.outgoing {
  background: var(--ink);
  color: var(--bone);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.sms-bubble .meta-time {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
}
.sms-bubble.outgoing .meta-time { color: color-mix(in srgb, var(--bone) 50%, transparent); }
.sms-typing {
  background: var(--bg);
  border: 1px solid var(--hairline);
  padding: 14px 16px;
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  display: inline-flex;
  gap: 4px;
}
.sms-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: blink 1.4s ease-in-out infinite;
}
.sms-typing span:nth-child(2) { animation-delay: 0.2s; }
.sms-typing span:nth-child(3) { animation-delay: 0.4s; }

/* Notification stack */
.notif-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.notif-item {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  background: var(--bg);
  animation: fadeUp 0.5s var(--ease) both;
}
.notif-item:nth-child(2) { animation-delay: 0.1s; }
.notif-item:nth-child(3) { animation-delay: 0.2s; }
.notif-item:nth-child(4) { animation-delay: 0.3s; }

.notif-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--bone);
}
.notif-icon.email { background: var(--accent); }
.notif-icon.sms { background: var(--accent-3); }
.notif-icon.wa { background: var(--accent-2); }
.notif-icon.voice { background: var(--accent-6); }
.notif-item .label { font-size: 12px; }
.notif-item .label b { font-weight: 500; font-size: 13px; display: block; }
.notif-item .label .sub { color: var(--fg-muted); font-size: 11px; margin-top: 2px; font-family: var(--font-mono); letter-spacing: 0.04em; }
.notif-item .status {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--success);
  text-transform: uppercase;
}

/* Live booking counter */
.live-counter {
  text-align: center;
  padding: 12px 0;
}
.live-counter .big-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 76px);
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 300;
}
.live-counter .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 6px;
}
.live-counter .delta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--success);
  margin-top: 4px;
}

.live-bars { display: flex; align-items: end; gap: 4px; height: 80px; padding: 8px 0; }
.live-bars .bar {
  flex: 1;
  background: linear-gradient(to top, var(--accent), var(--accent-2));
  border-radius: 3px 3px 0 0;
  min-height: 4px;
  opacity: 0.4;
  transition: opacity 0.3s var(--ease), height 0.6s var(--ease);
}
.live-bars .bar.active { opacity: 1; }

/* Reminder template card */
.rem-template {
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 14px;
  background: var(--bg);
}
.rem-template .channel-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.rem-template .channel-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  color: var(--bone);
}
.rem-template .channel-tag.email { background: var(--accent); }
.rem-template .channel-tag.sms { background: var(--accent-3); }
.rem-template .channel-tag.wa { background: var(--accent-2); }
.rem-template .preview {
  font-size: 12px;
  line-height: 1.5;
  color: var(--fg);
  font-family: var(--font-display);
  font-style: italic;
}

/* ─── Color injection: accent variants on problem cells ──────────────────────────── */
.problem-cell:nth-child(1) .num { color: var(--accent); }
.problem-cell:nth-child(2) .num { color: var(--accent-2); }
.problem-cell:nth-child(3) .num { color: var(--accent-4); }
.problem-cell:nth-child(4) .num { color: var(--accent-6); }

.solution-cell:nth-child(1) .icon { color: var(--accent); border-color: var(--accent); background: var(--accent-soft); }
.solution-cell:nth-child(2) .icon { color: var(--accent-2); border-color: var(--accent-2); background: var(--accent-2-soft); }
.solution-cell:nth-child(3) .icon { color: var(--accent-3); border-color: var(--accent-3); background: var(--accent-3-soft); }
.solution-cell:nth-child(4) .icon { color: var(--accent-4); border-color: var(--accent-4); background: var(--accent-4-soft); }
.solution-cell:nth-child(5) .icon { color: var(--accent-5); border-color: var(--accent-5); background: var(--accent-5-soft); }
.solution-cell:nth-child(6) .icon { color: var(--accent-6); border-color: var(--accent-6); background: var(--accent-6-soft); }

.ind-card:nth-child(8n+1) { border-color: var(--accent); }
.ind-card:nth-child(8n+1) .num { color: var(--accent); }
.ind-card:nth-child(8n+2) { border-color: var(--accent-2); }
.ind-card:nth-child(8n+2) .num { color: var(--accent-2); }
.ind-card:nth-child(8n+3) { border-color: var(--accent-3); }
.ind-card:nth-child(8n+3) .num { color: var(--accent-3); }
.ind-card:nth-child(8n+4) { border-color: var(--accent-4); }
.ind-card:nth-child(8n+4) .num { color: var(--accent-4); }
.ind-card:nth-child(8n+5) { border-color: var(--accent-5); }
.ind-card:nth-child(8n+5) .num { color: var(--accent-5); }
.ind-card:nth-child(8n+6) { border-color: var(--accent-6); }
.ind-card:nth-child(8n+6) .num { color: var(--accent-6); }
.ind-card:nth-child(8n+7) { border-color: var(--accent); }
.ind-card:nth-child(8n+7) .num { color: var(--accent); }
.ind-card:nth-child(8n) { border-color: var(--accent-3); }
.ind-card:nth-child(8n) .num { color: var(--accent-3); }
.ind-card:hover { background: var(--bg-elev); }

/* Proof point colors */
.proof-cell:nth-child(1) .num em { color: var(--accent); }
.proof-cell:nth-child(2) .num em { color: var(--accent-2); }
.proof-cell:nth-child(3) .num em { color: var(--accent-6); }

/* Section header gradient overlay (subtle) */
.section-head h2 {
  position: relative;
}
.section-head h2 em {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
