/* Sited: site stylesheet.
   Hand-written, no framework. Ratios and discipline lifted from the Intercom
   DESIGN.md in Skills\Awesome DESIGN.md (type scale, hairlines, 96px sections,
   one accent reserved for the CTA). Palette is Sited's own: white ground,
   navy ink, one electric blue. */

/* ------------------------------------------------------------------ */
/* Tokens */

:root {
  --ink: #0b1b33;
  --ink-2: #3f4d66;
  --ink-3: #5f6d86;
  --paper: #ffffff;
  --paper-2: #f3f6fc;
  --paper-3: #e9eff9;
  --line: #d9e1ef;
  --line-strong: #b9c6de;

  --blue: #0a5bff;        /* the one accent: CTAs, links, live state */
  --blue-hover: #0047d6;
  --blue-soft: #e6eeff;
  --blue-deep: #0b2a6f;   /* the committed band */
  --blue-night: #071c4a;
  --on-blue: #ffffff;
  --on-blue-muted: #b9cdfb;

  --danger: #d6284a;
  --ok: #0d9f6e;

  --font-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --font-body: "Schibsted Grotesk", "Segoe UI", system-ui, sans-serif;

  --r-btn: 10px;
  --r-card: 16px;
  --r-input: 10px;
  --r-pill: 999px;

  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --section: 96px;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --shadow-card: 0 18px 40px -24px rgba(11, 27, 51, 0.28);
  --shadow-float: 0 30px 60px -30px rgba(10, 91, 255, 0.35);

  --nav-h: 68px;
  --wrap: 1200px;
}

/* ------------------------------------------------------------------ */
/* Base */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
main, .footer { overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.is-locked { overflow: hidden; }

::selection { background: var(--blue); color: var(--on-blue); }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }
a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 3px; }
img, svg { max-width: 100%; display: block; }
button { font: inherit; color: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

html { scrollbar-color: var(--line-strong) var(--paper-2); }
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 8px; border: 3px solid var(--paper-2); }

.wrap { width: min(var(--wrap), 100% - 2 * var(--s-5)); margin-inline: auto; }
.section { padding-block: var(--section); }
.section--tight { padding-block: var(--s-8); }
.section--tint { background: var(--paper-2); }
.section--deep { background: var(--blue-deep); color: var(--on-blue); }
.section--deep ::selection { background: var(--paper); color: var(--blue-deep); }

.ic { width: 1.25em; height: 1.25em; flex: none; }

/* ------------------------------------------------------------------ */
/* Type */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  text-wrap: balance;
  color: inherit;
}
.display-xl { font-size: clamp(40px, 6.2vw, 72px); line-height: 1.02; letter-spacing: -0.03em; }
.display-lg { font-size: clamp(34px, 4.6vw, 56px); line-height: 1.06; letter-spacing: -0.028em; }
.display-md { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.12; letter-spacing: -0.02em; }
.headline   { font-size: clamp(22px, 2.4vw, 28px); line-height: 1.2; letter-spacing: -0.015em; }
.card-title { font-size: 22px; line-height: 1.25; letter-spacing: -0.01em; }
.subhead { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.45; color: var(--ink-2); max-width: 60ch; }
.body-lg { font-size: 18px; line-height: 1.5; }
.body-sm { font-size: 14px; }
.muted { color: var(--ink-2); }
.faint { color: var(--ink-3); }
p { margin: 0; max-width: 68ch; }
p + p { margin-top: var(--s-4); }
.section-head { max-width: 760px; margin-bottom: var(--s-7); }
.section-head .subhead { margin-top: var(--s-4); }
.section--deep .subhead { color: var(--on-blue-muted); }
.section--deep .muted { color: var(--on-blue-muted); }

/* ------------------------------------------------------------------ */
/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: var(--r-btn);
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color 150ms var(--ease-out), border-color 150ms var(--ease-out),
              color 150ms var(--ease-out), box-shadow 150ms var(--ease-out), transform 120ms var(--ease-out);
}
.btn .ic { width: 1.1em; height: 1.1em; transition: transform 200ms var(--ease-out); }
.btn:hover .ic { transform: translateX(3px); }
.btn--primary { background: var(--blue); color: var(--on-blue); box-shadow: 0 10px 24px -14px rgba(10, 91, 255, 0.7); }
.btn--primary:hover { background: var(--blue-hover); box-shadow: 0 14px 28px -12px rgba(10, 91, 255, 0.6); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); }
.section--deep .btn--ghost { color: var(--on-blue); border-color: rgba(255, 255, 255, 0.35); }
.section--deep .btn--ghost:hover { border-color: var(--on-blue); }
.btn--lg { padding: 16px 26px; font-size: 18px; }
.btn--sm { padding: 10px 16px; font-size: 15px; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; }

/* Magnet: the primary CTA leans toward the cursor. Ported from React Bits
   "Magnet". JS sets --mx/--my; only transform moves. */
.magnet { transition: transform 260ms var(--ease-out); will-change: transform; }
.magnet.is-near { transition: transform 120ms var(--ease-out); }

/* ------------------------------------------------------------------ */
/* Header: a floating glass pill. Links sit in the middle with a highlight
   that slides to the hovered link and rests on the current page. The pill
   tightens once the page scrolls. */

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 14px 0 0;
  pointer-events: none;
}
.header__in {
  pointer-events: auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: 0 10px 0 16px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  border: 1px solid rgba(217, 225, 239, 0.9);
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 12px 40px -24px rgba(11, 27, 51, 0.25);
  transition: box-shadow 300ms var(--ease-out), background-color 300ms var(--ease-out), transform 300ms var(--ease-out);
}
.header.is-scrolled .header__in {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 18px 50px -24px rgba(11, 27, 51, 0.35);
}
.logo {
  min-height: 44px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.logo__mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--blue);
  position: relative; flex: none;
  transition: transform 300ms var(--ease-out);
}
.logo:hover .logo__mark { transform: rotate(-8deg); }
.logo__mark::after {
  content: ""; position: absolute; inset: 8px 7px 8px 7px;
  border: 2.5px solid #fff; border-right: 0; border-radius: 5px 0 0 5px;
}

.nav { display: none; position: relative; margin: 0 auto; align-items: center; gap: 2px; padding: 4px; border-radius: var(--r-pill); }
.nav a {
  position: relative; z-index: 1;
  color: var(--ink-2); font-weight: 500; font-size: 15px; text-decoration: none;
  padding: 9px 16px; border-radius: var(--r-pill);
  transition: color 180ms var(--ease-out);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav a[aria-current="page"] { font-weight: 600; }
.nav__glow {
  position: absolute; top: 4px; bottom: 4px; left: 0; width: 0;
  border-radius: var(--r-pill);
  background: var(--paper-3);
  opacity: 0;
  transition: transform 320ms var(--ease-in-out), opacity 200ms var(--ease-out), background-color 200ms var(--ease-out);
}
.nav__glow.is-on { opacity: 1; }
.nav__glow.is-current { background: var(--blue-soft); }

.header__cta { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.header__cta .btn--primary { display: inline-flex; }
.header__in .btn--sm { padding: 11px 18px; border-radius: var(--r-pill); }

.menu-btn {
  width: 44px; height: 44px; border-radius: var(--r-pill);
  border: 1px solid var(--line); background: var(--paper);
  display: grid; place-items: center; position: relative;
  transition: border-color 150ms var(--ease-out), background-color 150ms var(--ease-out), transform 120ms var(--ease-out);
}
.menu-btn:hover { border-color: var(--ink); }
.menu-btn__lines { width: 18px; height: 12px; position: relative; }
.menu-btn__lines span {
  position: absolute; left: 0; right: 0; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform 300ms var(--ease-in-out), opacity 200ms var(--ease-out), top 300ms var(--ease-in-out);
}
.menu-btn__lines span:nth-child(1) { top: 0; }
.menu-btn__lines span:nth-child(2) { top: 5px; }
.menu-btn__lines span:nth-child(3) { top: 10px; transform: scaleX(0.6); transform-origin: left; }
.menu-btn:hover .menu-btn__lines span:nth-child(3) { transform: scaleX(1); }
.menu-btn[aria-expanded="true"] .menu-btn__lines span:nth-child(1) { top: 5px; transform: rotate(45deg); }
.menu-btn[aria-expanded="true"] .menu-btn__lines span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-btn[aria-expanded="true"] .menu-btn__lines span:nth-child(3) { top: 5px; transform-origin: center; transform: rotate(-45deg); }

@media (min-width: 900px) {
  .nav { display: flex; }
}
@media (max-width: 899px) {
  .header { padding-top: 10px; }
  .header__in { height: 60px; padding-left: 14px; }
  .logo { font-size: 22px; }
}

/* ------------------------------------------------------------------ */
/* Side drawer: hidden until the menu button, slides in from the right,
   links stagger in behind it. */

.drawer {
  position: fixed; inset: 0; z-index: 60;
  visibility: hidden;
  pointer-events: none;
}
.drawer.is-open { visibility: visible; pointer-events: auto; }
.drawer__scrim {
  position: absolute; inset: 0;
  background: rgba(7, 28, 74, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 320ms var(--ease-out);
}
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(440px, 92vw);
  background: var(--paper);
  color: var(--ink);
  box-shadow: -30px 0 80px -40px rgba(11, 27, 51, 0.5);
  transform: translateX(104%);
  transition: transform 460ms var(--ease-in-out);
  display: flex; flex-direction: column;
  padding: 22px 28px 28px;
  overflow-y: auto;
}
.drawer.is-open .drawer__panel { transform: none; }
.drawer.is-closing .drawer__panel { transition-duration: 320ms; }
.drawer__top { display: flex; align-items: center; justify-content: space-between; height: 46px; }
.drawer__close {
  width: 46px; height: 46px; border-radius: var(--r-pill); border: 1px solid var(--line-strong); background: var(--paper);
  display: grid; place-items: center; transition: border-color 150ms var(--ease-out), transform 120ms var(--ease-out);
}
.drawer__close:hover { border-color: var(--ink); }
.drawer__links { list-style: none; margin: var(--s-7) 0 0; padding: 0; display: grid; gap: 6px; }
.drawer__links a {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-display); font-weight: 600; font-size: 34px; letter-spacing: -0.025em;
  color: var(--ink); text-decoration: none; padding: 8px 0;
  border-bottom: 1px solid var(--line);
  transition: color 150ms var(--ease-out), transform 220ms var(--ease-out);
}
.drawer__links a .ic { width: 22px; height: 22px; color: var(--ink-3); transition: transform 220ms var(--ease-out), color 150ms var(--ease-out); }
.drawer__links a:hover, .drawer__links a[aria-current="page"] { color: var(--blue); transform: translateX(6px); }
.drawer__links a:hover .ic { transform: translate(3px, -3px); color: var(--blue); }
.drawer__links li {
  opacity: 0; transform: translateX(40px);
  transition: opacity 380ms var(--ease-out), transform 480ms var(--ease-out);
  transition-delay: 0ms;
}
.drawer.is-open .drawer__links li { opacity: 1; transform: none; }
.drawer.is-open .drawer__links li:nth-child(1) { transition-delay: 120ms; }
.drawer.is-open .drawer__links li:nth-child(2) { transition-delay: 170ms; }
.drawer.is-open .drawer__links li:nth-child(3) { transition-delay: 220ms; }
.drawer.is-open .drawer__links li:nth-child(4) { transition-delay: 270ms; }
.drawer.is-open .drawer__links li:nth-child(5) { transition-delay: 320ms; }
.drawer__systems { margin-top: var(--s-6); opacity: 0; transform: translateX(30px); transition: opacity 400ms var(--ease-out) 360ms, transform 500ms var(--ease-out) 360ms; }
.drawer.is-open .drawer__systems { opacity: 1; transform: none; }
.drawer__systems .label { font-size: 13px; font-weight: 600; color: var(--ink-3); text-transform: none; margin-bottom: var(--s-3); }
.drawer__systems ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.drawer__systems a {
  display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; text-decoration: none; color: var(--ink-2);
  padding: 7px 12px; border-radius: var(--r-pill); border: 1px solid var(--line); background: var(--paper-2);
  transition: border-color 150ms var(--ease-out), color 150ms var(--ease-out), background-color 150ms var(--ease-out);
}
.drawer__systems a:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-soft); }
.drawer__foot { margin-top: auto; padding-top: var(--s-6); opacity: 0; transform: translateY(14px); transition: opacity 400ms var(--ease-out) 440ms, transform 500ms var(--ease-out) 440ms; }
.drawer.is-open .drawer__foot { opacity: 1; transform: none; }
.drawer__foot .btn { width: 100%; justify-content: center; }
.drawer__foot p { margin-top: var(--s-3); font-size: 14px; color: var(--ink-3); }

/* ------------------------------------------------------------------ */
/* Hero */

.hero { position: relative; overflow: hidden; padding: 48px 0 72px; min-height: calc(100svh - var(--nav-h)); display: flex; align-items: center; }
.hero__dots { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__dots canvas { display: block; width: 100%; height: 100%; }
.hero__fade { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(70% 60% at 30% 40%, rgba(255,255,255,0.92), rgba(255,255,255,0.35) 60%, rgba(255,255,255,0) 100%),
              linear-gradient(to bottom, rgba(255,255,255,0) 70%, #fff 100%); }
.hero__in { position: relative; z-index: 2; display: grid; gap: var(--s-7); align-items: center; }
.hero__copy .subhead { margin-top: var(--s-5); }
.hero__copy .btn-row { margin-top: var(--s-6); }
.hero h1 em { font-style: normal; color: var(--blue); }

/* SplitText port (React Bits "SplitText"): each word is wrapped by JS and
   rises in with a stagger. Whole line stays readable if JS never runs. */
.split .w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.split .w > span { display: inline-block; transform: translateY(110%); opacity: 0; transition: transform 700ms var(--ease-out), opacity 500ms var(--ease-out); }
.split.is-in .w > span { transform: none; opacity: 1; }
.hero-sub, .hero-cta { opacity: 0; transform: translateY(14px); transition: opacity 600ms var(--ease-out), transform 700ms var(--ease-out); }
.split.is-in ~ .hero-sub { opacity: 1; transform: none; transition-delay: 520ms; }
.split.is-in ~ .hero-cta { opacity: 1; transform: none; transition-delay: 640ms; }

@media (min-width: 960px) {
  .hero { padding: 40px 0 80px; }
  .hero__in { grid-template-columns: 1.05fr 0.95fr; gap: var(--s-8); }
}

/* Receptionist demo: the mechanism on screen. A synthetic conversation,
   labelled as a demo, that types itself and ends in a booking. */
.demo {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-float);
  padding: 20px 20px 18px;
  max-width: 480px;
  margin-inline: auto;
  opacity: 0; transform: translateX(40px);
  transition: opacity 700ms var(--ease-out) 300ms, transform 900ms var(--ease-out) 300ms;
}
.demo.is-in { opacity: 1; transform: none; }
.demo__bar { display: flex; align-items: center; gap: 10px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.demo__avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; }
.demo__who { font-weight: 600; font-size: 15px; line-height: 1.2; }
.demo__who small { display: block; font-weight: 400; color: var(--ink-3); font-size: 12.5px; margin-top: 2px; }
.demo__live { margin-left: auto; font-size: 12px; font-weight: 600; color: var(--ok); display: inline-flex; align-items: center; gap: 6px; }
.demo__live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 rgba(13,159,110,0.5); animation: live 1.8s var(--ease-out) infinite; }
@keyframes live { 0% { box-shadow: 0 0 0 0 rgba(13,159,110,0.45); } 100% { box-shadow: 0 0 0 9px rgba(13,159,110,0); } }
.demo__log { list-style: none; margin: 0; padding: 16px 0 0; display: grid; gap: 10px; min-height: 236px; }
.demo__log li {
  max-width: 86%; padding: 10px 14px; border-radius: 14px; font-size: 14.5px; line-height: 1.45;
  opacity: 0; transform: translateY(8px) scale(0.98);
  transition: opacity 300ms var(--ease-out), transform 360ms var(--ease-out);
}
.demo__log li.is-in { opacity: 1; transform: none; }
.demo__log .from-caller { background: var(--paper-2); border-bottom-left-radius: 4px; justify-self: start; }
.demo__log .from-sited { background: var(--blue); color: var(--on-blue); border-bottom-right-radius: 4px; justify-self: end; }
.demo__log .typing { display: inline-flex; gap: 4px; align-items: center; height: 1em; }
.demo__log .typing i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: 0.5; animation: dot 1s infinite var(--ease-in-out); }
.demo__log .typing i:nth-child(2) { animation-delay: 150ms; }
.demo__log .typing i:nth-child(3) { animation-delay: 300ms; }
@keyframes dot { 0%, 100% { transform: translateY(0); opacity: 0.45; } 50% { transform: translateY(-3px); opacity: 1; } }
.demo__booked {
  margin-top: 14px; display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  border-radius: 12px; background: #eaf8f2; color: #0a6d4c; font-weight: 600; font-size: 14px;
  opacity: 0; transform: translateY(6px); transition: opacity 300ms var(--ease-out), transform 360ms var(--ease-out);
}
.demo__booked.is-in { opacity: 1; transform: none; }
.demo__booked .ic { color: var(--ok); }
.demo__label { position: absolute; top: -12px; left: 16px; font-size: 11.5px; font-weight: 600; color: var(--ink-3); background: var(--paper); padding: 2px 8px; border: 1px solid var(--line); border-radius: var(--r-pill); }

/* ------------------------------------------------------------------ */
/* Ticker: the seven systems, one marquee on the page. */

.ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); overflow: hidden; padding: 14px 0; }
.ticker__track { display: flex; width: max-content; gap: 0; animation: ticker 38s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item { display: inline-flex; align-items: center; gap: 12px; padding: 0 28px; font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--ink-2); white-space: nowrap; }
.ticker__item .ic { color: var(--blue); }
.ticker__item::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--line-strong); margin-left: 28px; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------------ */
/* Bento: the seven systems. 4 columns, cells sized to their weight. */

.bento { display: grid; gap: var(--s-4); grid-template-columns: 1fr; }
.cell {
  position: relative; display: flex; flex-direction: column; gap: 14px;
  padding: 26px; border-radius: var(--r-card); border: 1px solid var(--line); background: var(--paper);
  color: inherit; text-decoration: none; overflow: hidden; isolation: isolate;
  min-height: 220px;
  --mx: 50%; --my: 50%;
}
.cell::before {
  /* Spotlight, ported from React Bits "SpotlightCard": follows the cursor. */
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(240px circle at var(--mx) var(--my), rgba(10, 91, 255, 0.10), transparent 70%);
  opacity: 0; transition: opacity 400ms var(--ease-out);
}
.cell:hover::before { opacity: 1; }
.cell__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; }
.cell__icon .ic { width: 22px; height: 22px; }
.cell h3 { font-size: 21px; }
.cell p { font-size: 15px; color: var(--ink-2); }
.cell__go { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 14px; color: var(--blue); }
.cell__go .ic { width: 16px; height: 16px; transition: transform 200ms var(--ease-out); }
.cell:hover .cell__go .ic { transform: translate(2px, -2px); }

.cell--deep { background: var(--blue-deep); border-color: var(--blue-deep); color: var(--on-blue); }
.cell--deep::before { background: radial-gradient(300px circle at var(--mx) var(--my), rgba(255,255,255,0.14), transparent 70%); }
.cell--deep .cell__icon { background: rgba(255,255,255,0.12); color: #fff; }
.cell--deep p { color: var(--on-blue-muted); }
.cell--deep .cell__go { color: #fff; }
.cell--deep h3 { font-size: 26px; }
.cell--soft { background: var(--blue-soft); border-color: #d6e3ff; }
.cell--tint { background: var(--paper-2); }

/* Answer visual inside the GEO cell: a stylised AI answer that cites the client. */
.answer { margin-top: 4px; border-radius: 12px; background: var(--paper); border: 1px solid #d6e3ff; padding: 12px 14px; font-size: 13.5px; line-height: 1.45; color: var(--ink-2); }
.answer b { color: var(--ink); }
.answer mark { background: #fff2b3; color: var(--ink); padding: 0 3px; border-radius: 3px; }
.answer__q { font-size: 12.5px; color: var(--ink-3); margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }

/* Coverage strip inside the receptionist cell: 24 cells, one per hour,
   each lights up in turn. Coverage, not data. */
.clock { margin-top: auto; display: grid; grid-template-columns: repeat(24, 1fr); gap: 4px; height: 18px; }
.clock i { background: rgba(255,255,255,0.16); border-radius: 3px; transform: scaleY(0.35); transform-origin: bottom; transition: transform 500ms var(--ease-out), background-color 500ms var(--ease-out); }
.is-in .clock i { transform: none; background: #fff; }
.is-in .clock i:nth-child(n) { transition-delay: calc(var(--i, 0) * 35ms); }
.clock__cap { display: flex; justify-content: space-between; font-size: 12px; color: var(--on-blue-muted); margin-top: 6px; }

@media (min-width: 720px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .cell--w2 { grid-column: span 2; }
}
@media (min-width: 1024px) {
  .bento { grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(230px, auto); }
  .cell--w2 { grid-column: span 2; }
  .cell--h2 { grid-row: span 2; }
}

/* ------------------------------------------------------------------ */
/* Steps: the committed blue band. A line draws itself between the steps. */

.steps { position: relative; display: grid; gap: var(--s-6); margin-top: var(--s-7); }
.step { position: relative; padding-top: 22px; }
.step__n {
  font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0;
  color: var(--blue-deep); background: #fff; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; position: absolute; top: -2px; left: 0;
}
.step h3 { font-size: 26px; margin-top: 26px; }
.step p { margin-top: var(--s-3); color: var(--on-blue-muted); font-size: 16px; }
.steps__line { display: none; }
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: var(--s-7); }
  .steps__line { display: block; position: absolute; left: 17px; right: 17px; top: 15px; height: 2px; pointer-events: none; }
  .steps__line path { stroke: rgba(255,255,255,0.35); stroke-width: 2; fill: none; stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 1600ms var(--ease-in-out) 200ms; }
  .steps.is-in .steps__line path { stroke-dashoffset: 0; }
}

/* ------------------------------------------------------------------ */
/* Audience tabs: Small business / Agencies. */

.tabs { display: inline-flex; padding: 4px; border-radius: var(--r-pill); background: var(--paper-3); position: relative; }
.tabs button {
  position: relative; z-index: 1; border: 0; background: transparent; padding: 10px 18px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 15px; color: var(--ink-2); transition: color 200ms var(--ease-out);
}
.tabs button[aria-selected="true"] { color: var(--ink); }
.tabs__pill { position: absolute; top: 4px; bottom: 4px; left: 4px; width: 0; border-radius: var(--r-pill); background: var(--paper); box-shadow: 0 6px 14px -8px rgba(11,27,51,0.35); transition: transform 320ms var(--ease-in-out); }
.tab-panel { display: none; }
.tab-panel.is-on { display: block; animation: panel 380ms var(--ease-out); }
@keyframes panel { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.who { display: grid; gap: var(--s-7); margin-top: var(--s-6); }
.who__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.who__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 17px; }
.who__list .ic { color: var(--blue); margin-top: 3px; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
.stat { padding: 22px 0 0; border-top: 2px solid var(--ink); }
.stat b { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(40px, 5vw, 56px); letter-spacing: -0.03em; line-height: 1; }
.stat span { display: block; margin-top: 8px; color: var(--ink-2); font-size: 15px; }
@media (min-width: 900px) { .who { grid-template-columns: 1.1fr 0.9fr; align-items: start; } }

/* ------------------------------------------------------------------ */
/* Reserved slots: honest proof. */

.slots { display: grid; gap: var(--s-4); margin-top: var(--s-6); }
.slot {
  border: 1.5px dashed var(--line-strong); border-radius: var(--r-card); padding: 24px; min-height: 170px;
  display: flex; flex-direction: column; justify-content: space-between; background: var(--paper);
  transition: border-color 200ms var(--ease-out), background-color 200ms var(--ease-out);
}
.slot:hover { border-color: var(--blue); background: var(--blue-soft); }
.slot h3 { font-size: 20px; }
.slot p { font-size: 14.5px; color: var(--ink-2); margin-top: 10px; }
@media (min-width: 720px) { .slots { grid-template-columns: repeat(3, 1fr); } }

/* ------------------------------------------------------------------ */
/* FAQ accordion (grid-rows trick, animate/RECIPES). */

.faq { border-top: 1px solid var(--line); margin-top: var(--s-6); max-width: 820px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  padding: 20px 0; font-family: var(--font-display); font-weight: 600; font-size: 19px; letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ic { color: var(--ink-3); transition: transform 300ms var(--ease-in-out), color 150ms var(--ease-out); }
.faq details[open] summary .ic { transform: rotate(180deg); color: var(--blue); }
.faq__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 320ms var(--ease-out); }
.faq__body > div { overflow: hidden; min-height: 0; }
.faq__body p { padding-bottom: 22px; color: var(--ink-2); max-width: 64ch; }
.faq details[open] .faq__body { grid-template-rows: 1fr; }

/* ------------------------------------------------------------------ */
/* Closing CTA */

.close { text-align: left; }
.close__in { display: grid; gap: var(--s-6); align-items: end; }
.close .display-lg { max-width: 14ch; }
@media (min-width: 900px) { .close__in { grid-template-columns: 1fr auto; } }

/* Floating enquire pill: shows once the hero is gone, mobile mostly. */
.float-cta {
  position: fixed; right: 18px; bottom: 18px; z-index: 30;
  transform: translateY(120%); opacity: 0;
  transition: transform 400ms var(--ease-out), opacity 300ms var(--ease-out);
}
.float-cta.is-on { transform: none; opacity: 1; }
.float-cta .btn { border-radius: var(--r-pill); box-shadow: 0 16px 34px -14px rgba(10,91,255,0.7); }
@media (min-width: 900px) { .float-cta { display: none; } }

/* ------------------------------------------------------------------ */
/* Footer */

.footer { border-top: 1px solid var(--line); padding: var(--s-7) 0 var(--s-6); background: var(--paper); }
.footer__in { display: grid; gap: var(--s-6); }
.footer p { color: var(--ink-2); font-size: 15px; max-width: 34ch; margin-top: var(--s-3); }
.footer__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-6); }
.footer .label { font-size: 14px; font-weight: 600; color: var(--ink-3); margin-bottom: var(--s-3); }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.footer ul a { color: var(--ink); text-decoration: none; font-size: 15px; display: inline-block; padding: 8px 0; min-height: 44px; }
.footer ul a:hover { color: var(--blue); }
.footer__base { margin-top: var(--s-6); padding-top: var(--s-5); border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: var(--s-4); justify-content: space-between; font-size: 13.5px; color: var(--ink-3); }
@media (min-width: 900px) { .footer__in { grid-template-columns: 1.2fr 1fr; } .footer__cols { grid-template-columns: repeat(3, 1fr); } }

/* ------------------------------------------------------------------ */
/* Page hero (inner pages) */

.page-hero { padding: 64px 0 40px; }
.page-hero .subhead { margin-top: var(--s-4); }
.page-hero .tabs { margin-top: var(--s-6); }

/* ------------------------------------------------------------------ */
/* Services page: sticky list + service blocks */

.svc-layout { display: grid; gap: var(--s-7); align-items: start; }
.svc-nav { display: none; }
@media (min-width: 1000px) {
  .svc-layout { grid-template-columns: 280px 1fr; gap: var(--s-8); }
  .svc-nav { display: block; position: sticky; top: calc(var(--nav-h) + 40px); }
}
.svc-nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.svc-nav a {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; text-decoration: none;
  color: var(--ink-2); font-weight: 500; font-size: 15px; position: relative; isolation: isolate;
  transition: color 150ms var(--ease-out), background-color 150ms var(--ease-out);
}
.svc-nav a .ic { color: var(--ink-3); }
.svc-nav a:hover { color: var(--ink); background: var(--paper-2); }
.svc-nav a.is-active { color: var(--blue); background: var(--blue-soft); }
.svc-nav a.is-active .ic { color: var(--blue); }

.svc { padding: 40px 0; border-top: 1px solid var(--line); display: grid; gap: var(--s-5); scroll-margin-top: calc(var(--nav-h) + 30px); }
.svc:first-child { border-top: 0; padding-top: 0; }
.svc__head { display: flex; gap: 16px; align-items: flex-start; }
.svc__head .cell__icon { flex: none; }
.svc h2 { font-size: clamp(26px, 3vw, 34px); }
.svc__lede { color: var(--ink-2); font-size: 17px; margin-top: 8px; }
.svc__grid { display: grid; gap: var(--s-5); }
.svc__box { background: var(--paper-2); border-radius: var(--r-card); padding: 22px; }
.svc__box .label { font-size: 14px; color: var(--ink-3); margin-bottom: 12px; }
.svc__box ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.svc__box li { display: flex; gap: 10px; align-items: flex-start; font-size: 15.5px; }
.svc__box li .ic { color: var(--blue); margin-top: 3px; width: 18px; height: 18px; }
.svc__for { display: none; }
.svc__for.is-on { display: block; animation: panel 320ms var(--ease-out); }
.svc__for p { font-size: 15.5px; }
@media (min-width: 720px) { .svc__grid { grid-template-columns: 1.2fr 1fr; } }

/* ------------------------------------------------------------------ */
/* Pricing page */

.shapes { display: grid; gap: var(--s-4); margin-top: var(--s-6); }
.shape { border: 1px solid var(--line); border-radius: var(--r-card); padding: 28px; display: flex; flex-direction: column; gap: 16px; background: var(--paper); }
.shape--lead { background: var(--blue-deep); color: var(--on-blue); border-color: var(--blue-deep); }
.shape h2 { font-size: 26px; }
.shape p { font-size: 15.5px; color: var(--ink-2); }
.shape--lead p { color: var(--on-blue-muted); }
.shape ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.shape li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.shape li .ic { width: 18px; height: 18px; color: var(--blue); margin-top: 3px; }
.shape--lead li .ic { color: #fff; }
.shape .btn { margin-top: auto; justify-content: center; }
.shape--lead .btn--primary { background: #fff; color: var(--blue-deep); box-shadow: none; }
.shape--lead .btn--primary:hover { background: var(--blue-soft); }
@media (min-width: 900px) { .shapes { grid-template-columns: repeat(3, 1fr); } }

.quote-steps { counter-reset: q; display: grid; gap: var(--s-5); margin-top: var(--s-6); }
.qstep { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: start; padding: 22px 0; border-top: 1px solid var(--line); }
.qstep::before { counter-increment: q; content: counter(q); font-family: var(--font-display); font-weight: 700; font-size: 15px; width: 36px; height: 36px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; }
.qstep h3 { font-size: 21px; }
.qstep p { margin-top: 6px; color: var(--ink-2); font-size: 15.5px; }
@media (min-width: 900px) { .quote-steps { grid-template-columns: repeat(2, 1fr); column-gap: var(--s-8); } }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--s-5); list-style: none; padding: 0; }
.chips li { padding: 10px 16px; border-radius: var(--r-pill); border: 1px solid var(--line-strong); font-weight: 500; font-size: 15px; background: var(--paper); }

/* ------------------------------------------------------------------ */
/* About page */

.about-grid { display: grid; gap: var(--s-7); margin-top: var(--s-6); }
.principle { padding: 26px 0; border-top: 1px solid var(--line); display: grid; gap: 10px; }
.principle h3 { font-size: 24px; }
.principle p { color: var(--ink-2); }
.about-band { display: grid; gap: var(--s-6); align-items: center; }
.about-band .display-md { max-width: 16ch; }
.about-band ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.about-band li { display: flex; gap: 12px; align-items: flex-start; font-size: 17px; }
.about-band li .ic { color: #fff; margin-top: 3px; }
@media (min-width: 900px) { .about-band { grid-template-columns: 1fr 1fr; gap: var(--s-8); } }

/* ------------------------------------------------------------------ */
/* Enquire page: form */

.enq { display: grid; gap: var(--s-7); align-items: start; margin-top: var(--s-4); }
@media (min-width: 960px) { .enq { grid-template-columns: 1.1fr 0.9fr; gap: var(--s-8); } }
.form { display: grid; gap: 18px; }
.form__row { display: grid; gap: 18px; }
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 6px; }
.field label { font-weight: 600; font-size: 14.5px; }
.field .hint { font-size: 13px; color: var(--ink-3); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 14px; border-radius: var(--r-input); border: 1px solid var(--line-strong); background: var(--paper);
  color: var(--ink); caret-color: var(--blue);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #667389; }
.sig-field-msg > * { font-size: 13.5px; }
.picks { display: flex; flex-wrap: wrap; gap: 8px; }
.pick { position: relative; }
.pick input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.pick span {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: var(--r-pill); border: 1px solid var(--line-strong);
  font-size: 14.5px; font-weight: 500; background: var(--paper);
  transition: background-color 150ms var(--ease-out), border-color 150ms var(--ease-out), color 150ms var(--ease-out);
}
.pick span .ic { width: 14px; height: 14px; opacity: 0.35; transform: scale(0.7); transition: transform 200ms var(--ease-out), opacity 150ms var(--ease-out); }
.pick input:checked + span { background: var(--blue); border-color: var(--blue); color: #fff; }
.pick input:checked + span .ic { opacity: 1; transform: none; }
.pick input:focus-visible + span { outline: 2px solid var(--blue); outline-offset: 3px; }
.form__submit { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form__submit .faint { font-size: 13.5px; }
.form__done { display: none; padding: 32px; border-radius: var(--r-card); background: #eaf8f2; border: 1px solid #bfe9d6; }
.form__done.is-on { display: block; animation: panel 400ms var(--ease-out); }
.form__done h2 { font-size: 24px; margin-top: 12px; }
.form__done p { margin-top: 8px; color: #1f5c46; }

.next { display: grid; gap: 0; }
.next__item { display: grid; grid-template-columns: 40px 1fr; gap: 14px; padding: 20px 0; border-top: 1px solid var(--line); }
.next__item:last-child { border-bottom: 1px solid var(--line); }
.next__item .cell__icon { width: 40px; height: 40px; }
.next__item h3 { font-size: 19px; }
.next__item p { margin-top: 4px; color: var(--ink-2); font-size: 15px; }
.aside-card { background: var(--paper-2); border-radius: var(--r-card); padding: 26px; }
.aside-card h2 { font-size: 22px; }
.aside-card .next { margin-top: 12px; }

/* ------------------------------------------------------------------ */
/* Side entrances: Byron's "pop out of the side as you scroll". Opt-in per
   element; section-reveal from ui-signals handles the plain fade-up. */

[data-side] { opacity: 0; transition: opacity 600ms var(--ease-out), transform 800ms var(--ease-out); transition-delay: var(--d, 0ms); }
[data-side="left"] { transform: translateX(-56px); }
[data-side="right"] { transform: translateX(56px); }
[data-side="up"] { transform: translateY(28px); }
[data-side].is-in { opacity: 1; transform: none; }

/* Legal pages */
.legal { max-width: 760px; padding: 56px 0 96px; }
.legal h1 { margin-bottom: var(--s-5); }
.legal h2 { font-size: 22px; margin-top: var(--s-6); margin-bottom: var(--s-3); }
.legal p, .legal li { color: var(--ink-2); }

/* ------------------------------------------------------------------ */
/* Reduced motion: movement off, state and colour kept. */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .split .w > span, .hero-sub, .hero-cta, .demo, .demo__log li, .demo__booked, [data-side], .drawer__links li, .drawer__systems, .drawer__foot, .clock i {
    transition: none !important; transform: none !important; opacity: 1 !important;
  }
  .ticker__track { animation: none; }
  .drawer__panel { transition-duration: 1ms; }
  .demo__live::before, .demo__log .typing i { animation: none; }
  .steps__line path { transition: none; stroke-dashoffset: 0; }
  .tab-panel.is-on, .svc__for.is-on, .form__done.is-on { animation: none; }
  .magnet { transition: none; transform: none !important; }
  .float-cta { transition: none; }
}
