/* =========================================================
   KwickBlocks for Veterinary Practices
   "The Calm Concierge" — committed warm-clay design system
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Brand family — bright sky / azure blue. The token names are kept (--clay*)
     but the hue moved from warm clay to cool blue, so every reference across the
     stylesheet recolours from this one place. */
  --clay:        oklch(65% 0.15 238);   /* signature blue, large non-text fields */
  --clay-strong: oklch(56% 0.16 243);   /* text-bearing blue: buttons, drenched bands */
  --clay-deep:   oklch(48% 0.16 248);   /* hover / deepest blue */
  --clay-soft:   oklch(93% 0.045 232);  /* tinted blue wash for surfaces */

  /* Pink / magenta accent (the playful "Grooming" pop) */
  --accent:      oklch(64% 0.20 352);   /* vivid pink: highlights, ticks, dots */
  --accent-deep: oklch(57% 0.21 352);   /* text-bearing pink: eyebrows */
  --accent-soft: oklch(93% 0.06 350);   /* pink wash */

  /* Earth — cool navy, darker brand hue (headings on light / footer base) */
  --earth:        oklch(34% 0.07 252);  /* headings on light */
  --earth-deeper: oklch(25% 0.06 255);  /* footer base */

  /* Tinted neutrals (a faint cool blue lean) */
  --paper:   oklch(98% 0.008 235);      /* default page background */
  --paper-2: oklch(96% 0.014 235);      /* alternating section tone */
  --paper-3: oklch(93% 0.02 235);       /* insets / cards */
  --cream:   oklch(99% 0.005 235);      /* light text / elements on blue */
  --ink:     oklch(29% 0.025 252);      /* body text */
  --ink-soft:oklch(45% 0.022 252);      /* muted body, captions */
  --stone:   oklch(87% 0.012 240);      /* borders, dividers */
  --stone-2: oklch(78% 0.016 240);      /* stronger dividers */

  /* Spacing — 4pt scale */
  --space-2: 0.125rem;
  --space-4: 0.25rem;
  --space-8: 0.5rem;
  --space-12: 0.75rem;
  --space-16: 1rem;
  --space-24: 1.5rem;
  --space-32: 2rem;
  --space-48: 3rem;
  --space-64: 4rem;
  --space-96: 6rem;
  --space-128: 8rem;

  /* Type */
  --font: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --shell: 75rem;
  --measure: 65ch;

  /* Motion */
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);

  /* Warm-tinted state shadow (interaction only) */
  --lift: 0 6px 20px oklch(42% 0.07 250 / 0.18);
  --lift-sm: 0 3px 10px oklch(42% 0.07 250 / 0.14);

  --radius: 14px;
  --radius-lg: 22px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;          /* 17px */
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  font-kerning: normal;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { margin: 0; color: var(--earth); text-wrap: balance; letter-spacing: -0.018em; }
p { margin: 0; }
a { color: inherit; }
ol, ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--clay-strong);
  outline-offset: 3px;
  border-radius: 4px;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.skip-link {
  position: absolute;
  left: 1rem; top: -3rem;
  background: var(--earth);
  color: var(--cream);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  z-index: 200;
  transition: top 180ms var(--ease-out-quart);
}
.skip-link:focus { top: 1rem; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: var(--space-16);
}
.eyebrow-clay { color: var(--accent-deep); }
.eyebrow-on-clay { color: oklch(84% 0.11 350); }

.lede, .section-intro, .hero-lead, .portal-lede, .cta-lede {
  font-size: clamp(1.125rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--clay-strong);
  --btn-fg: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.005em;
  text-decoration: none;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid transparent;
  padding: 0.72rem 1.35rem;
  min-height: 44px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 160ms var(--ease-out-quart),
              box-shadow 200ms var(--ease-out-quart),
              background-color 160ms var(--ease-out-quart);
}
.btn-lg { padding: 0.95rem 1.7rem; font-size: 1.05rem; }
.btn:hover { background: var(--clay-deep); transform: translateY(-2px); box-shadow: var(--lift); }
.btn:active { transform: translateY(0) scale(0.985); box-shadow: var(--lift-sm); }

.btn-ghost {
  background: transparent;
  color: var(--clay-deep);
  border-color: var(--stone-2);
}
.btn-ghost:hover { background: var(--clay-soft); border-color: var(--clay); box-shadow: var(--lift-sm); }

.btn-cream { --btn-bg: var(--cream); --btn-fg: var(--clay-deep); }
.btn-cream:hover { background: oklch(95% 0.02 235); }

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: oklch(100% 0 0 / 0.45);
}
.btn-ghost-light:hover { background: oklch(100% 0 0 / 0.12); border-color: var(--cream); box-shadow: none; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(98% 0.008 235 / 0.82);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 220ms var(--ease-out-quart), box-shadow 220ms var(--ease-out-quart);
}
.site-header.scrolled { border-bottom-color: var(--stone); box-shadow: 0 1px 0 oklch(42% 0.07 250 / 0.05); }

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-32);
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 700;
  color: var(--earth);
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 44px; height: 44px;
  object-fit: contain;
  flex: none;
}
.brand-text { display: inline-flex; align-items: baseline; gap: 0.45rem; font-size: 1.12rem; }
.brand-vertical {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clay-strong);
}

.nav-links { display: flex; gap: var(--space-24); margin-left: auto; }
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.97rem;
  padding: 0.4rem 0;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--clay-strong);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease-out-quart);
}
.nav-links a:hover { color: var(--earth); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: var(--space-16); }
.link-pricing {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--clay-deep);
  white-space: nowrap;
}
.link-pricing:hover { text-decoration: underline; text-underline-offset: 4px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px; height: 46px;
  background: transparent;
  border: 1.5px solid var(--stone-2);
  border-radius: 11px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle-bar {
  width: 20px; height: 2px;
  background: var(--earth);
  border-radius: 2px;
  transition: transform 240ms var(--ease-out-quart), opacity 160ms linear;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-nav {
  border-top: 1px solid var(--stone);
  background: var(--paper);
  padding: var(--space-16) clamp(1.25rem, 5vw, 3rem) var(--space-24);
}
.mobile-nav nav { display: flex; flex-direction: column; gap: var(--space-4); }
.mobile-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  padding: 0.85rem 0.25rem;
  border-bottom: 1px solid var(--stone);
}
.mobile-nav a.btn { border: none; margin-top: var(--space-12); color: var(--cream); }

/* ---------- Hero (full-bleed background video) ---------- */
.hero {
  position: relative;
  isolation: isolate;
  color: var(--cream);
  padding-block: clamp(3.5rem, 8vw, 7rem);
  overflow: hidden;
  /* Fallback behind the video: the poster still, then deep clay. */
  background: var(--clay-deep) url("images/hero-poster.jpg") center / cover no-repeat;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(95deg,
      oklch(27% 0.08 250 / 0.94) 0%,
      oklch(32% 0.10 248 / 0.80) 42%,
      oklch(40% 0.12 245 / 0.44) 100%),
    linear-gradient(0deg, oklch(25% 0.07 252 / 0.55) 0%, transparent 46%);
}
.hero-inner {
  position: relative;
  min-height: clamp(33rem, 68vh, 44rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-copy { max-width: 46rem; }

/* Three eye-catching hook chips, frosted on the video with a pink tick each.
   They sit below the CTA + hook line as one single row. */
.hero-points {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--space-8);
  margin-top: var(--space-8);
}
.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.8rem 0.42rem 0.45rem;
  background: oklch(100% 0 0 / 0.13);
  border: 1px solid oklch(100% 0 0 / 0.26);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--cream);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.hero-points li::before {
  content: "";
  flex: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4 10-11'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.hero .eyebrow { color: oklch(85% 0.11 350); }
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.6rem, 5.6vw, 4.25rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-24);
}
.hero-lead {
  color: oklch(96% 0.015 235);
  font-weight: 400;
  max-width: 38ch;
  margin-bottom: var(--space-32);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--space-16); margin-bottom: var(--space-32); }
.hero .btn-ghost {
  color: var(--cream);
  border-color: oklch(100% 0 0 / 0.5);
  background: oklch(100% 0 0 / 0.06);
}
.hero .btn-ghost:hover { background: oklch(100% 0 0 / 0.16); border-color: var(--cream); }

/* Supporting hook line beneath the primary CTA: plants the "hear it answer
   live" mechanic. Sits on the dark clay hero and final CTA, so light text. */
.cta-hook {
  margin-top: calc(-1 * var(--space-16));
  margin-bottom: var(--space-24);
  max-width: 42ch;
  font-size: 0.95rem;
  line-height: 1.5;
  color: oklch(91% 0.025 235);
}
.cta-hook-on-clay { margin-top: var(--space-24); margin-bottom: 0; }


/* ---------- Section scaffolding ---------- */
section { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section-head { max-width: 60ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); line-height: 1.12; margin-bottom: var(--space-16); }
.section-intro { margin-top: var(--space-8); }

/* ---------- The Solution (six-card band) ----------
   The turning point: a committed clay panel where the page moves from problem
   to answer. Four channels as solution promises + the two system cards, each a
   large Display headline doing the heavy lifting. 3x2 grid reflowing 3 -> 2 -> 1. */
.solution { background: var(--paper-2); position: relative; overflow: hidden; }
.solution > .shell { position: relative; z-index: 1; }
/* Decorative golden-retriever motif (transparent PNG), a large section
   background anchored bottom-right behind the content, mirroring the cat in
   "How it works". The opaque cards cover its body; the head peeks above.
   Repositioned on tablet, hidden on phones. */
.solution-figure {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("images/golden-retriever.png");
  background-repeat: no-repeat;
  background-position: right -2rem center;
  background-size: auto 80%;
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
@media (max-width: 880px) { .solution-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .solution-grid { grid-template-columns: 1fr; } }
.solution-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--stone);
  border-top: 3px solid var(--clay-strong);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  box-shadow: var(--lift-sm);
  transition: transform 200ms var(--ease-out-quart), box-shadow 220ms var(--ease-out-quart);
}
.solution-card:hover { transform: translateY(-3px); box-shadow: var(--lift); }
.sol-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--clay-strong);
  margin-bottom: var(--space-16);
}
.sol-head {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--earth);
  margin-bottom: var(--space-12);
}
.sol-line { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.5; }

/* ---------- In Production (testimonials) ----------
   Quotes only, no audio. Three real customers across different industries,
   proving the product is live today. Near-white cards with a clay top-rule. */
.in-production { background: var(--paper); }
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 1.8rem);
}
@media (max-width: 880px) { .testimonials { grid-template-columns: 1fr; max-width: 36rem; margin-inline: auto; } }
.testimonial {
  display: flex;
  flex-direction: column;
  margin: 0;
  background: var(--cream);
  border: 1px solid var(--stone);
  border-top: 3px solid var(--clay-strong);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  box-shadow: var(--lift-sm);
}
.t-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay-strong);
  margin-bottom: var(--space-16);
}
.t-quote {
  margin: 0 0 var(--space-24);
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  line-height: 1.5;
  color: var(--ink);
  flex: 1;
}
.t-cite {
  font-style: normal;
  font-weight: 700;
  color: var(--earth);
  border-top: 1px solid var(--stone);
  padding-top: var(--space-16);
}
.t-role { display: block; font-weight: 500; color: var(--ink-soft); font-size: 0.9rem; margin-top: var(--space-2); }

/* ---------- Use cases ----------
   Real practice moments mapped to the agents that handle them. Scenario
   cards (editorial "moment" line + response + agent pills, no icons) so they
   read distinctly from the numbered agent list and the icon platform grid. */
.cases { background: var(--clay-soft); }
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}
.case {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  transition: transform 200ms var(--ease-out-quart), box-shadow 220ms var(--ease-out-quart);
}
.case:hover { transform: translateY(-3px); box-shadow: var(--lift); }
.case-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--clay-strong);
  margin-bottom: var(--space-12);
}
.case-moment {
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--earth);
  margin-bottom: var(--space-16);
  padding-left: 0.95rem;
  border-left: 3px solid var(--clay);
}
.case-response { color: var(--ink-soft); margin-bottom: var(--space-24); flex: 1; }
.case-tags { display: flex; flex-wrap: wrap; gap: var(--space-8); margin-top: auto; }
.case-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clay-deep);
  background: var(--clay-soft);
  border-radius: 999px;
  padding: 0.32rem 0.78rem;
}
/* Platform-driven work (insurance automation, CRM) sits behind the five agents
   — a quieter, neutral pill so the agent tags stay primary. */
.case-tag.is-platform { color: var(--ink-soft); background: var(--paper-3); border: 1px solid var(--stone); }

/* ---------- Use-case spotlight (landing page) ----------
   One signature scenario with its live sample call: image + player side
   by side, with a button through to the full Use Cases page. The other
   scenarios live on use-cases.html. */
.usecase-spot { background: var(--clay-soft); }
/* Equal-height two-up: the photo fills its column to the content's height (no
   wasted space), the body card carries the eyebrow, heading, quote, sample
   call, tags and CTA. */
.usecase-spot-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}
.usecase-spot-media {
  margin: 0;
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--lift);
  background: var(--clay-deep);
}
.usecase-spot-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; }
.usecase-spot-body {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--lift-sm);
}
.usecase-spot-body .eyebrow { margin-bottom: var(--space-8); }
.usecase-spot-body h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.12;
  margin-bottom: var(--space-12);
}
.usecase-spot-moment {
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--earth);
  margin-bottom: var(--space-12);
  padding-left: 1rem;
  border-left: 3px solid var(--clay);
}
.usecase-spot-response { color: var(--ink-soft); margin-bottom: var(--space-16); }
.usecase-spot-body .case-tags { margin-bottom: var(--space-24); }
.usecase-spot-cta { margin-top: var(--space-4); }

/* ---------- Use Cases page (use-cases.html) ----------
   Channel groups, each a header + a grid of the full scenario cards
   (shown in full, with their sample-call players). */
.usecases-hero {
  background:
    radial-gradient(120% 130% at 85% -10%, var(--clay-strong) 0%, oklch(50% 0.15 243) 54%, var(--clay-deep) 100%);
  color: var(--cream);
}
.usecases-hero .eyebrow { color: oklch(85% 0.11 350); }
.usecases-hero h1 {
  color: var(--cream);
  font-size: clamp(2.3rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-24);
  max-width: 20ch;
}
.usecases-hero .usecases-lead { color: oklch(96% 0.015 235); max-width: 52ch; }
.usecase-group + .usecase-group { padding-top: 0; }
.usecase-group-head { margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }
.usecase-group-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.14; }
.usecase-group-head .usecase-group-tag {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--clay-strong); margin-bottom: var(--space-12);
}
.usecases-a { background: var(--paper); }
.usecases-b { background: var(--clay-soft); }
.usecases-c { background: var(--paper-2); }

/* ---------- Use cases: hover-to-expand (progressive enhancement) ----------
   Collapsed, each panel shows just the kicker + moment. On hover it expands as an
   OVERLAY over the panels below — the grid cell keeps its collapsed height, so
   nothing reflows — then collapses on leave. Collapsed/expanded heights are
   measured per breakpoint by cases-collapse.js (sets --case-h / --case-full).
   Only enabled on hover-capable pointers; without JS the panels show in full. */
.js-cases .case {
  position: relative;
  height: var(--case-h, auto);
  background: none;
  border: none;
  padding: 0;
  overflow: visible;
}
.js-cases .case:hover { transform: none; box-shadow: none; }   /* expand, don't lift */
.js-cases .case-inner {
  position: absolute;
  left: 0; right: 0; top: 0;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  max-height: var(--case-h, none);
  overflow: hidden;
  z-index: 1;
  transition: max-height 340ms var(--ease-out-expo), box-shadow 240ms var(--ease-out-quart);
}
.js-cases .case:hover .case-inner,
.js-cases .case:focus-within .case-inner {
  max-height: var(--case-full, 44rem);
  overflow: visible;
  z-index: 6;
  box-shadow: var(--lift);
}
/* "More below" cue: a soft fade at the collapsed foot, gone once expanded. */
.js-cases .case-inner::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2.4rem;
  background: linear-gradient(to bottom, oklch(100% 0 0 / 0), var(--paper));
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  pointer-events: none;
  transition: opacity 200ms var(--ease-out-quart);
}
.js-cases .case:hover .case-inner::after,
.js-cases .case:focus-within .case-inner::after { opacity: 0; }

/* ---------- Sample-call audio player ----------
   A real, listenable agent↔customer call on the Voice use cases. Static-HTML
   equivalent of Lucy's AudioSample component: marker + speaker strip, play/pause,
   a waveform that fills as it plays, timecode, and a collapsible transcript.
   Skinned entirely with the site's clay tokens. Driven by audio-sample.js. */
.audio-sample {
  margin: var(--space-8) 0 var(--space-24);
  padding: var(--space-16);
  background: var(--paper-2);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
}
.audio-sample-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-8); margin-bottom: var(--space-12);
}
.audio-sample-marker {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--clay-strong);
}
.audio-sample-marker::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--clay-strong); }
.audio-sample.is-playing .audio-sample-marker::before { animation: audio-pulse 1.1s var(--ease-out-quart) infinite; }
@keyframes audio-pulse { 0%,100% { box-shadow: 0 0 0 0 oklch(56% 0.16 243 / 0.5); } 50% { box-shadow: 0 0 0 5px oklch(56% 0.16 243 / 0); } }
.audio-sample-speakers { font-size: 0.72rem; font-weight: 600; color: var(--ink-soft); }

.audio-sample-player { display: flex; align-items: center; gap: var(--space-12); }
.audio-sample-play {
  flex: none; width: 40px; height: 40px;
  display: grid; place-items: center;
  border: none; border-radius: 50%;
  background: var(--clay-strong); color: var(--cream); cursor: pointer;
  transition: background-color 160ms var(--ease-out-quart), transform 160ms var(--ease-out-quart);
}
.audio-sample-play:hover { background: var(--clay-deep); transform: scale(1.05); }
.audio-sample-play svg { width: 17px; height: 17px; fill: currentColor; }
.audio-sample-play .icon-pause { display: none; }
.audio-sample.is-playing .audio-sample-play .icon-play { display: none; }
.audio-sample.is-playing .audio-sample-play .icon-pause { display: block; }

/* min-width:0 lets the waveform shrink to share the row (otherwise its bars'
   min-content width pushes the timecode off-screen on narrow viewports). */
.audio-sample-wave { flex: 1; min-width: 0; overflow: hidden; display: flex; align-items: center; gap: 2px; height: 30px; cursor: pointer; }
.audio-sample-wave .bar {
  flex: 1; min-width: 2px; border-radius: 999px;
  background: var(--stone-2); transition: background-color 120ms linear;
}
.audio-sample-wave .bar.is-played { background: var(--clay-strong); }

.audio-sample-time {
  flex: none; font-size: 0.78rem; font-weight: 600;
  font-variant-numeric: tabular-nums; color: var(--ink-soft);
}

.audio-sample-transcript { margin-top: var(--space-12); }
.audio-sample-transcript > summary {
  cursor: pointer; width: max-content;
  font-size: 0.82rem; font-weight: 700; color: var(--clay-deep);
  list-style: none;
}
.audio-sample-transcript > summary::-webkit-details-marker { display: none; }
.audio-sample-transcript > summary::after { content: " +"; }
.audio-sample-transcript[open] > summary::after { content: " –"; }
.audio-sample-transcript .line { margin-top: var(--space-8); font-size: 0.88rem; line-height: 1.5; color: var(--ink-soft); }
.audio-sample-transcript .who { font-weight: 700; color: var(--earth); }
.audio-sample-transcript .who.agent { color: var(--clay-deep); }

@media (prefers-reduced-motion: reduce) {
  .audio-sample.is-playing .audio-sample-marker::before { animation: none; }
  .audio-sample-play, .audio-sample-wave .bar { transition: none; }
}

/* ---------- Portal (clay-drenched) ---------- */
.portal {
  background: linear-gradient(160deg, var(--clay-strong) 0%, var(--clay-deep) 100%);
  color: var(--cream);
}
.portal-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.portal-copy h2 { color: var(--cream); font-size: clamp(1.9rem, 3.6vw, 2.7rem); line-height: 1.12; margin-bottom: var(--space-24); }
.portal-lede { color: oklch(96% 0.015 235); margin-bottom: var(--space-24); }
.portal-points { display: grid; gap: var(--space-12); }
.portal-points li {
  position: relative;
  padding-left: 1.9rem;
  color: oklch(95% 0.02 235);
  line-height: 1.5;
}
.portal-points li::before {
  content: "";
  position: absolute; left: 0; top: 0.5rem;
  width: 1.05rem; height: 1.05rem;
  border-radius: 50%;
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232486d6' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4 10-11'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.7rem;
}

/* Dashboard mock */
.dash {
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px oklch(20% 0.06 252 / 0.4);
  overflow: hidden;
  color: var(--ink);
}
.dash-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1.1rem;
  background: var(--paper-3);
  border-bottom: 1px solid var(--stone);
}
.dash-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--stone-2); }
.dash-dot:first-child { background: var(--clay); }
.dash-title { margin-left: 0.6rem; font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); }
.dash-body { padding: clamp(1.1rem, 3vw, 1.6rem); }
.dash-greeting { font-weight: 600; color: var(--earth); margin-bottom: var(--space-16); }
.dash-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-12); margin-bottom: var(--space-24); }
.tile {
  background: var(--paper-2);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  padding: 0.9rem 0.8rem;
  text-align: left;
}
.tile-num { display: block; font-size: 1.7rem; font-weight: 800; color: var(--clay-strong); line-height: 1; font-variant-numeric: tabular-nums; }
.tile-label { display: block; margin-top: 0.35rem; font-size: 0.74rem; font-weight: 600; color: var(--ink-soft); letter-spacing: 0.01em; }
.dash-row { display: grid; grid-template-columns: 9.5rem 1fr; align-items: center; gap: 0.8rem; padding-block: 0.5rem; }
.dash-row-label { font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); }
.dash-row-fill { height: 9px; background: var(--paper-3); border-radius: 999px; overflow: hidden; }
.dash-row-fill i { display: block; height: 100%; width: var(--w); background: var(--clay); border-radius: 999px; }

/* ---------- How / steps ---------- */
.how { background: var(--paper-2); position: relative; overflow: hidden; }
.how > .shell { position: relative; z-index: 1; }

/* Cat motif, bottom-right. Raised so her head peeks up above the step panels
   (the cards sit over her body, but her face stays clear above them). */
.how-figure {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("images/cat-how.png");
  background-repeat: no-repeat;
  background-position: right -2.5rem bottom 150px;
  background-size: auto 70%;
}

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.25rem, 3vw, 2.25rem); }
.step {
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  transition: transform 200ms var(--ease-out-quart), box-shadow 220ms var(--ease-out-quart);
}
.step:hover { transform: translateY(-3px); box-shadow: var(--lift); }
.step-num {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--clay-soft);
  color: var(--clay-deep);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: var(--space-16);
}
.step h3 { font-size: 1.2rem; margin-bottom: var(--space-8); }
.step p { color: var(--ink-soft); }
.how-pricing { margin-top: clamp(2rem, 4vw, 3rem); font-size: 1.1rem; font-weight: 500; color: var(--ink); }
.how-pricing a { color: var(--clay-deep); font-weight: 700; text-underline-offset: 4px; }

/* ---------- Platform ---------- */
.platform { background: var(--clay-soft); }
.platform-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); }
.platform-item { max-width: 40ch; }

/* Why it holds up — drenched blue trust band */
.trust { background: var(--clay-strong); color: var(--cream); }
.trust .eyebrow { color: var(--cream); opacity: .8; }
.trust h2 { color: var(--cream); }
.trust .section-intro { color: var(--cream); opacity: .9; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); margin-top: var(--space-48); }
.trust-item h3 { color: var(--cream); margin-bottom: var(--space-12); }
.trust-item p { color: var(--cream); opacity: .85; max-width: 36ch; }

/* Legal pages */
.legal { padding-block: clamp(4rem, 10vw, 8rem); background: var(--paper); }
.legal-shell { max-width: 64ch; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--earth); margin: var(--space-12) 0 var(--space-8); }
.legal h2 { font-size: 1.25rem; color: var(--earth); margin: var(--space-32) 0 var(--space-8); }
.legal p { color: var(--ink); margin-bottom: var(--space-16); line-height: 1.7; }
.legal a { color: var(--clay-strong); text-decoration: underline; }
.legal-meta { color: var(--ink-soft); font-size: .95rem; }
.legal-404 { text-align: center; margin-inline: auto; }
.legal-404-actions { display: flex; gap: var(--space-16); justify-content: center; flex-wrap: wrap; margin-top: var(--space-24); }
.platform-icon {
  width: 38px; height: 38px;
  fill: none; stroke: var(--clay-strong); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
  margin-bottom: var(--space-16);
}
.platform-item h3 { font-size: 1.3rem; line-height: 1.2; margin-bottom: var(--space-12); }
.platform-item p { color: var(--ink-soft); }

/* ---------- Final CTA (clay-drenched) ---------- */
.cta {
  background:
    radial-gradient(125% 135% at 8% 108%, var(--clay-strong) 0%, oklch(50% 0.15 243) 52%, var(--clay-deep) 100%);
  color: var(--cream);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.cta-copy h2 { color: var(--cream); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.08; margin-bottom: var(--space-24); }
.cta-lede { color: oklch(96% 0.015 235); margin-bottom: var(--space-32); }
.cta-actions { display: flex; flex-wrap: wrap; gap: var(--space-16); }
.cta-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 60px oklch(22% 0.07 252 / 0.4); rotate: -1.4deg; max-width: 20rem; margin-left: auto; }
.cta-media img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; }

/* ---------- Footer ---------- */
.site-footer { background: var(--earth-deeper); color: oklch(86% 0.015 235); padding-block: clamp(3rem, 5vw, 4.5rem) var(--space-32); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: var(--space-48);
  border-bottom: 1px solid oklch(100% 0 0 / 0.1);
}
.site-footer .brand { color: var(--cream); }
.site-footer .brand-vertical { color: oklch(80% 0.05 235); }
.footer-blurb { margin-top: var(--space-16); max-width: 38ch; color: oklch(80% 0.015 235); line-height: 1.55; }
.footer-col h4 { color: var(--cream); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: var(--space-16); }
.footer-col { display: flex; flex-direction: column; gap: var(--space-12); }
.footer-col a { text-decoration: none; color: oklch(84% 0.015 235); font-size: 0.97rem; width: max-content; }
.footer-col a:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 4px; }
.footer-base {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-12);
  padding-top: var(--space-24);
  font-size: 0.85rem;
  color: oklch(74% 0.015 235);
}
.footer-copy { flex: 1 1 0; min-width: max-content; }
.footer-quote { flex: 2 1 auto; text-align: center; font-style: italic; color: oklch(84% 0.015 235); }
.footer-powered { flex: 1 1 0; text-align: right; min-width: max-content; }
.footer-powered a {
  color: var(--clay-soft);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid oklch(88% 0.045 232 / 0.4);
}
.footer-powered a:hover { color: var(--cream); border-bottom-color: var(--cream); }

/* ---------- Reveal animation (progressive enhancement: hidden only when JS runs) ---------- */
.js-reveal .reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms var(--ease-out-expo), transform 700ms var(--ease-out-expo); transition-delay: calc(var(--reveal-delay, 0) * 90ms); }
.js-reveal .reveal.is-in { opacity: 1; transform: none; }

/* Soft "settle" variant for small accents (the hero badge): scales in instead of rising. */
.js-reveal .reveal-pop { opacity: 0; transform: scale(0.92); transition: opacity 600ms var(--ease-out-expo), transform 600ms var(--ease-out-expo); transition-delay: calc(var(--reveal-delay, 0) * 90ms); }
.js-reveal .reveal-pop.is-in { opacity: 1; transform: none; }

/* Portal dashboard: the progress bars fill in (scaleX, never width) the first
   time the panel scrolls into view, reading like the day's work landing. */
.dash-row-fill i { transform-origin: left; }
.js-reveal .dash-row-fill i { transform: scaleX(0); transition: transform 900ms var(--ease-out-expo); }
.js-reveal .dash.is-filled .dash-row-fill i { transform: scaleX(1); }
.js-reveal .dash.is-filled .dash-row:nth-child(3) .dash-row-fill i { transition-delay: 200ms; }
.js-reveal .dash.is-filled .dash-row:nth-child(4) .dash-row-fill i { transition-delay: 320ms; }
.js-reveal .dash.is-filled .dash-row:nth-child(5) .dash-row-fill i { transition-delay: 440ms; }

@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal, .js-reveal .reveal-pop { opacity: 1; transform: none; transition: none; }
  .js-reveal .dash-row-fill i { transform: none; transition: none; }
  .btn, .step, .nav-links a::after, .agent, .agent::before, .agent-icon { transition: none; }
  .js-cases .case-inner, .js-cases .case-inner::after { transition: none; }
  /* Drop the hero video; the still poster (set as the .hero background) shows. */
  .hero-video { display: none; }
  * { scroll-behavior: auto; }
}

/* ---------- Live-demo interstitial ----------
   The demo runs on a separate site (Lucy AI); this confirms the hand-off
   before opening it in a new tab. Plain anchor fallback if JS never runs. */
.demo-modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: var(--space-24); }
.demo-modal[hidden] { display: none; }
.demo-modal-backdrop { position: absolute; inset: 0; background: oklch(25% 0.07 252 / 0.55); }
.demo-modal-card {
  position: relative;
  width: 100%;
  max-width: 30rem;
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: 0 24px 60px oklch(25% 0.07 252 / 0.30);
}
.demo-modal-card h2 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); line-height: 1.15; margin-bottom: var(--space-12); }
.demo-modal-desc { color: var(--ink-soft); margin-bottom: var(--space-24); max-width: 42ch; }
.demo-modal-actions { display: flex; flex-wrap: wrap; gap: var(--space-12); }
.demo-modal-actions .btn { flex: 1; min-width: 8rem; }
.demo-modal:not([hidden]) .demo-modal-backdrop { animation: demo-fade-in 200ms linear both; }
.demo-modal:not([hidden]) .demo-modal-card { animation: demo-modal-in 300ms var(--ease-out-expo) both; }
@keyframes demo-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes demo-modal-in { from { opacity: 0; transform: translateY(12px) scale(0.985); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .demo-modal:not([hidden]) .demo-modal-backdrop,
  .demo-modal:not([hidden]) .demo-modal-card { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .nav { gap: var(--space-16); }

  .hero-inner { min-height: clamp(28rem, 60vh, 36rem); }
  .burden-grid { grid-template-columns: 1fr; }
  /* On narrow screens, sit the dog full at the bottom centre. */
  .agents-figure {
    background-image: url("images/golden-retriever.png");
    background-position: center bottom -0.5rem;
    background-size: auto 44%;
  }
  .burden-media { order: 2; max-width: 32rem; }
  .portal-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-media { margin-inline: auto; }
  .usecase-spot-grid { grid-template-columns: minmax(0, 1fr); }
  /* Stacked: give the photo its own aspect again (no row to stretch into). */
  .usecase-spot-media img { height: auto; aspect-ratio: 4 / 3; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  /* On narrow screens, sit the animal motifs full at the bottom centre. */
  .solution-figure {
    background-position: center bottom -0.5rem;
    background-size: auto 40%;
  }
  .how-figure {
    background-image: url("images/cat-how.png");
    background-position: center bottom -0.5rem;
    background-size: auto 40%;
  }
}

@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; max-width: 28rem; margin-inline: auto; }
  .footer-base { flex-direction: column; text-align: center; }
  .footer-copy, .footer-powered { flex: none; text-align: center; }
}

@media (min-width: 941px) {
  .mobile-nav { display: none !important; }
}

@media (max-width: 560px) {
  .dash-tiles { grid-template-columns: repeat(2, 1fr); }
  .dash-row { grid-template-columns: 7rem 1fr; }
  .agent { grid-template-columns: 1fr; gap: var(--space-8); }
  .agent-num { color: var(--clay-strong); }
  .hero-media-badge { left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .btn-lg { width: 100%; }
  .hero-cta, .cta-actions { width: 100%; }
}

/* ---------- Testimonials carousel controls ----------
   Built by carousel.js; hidden until the phone pass shows them, so the
   desktop grid is never affected. */
.carousel-controls { display: none; }
.carousel-arrow {
  flex: none;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1.5px solid var(--stone-2);
  border-radius: 50%;
  background: var(--cream);
  color: var(--clay-deep);
  cursor: pointer;
  transition: background-color 160ms var(--ease-out-quart),
              border-color 160ms var(--ease-out-quart),
              opacity 160ms linear;
}
.carousel-arrow svg {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor; stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
}
.carousel-arrow:hover { background: var(--clay-soft); border-color: var(--clay); }
.carousel-arrow:disabled { opacity: 0.3; cursor: default; }
.carousel-dots { display: flex; align-items: center; gap: 0.55rem; }
.carousel-dot {
  width: 8px; height: 8px; padding: 0;
  border: none; border-radius: 50%;
  background: var(--stone-2);
  cursor: pointer;
  transition: background-color 160ms var(--ease-out-quart), transform 160ms var(--ease-out-quart);
}
.carousel-dot.is-active { background: var(--clay-strong); transform: scale(1.35); }

/* ============================================================
   Mobile design pass (phones, <=640px) — a deliberate phone layout,
   not just the desktop reflowed: tighter rhythm, decorative secondary
   copy hidden, and the In Production testimonials as a swipe carousel.
   Scoped entirely to this query so the desktop layout stays unchanged.
   ============================================================ */
@media (max-width: 640px) {
  /* Tighter vertical rhythm + page gutter */
  section { padding-block: clamp(2.5rem, 9vw, 3.4rem); }
  .shell { padding-inline: 1.15rem; }

  /* Hide both decorative animal motifs on phones. */
  .solution-figure, .how-figure { display: none; }

  /* Eyebrows hold one line */
  .eyebrow { font-size: 0.72rem; letter-spacing: 0.07em; margin-bottom: var(--space-12); }

  /* One impactful headline block; leads read as support, not a second headline */
  .hero h1 { font-size: clamp(2.25rem, 11vw, 2.9rem); margin-bottom: var(--space-16); }

  /* Hook chips: on phones they wrap (three won't fit one line) and the longest
     one wraps inside the pill rather than pushing the page wider than viewport. */
  .hero-points { flex-wrap: wrap; gap: var(--space-8); margin-top: var(--space-16); }
  .hero-points li { font-size: 0.86rem; max-width: 100%; white-space: normal; }
  .section-head { margin-bottom: var(--space-32); }
  .section-head h2 { font-size: clamp(1.6rem, 6.6vw, 2.1rem); }
  .lede, .section-intro, .hero-lead, .portal-lede, .cta-lede { font-size: 1.02rem; }

  /* In Production -> one-card swipe rail (next card peeking) */
  .in-production .testimonials {
    display: flex;
    grid-template-columns: none;
    gap: var(--space-16);
    max-width: none;
    margin-inline: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: var(--space-4) 0 var(--space-8);
  }
  .in-production .testimonials::-webkit-scrollbar { display: none; }
  .in-production .testimonial {
    flex: 0 0 86%;
    min-width: 0;
    scroll-snap-align: center;
  }

  .carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-24);
    margin-top: var(--space-24);
  }
}
