/*
 * EMIAC — the company site. Proportions follow x.ai (captured 2026-09-23): light, one variable
 * typeface at 450–500 and never bold, a 1232px column, sections 140–160px apart, greys for
 * everything secondary. The colours are EMIAC's own: brand blue for the one primary action and
 * the accents, ink and a cool grey sheet for the rest.
 */
:root {
  --brand: #005cb1;
  --brand-deep: #004c93;
  --brand-hi: #3d8ae0;
  --wash: #eaf2fd;
  --ink: #111111;
  --ink-2: #2a2d31;
  --body: #45484d;
  --muted: #6b6f75;
  --faint: #9a9ea4;
  --sheet: #f4f5f6;
  --sheet-2: #eceef1;
  --line: #e4e6e9;
  --dark: #0f1216;
  --dark-line: #262b33;
  --radius: 20px;
  --wrap: 1232px;
  --gutter: 24px;
  --font:
    "Instrument Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font: 400 16px/1.5 var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 460;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h2 {
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.06;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.skip {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}

.skip:focus {
  top: 12px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: 500 15px/1 var(--font);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color 0.15s,
    border-color 0.15s,
    color 0.15s;
}

.btn svg {
  width: 14px;
  height: 14px;
  stroke-width: 1.8;
}

.btn-lg {
  height: 48px;
  padding: 0 24px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-deep);
}

.btn-quiet {
  background: var(--sheet-2);
  color: var(--ink);
}

.btn-quiet:hover {
  background: #e2e5e9;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: var(--ink-2);
}

.btn-outline {
  border-color: #d3d7dc;
  background: #fff;
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--ink);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

/* ---------- Header ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgb(255 255 255 / 0.9);
  backdrop-filter: saturate(1.4) blur(14px);
  transition: border-color 0.2s;
}

.nav.is-scrolled {
  border-bottom-color: var(--line);
}

.nav-bar {
  display: flex;
  align-items: center;
  gap: 36px;
  max-width: calc(var(--wrap) + 2 * var(--gutter));
  height: 64px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.menu {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 2px;
}

.menu-item {
  position: relative;
}

.menu-trigger,
.menu-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  border: 0;
  border-radius: 999px;
  background: none;
  color: var(--ink-2);
  font: 450 15px/1 var(--font);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s;
}

.menu-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s var(--ease);
}

.menu-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.menu-trigger:hover,
.menu-link:hover,
.menu-trigger[aria-expanded="true"] {
  color: var(--ink);
}

[data-current] {
  color: var(--ink);
  font-weight: 560;
}

.panel {
  position: absolute;
  top: calc(100% + 10px);
  left: -8px;
  z-index: 60;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow:
    0 16px 44px rgb(17 17 17 / 0.08),
    0 2px 6px rgb(17 17 17 / 0.04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition:
    opacity 0.18s var(--ease),
    transform 0.18s var(--ease),
    visibility 0s 0.18s;
}

/* A bridge over the gap, so moving from the trigger to the panel does not close it. */
.panel::before {
  position: absolute;
  inset: -14px 0 auto;
  height: 14px;
  content: "";
}

.panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-delay: 0s;
}

.panel-list {
  display: flex;
  flex-direction: column;
  min-width: 232px;
  padding: 8px;
}

.panel-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 15px;
  text-decoration: none;
}

.panel-list a:hover,
.panel-list a:focus-visible {
  background: var(--sheet);
}

.panel-list .panel-foot {
  margin-top: 4px;
  background: var(--sheet);
  font-size: 14px;
}

.panel-foot svg {
  width: 14px;
  height: 14px;
}

.panel-right {
  right: 0;
  left: auto;
}

.panel-product {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 10px;
  width: 660px;
  padding: 10px;
}

.product-stage {
  display: grid;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px 18px 0;
  overflow: hidden;
  border-radius: 12px;
  background: var(--sheet);
  text-decoration: none;
}

.product-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-top strong {
  display: block;
  font-size: 17px;
  font-weight: 500;
}

.product-top em {
  display: block;
  min-height: 39px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.product-card[hidden] {
  display: none;
}

.product-shot {
  flex: 1 0 auto;
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
  margin-bottom: -6px;
  border: 1px solid var(--line);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 10px 30px rgb(17 17 17 / 0.1);
  transition: transform 0.3s var(--ease);
}

.product-mark-pad {
  padding: 6px;
  border-radius: 9px;
  background: #fff;
}

.product-top .product-c1 {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  font-size: 13px;
}

.product-orb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: #fff;
}

.product-orb .bx-orb {
  width: 120px;
  box-shadow: 0 16px 40px rgb(31 111 214 / 0.25);
}

.product-orb b {
  font-size: 17px;
  font-weight: 400;
}

.product-orb em {
  color: var(--brand);
  font-style: normal;
  font-weight: 500;
}

/* WhatsApp MCP's card: a question, the call and the answer, drawn instead of a screenshot */
.product-wa {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  background: #fff;
}

.product-wa b {
  align-self: flex-end;
  padding: 9px 14px;
  border-radius: 14px 14px 4px 14px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

.product-wa code {
  align-self: flex-start;
  padding: 5px 11px;
  border: 1px solid rgb(37 211 102 / 0.35);
  border-radius: 999px;
  background: #e7f8ee;
  color: #0b7a4b;
  font: 500 12px var(--mono);
}

.product-wa i {
  align-self: flex-start;
  max-width: 85%;
  color: var(--ink-2);
  font-size: 14px;
  font-style: normal;
  line-height: 1.45;
}

.product-card:hover .product-shot {
  transform: translateY(-3px);
}

.product-side {
  display: flex;
  flex-direction: column;
  padding: 10px 6px 8px 8px;
}

.product-side p {
  margin-bottom: 10px;
  padding: 0 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.product-side a {
  padding: 9px 8px;
  border-radius: 8px;
  font-size: 14.5px;
  text-decoration: none;
}

.product-side a:hover,
.product-side a:focus-visible {
  background: var(--sheet);
}

.product-side a em {
  margin-left: 8px;
  color: var(--muted);
  font-size: 12.5px;
  font-style: normal;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.split {
  position: relative;
  display: inline-flex;
}

.split-main {
  padding-right: 14px;
  border-radius: 999px 0 0 999px;
}

.split-toggle {
  padding: 0 12px 0 10px;
  border-left: 1px solid rgb(255 255 255 / 0.28);
  border-radius: 0 999px 999px 0;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 0 11px;
  border: 0;
  border-radius: 999px;
  background: var(--sheet-2);
  cursor: pointer;
}

.burger span {
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.2s var(--ease);
}

.nav.is-menu-open .burger span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav.is-menu-open .burger span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.mobile {
  display: none;
}

/* ---------- Hero ---------- */

.hero {
  max-width: 1000px;
  margin: 0 auto;
  padding: 88px var(--gutter) 72px;
  text-align: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 5px 5px 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  transition: border-color 0.2s;
}

.pill:hover {
  border-color: #cfd3d8;
}

.pill em {
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--wash);
  color: var(--brand);
  font-size: 12px;
  font-style: normal;
}

.pill span {
  color: var(--muted);
}

.pill svg {
  width: 24px;
  height: 24px;
  padding: 6px;
  border-radius: 50%;
  background: var(--sheet);
}

.hero-title {
  margin: 30px 0 22px;
  font-size: clamp(40px, 4.3vw, 62px);
  font-weight: 440;
  line-height: 1.05;
  letter-spacing: -0.024em;
}

.hero-title .nowrap {
  white-space: nowrap;
}

.hero-eyebrow .sep {
  margin: 0 0.6em;
  opacity: 0.5;
}

.hero-title .line {
  display: block;
}

.hero-sub {
  max-width: 620px;
  margin: 0 auto;
  color: var(--ink-2);
  font-size: 19px;
  line-height: 1.5;
}

.cycle {
  position: relative;
  display: inline-block;
  width: var(--w, auto);
  text-align: left;
  white-space: nowrap;
  vertical-align: bottom;
  transition: width 0.5s var(--ease);
}

.cycle::after {
  position: absolute;
  right: 0;
  bottom: 0.02em;
  left: 0;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    #d9dce0 0 40%,
    var(--brand-hi) 70%,
    var(--brand) 85%,
    #d9dce0 100%
  );
  background-size: 250% 100%;
  animation: shimmer 3.2s linear infinite;
  content: "";
}

.cycle-word {
  display: inline-block;
}

.cycle-word .ch {
  display: inline-block;
  animation: ch-in 0.55s var(--ease) both;
  animation-delay: calc(var(--i) * 45ms);
}

.cycle-word.is-leaving {
  animation: word-out 0.35s var(--ease) forwards;
}

@keyframes ch-in {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(0.12em);
  }
}

@keyframes word-out {
  to {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(-0.08em);
  }
}

@keyframes shimmer {
  from {
    background-position: 100% 0;
  }

  to {
    background-position: -150% 0;
  }
}

/* ---------- Bento of live Clario tiles ---------- */

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: calc(var(--wrap) + 2 * var(--gutter));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.tile {
  position: relative;
  grid-column: span 2;
  height: 300px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sheet);
  color: var(--ink);
  text-decoration: none;
  isolation: isolate;
}

.tile-wide {
  grid-column: span 3;
}

.tile-foot {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 22px 18px;
  background: linear-gradient(to top, var(--sheet) 55%, rgb(244 245 246 / 0));
  font-size: 16px;
}

.tile-foot b {
  font-weight: 500;
}

.tile-foot span {
  display: inline-flex;
  gap: 6px;
}

.tile-foot i {
  font-style: normal;
  transition: transform 0.2s var(--ease);
}

.tile:hover .tile-foot i {
  transform: translateX(3px);
}

.tile-dark {
  background: var(--dark);
  color: #fff;
}

.tile-dark .tile-foot {
  background: linear-gradient(to top, var(--dark) 55%, rgb(15 18 22 / 0));
}

/* Ask */
.chat {
  position: absolute;
  inset: 0 0 58px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 20px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0, #000 70px);
}

.bubble {
  flex: none;
  max-width: 84%;
  padding: 10px 14px;
  border-radius: 16px;
  background: #fff;
  font-size: 13.5px;
  line-height: 1.45;
  animation: bubble-in 0.4s var(--ease) both;
}

.bubble.q {
  align-self: flex-end;
  background: #e6e8eb;
}

.src {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 7px;
  border-radius: 999px;
  background: var(--wash);
  color: var(--brand);
  font: 500 11.5px/1.6 var(--mono);
  white-space: nowrap;
}

@keyframes bubble-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
}

/* Minutes */
.term {
  position: absolute;
  inset: 14px 14px 58px;
  overflow: hidden;
  border: 1px solid var(--dark-line);
  border-radius: 12px;
  background: #161a20;
  color: #c9ced6;
  font: 12.5px/1.7 var(--mono);
}

.term-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-bottom: 1px solid var(--dark-line);
  color: #8a919b;
  font-size: 12px;
  white-space: nowrap;
}

.dots {
  display: inline-flex;
  gap: 5px;
}

.dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff5f57;
}

.dots i:nth-child(2) {
  background: #febc2e;
}

.dots i:nth-child(3) {
  background: #28c840;
}

.term-meter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.term-meter i {
  position: relative;
  width: 56px;
  height: 8px;
  overflow: hidden;
  border-radius: 2px;
  background: var(--dark-line);
}

.term-meter i::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--p, 0%);
  background: #e6e9ee;
  transition: width 0.3s;
  content: "";
}

.term-meter b {
  min-width: 30px;
  font-weight: 400;
  text-align: right;
}

.term-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: calc(100% - 36px);
  padding: 10px 14px;
  overflow: hidden;
}

.term-body p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.term .h {
  color: #7fb2ff;
}

.term .at {
  color: #7fb2ff;
}

.term .dim {
  color: #6b727d;
}

.caret::after {
  color: #7fb2ff;
  animation: blink 1s steps(1) infinite;
  content: "▍";
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* Meeting bot */
.call {
  position: absolute;
  inset: 14px 14px 58px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 12px;
}

.call-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 6px;
  border-radius: 12px;
  background: #202124;
}

.call-grid > span {
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #3c4043;
  color: #e8eaed;
  font-size: 13px;
  font-weight: 500;
}

.call-bot {
  align-content: center;
  gap: 4px;
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity 0.4s,
    transform 0.4s var(--ease);
}

.call-bot em {
  font-size: 12px;
  font-style: normal;
}

.call-bot::after {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ea4335;
  opacity: 0;
  transition: opacity 0.3s;
  content: "";
}

.call.is-joined .call-bot {
  opacity: 1;
  transform: none;
}

.call.is-rec .call-bot::after {
  opacity: 1;
  animation: pulse 1.6s infinite;
}

.call-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.call-steps li {
  padding-top: 8px;
  border-top: 2px solid #dfe2e6;
  color: var(--faint);
  font-size: 11.5px;
  line-height: 1.3;
  transition:
    color 0.3s,
    border-color 0.3s;
}

.call-steps li.is-done {
  border-color: var(--brand);
  color: var(--body);
}

.call-steps li.is-now {
  border-color: var(--brand);
  color: var(--ink);
}

/* Library */
.tile-shot img {
  position: absolute;
  top: 26px;
  left: 6%;
  width: 88%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgb(17 17 17 / 0.1);
  transition: transform 0.5s var(--ease);
}

.tile-shot:hover img {
  transform: translateY(-4px);
}

/* Record */
.rec {
  position: absolute;
  inset: 24px 26px 58px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rec-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.rec-head i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e5484d;
  animation: pulse 1.6s infinite;
}

.rec-head b {
  color: var(--ink);
  font: 500 22px var(--mono);
  letter-spacing: -0.02em;
}

.rec-track {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 40px;
  overflow: hidden;
}

.wave i {
  flex: 0 0 3px;
  height: var(--h, 4px);
  border-radius: 2px;
  background: var(--brand);
  transition: height 0.14s;
}

.rec-track + .rec-track .wave i {
  background: #9bbbe3;
}

.rec-note {
  align-self: flex-start;
  margin-top: 2px;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--body);
  font-size: 13px;
}

@keyframes pulse {
  50% {
    opacity: 0.35;
  }
}

/* ---------- Sections ---------- */

.section {
  max-width: calc(var(--wrap) + 2 * var(--gutter));
  margin: 160px auto 0;
  padding: 0 var(--gutter);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
}

.lede {
  max-width: 480px;
  margin-top: 20px;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.55;
}

.center {
  text-align: center;
}

.center .lede {
  margin-right: auto;
  margin-left: auto;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 64px;
  max-width: calc(var(--wrap) + 2 * var(--gutter));
  margin: 170px auto 0;
  padding: 0 var(--gutter);
}

.split-copy .actions {
  justify-content: flex-start;
}

.mini-facts {
  display: flex;
  gap: 32px;
  margin: 44px 0 0;
}

.mini-facts dt {
  font-size: 15px;
  font-weight: 500;
}

.mini-facts dd {
  margin: 2px 0 0;
  color: var(--faint);
  font-size: 13px;
}

.scope {
  position: relative;
}

.grain {
  position: relative;
  aspect-ratio: 1.34;
  overflow: hidden;
  border-radius: 4px;
  background: radial-gradient(
    130% 100% at 100% 100%,
    #062a52 0%,
    var(--brand) 40%,
    #6aa6e6 72%,
    #eef4fc 100%
  );
}

.grain::after {
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  mix-blend-mode: overlay;
  opacity: 0.55;
  content: "";
}

.grain i {
  position: absolute;
  z-index: 1;
  width: 14px;
  height: 14px;
  background: #fff;
}

.grain i:nth-child(1) {
  top: 0;
  left: 0;
}

.grain i:nth-child(2) {
  top: 18px;
  right: 18px;
}

.grain i:nth-child(3) {
  bottom: 18px;
  left: 18px;
}

.grain i:nth-child(4) {
  right: 0;
  bottom: 0;
}

.scope-card {
  position: absolute;
  top: 11%;
  right: 9%;
  left: 9%;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 60px rgb(0 30 70 / 0.28);
}

.scope-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.scope-list {
  margin: 0;
  padding: 6px 18px 10px;
  list-style: none;
}

.scope-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  animation: row-in 0.45s var(--ease) both;
}

.scope-list li:nth-child(2) {
  animation-delay: 70ms;
}

.scope-list li:nth-child(3) {
  animation-delay: 140ms;
}

.scope-list li:nth-child(4) {
  animation-delay: 210ms;
}

.scope-list li:last-child {
  border-bottom: 0;
}

.scope-list em {
  flex: none;
  padding: 4px 10px;
  border: 1px solid #cfd4da;
  border-radius: 999px;
  color: var(--body);
  font-size: 12.5px;
  font-style: normal;
}

.scope-list em.today {
  border-color: transparent;
  background: var(--wash);
  color: var(--brand);
}

@keyframes row-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 16px;
}

.tabs button {
  padding: 8px 14px;
  border: 0;
  border-radius: 999px;
  background: none;
  color: var(--muted);
  font: 450 14px var(--font);
  cursor: pointer;
}

.tabs [aria-selected="true"] {
  background: var(--sheet-2);
  color: var(--ink);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--wrap);
  margin: 160px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats > div {
  padding: 40px 0 44px 40px;
  border-left: 1px solid var(--line);
}

.stats > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.stats b {
  display: block;
  font-size: clamp(44px, 4.4vw, 64px);
  font-weight: 460;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
}

/* ---------- News ---------- */

.news-band {
  max-width: calc(var(--wrap) + 2 * var(--gutter));
  margin: 140px auto 0;
  padding: 0 var(--gutter);
}

.band-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}

.band-head h2 {
  font-size: 32px;
}

.more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  text-decoration: none;
}

.more svg {
  width: 14px;
  height: 14px;
}

.posts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.post {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.post-art {
  position: relative;
  text-decoration: none;
  display: grid;
  place-items: center;
  aspect-ratio: 1.9;
  overflow: hidden;
  border-radius: 10px;
  color: #fff;
  font-size: 24px;
  font-weight: 450;
  letter-spacing: -0.02em;
}

.post-art::after {
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  mix-blend-mode: overlay;
  opacity: 0.4;
  content: "";
}

.post-art span {
  position: relative;
  z-index: 1;
}

.art-ink {
  background: radial-gradient(
    55% 85% at 62% 55%,
    #07090d 0%,
    #18202b 35%,
    #4d5869 70%,
    #98a2b0 100%
  );
}

.art-blue {
  background: linear-gradient(90deg, var(--brand-hi) 0 38%, #052b56 38%);
}

.art-blue span {
  justify-self: end;
  width: 58%;
  padding-right: 12px;
  font-size: 19px;
  line-height: 1.15;
}

.art-cyan {
  background: conic-gradient(
    from 210deg at 55% 60%,
    #052648,
    #0d78c0,
    #6fd6e8,
    #0b4a86,
    #052648
  );
}

.art-mark {
  background: radial-gradient(
    70% 90% at 50% 60%,
    #0f1216 0%,
    #0f1216 45%,
    #124078 100%
  );
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.post-meta i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--faint);
}

.post-title {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 450;
  line-height: 1.4;
}

.post-title svg {
  width: 12px;
  height: 12px;
  margin-left: 4px;
  vertical-align: -1px;
  transition: transform 0.2s var(--ease);
}

.post:hover .post-title svg {
  transform: translateX(2px);
}

/* ---------- Get started ---------- */

.start {
  max-width: calc(var(--wrap) + 2 * var(--gutter));
  margin: 160px auto 0;
  padding: 0 var(--gutter);
}

.start > h2 {
  margin-bottom: 44px;
  font-size: 32px;
  text-align: center;
}

.start-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.start-card {
  display: flex;
  flex-direction: column;
  padding: 44px 40px 40px;
  border-radius: 24px;
  background: var(--sheet);
}

.start-card h3 {
  font-size: 26px;
  letter-spacing: -0.015em;
}

.start-card > p {
  margin-top: 10px;
  padding-bottom: 28px;
  border-bottom: 1px solid #dcdfe3;
  color: var(--ink-2);
  font-size: 17px;
}

.ticks {
  display: grid;
  gap: 14px;
  margin: 24px 0 40px;
  padding: 0;
  list-style: none;
}

.ticks li {
  display: flex;
  gap: 12px;
  color: var(--ink-2);
  font-size: 16px;
}

.ticks li::before {
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%239a9ea4' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 8.5l3 3 6-7'/%3E%3C/svg%3E")
    center / contain no-repeat;
  content: "";
}

.start-card .btn {
  margin-top: auto;
}

/* ---------- Inner pages ---------- */

.page-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 96px var(--gutter) 0;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(40px, 4.4vw, 62px);
  line-height: 1.05;
}

.page-hero .lede {
  max-width: 600px;
  margin: 22px auto 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  padding: 32px 30px 34px;
  border-radius: var(--radius);
  background: var(--sheet);
}

.card h3 {
  font-size: 22px;
  letter-spacing: -0.015em;
}

.card p {
  margin-top: 12px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.55;
}

.card .num {
  display: block;
  margin-bottom: 26px;
  color: #c2c6cb;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}

.card-link {
  display: inline-flex;
  gap: 6px;
  margin-top: 22px;
  color: var(--faint);
  font-size: 14px;
  text-decoration: none;
}

.card-link:hover {
  color: var(--ink);
}

.joined {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sheet);
}

.joined .card {
  border-radius: 0;
  background: none;
}

.joined .card + .card {
  border-left: 1px solid #e6e8eb;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  display: grid;
  grid-template-columns: 40px 1fr;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: step;
}

.steps li:first-child {
  padding-top: 0;
}

.steps li::before {
  color: var(--faint);
  font-size: 18px;
  content: counter(step);
}

.steps b {
  display: block;
  font-size: 17px;
  font-weight: 500;
}

.steps p {
  margin-top: 6px;
  color: var(--body);
  font-size: 15px;
}

.rule {
  max-width: var(--wrap);
  margin: 140px auto 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.cta-band {
  position: relative;
  max-width: var(--wrap);
  margin: 160px auto 0;
  padding: 88px 40px;
  overflow: hidden;
  border-radius: 24px;
  background: radial-gradient(
    120% 140% at 85% 100%,
    #062a52 0%,
    var(--brand) 45%,
    #3d8ae0 100%
  );
  color: #fff;
  text-align: center;
}

.cta-band::after {
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  mix-blend-mode: overlay;
  opacity: 0.45;
  pointer-events: none;
  content: "";
}

.cta-band p {
  max-width: 520px;
  margin: 16px auto 0;
  color: rgb(255 255 255 / 0.82);
  font-size: 18px;
}

.cta-band .btn-primary {
  background: #fff;
  color: var(--brand);
}

.cta-band .btn-quiet {
  background: rgb(255 255 255 / 0.14);
  color: #fff;
}

/* Company */
.company-hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  max-width: calc(var(--wrap) + 2 * var(--gutter));
  margin: 0 auto;
  padding: 96px var(--gutter) 0;
}

.company-hero h1 {
  font-size: clamp(40px, 4.4vw, 62px);
  line-height: 1.05;
}

.company-hero .actions {
  justify-content: flex-start;
}

.link-rows {
  align-self: center;
}

.link-rows a {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.link-rows a:first-child {
  padding-top: 0;
}

.link-rows b {
  font-size: 17px;
  font-weight: 500;
}

.link-rows span {
  grid-column: 1;
  margin-top: 2px;
  color: var(--muted);
  font-size: 14px;
}

.link-rows svg {
  grid-row: 1 / 3;
  grid-column: 2;
  width: 16px;
  height: 16px;
  color: var(--faint);
  transition: color 0.15s;
}

.link-rows a:hover svg {
  color: var(--ink);
}

.progress {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  max-width: var(--wrap);
  margin: 72px auto 0;
}

.progress-year {
  color: #c2c6cb;
  font-size: 64px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.progress ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.progress a {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  text-decoration: none;
}

.progress a:hover span {
  color: var(--brand);
}

.progress time {
  flex: none;
  color: var(--muted);
  font-size: 13px;
}

/* News page */
.art-sky {
  background: linear-gradient(160deg, #eaf2fd 0%, #b9d6f7 45%, #5c9de4 100%);
  color: #06305e;
}

.list-head {
  margin-bottom: 20px;
  font-size: 32px;
}

.featured {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: center;
  gap: 56px;
  max-width: calc(var(--wrap) + 2 * var(--gutter));
  margin: 0 auto;
  padding: 72px var(--gutter) 0;
}

.featured time {
  color: var(--muted);
  font-size: 14px;
}

.featured h1 {
  margin-top: 18px;
  font-size: clamp(36px, 3.6vw, 52px);
  line-height: 1.06;
}

.featured p {
  margin-top: 18px;
  color: var(--ink-2);
  font-size: 18px;
}

.featured .btn {
  margin-top: 28px;
}

.featured .post-art {
  aspect-ratio: 1.9;
  border-radius: 16px;
  font-size: clamp(32px, 3.6vw, 52px);
}

.rows {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rows .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 32px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.row-title {
  font-size: 16px;
  font-weight: 500;
}

.row-title em {
  margin-left: 8px;
  color: var(--faint);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
}

.row-sub {
  grid-column: 1;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rows time {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: center;
  color: var(--muted);
  font-size: 13px;
}

.rows .row:target .row-title {
  color: var(--brand);
}

/* ---------- Brand marks ---------- */

.stack {
  display: inline-flex;
  flex: none;
  margin-right: 10px;
  vertical-align: middle;
}

.stack img,
.stack.glyph svg {
  width: 24px;
  height: 24px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  object-fit: contain;
}

.stack img + img {
  margin-left: -6px;
}

.stack.glyph svg {
  color: var(--body);
}

.scope-list li > span {
  display: inline-flex;
  align-items: center;
}

.mini-facts dt {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.call-app {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px 3px 5px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.92);
  color: var(--ink-2);
  font-size: 11.5px;
  font-weight: 500;
}

.call-app img {
  width: 14px;
  height: 14px;
}

.brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.brand-chips li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px 4px 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-2);
  font-size: 12.5px;
}

.brand-chips.plain li {
  padding-left: 10px;
}

.brand-chips img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* ---------- The Clario page ---------- */

/* Reviews: while the heading stays pinned, scrolling brings one review, then another, then the
   rest, and the columns drift apart as they fill (site.js) */
.love {
  position: relative;
  max-width: calc(var(--wrap) + 2 * var(--gutter));
  height: 320vh;
  margin: 140px auto 0;
  padding: 0 var(--gutter);
}

.love-pin {
  position: sticky;
  top: 64px;
  display: flex;
  flex-direction: column;
  height: calc(100svh - 64px);
  padding: 28px 0 24px;
}

.love-pin h2 {
  margin: 0 0 28px;
  text-align: center;
}

.love-stage {
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.love-wall {
  position: absolute;
  inset: 0 28px;
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  align-items: center;
  gap: 16px;
  mask-image: linear-gradient(transparent, #000 9%, #000 91%, transparent);
}

.love-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.love-card {
  margin: 0;
  padding: 22px 22px 18px;
  border: 1px solid rgb(17 17 17 / 0.06);
  border-radius: 18px;
  background: #fff;
  box-shadow:
    0 1px 2px rgb(17 17 17 / 0.05),
    0 18px 40px -24px rgb(0 30 70 / 0.3);
}

.love-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.5;
}

.love-card figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13.5px;
}

.love-card figcaption img {
  width: 36px;
  height: 36px;
  flex: none;
  border-radius: 50%;
  background: var(--wash);
}

@media (max-width: 720px) {
  .love {
    height: 300vh;
  }

  .love-wall {
    inset: 0 10px;
    gap: 10px;
  }

  .love-col {
    gap: 10px;
  }

  .love-card {
    padding: 16px 14px 14px;
  }

  .love-card blockquote {
    font-size: 14px;
  }

  .love-card figcaption {
    font-size: 12.5px;
  }

  .love-card figcaption img {
    width: 30px;
    height: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .love {
    height: auto;
  }

  .love-pin {
    position: static;
    height: 760px;
  }
}

/* Pinned steps (meeting kinds, the phone): the heading pins, and scrolling walks down the list
   while the stage beside it changes. site.js sets the height from the number of steps. */
.pinned {
  position: relative;
  max-width: calc(var(--wrap) + 2 * var(--gutter));
  height: calc(60vh * var(--steps, 3) + 60vh);
  margin: 140px auto 0;
  padding: 0 var(--gutter);
}

.pinned-pin {
  position: sticky;
  top: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: calc(100svh - 64px);
  padding: 24px 0;
}

.pinned-pin h2 {
  margin: 0 0 44px;
}

.pinned-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr);
  align-items: center;
  gap: 64px;
}

.pinned-list {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pinned-list button {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px 0 14px;
  border: 0;
  background: none;
  color: var(--faint);
  font: 460 clamp(26px, 2.6vw, 36px) / 1.15 var(--font);
  letter-spacing: -0.015em;
  text-align: left;
  cursor: pointer;
  transition: color 0.35s var(--ease);
}

.pinned-list button::after {
  position: absolute;
  bottom: 4px;
  left: 0;
  width: calc(var(--fill, 0) * 100%);
  max-width: 320px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
  content: "";
}

.pinned-list button.is-active {
  color: var(--ink);
}

.pinned-stage {
  display: grid;
  place-items: center;
  height: clamp(340px, 52vh, 470px);
  padding: clamp(24px, 4vw, 56px);
}

.pinned-stage .note-card {
  width: 100%;
  max-width: 540px;
}

.pinned-stage .note-card li {
  font-size: 16.5px;
}

/* Things that arrive as they come into view, one after another (site.js adds .reveal) */
.reveal > *,
.reveal-self {
  transition:
    opacity 0.6s var(--ease) calc(var(--i, 0) * 70ms),
    transform 0.7s var(--ease) calc(var(--i, 0) * 70ms);
}

.reveal:not(.is-in) > *,
.reveal-self:not(.is-in) {
  opacity: 0;
  transform: translateY(26px);
}

/* The phone: a drawn handset whose screen follows the step (data-step on the section) */
[data-pocket] .pinned-stage {
  display: flex;
  justify-content: center;
  align-items: center;
  height: clamp(440px, 64vh, 580px);
  padding: 24px;
}

.phone {
  height: 100%;
  aspect-ratio: 9 / 18.5;
  padding: 9px;
  border-radius: 44px;
  background: #0f1216;
  box-shadow:
    0 2px 4px rgb(17 17 17 / 0.1),
    0 40px 80px -30px rgb(0 30 70 / 0.5);
}

.phone-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 36px;
  background: #fff;
}

.phone-screen::before {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 84px;
  height: 24px;
  border-radius: 999px;
  background: #0f1216;
  transform: translateX(-50%);
  content: "";
}

.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 22px 0 26px;
  font-size: 13px;
}

.phone-net svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.2;
}

.phone-net .net-off {
  display: none;
  fill: currentColor;
  stroke: none;
}

.phone-app {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 18px 18px;
}

.phone-title {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
}

.phone-rec {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 500 30px var(--mono);
  letter-spacing: -0.02em;
  transition: font-size 0.5s var(--ease);
}

.phone-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e5484d;
  animation: bx-rec 1.4s ease-in-out infinite;
}

.phone-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 56px;
  transition: height 0.5s var(--ease);
}

.phone-wave i {
  flex: 1;
  height: 30%;
  border-radius: 2px;
  background: var(--brand);
  animation: phone-wave 1.1s ease-in-out infinite alternate;
}

.phone-wave i:nth-child(3n) {
  animation-duration: 0.8s;
}

.phone-wave i:nth-child(4n + 1) {
  animation-duration: 1.4s;
  animation-delay: -0.4s;
}

.phone-wave i:nth-child(5n + 2) {
  animation-duration: 0.95s;
  animation-delay: -0.7s;
}

@keyframes phone-wave {
  to {
    height: 100%;
  }
}

.phone-chip {
  align-self: flex-start;
  margin: 4px 0 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--wash);
  color: var(--brand);
  font-size: 11.5px;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.phone-chip .chip-off {
  display: none;
}

.phone-lines {
  display: grid;
  gap: 10px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.phone-lines li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 8px;
  font-size: 13.5px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.45s var(--ease) calc(var(--i, 0) * 140ms),
    transform 0.55s var(--ease) calc(var(--i, 0) * 140ms);
}

.phone-lines time {
  color: var(--faint);
  font: 11.5px var(--mono);
  line-height: 1.7;
}

.phone-lines li:nth-child(2) {
  --i: 1;
}

.phone-lines li:nth-child(3) {
  --i: 2;
}

/* Step two: the recording shrinks and the words arrive; step three adds the last line offline */
[data-step="1"] .phone-rec,
[data-step="2"] .phone-rec {
  font-size: 20px;
}

[data-step="1"] .phone-wave,
[data-step="2"] .phone-wave {
  height: 28px;
}

[data-step="1"] .phone-chip,
[data-step="2"] .phone-chip,
[data-step="1"] .phone-lines li:nth-child(-n + 3),
[data-step="2"] .phone-lines li {
  opacity: 1;
  transform: none;
}

[data-step="2"] .phone-net .net-on,
[data-step="2"] .phone-chip .chip-on {
  display: none;
}

[data-step="2"] .phone-net .net-off,
[data-step="2"] .phone-chip .chip-off {
  display: inline;
}

[data-step="2"] .phone-chip {
  background: #fff4d6;
  color: #8a6100;
}

@media (max-width: 960px) {
  .pinned-pin {
    justify-content: flex-start;
    padding-top: 32px;
  }

  .pinned-pin h2 {
    margin-bottom: 20px;
  }

  .pinned-body {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .pinned-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
  }

  .pinned-list button {
    width: auto;
    padding: 6px 0 10px;
    font-size: 18px;
  }

  .pinned-stage {
    height: 300px;
    padding: 18px;
  }

  [data-pocket] .pinned-stage {
    height: min(480px, 58svh);
    padding: 16px;
  }

  .phone-app {
    padding: 22px 14px 14px;
  }

  .phone-lines li {
    font-size: 12.5px;
  }

  .pinned-stage .note-card li {
    font-size: 14.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pinned {
    height: auto;
  }

  .pinned-pin {
    position: static;
    height: auto;
  }
}

/* Integrations: two rows of app cards that drift past, as on otter.ai */
.integrations {
  margin-top: 170px;
}

.marquees {
  display: grid;
  gap: 16px;
  margin-top: 48px;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: drift 70s linear infinite;
}

.marquee.reverse .marquee-track {
  animation-direction: reverse;
}

.marquees:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes drift {
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.marquee .app {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 440px;
  padding: 24px 26px;
  border-radius: 20px;
  background: var(--sheet);
}

.app img {
  width: 36px;
  height: 36px;
  flex: none;
  object-fit: contain;
}

.app b {
  display: block;
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 460;
  letter-spacing: -0.01em;
}

.app span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.orbit-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.orbit-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-height: 460px;
  padding: 36px;
  overflow: hidden;
  border-radius: 24px;
}

.orbit-card h3 {
  font-size: 26px;
}

.orbit-card p {
  max-width: 460px;
  margin-top: 10px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.55;
}

.orbit-ai {
  background:
    radial-gradient(
      60% 70% at 50% 85%,
      rgb(61 138 224 / 0.35),
      transparent 70%
    ),
    radial-gradient(
      50% 60% at 85% 100%,
      rgb(236 105 221 / 0.18),
      transparent 70%
    ),
    var(--sheet);
}

.orbit-calls {
  background:
    radial-gradient(
      60% 70% at 50% 85%,
      rgb(40 200 170 / 0.22),
      transparent 70%
    ),
    radial-gradient(
      50% 60% at 15% 100%,
      rgb(61 138 224 / 0.25),
      transparent 70%
    ),
    var(--sheet);
}

.orbit {
  position: relative;
  align-self: center;
  width: 300px;
  height: 230px;
}

.orb-core,
.orb {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 14px 34px rgb(0 30 70 / 0.14);
}

.orb-core {
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 104px;
  height: 104px;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 10px rgb(255 255 255 / 0.45),
    0 20px 50px rgb(0 60 140 / 0.25);
}

.orb {
  width: 78px;
  height: 78px;
  animation: bob 6s ease-in-out infinite;
}

.orb img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.orb-0 {
  top: 0;
  left: 12px;
}

.orb-1 {
  top: 6px;
  right: 8px;
  animation-delay: -1.5s;
}

.orb-2 {
  bottom: 0;
  left: 30px;
  animation-delay: -3s;
}

.orb-3 {
  right: 26px;
  bottom: 4px;
  animation-delay: -4.5s;
}

@keyframes bob {
  50% {
    transform: translateY(-8px);
  }
}

.p-hero {
  max-width: 1000px;
  margin: 0 auto;
  padding: 88px var(--gutter) 0;
  text-align: center;
}

.crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.crumb img {
  width: 20px;
  height: 20px;
}

.crumb i {
  color: var(--faint);
  font-style: normal;
}

.crumb span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.p-hero h1 {
  margin: 26px 0 22px;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 440;
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.p-hero .lede {
  max-width: 620px;
  margin: 0 auto;
  font-size: 19px;
}

.btn svg.os {
  width: 15px;
  height: 15px;
  fill: currentColor;
  stroke: none;
}

.fine {
  margin-top: 16px;
  color: var(--faint);
  font-size: 13px;
  text-align: center;
}

.sky,
.story-stage,
.speech,
.love-stage,
.pinned-stage {
  position: relative;
  border-radius: 28px;
  background:
    radial-gradient(120% 90% at 85% 0%, rgb(61 138 224 / 0.3), transparent 60%),
    radial-gradient(90% 70% at 0% 100%, rgb(0 92 177 / 0.12), transparent 60%),
    linear-gradient(180deg, #d6e6fb 0%, #e9f1fd 55%, #f4f8fd 100%);
}

.stage {
  width: min(1440px, 100% - 48px);
  margin: 64px auto 0;
}

.sky {
  padding: clamp(18px, 4.4vw, 72px);
}

.window {
  overflow: hidden;
  border: 1px solid rgb(17 17 17 / 0.08);
  border-radius: 14px;
  background: #fff;
  box-shadow:
    0 1px 2px rgb(17 17 17 / 0.06),
    0 40px 90px -40px rgb(0 30 70 / 0.42);
}

.window video {
  width: 100%;
  aspect-ratio: 1920 / 1200;
  background: #fff;
  transform: scale(1.16);
}

.chapters {
  display: grid;
  grid-auto-columns: minmax(0, 1fr);
  grid-auto-flow: column;
  gap: 16px;
  margin: 20px auto 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  list-style: none;
}

.chapters button {
  display: grid;
  gap: 10px;
  width: 100%;
  padding: 0 0 4px;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.chapters button > i {
  order: -1;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.chapters button > i::before {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--brand);
  transform: scaleX(var(--played, 0));
  transform-origin: left;
  content: "";
}

.chapters button[data-current] {
  color: var(--ink);
}

.story {
  max-width: calc(var(--wrap) + 2 * var(--gutter));
  margin: 160px auto 0;
  padding: 0 var(--gutter);
}

.story-head {
  margin-bottom: 48px;
}

.story-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr);
  gap: 64px;
}

.step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 64vh;
  opacity: 0.25;
  transition: opacity 0.45s var(--ease);
}

.step.is-active {
  opacity: 1;
}

/* As tall as the stage beside it (1.45 times as wide, at 16 / 10.6), so the first step's text sits at its middle. */
.step:first-child {
  min-height: 0;
  aspect-ratio: 16 / 15.37;
}

.step h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 30px;
  font-weight: 460;
}

.step h3 svg {
  width: 26px;
  height: 26px;
  flex: none;
}

.step > p {
  max-width: 440px;
  margin-top: 14px;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.55;
}

.step .ticks {
  margin: 20px 0 0;
  gap: 10px;
}

.step .ticks li {
  font-size: 15px;
}

.story-stage {
  position: sticky;
  top: max(90px, calc(50vh - 230px));
  align-self: start;
  aspect-ratio: 16 / 10.6;
}

.scene {
  position: absolute;
  inset: 28px;
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease);
}

.scene.is-active {
  opacity: 1;
  transform: none;
}

.scene > .window,
.scene > .panel-ui {
  height: 100%;
}

.scene > .window video {
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.stage-note {
  position: absolute;
  bottom: -30px;
  left: 4px;
  color: var(--faint);
  font-size: 12px;
}

.panel-ui {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgb(17 17 17 / 0.08);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 40px 90px -40px rgb(0 30 70 / 0.42);
}

.ui-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.ui-app {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding: 3px 10px 3px 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
}

.ui-app img {
  width: 16px;
  height: 16px;
}

.ui-meter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  font: 12px var(--mono);
}

.ui-meter i {
  position: relative;
  width: 72px;
  height: 6px;
  overflow: hidden;
  border-radius: 3px;
  background: var(--sheet-2);
}

.ui-meter i::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--p, 0%);
  background: var(--brand);
  transition: width 0.3s;
  content: "";
}

.rec-ui .rec {
  position: static;
  flex: 1;
  justify-content: center;
  gap: 22px;
  padding: 28px 32px;
}

.rec-ui .rec-head b {
  font-size: 30px;
}

.rec-ui .wave {
  height: 64px;
}

.rec-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rec-chips span {
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--body);
  font-size: 13px;
}

.transcript {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: 20px 26px 26px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0, #000 80px);
}

.transcript p {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.5;
  animation: row-in 0.4s var(--ease) both;
}

.transcript time {
  padding-top: 2px;
  color: var(--faint);
  font: 12px var(--mono);
}

.chat.chat-lg {
  position: relative;
  inset: auto;
  flex: 1;
  padding: 20px 24px;
}

.chat-lg .bubble {
  font-size: 15px;
}

.ui-input {
  margin: 0 20px 20px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--faint);
  font-size: 14px;
}

.tasks {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 16px 20px 0;
  list-style: none;
}

.tasks li {
  display: grid;
  grid-template-columns: 20px 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 12px 6px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.tasks i {
  width: 18px;
  height: 18px;
  border: 1.5px solid #c3c8cf;
  border-radius: 5px;
  transition:
    background-color 0.25s,
    border-color 0.25s;
}

.tasks li.is-done i {
  border-color: var(--brand);
  background: var(--brand)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 8.5l3 3 6-7'/%3E%3C/svg%3E")
    center / 12px no-repeat;
}

.tasks li.is-done span {
  color: var(--muted);
  text-decoration: line-through;
}

.tasks em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.tasks b {
  padding: 1px 8px;
  border-radius: 999px;
  background: var(--wash);
  color: var(--brand);
  font: 500 11.5px/1.6 var(--mono);
}

.share {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: auto 20px 20px;
  padding: 14px 16px;
  border: 1px solid #cfe0f6;
  border-radius: 12px;
  background: var(--wash);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease);
}

.share.is-shown {
  opacity: 1;
  transform: none;
}

.share-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
}

.share b {
  display: block;
  font-size: 14px;
  font-weight: 500;
}

.share div span {
  color: var(--muted);
  font-size: 13px;
}

.trust {
  max-width: var(--wrap);
  margin: 190px auto 0;
  padding: 72px 64px;
  border-radius: 28px;
  background: var(--dark);
  color: #fff;
}

.trust .eyebrow {
  color: #8a93a0;
}

.trust h2 span {
  color: #8a93a0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.trust-grid article {
  padding-top: 22px;
  border-top: 1px solid var(--dark-line);
}

.trust-grid b {
  font-size: 17px;
  font-weight: 500;
}

.trust-grid p {
  margin-top: 10px;
  color: #aab1bb;
  font-size: 15px;
  line-height: 1.55;
}

.trust-grid a {
  display: inline-block;
  margin-top: 14px;
  color: #8fb8e8;
  font-size: 14px;
  text-decoration: none;
}

.band-head .lede {
  margin-top: 12px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 40px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.features li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 3px 14px;
}

.features svg {
  grid-row: span 2;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  color: var(--ink-2);
}

.features b {
  font-size: 15px;
  font-weight: 500;
}

.features span {
  color: var(--muted);
  font-size: 14px;
}

.start-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: start;
}

.start-steps li {
  padding: 28px 28px 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  counter-increment: start;
}

.start-steps li::before {
  display: block;
  margin-bottom: 18px;
  color: var(--faint);
  font-size: 14px;
  content: counter(start, decimal-leading-zero);
}

.start-steps b {
  font-size: 20px;
  font-weight: 480;
}

.start-steps p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
}

.get-started .actions {
  margin-top: 36px;
}

.aside-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 44px 48px;
  border-radius: 24px;
  background: var(--sheet);
}

.aside-band h3 {
  font-size: 26px;
}

.aside-band p {
  max-width: 520px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 16px;
}

.aside-band .actions {
  flex: none;
  margin: 0;
}

/* Clario's own speech model */
.speech {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 56px;
  max-width: var(--wrap);
  margin: 190px auto 0;
  padding: 64px;
}

.speech .ticks {
  margin: 28px 0 0;
}

.lang-body {
  padding: 28px 28px 30px;
}

.lang-track {
  position: relative;
  display: flex;
  gap: 3px;
  height: 64px;
}

.seg {
  display: flex;
  flex: 1 1 0;
  align-items: flex-end;
  min-width: 0;
  padding: 8px 10px;
  overflow: hidden;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.seg.en {
  background: #dbe8fb;
  color: var(--brand-deep);
}

.seg.hi {
  background: #ffe2c7;
  color: #8f4508;
}

.seg.mix {
  background: linear-gradient(90deg, #dbe8fb, #ffe2c7);
  color: var(--ink-2);
}

.playhead {
  position: absolute;
  top: -8px;
  bottom: -8px;
  left: 0;
  width: 2px;
  border-radius: 1px;
  background: var(--ink);
  animation: sweep 14s linear infinite;
}

@keyframes sweep {
  to {
    left: 100%;
  }
}

.lang-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: var(--faint);
  font: 11px var(--mono);
}

.lang-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 0;
}

.lang-facts div {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.lang-facts dt {
  color: var(--muted);
  font-size: 12px;
}

.lang-facts dd {
  margin: 4px 0 0;
  font-size: 14px;
}

.lang-where {
  border-color: #cfe0f6;
  background: var(--wash);
  color: var(--brand);
}

/* How Clario compares */
.compare-wrap {
  margin-top: 48px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.vs {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
  font-size: 14px;
}

.vs th,
.vs td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.vs tr:last-child th,
.vs tr:last-child td {
  border-bottom: 0;
}

.vs thead th {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.vs thead th img {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: -4px;
  object-fit: contain;
}

.vs tbody th {
  width: 22%;
  font-weight: 500;
}

.vs td {
  color: var(--body);
}

.vs .us {
  background: var(--wash);
  color: var(--ink);
}

.vs thead .us {
  color: var(--brand);
}

.vs .yes::before,
.vs .no::before {
  display: inline-block;
  width: 16px;
  margin-right: 6px;
  font-weight: 600;
}

.vs .yes::before {
  color: var(--brand);
  content: "✓";
}

.vs .no::before {
  color: var(--faint);
  content: "—";
}

.vs .ns {
  color: var(--faint);
}

.vs-note a {
  color: var(--muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.vs-note {
  margin-top: 14px;
  color: var(--faint);
  font-size: 12.5px;
  line-height: 1.5;
}

/* Reviews, the way otter.ai lays them out: one grid of different cards */
.proof-head {
  max-width: 720px;
}

.proof-head .lede {
  margin-top: 12px;
}

.bento-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(240px, auto);
  gap: 20px;
  margin-top: 44px;
}

.proof-card {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 32px;
  overflow: hidden;
  border-radius: 24px;
  color: inherit;
  text-decoration: none;
  isolation: isolate;
}

.proof-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--noise);
  mix-blend-mode: overlay;
  opacity: 0.35;
  pointer-events: none;
  content: "";
}

.proof-quote {
  grid-row: span 2;
  justify-content: space-between;
  background:
    radial-gradient(
      90% 60% at 80% 10%,
      rgb(61 138 224 / 0.55),
      transparent 60%
    ),
    radial-gradient(70% 60% at 10% 100%, rgb(0 92 177 / 0.5), transparent 65%),
    #070b12;
  color: #fff;
}

.proof-mark {
  width: 29px;
  height: 40px;
}

.proof-quote blockquote {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 430;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.proof-quote figcaption {
  margin-top: 18px;
  color: #9aa6b6;
  font-size: 14px;
}

.proof-model {
  gap: 10px;
  background:
    radial-gradient(
      80% 90% at 90% 0%,
      rgb(255 180 120 / 0.55),
      transparent 60%
    ),
    radial-gradient(
      90% 90% at 0% 100%,
      rgb(61 138 224 / 0.45),
      transparent 65%
    ),
    #c9d7ea;
  color: #0e1a2b;
}

.proof-model b {
  font-size: 26px;
  font-weight: 460;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.proof-model > span:not(.proof-kicker) {
  max-width: 420px;
  color: #26364c;
  font-size: 15px;
  line-height: 1.5;
}

.proof-model em {
  margin-top: auto;
  font-size: 14px;
  font-style: normal;
  text-decoration: underline;
}

.proof-kicker {
  color: inherit;
  font-size: 14px;
  opacity: 0.75;
}

.proof-stat {
  gap: 8px;
  background:
    radial-gradient(
      90% 90% at 100% 100%,
      rgb(205 90 80 / 0.7),
      transparent 60%
    ),
    radial-gradient(80% 90% at 0% 0%, rgb(120 110 200 / 0.55), transparent 65%),
    #8c93b8;
  color: #fff;
}

.proof-stat-2 {
  background:
    radial-gradient(
      90% 90% at 0% 100%,
      rgb(30 150 130 / 0.65),
      transparent 60%
    ),
    radial-gradient(80% 90% at 100% 0%, rgb(61 138 224 / 0.6), transparent 65%),
    #6e9bbf;
}

.proof-stat b {
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
}

.proof-stat > span:last-child {
  max-width: 420px;
  margin-top: auto;
  font-size: 15px;
  line-height: 1.5;
}

.bento-proof .review {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 32px 28px;
  border: 0;
  border-radius: 24px;
  background: var(--sheet);
}

.bento-proof .review blockquote {
  font-size: 19px;
  line-height: 1.45;
}

.review figcaption img {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.review {
  position: relative;
  margin: 0;
  padding: 44px 28px 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.review blockquote {
  margin: 0 0 22px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.55;
}

.review figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.review figcaption i {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sheet-2);
  color: var(--ink);
  font-style: normal;
  font-weight: 500;
}

.sample {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 2px 8px;
  border: 1px dashed #c3c8cf;
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
}

/* On narrow screens each scene sits under its own step instead of beside them all. */
.story.is-inline .story-body {
  grid-template-columns: 1fr;
  gap: 0;
}

.story.is-inline .story-stage {
  display: none;
}

.story.is-inline .step {
  min-height: 0;
  aspect-ratio: auto;
  padding: 36px 0;
  opacity: 1;
}

.story.is-inline .scene {
  position: relative;
  inset: auto;
  aspect-ratio: 16 / 11;
  margin-top: 24px;
  opacity: 1;
  transform: none;
}

/* Product page */
.film-note {
  margin-top: 14px;
  color: var(--faint);
  font-size: 13px;
  text-align: center;
}

.section > .center + .feature-cards {
  margin-top: 48px;
}

.film {
  max-width: 1040px;
  margin: 56px auto 0;
  padding: 0 var(--gutter);
}

.film-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--sheet);
  box-shadow: 0 30px 80px rgb(17 17 17 / 0.12);
}

.film video {
  width: 100%;
  aspect-ratio: 1689 / 1056;
  object-fit: cover;
  transform: scale(1.137);
}

.feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-cards .card {
  display: flex;
  flex-direction: column;
  min-height: 460px;
  padding-bottom: 0;
  overflow: hidden;
}

.feature-cards .card p {
  max-width: 440px;
}

.feature-cards .shot {
  margin: 28px -30px 0 0;
  padding-left: 0;
}

.feature-cards .shot img {
  border: 1px solid var(--line);
  border-radius: 10px 0 0;
  box-shadow: 0 12px 36px rgb(17 17 17 / 0.08);
}

.feature-cards .card .call {
  position: relative;
  inset: auto;
  height: 250px;
  margin-top: 28px;
}

.note-card {
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 60px rgb(17 17 17 / 0.08);
}

.note-card h4 {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.note-card ul {
  display: grid;
  gap: 12px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.note-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  animation: row-in 0.45s var(--ease) both;
}

.note-card li:nth-child(2) {
  animation-delay: 80ms;
}

.note-card li:nth-child(3) {
  animation-delay: 160ms;
}

.note-card li .src {
  flex: none;
  align-self: center;
}

.prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 880px;
  margin: 48px auto 0;
}

.price {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--sheet);
}

.price small {
  color: var(--muted);
  font-size: 14px;
}

.price b {
  display: block;
  margin-top: 16px;
  font-size: 44px;
  font-weight: 460;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price b span {
  margin-left: 6px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
}

.price .btn {
  margin: 24px 0 26px;
}

.price .ticks {
  margin: 0;
}

.price .ticks li {
  font-size: 15px;
}

.faq {
  max-width: 820px;
  margin: 48px auto 0;
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  font-size: 17px;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.2s var(--ease);
  content: "+";
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 680px;
  padding: 0 0 24px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.6;
}

.faq a {
  color: var(--brand);
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: calc(var(--wrap) + 2 * var(--gutter));
  margin: 0 auto;
  padding: 96px var(--gutter) 0;
}

.contact h1 {
  font-size: clamp(40px, 4.4vw, 62px);
  line-height: 1.05;
}

.contact .ticks {
  margin-top: 36px;
}

.mail-card {
  padding: 40px;
  border-radius: 24px;
  background: var(--sheet);
}

.mail-card h2 {
  font-size: 26px;
}

.mail-card .addr {
  display: block;
  margin-top: 14px;
  color: var(--brand);
  font-size: 22px;
  text-decoration: none;
}

.mail-card dl {
  margin: 32px 0 0;
  padding-top: 24px;
  border-top: 1px solid #dcdfe3;
}

.mail-card dt {
  color: var(--muted);
  font-size: 14px;
}

.mail-card dd {
  margin: 6px 0 18px;
  color: var(--ink-2);
  font-size: 16px;
}

.aside-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.aside-card p {
  color: var(--ink-2);
  font-size: 15px;
}

/* ---------- Footer ---------- */

.foot {
  position: relative;
  margin-top: 160px;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.foot-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2.6fr);
  gap: 56px;
  max-width: calc(var(--wrap) + 2 * var(--gutter));
  margin: 0 auto;
  padding: 64px var(--gutter) 40px;
}

.foot-logo {
  gap: 10px;
  font-size: 24px;
}

.live-mark {
  display: inline-block;
  line-height: 0;
}

.foot-live img {
  width: 36px;
  height: 46px;
  margin: -4px -2px;
}

.final-band .live-mark {
  display: block;
}

.final-band .live-mark img {
  width: 58px;
  height: 75px;
  margin: 0 auto;
}

.foot-tag {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.foot-badges {
  display: flex;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.foot-badges li {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 3px;
  width: 84px;
  height: 84px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  text-align: center;
}

.foot-badges svg {
  width: 20px;
  height: 20px;
  margin-bottom: 3px;
  fill: none;
  stroke: var(--brand);
  stroke-width: 1.4;
}

.foot-badges b {
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.foot-badges span {
  color: var(--muted);
  font-size: 10.5px;
}

.foot-find {
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
}

.foot-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.foot-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-2);
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    color 0.2s var(--ease);
}

.foot-social a:hover,
.foot-social a:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.foot-social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.foot-social svg.is-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.foot-social svg.is-line .dot {
  fill: currentColor;
  stroke: none;
}

.foot-legal {
  max-width: 240px;
  margin-top: 26px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.foot-cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.foot-cols p {
  margin-bottom: 18px;
  color: var(--ink);
  font: 500 12px/1.4 var(--font);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.foot-cols a {
  display: block;
  padding: 6px 0;
  color: var(--body);
  font-size: 16px;
  text-decoration: none;
  transition: color 0.15s;
}

.foot-cols a + p {
  margin-top: 30px;
}

.foot-cols a:hover {
  color: var(--brand);
}

/* The wordmark: EMIAC's gradient clipped to the letters, drifting slowly. */
.foot-mark {
  position: relative;
  margin-top: 24px;
  padding: 0 var(--gutter);
  text-align: center;
  user-select: none;
}

.foot-mark span {
  position: relative;
  display: block;
  margin-bottom: -0.05em;
  background:
    radial-gradient(
      26% 50% at 20% 18%,
      rgb(255 200 170 / 0.4),
      transparent 70%
    ),
    radial-gradient(
      45% 90% at 80% 10%,
      rgb(120 215 240 / 0.85),
      transparent 65%
    ),
    linear-gradient(
      100deg,
      #0b47a6 0%,
      #005cb1 22%,
      #2f86e6 45%,
      #7fa6ff 66%,
      #a79bff 82%,
      #1f6fd6 100%
    );
  background-size:
    200% 100%,
    200% 100%,
    200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font: 700 clamp(96px, 25.5vw, 440px) / 0.8 var(--font);
  letter-spacing: -0.055em;
  animation: mark-drift 16s ease-in-out infinite alternate;
}

@keyframes mark-drift {
  from {
    background-position:
      0 0,
      100% 0,
      0 0;
  }

  to {
    background-position:
      100% 0,
      0 0,
      100% 0;
  }
}

/* ---------- Home: clients, products, models, certificates ---------- */

.clients {
  max-width: calc(var(--wrap) + 2 * var(--gutter));
  margin: 8px auto 0;
  padding: 0 var(--gutter);
}

.clients-head {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 15px;
  text-align: center;
}

.clients .marquees {
  margin-top: 0;
}

.clients .marquee-track {
  gap: 0;
  align-items: center;
  animation-name: drift-logos;
  animation-duration: 60s;
}

.clients .marquee-track li {
  display: flex;
  align-items: center;
  padding-right: 64px;
}

.clients .marquee-track img {
  width: auto;
  height: auto;
  max-width: 150px;
  max-height: 30px;
  opacity: 0.72;
}

@keyframes drift-logos {
  to {
    transform: translateX(-50%);
  }
}

.section .bento {
  padding: 0;
}

.product-tile {
  height: 340px;
}

.tile-foot .tile-name {
  flex-direction: column;
  gap: 2px;
}

.tile-name small {
  color: var(--muted);
  font-size: 14px;
}

.tile-status {
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

.tile-status.is-live {
  color: var(--brand);
}

.models {
  margin-top: 20px;
}

.models .proof-model {
  min-height: 260px;
  border-radius: var(--radius);
}

.models .proof-model b {
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.025em;
}

.certs {
  max-width: calc(var(--wrap) + 2 * var(--gutter));
  margin: 22px auto 0;
  padding: 0 var(--gutter);
  color: var(--muted);
  font-size: 14px;
}

/* ---------- Home: glow hero, showcase, pillars, stack, model, enterprise, case ---------- */

.glow-top {
  position: relative;
  overflow: hidden;
  padding-bottom: 8px;
}

/* A page that opens on the glow lets it run up behind the header, the way sarvam.ai does: the
   header is clear over the glow and turns solid once the page scrolls. */
main > .glow-top:first-child {
  margin-top: -65px;
  padding-top: 65px;
}

body:has(main > .glow-top:first-child) .nav:not(.is-scrolled, .is-menu-open) {
  background: transparent;
  backdrop-filter: none;
}

.glow {
  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
  height: 780px;
  filter: blur(48px);
  pointer-events: none;
}

/* Wide at the top and narrowing to a point below the headline, like sarvam.ai's, but in
   EMIAC's blue with a warm accent where theirs is orange. */
.glow i {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.glow i:nth-child(1) {
  width: 130%;
  height: 660px;
  background: linear-gradient(
    to bottom,
    rgb(150 172 255 / 0.55),
    rgb(172 192 255 / 0.4) 60%,
    rgb(190 205 255 / 0.2)
  );
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.glow i:nth-child(2) {
  z-index: 2;
  top: 130px;
  left: 62%;
  width: 520px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    closest-side,
    rgb(255 186 145 / 0.5),
    transparent
  );
}

.glow i:nth-child(3) {
  z-index: 1;
  width: 94%;
  height: 420px;
  background: linear-gradient(
    to bottom,
    rgb(30 112 218 / 0.72),
    rgb(61 138 224 / 0.5) 55%,
    rgb(120 175 240 / 0.25)
  );
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.rings {
  position: absolute;
  top: 120px;
  left: 50%;
  width: 1100px;
  height: 1100px;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle,
    transparent 0 64px,
    rgb(0 92 177 / 0.07) 65px 66px
  );
  transform: translateX(-50%);
  pointer-events: none;
  mask-image: radial-gradient(closest-side, #000 30%, transparent 80%);
}

.hero-glow {
  position: relative;
  padding-top: 132px;
}

.hero-mark {
  display: block;
  width: 26px;
  height: 36px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 34px;
  background:
    linear-gradient(90deg, transparent, rgb(0 92 177 / 0.4), transparent) top /
      100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgb(0 92 177 / 0.4), transparent)
      bottom / 100% 1px no-repeat;
  color: var(--brand);
  font-size: 16px;
}

.hero-glow .hero-title {
  margin-top: 26px;
}

.glow-top .clients {
  position: relative;
  margin-top: 26px;
}

.clients-head {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
}

.big-h2 {
  font-size: clamp(36px, 3.8vw, 54px);
  line-height: 1.05;
}

.bento-section {
  position: relative;
}

.bento-section::before {
  position: absolute;
  top: 200px;
  right: 0;
  left: 0;
  z-index: -1;
  height: 520px;
  background: radial-gradient(
    50% 60% at 50% 50%,
    rgb(151 170 255 / 0.35),
    transparent 70%
  );
  filter: blur(30px);
  content: "";
}

/* What we build: five cards seen at once, each a short loop of the thing it names (x.ai's home
   grid, 2026-09-24). Three across, then two wide. The loops are CSS, except C1's orb. */
.bx-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 56px;
}

.bx {
  position: relative;
  display: flex;
  grid-column: span 2;
  flex-direction: column;
  height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sheet);
  color: var(--ink);
  text-decoration: none;
  transition: background 0.25s var(--ease);
}

.bx:hover {
  background: var(--sheet-2);
}

.bx:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.bx-wide {
  grid-column: span 3;
  height: 380px;
}

.bx-art {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.bx-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px 20px;
}

.bx-name {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}

.bx-name img {
  flex: none;
}

.bx-state {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.bx-state::before {
  margin-right: 8px;
  content: "·";
}

.bx-desc {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.bx-go {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.bx-go svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  transition: transform 0.25s var(--ease);
}

.bx:hover .bx-go svg {
  transform: translateX(3px);
}

.bx-dark {
  background: var(--dark);
  color: #fff;
}

.bx-dark:hover {
  background: #161a20;
}

.bx-dark .bx-state,
.bx-dark .bx-desc {
  color: #9aa3ae;
}

/* A column that scrolls forever: two copies, moved up by exactly one. */
.bx-roll {
  display: flex;
  flex-direction: column;
  animation: bx-roll 34s linear infinite;
}

.bx-roll > * {
  margin: 0 0 10px;
}

@keyframes bx-roll {
  to {
    transform: translateY(-50%);
  }
}

.bx-chat {
  padding: 0 22px;
  mask-image: linear-gradient(transparent, #000 16%, #000 80%, transparent);
  font-size: 13.5px;
  line-height: 1.45;
}

.bx-chat .q {
  align-self: flex-end;
  max-width: 78%;
  padding: 8px 13px;
  border-radius: 14px 14px 4px;
  background: #e3e7ed;
  color: var(--ink-2);
}

.bx-chat .a {
  align-self: flex-start;
  max-width: 88%;
  padding: 10px 13px;
  border-radius: 14px 14px 14px 4px;
  background: #fff;
}

.bx-chat .cite {
  display: block;
  width: fit-content;
  margin-top: 7px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--wash);
  color: var(--brand);
  font: 11.5px/1.4 var(--mono);
}

.bx-term {
  color: #c3cad4;
  font: 12.5px/1.5 var(--mono);
}

.bx-term-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 22px 0;
  color: #7f8894;
}

.bx-term-bar .dots {
  display: inline-flex;
  gap: 5px;
}

.bx-term-bar .dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2c323b;
}

.bx-term-tag {
  margin-left: auto;
  padding: 1px 7px;
  border: 1px solid var(--dark-line);
  border-radius: 999px;
  font-size: 11px;
}

.bx-log {
  position: absolute;
  inset: 52px 0 0;
  padding: 0 22px;
  mask-image: linear-gradient(transparent, #000 14%, #000 80%, transparent);
}

.bx-log .bx-roll {
  animation-duration: 26s;
}

.bx-log p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-left: 14px;
}

.bx-log p.p {
  margin-top: 8px;
  padding-left: 0;
  color: #fff;
}

.bx-log p.s {
  padding-left: 0;
  color: #7ee2a8;
}

.bx-log b {
  font-weight: 400;
}

.bx-log .y {
  color: #7ee2a8;
}

.bx-log .n {
  color: #ffab82;
}

.bx-dict {
  padding: 22px 22px 0;
}

.bx-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 6px 14px 6px 7px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 12.5px;
}

.bx-pill img {
  width: 22px;
  height: 22px;
  padding: 3px;
  border-radius: 50%;
  background: #fff;
}

.bx-bars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 14px;
}

.bx-bars i {
  width: 2px;
  height: 100%;
  border-radius: 2px;
  background: #9fb4ff;
  animation: bx-bar 0.9s ease-in-out infinite alternate;
}

.bx-bars i:nth-child(2n) {
  animation-delay: -0.3s;
}

.bx-bars i:nth-child(3n) {
  animation-delay: -0.6s;
}

@keyframes bx-bar {
  from {
    transform: scaleY(0.25);
  }

  to {
    transform: scaleY(1);
  }
}

.bx-says {
  position: relative;
  height: 200px;
  margin-top: 18px;
}

.bx-say {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: bx-say 15s calc(var(--i) * 5s) infinite both;
}

.bx-say p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.bx-say .raw {
  color: var(--muted);
  font-style: italic;
}

.bx-say .raw::before,
.bx-say .clean::before {
  display: block;
  margin-bottom: 4px;
  color: var(--faint);
  font: normal 10.5px/1.4 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  content: "You said";
}

.bx-say .clean {
  margin-top: 14px;
  padding: 11px 14px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 2px rgb(10 30 60 / 0.05);
  animation: bx-clean 15s calc(var(--i) * 5s) infinite both;
}

.bx-say .clean::before {
  color: var(--brand);
  content: "AirNote typed";
}

@keyframes bx-say {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }

  3%,
  30% {
    opacity: 1;
    transform: none;
  }

  33.3%,
  100% {
    opacity: 0;
  }
}

@keyframes bx-clean {
  0%,
  10% {
    opacity: 0;
    transform: translateY(6px);
  }

  14%,
  100% {
    opacity: 1;
    transform: none;
  }
}

/* Clario C1: the orb is drawn by site.js. Without WebGL it stays this gradient, still. */
.bx-c1 {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 36px;
  padding: 28px 30px 0 40px;
}

.bx-orb {
  position: relative;
  width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 34% 28%,
      rgb(255 255 255 / 0.55),
      transparent 26%
    ),
    radial-gradient(circle at 72% 74%, #ff9f70, transparent 58%),
    radial-gradient(circle at 40% 50%, #6f95ff, #1f6fd6 45%, #0a3f9c 80%);
  box-shadow: 0 24px 70px rgb(31 111 214 / 0.28);
}

.bx-orb.is-gl {
  background: none;
  box-shadow: none;
}

.bx-orb canvas {
  position: absolute;
  inset: -20%;
  width: 140%;
  height: 140%;
}

.bx-c1-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font: 11.5px/1.4 var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bx-rec {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff7438;
  animation: bx-rec 1.6s ease-in-out infinite;
}

@keyframes bx-rec {
  50% {
    opacity: 0.3;
  }
}

.bx-said {
  min-height: 3.9em;
  margin: 14px 0 0;
  font-size: 23px;
  line-height: 1.3;
}

.bx-said b {
  color: var(--brand);
  font-weight: 500;
}

.bx-said .is-new {
  animation: bx-word 0.35s var(--ease) both;
}

@keyframes bx-word {
  from {
    opacity: 0;
    filter: blur(4px);
  }
}

.bx-timo {
  background: #f3ecdc;
}

.bx-timo:hover {
  background: #eee5d1;
}

.bx-clock {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 26px 30px 0;
}

.bx-clock video {
  width: 78%;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgb(31 29 58 / 0.18);
}

.bx-clock video + video {
  justify-self: end;
  width: 70%;
  margin-top: -40px;
  box-shadow: 0 14px 34px rgb(31 29 58 / 0.12);
}

.bx-name .c1-chip {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  font-size: 8px;
}

@media (prefers-reduced-motion: reduce) {
  .bx *,
  .bx *::before {
    animation: none !important;
  }

  .bx-say:first-child {
    opacity: 1;
  }
}

@media (max-width: 960px) {
  .bx-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bx {
    grid-column: span 1;
  }

  .bx:first-child,
  .bx-wide {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .bx-grid {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 40px;
  }

  .bx,
  .bx:first-child,
  .bx-wide {
    grid-column: auto;
    height: 380px;
  }

  .bx.bx-wide {
    height: auto;
  }

  .bx-c1 {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 22px;
    padding: 30px 22px 0;
  }

  .bx-orb {
    width: 170px;
  }

  .bx-c1-live {
    width: 100%;
  }

  .bx-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 18px 18px;
  }

  .bx-name {
    white-space: nowrap;
  }
}

.showcase {
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 80px rgb(0 40 90 / 0.08);
}

.c1-chip {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, #3d8ae0, #ffb48a);
  color: #fff;
  font: 700 9px/1 var(--font);
}

.showcase-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 48px;
  min-height: 500px;
  padding: 48px;
}

.showcase-panel[hidden] {
  display: none;
}

.showcase-status {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--sheet);
  color: var(--muted);
  font-size: 13px;
}

.showcase-status.is-live {
  background: var(--wash);
  color: var(--brand);
}

.showcase-copy h3 {
  margin: 18px 0 22px;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.15;
}

.showcase-copy .ticks {
  margin-bottom: 26px;
}

.showcase-shot {
  padding: 26px;
  border-radius: 18px;
  background:
    radial-gradient(
      90% 80% at 90% 0%,
      rgb(255 196 150 / 0.45),
      transparent 60%
    ),
    radial-gradient(
      90% 90% at 0% 100%,
      rgb(61 138 224 / 0.35),
      transparent 65%
    ),
    #dde8f7;
}

.showcase-shot img {
  display: block;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 18px 44px rgb(10 30 60 / 0.16);
}

.spec-card {
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 44px rgb(10 30 60 / 0.16);
}

.spec-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font: 13px var(--mono);
}

.spec-list {
  margin: 0;
  padding: 6px 20px 10px;
}

.spec-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list div:last-child {
  border-bottom: 0;
}

.spec-list dt {
  color: var(--muted);
  font: 13px/1.5 var(--mono);
}

.spec-list dd {
  margin: 0;
  font-size: 15px;
}

.pillars {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 64px;
  margin-top: 56px;
}

.pillars-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 440px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(
      70% 60% at 80% 10%,
      rgb(255 190 140 / 0.6),
      transparent 65%
    ),
    radial-gradient(80% 70% at 10% 100%, rgb(0 92 177 / 0.75), transparent 65%),
    #7fa6dc;
}

.pillars-art::before {
  position: absolute;
  inset: 0;
  background: repeating-radial-gradient(
    circle,
    transparent 0 42px,
    rgb(255 255 255 / 0.16) 43px 44px
  );
  content: "";
}

.pillars-art img {
  position: relative;
  width: 57px;
  height: 80px;
}

.pillars-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pillars-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 6px 14px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.pillars-list li::before {
  grid-row: span 2;
  color: var(--brand);
  font-size: 18px;
  line-height: 1.2;
  content: "✦";
}

.pillars-list b {
  font-size: 19px;
  font-weight: 500;
}

.pillars-list span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.stack3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.stack-art {
  display: grid;
  place-items: center;
  height: 180px;
  border-radius: 18px;
}

.stack-art svg {
  width: 64px;
  height: 64px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.art-apps {
  background:
    radial-gradient(
      90% 90% at 100% 100%,
      rgb(205 90 80 / 0.7),
      transparent 60%
    ),
    radial-gradient(80% 90% at 0% 0%, rgb(120 110 200 / 0.55), transparent 65%),
    #8c93b8;
}

.art-models {
  background:
    radial-gradient(
      80% 90% at 90% 0%,
      rgb(255 180 120 / 0.65),
      transparent 60%
    ),
    radial-gradient(90% 90% at 0% 100%, rgb(61 138 224 / 0.6), transparent 65%),
    #a8c0e2;
}

.art-eng {
  background:
    radial-gradient(
      90% 90% at 0% 100%,
      rgb(30 150 130 / 0.65),
      transparent 60%
    ),
    radial-gradient(80% 90% at 100% 0%, rgb(61 138 224 / 0.6), transparent 65%),
    #6e9bbf;
}

.stack-col h3 {
  margin: 24px 0 8px;
  font-size: 21px;
}

.stack-col > p {
  min-height: 48px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
}

.stack-rows {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.stack-rows li > a,
.stack-rows li > span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  text-decoration: none;
}

.stack-rows li > a span,
.stack-rows em {
  color: var(--muted);
  font-style: normal;
}

.stack-rows li > a:hover {
  color: var(--brand);
}

.stack-stats em {
  color: var(--ink);
  font-weight: 500;
}

.c1-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

.c1-copy .lede {
  max-width: 520px;
}

.c1-copy .actions {
  justify-content: flex-start;
}

.pipeline {
  margin: 0;
  padding: 18px 36px;
  border-radius: 28px;
  background:
    radial-gradient(120% 90% at 85% 0%, rgb(61 138 224 / 0.3), transparent 60%),
    radial-gradient(
      90% 70% at 0% 100%,
      rgb(255 190 140 / 0.25),
      transparent 60%
    ),
    linear-gradient(180deg, #d6e6fb 0%, #e9f1fd 55%, #f4f8fd 100%);
  list-style: none;
  counter-reset: step;
}

.pipeline li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px 12px;
  padding: 22px 0;
  border-bottom: 1px solid rgb(0 92 177 / 0.12);
  counter-increment: step;
}

.pipeline li:last-child {
  border-bottom: 0;
}

.pipeline li::before {
  grid-row: span 2;
  color: var(--brand);
  font: 500 14px/1.6 var(--mono);
  content: "0" counter(step);
}

.pipeline b {
  font-size: 18px;
  font-weight: 500;
}

.pipeline span {
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.55;
}

.ent-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.ent-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}

.ent-card h3 {
  font-size: 22px;
}

.ent-card p {
  margin: 10px 0 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.ent-wide {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.ent-wide p {
  max-width: 440px;
  margin-bottom: 0;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 560px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.badges li {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--sheet);
  font-size: 13.5px;
}

.badges li:nth-child(-n + 3) {
  border-color: rgb(0 92 177 / 0.2);
  background: var(--wash);
  color: var(--brand);
}

.center-actions {
  margin-top: 36px;
}

.runs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.run-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: start;
  gap: 4px 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.run-art {
  grid-row: span 2;
  width: 56px;
  height: 56px;
  border-radius: 16px;
}

.run-device {
  background: radial-gradient(80% 80% at 30% 20%, #9cc4f2, #005cb1);
}

.run-cloud {
  background: radial-gradient(80% 80% at 30% 20%, #ffd2b0, #8c93b8);
}

.run-yours {
  background: radial-gradient(80% 80% at 30% 20%, #a8e6dc, #2d7f99);
}

.run-card b {
  font-size: 17px;
  font-weight: 500;
}

.run-card span:not(.run-art) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.case {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  align-items: center;
  gap: 56px;
}

.case-shot {
  padding: 32px;
  border-radius: 28px;
  background:
    radial-gradient(
      80% 80% at 100% 0%,
      rgb(91 103 243 / 0.45),
      transparent 60%
    ),
    radial-gradient(
      80% 80% at 0% 100%,
      rgb(255 190 140 / 0.4),
      transparent 65%
    ),
    #e4e6f7;
}

.case-shot img {
  display: block;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 18px 44px rgb(10 30 60 / 0.18);
}

.case-copy h2 {
  font-size: clamp(30px, 3vw, 42px);
}

.case-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 22px;
}

.case-facts dt {
  font-size: 34px;
  font-weight: 460;
  letter-spacing: -0.02em;
}

.case-facts dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.case-marks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.reviews-6 {
  margin-top: 48px;
}

.final-band {
  position: relative;
  max-width: var(--wrap);
  margin: 160px auto 0;
  padding: 100px 40px;
  overflow: hidden;
  border-radius: 28px;
  background: #060b14;
  color: #fff;
  text-align: center;
  isolation: isolate;
}

.final-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-radial-gradient(
      circle at 50% 120%,
      transparent 0 60px,
      rgb(255 255 255 / 0.05) 61px 62px
    ),
    radial-gradient(
      60% 75% at 50% 115%,
      rgb(61 138 224 / 0.85),
      transparent 70%
    ),
    radial-gradient(
      40% 50% at 18% 0%,
      rgb(255 180 120 / 0.28),
      transparent 70%
    ),
    radial-gradient(40% 50% at 85% 5%, rgb(94 208 220 / 0.3), transparent 70%);
}

.final-band img {
  display: block;
  width: 29px;
  height: 40px;
  margin: 0 auto;
}

.final-band h2 {
  margin: 22px 0 12px;
  font-size: clamp(36px, 4vw, 56px);
}

.final-band p {
  color: #b8c4d6;
  font-size: 18px;
}

.btn-light {
  background: #fff;
  color: var(--ink);
}

.btn-light:hover {
  background: #e8edf3;
}

.btn-ghost {
  border-color: rgb(255 255 255 / 0.35);
  color: #fff;
}

.btn-ghost:hover {
  border-color: #fff;
}

@media (max-width: 960px) {
  .showcase-panel,
  .pillars,
  .stack3,
  .c1-teaser,
  .ent-grid,
  .runs,
  .case {
    grid-template-columns: minmax(0, 1fr);
  }

  .showcase-panel {
    gap: 28px;
    min-height: 0;
    padding: 28px;
  }

  .pillars-art {
    min-height: 260px;
  }

  .ent-wide {
    flex-direction: column;
    align-items: flex-start;
  }

  .badges {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .hero-glow {
    padding-top: 96px;
  }

  .glow i:nth-child(1) {
    width: 170%;
    height: 520px;
  }

  .glow i:nth-child(2) {
    left: 72%;
    width: 260px;
    height: 160px;
  }

  .glow i:nth-child(3) {
    width: 130%;
    height: 330px;
  }

  .showcase-panel,
  .ent-card {
    padding: 22px;
  }

  .showcase-shot,
  .case-shot {
    padding: 14px;
  }

  .spec-list div {
    grid-template-columns: 96px 1fr;
  }

  .pipeline {
    padding: 8px 20px;
  }

  .final-band {
    margin-right: var(--gutter);
    margin-left: var(--gutter);
    padding: 72px 24px;
  }

  .case-facts dt {
    font-size: 26px;
  }
}

.c1-chip-lg {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  font-size: 15px;
}

.c1-band-orb {
  width: 150px;
  margin: 0 auto 30px;
}

.hero-glow .c1-chip-lg,
.final-band .c1-chip-lg {
  display: grid;
  margin: 0 auto;
}

.c1-stats {
  position: relative;
  margin-top: 72px;
  background: rgb(255 255 255 / 0.6);
}

.spec-wide {
  max-width: 980px;
  margin: 48px auto 0;
}

.spec-wide .spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 48px;
  padding: 8px 28px 12px;
}

.spec-wide .spec-list div:nth-last-child(2) {
  border-bottom: 0;
}

/* C1 page: one recording written two ways as it plays, then searched for an English word. */
.sd {
  max-width: 1080px;
  margin: 48px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 30px 80px rgb(0 40 90 / 0.08);
}

.sd-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font: 13px var(--mono);
}

.sd-clock {
  margin-left: auto;
  color: var(--ink);
}

.sd-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 64px;
  padding: 0 24px;
  margin-top: 18px;
}

.sd-wave i {
  flex: 1;
  min-width: 2px;
  border-radius: 2px;
  background: var(--sheet-2);
  transition: background 0.2s;
}

.sd-wave i.is-on {
  background: linear-gradient(#3d8ae0, #ff9f70);
}

.sd-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(360px, calc(100% - 48px));
  height: 40px;
  margin: 18px auto;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--sheet);
  color: var(--ink);
  font: 14px var(--mono);
}

.sd-search svg {
  flex: none;
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.5;
}

.sd-search span:empty::before {
  color: var(--faint);
  content: "Search both transcripts";
}

.sd-search span:empty + .sd-caret {
  display: none;
}

.sd-caret {
  width: 1px;
  height: 16px;
  margin-left: -6px;
  background: var(--ink);
  animation: sd-caret 1s steps(1) infinite;
}

@keyframes sd-caret {
  50% {
    opacity: 0;
  }
}

.sd-panes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.sd-pane {
  display: flex;
  flex-direction: column;
  padding: 20px 26px;
}

.sd-pane.is-ours {
  border-left: 1px solid #d6e4f7;
  background: var(--wash);
}

.sd-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.sd-head span {
  font: 12px var(--mono);
}

.is-ours .sd-head {
  color: var(--brand);
}

.sd-text {
  flex: 1;
  min-height: 250px;
}

.sd-line {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px;
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.6;
}

.sd-line time {
  padding-top: 4px;
  color: var(--faint);
  font: 12px var(--mono);
}

.sd-pane[data-sd-pane="dev"] .sd-line {
  color: var(--body);
}

.sd-line .w {
  border-radius: 4px;
  animation: sd-word 0.3s var(--ease) both;
  transition:
    background 0.25s,
    box-shadow 0.25s;
}

@keyframes sd-word {
  from {
    opacity: 0;
    filter: blur(3px);
  }
}

.sd-pane[data-sd-pane="dev"] .w.is-en {
  box-shadow: inset 0 -2px 0 #ffb48a;
}

.is-ours .w.is-en {
  color: var(--brand);
  font-weight: 500;
}

.is-ours .w.is-hit {
  background: #fff1a8;
  box-shadow: 0 0 0 3px #fff1a8;
}

.sd-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.sd-foot b {
  color: var(--ink);
  font-weight: 500;
}

.sd-hits {
  padding: 2px 10px;
  border-radius: 999px;
  background: #e7f6ec;
  color: #16723c;
  font: 12px var(--mono);
}

.sd-hits:empty {
  display: none;
}

.sd-hits.is-none {
  background: #fdecea;
  color: #b3261e;
}

.sd-note {
  margin: 14px 0 0;
  color: var(--faint);
  font-size: 12.5px;
  text-align: center;
}

@media (max-width: 720px) {
  .sd-panes {
    grid-template-columns: minmax(0, 1fr);
  }

  .sd-pane {
    padding: 18px;
  }

  .sd-pane.is-ours {
    border-top: 1px solid #d6e4f7;
    border-left: 0;
  }

  .sd-text {
    min-height: 0;
  }

  .sd-line {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    font-size: 16px;
  }

  .sd-wave {
    padding: 0 16px;
  }
}

/* C1 page: how it was trained, as a story. The steps scroll; the stage beside them stays and
   moves through six phases: Whisper base, round one's Hinglish, all the audio, meetings only, checked and trained, then a meeting. */
.tn-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
  margin-top: 72px;
}

.tn-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tn-step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 70vh;
  opacity: 0.3;
  transition: opacity 0.35s var(--ease);
}

.tn-step.is-active {
  opacity: 1;
}

.tn-n {
  color: var(--brand);
  font: 13px var(--mono);
}

.tn-step h3 {
  margin: 10px 0 12px;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.15;
}

.tn-step p {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.tn-stage {
  position: sticky;
  top: calc(50vh - 280px);
  height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 30px 80px rgb(0 40 90 / 0.08);
}

.tn-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font: 13px var(--mono);
}

.tn-tally {
  margin-left: auto;
  color: var(--ink);
}

.tn-tally span {
  display: none;
}

[data-phase="1"] .tn-tally [data-at="1"],
[data-phase="2"] .tn-tally [data-at="2"],
[data-phase="3"] .tn-tally [data-at="3"],
[data-phase="4"] .tn-tally [data-at="4"],
[data-phase="5"] .tn-tally [data-at="5"],
[data-phase="6"] .tn-tally [data-at="6"] {
  display: inline;
}

.tn-files {
  display: grid;
  margin: 0;
  padding: 10px 12px;
  list-style: none;
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease);
}

.tn-file {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto 168px;
  align-items: center;
  gap: 14px;
  max-height: 44px;
  padding: 9px 10px;
  overflow: hidden;
  border-radius: 10px;
  font-size: 14px;
  transition:
    opacity 0.45s var(--ease),
    max-height 0.5s var(--ease),
    padding 0.5s var(--ease),
    background 0.45s;
  transition-delay: calc(var(--i) * 35ms);
}

.tn-wave {
  height: 20px;
  background: repeating-linear-gradient(
    90deg,
    #8fb0e6 0 2px,
    transparent 2px 4px
  );
  clip-path: polygon(
    0 45%,
    12% 20%,
    25% 60%,
    38% 10%,
    52% 35%,
    66% 5%,
    80% 50%,
    100% 30%,
    100% 70%,
    80% 50%,
    66% 95%,
    52% 65%,
    38% 90%,
    25% 40%,
    12% 80%,
    0 55%
  );
}

.tn-file:nth-child(3n) .tn-wave {
  clip-path: polygon(
    0 30%,
    15% 5%,
    30% 40%,
    45% 15%,
    60% 45%,
    75% 0,
    100% 35%,
    100% 65%,
    75% 100%,
    60% 55%,
    45% 85%,
    30% 60%,
    15% 95%,
    0 70%
  );
}

.tn-file:nth-child(3n + 1) .tn-wave {
  clip-path: polygon(
    0 40%,
    10% 25%,
    22% 45%,
    40% 0,
    58% 30%,
    72% 15%,
    88% 40%,
    100% 45%,
    100% 55%,
    88% 60%,
    72% 85%,
    58% 70%,
    40% 100%,
    22% 55%,
    10% 75%,
    0 60%
  );
}

.tn-name {
  overflow: hidden;
  font-family: var(--mono);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tn-dur {
  color: var(--faint);
  font: 12px var(--mono);
}

.tn-file em {
  justify-self: start;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12.5px;
  font-style: normal;
  white-space: nowrap;
}

.tn-kind {
  background: var(--sheet);
  color: var(--muted);
}

.is-meeting .tn-kind {
  background: var(--wash);
  color: var(--brand);
}

.tn-why {
  background: #fdecea;
  color: #b3261e;
}

.tn-ok {
  background: #e7f6ec;
  color: #16723c;
}

.tn-why,
.tn-ok {
  display: none;
}

/* Phases 1 and 2: the model before our data. The file list waits below. */
.tn-model {
  position: absolute;
  inset: 46px 0 0;
  padding: 30px 30px 0;
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease);
}

[data-phase="3"] .tn-model,
[data-phase="4"] .tn-model,
[data-phase="5"] .tn-model,
[data-phase="6"] .tn-model {
  opacity: 0;
  transform: translateY(-24px);
  pointer-events: none;
}

[data-phase="1"] .tn-files,
[data-phase="2"] .tn-files {
  opacity: 0;
  transform: translateY(24px);
}

.tn-chain {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tn-chain li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  opacity: 0.45;
  transition:
    opacity 0.4s var(--ease),
    border-color 0.4s var(--ease),
    background 0.4s var(--ease);
}

.tn-chain b {
  font-size: 14.5px;
  font-weight: 500;
}

.tn-chain small {
  color: var(--muted);
  font: 11.5px var(--mono);
}

[data-phase="1"] .tn-chain [data-link="1"],
[data-phase="2"] .tn-chain [data-link="1"],
[data-phase="2"] .tn-chain [data-link="2"] {
  opacity: 1;
}

[data-phase="1"] .tn-chain [data-link="1"],
[data-phase="2"] .tn-chain [data-link="2"] {
  border-color: #cfe0f6;
  background: var(--wash);
}

.tn-heard {
  margin: 30px 0 10px;
  color: var(--muted);
  font: 12px var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tn-bars {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 56px;
  margin: 0;
}

.tn-bars i {
  flex: 1;
  height: 30%;
  border-radius: 2px;
  background: linear-gradient(#3d8ae0, #ff9f70);
  animation: bx-bar 1s ease-in-out infinite alternate;
}

.tn-bars i:nth-child(3n) {
  height: 80%;
  animation-delay: -0.4s;
}

.tn-bars i:nth-child(4n + 1) {
  height: 55%;
  animation-delay: -0.7s;
}

.tn-bars i:nth-child(5n + 2) {
  height: 100%;
  animation-delay: -0.2s;
}

.tn-out {
  position: absolute;
  right: 30px;
  left: 30px;
  margin: 26px 0 0;
  padding: 18px 20px;
  border-radius: 14px;
  font-size: 21px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.45s var(--ease),
    transform 0.45s var(--ease);
}

.tn-out mark {
  background: none;
  color: inherit;
}

.tn-out-dev {
  background: var(--sheet);
  color: var(--body);
}

.tn-out-dev mark {
  box-shadow: inset 0 -2px 0 #ffb48a;
}

.tn-out-rom {
  background: var(--wash);
  color: var(--ink);
}

.tn-out-rom mark {
  color: var(--brand);
  font-weight: 500;
}

[data-phase="1"] .tn-out-dev,
[data-phase="2"] .tn-out-rom {
  opacity: 1;
  transform: none;
}

/* Phase 4: everything that is not a meeting is struck out and says why. */
[data-phase="4"] .tn-file:not(.is-meeting),
[data-phase="5"] .tn-file:not(.is-meeting) {
  opacity: 0.4;
}

[data-phase="4"] .tn-file:not(.is-meeting) .tn-name {
  text-decoration: line-through;
}

[data-phase="4"] .tn-file:not(.is-meeting) .tn-kind,
[data-phase="5"] .tn-file .tn-kind {
  display: none;
}

[data-phase="4"] .tn-file:not(.is-meeting) .tn-why,
[data-phase="5"] .tn-file .tn-why,
[data-phase="5"] .tn-file:not(.is-fail) .tn-ok {
  display: block;
}

[data-phase="5"] .tn-file:not(.is-meeting) .tn-ok {
  display: none;
}

/* Phase 5: what was left out folds away, and what stayed trains the model. */
[data-phase="5"] .tn-file:not(.is-meeting) {
  max-height: 0;
  padding-block: 0;
  opacity: 0;
}

[data-phase="5"] .tn-file.is-fail {
  opacity: 0.45;
}

[data-phase="5"] .tn-file.is-fail .tn-name {
  text-decoration: line-through;
}

.tn-train {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px 16px;
  padding: 22px 24px 26px;
  border-top: 1px solid var(--line);
  background: linear-gradient(transparent, var(--wash));
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease);
}

[data-phase="5"] .tn-train {
  opacity: 1;
  transform: none;
}

.tn-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
}

.tn-chip.is-c1 {
  border-color: #cfe0f6;
  color: var(--brand);
}

.tn-flow {
  position: relative;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    #cfe0f6 0 6px,
    transparent 6px 10px
  );
}

.tn-flow i {
  position: absolute;
  top: -3px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(#3d8ae0, #ff9f70);
  animation: tn-flow 1.8s linear infinite;
}

.tn-flow i:nth-child(2) {
  animation-delay: -0.6s;
}

.tn-flow i:nth-child(3) {
  animation-delay: -1.2s;
}

@keyframes tn-flow {
  to {
    left: calc(100% - 8px);
  }
}

.tn-progress {
  grid-column: 1 / -1;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #dfe8f5;
}

.tn-progress i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    #0a3f9c,
    #1f6fd6,
    #6f95ff,
    #ff9f70,
    #ff7438
  );
}

[data-phase="5"] .tn-progress i {
  animation: tn-fill 3.4s var(--ease) 0.4s both;
}

@keyframes tn-fill {
  from {
    width: 0;
  }
}

.tn-cap {
  grid-column: 1 / -1;
  color: var(--muted);
  font: 12.5px var(--mono);
}

/* Phase 6: the model at work, in a meeting. */
[data-phase="6"] .tn-files {
  opacity: 0;
  transform: translateY(-24px);
}

.tn-meet {
  position: absolute;
  inset: 46px 0 0;
  padding: 26px 30px;
  opacity: 0;
  transition: opacity 0.5s var(--ease) 0.2s;
}

[data-phase="6"] .tn-meet {
  opacity: 1;
}

.tn-meet-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  font-size: 16px;
  font-weight: 500;
}

.tn-meet-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.tn-line {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.5;
}

[data-phase="6"] .tn-line {
  animation: tn-line 0.5s var(--ease) both;
  animation-delay: calc(0.5s + var(--i) * 0.9s);
}

@keyframes tn-line {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

.tn-who {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 500;
}

.tn-who time {
  color: var(--faint);
  font: 12px var(--mono);
}

.tn-line b {
  color: var(--brand);
  font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {
  .tn-stage *,
  .tn-stage {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 960px) {
  .tn-wrap {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .tn-stage {
    top: 72px;
    z-index: 2;
    order: -1;
    height: 400px;
  }

  .tn-step {
    min-height: 62vh;
    justify-content: flex-end;
    padding-bottom: 12vh;
  }

  .tn-file {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .tn-wave,
  .tn-dur {
    display: none;
  }

  .tn-train {
    padding: 16px 18px 20px;
  }

  .tn-meet {
    padding: 18px;
  }

  .tn-line {
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
    margin-bottom: 10px;
    font-size: 14.5px;
  }

  .tn-meet-head {
    margin-bottom: 14px;
  }

  .tn-who {
    flex-direction: row;
    gap: 8px;
  }
}

a.stack-col {
  color: inherit;
  text-decoration: none;
}

a.stack-col:hover h3 {
  color: var(--brand);
}

.stack-art img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 16px;
  background: rgb(255 255 255 / 0.85);
  padding: 10px;
}

@media (max-width: 720px) {
  .spec-wide .spec-list {
    grid-template-columns: minmax(0, 1fr);
    padding: 4px 18px 8px;
  }

  .spec-wide .spec-list div:nth-last-child(2) {
    border-bottom: 1px solid var(--line);
  }
}

.uc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.uc-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.uc-card:hover {
  border-color: rgb(0 92 177 / 0.25);
  box-shadow: 0 18px 40px rgb(0 40 90 / 0.07);
}

.uc-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
  border-radius: 13px;
}

.uc-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.uc-a {
  background: radial-gradient(80% 80% at 30% 20%, #9cc4f2, #005cb1);
}

.uc-b {
  background: radial-gradient(80% 80% at 30% 20%, #b9b3f0, #5b67f3);
}

.uc-c {
  background: radial-gradient(80% 80% at 30% 20%, #ffd2b0, #d9785a);
}

.uc-d {
  background: radial-gradient(80% 80% at 30% 20%, #a8e6dc, #2d7f99);
}

.uc-e {
  background: radial-gradient(80% 80% at 30% 20%, #c9d7ea, #3d5a80);
}

.uc-f {
  background: radial-gradient(80% 80% at 30% 20%, #d7c4f0, #7a5bb8);
}

.uc-card h3 {
  font-size: 20px;
}

.uc-card p {
  flex: 1;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
}

.uc-tag {
  align-self: flex-start;
  margin-top: 8px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--wash);
  color: var(--brand);
  font-size: 13px;
}

.tech-wall {
  margin-top: 48px;
}

.tech-wall .marquee-track li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  font-size: 16px;
  white-space: nowrap;
}

.tech-wall .marquee-track img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.tech-section .fine {
  margin-top: 22px;
}

.recog {
  justify-content: center;
  max-width: var(--wrap);
  margin: 24px auto 0;
  padding: 0 var(--gutter);
}

@media (max-width: 960px) {
  .uc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .uc-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .recog li {
    font-size: 12.5px;
  }
}

.glow-top .company-hero {
  position: relative;
  padding-top: 132px;
}

/* Company: two eras on one line. Services since 2017, then 2026's products and models. */
.ms {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 4fr);
  gap: 28px;
  margin-top: 56px;
}

.ms-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 500;
}

.ms-head span {
  color: var(--faint);
  font: 12px var(--mono);
}

.ms ol {
  display: grid;
  grid-auto-columns: minmax(0, 1fr);
  grid-auto-flow: column;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--line);
}

.is-now ol {
  border-image: linear-gradient(90deg, #1f6fd6, #6f95ff 55%, #ff9f70) 1;
}

.ms li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 20px 0 0;
}

.ms li::before {
  position: absolute;
  top: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 2px var(--faint);
  content: "";
}

.is-now li::before {
  background: var(--brand);
  box-shadow: 0 0 0 4px var(--wash);
}

.ms li.is-live::before {
  background: #ff7438;
  box-shadow: 0 0 0 4px rgb(255 116 56 / 0.18);
  animation: bx-rec 1.8s ease-in-out infinite;
}

.ms b {
  font-size: 26px;
  font-weight: 460;
  letter-spacing: -0.02em;
}

.ms li span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 960px) {
  .ms {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
}

@media (max-width: 720px) {
  .ms ol {
    grid-auto-flow: row;
    gap: 22px;
    padding-left: 22px;
    border-top: 0;
    border-left: 2px solid var(--line);
  }

  .is-now ol {
    border-image: linear-gradient(#1f6fd6, #6f95ff 55%, #ff9f70) 1;
  }

  .ms li {
    padding: 0;
  }

  .ms li::before {
    top: 10px;
    left: -29px;
  }
}

.c1-run {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.term-block {
  overflow: hidden;
  border-radius: 20px;
  background: #0b0f16;
  box-shadow: 0 30px 70px rgb(5 15 35 / 0.28);
}

.term-block-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-bottom: 1px solid #1c2330;
  color: #8390a4;
  font: 13px var(--mono);
}

.term-block-bar em {
  margin-left: auto;
  padding: 3px 9px;
  border-radius: 999px;
  background: #182030;
  font-style: normal;
}

.term-block pre {
  margin: 0;
  padding: 22px 22px 26px;
  overflow-x: auto;
  color: #e6ebf3;
  font: 13.5px/1.75 var(--mono);
}

.t-p {
  color: #6fd3a8;
}

.t-c {
  color: #6b778b;
}

.t-t {
  color: #7fb4f5;
}

.research-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 40px;
  margin-bottom: 28px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  color: inherit;
  text-decoration: none;
}

.research-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 240px;
  border-radius: 16px;
  background:
    radial-gradient(
      80% 90% at 90% 0%,
      rgb(255 180 120 / 0.65),
      transparent 60%
    ),
    radial-gradient(90% 90% at 0% 100%, rgb(61 138 224 / 0.7), transparent 65%),
    #9fb9e0;
  color: #fff;
}

.research-art b {
  font-size: 30px;
  font-weight: 460;
  letter-spacing: -0.02em;
}

.research-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 24px;
}

.research-copy > b {
  font-size: 26px;
  font-weight: 460;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.research-copy > span:not(.post-meta) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.research-copy em {
  color: var(--brand);
  font-size: 15px;
  font-style: normal;
}

.research-card:hover {
  border-color: rgb(0 92 177 / 0.3);
}

@media (max-width: 720px) {
  .research-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .research-copy {
    padding: 0 8px 10px;
  }
}

/* ---------- Narrower screens ---------- */

@media (max-width: 1100px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .tile,
  .tile-wide {
    grid-column: span 1;
  }

  .posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .orbit-row,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .speech {
    grid-template-columns: 1fr;
  }

  .orbit-row {
    grid-template-columns: 1fr;
  }

  .trust {
    margin-right: var(--gutter);
    margin-left: var(--gutter);
    padding: 56px 32px;
  }

  .features {
    grid-template-columns: 1fr 1fr;
  }

  .aside-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu,
  .nav-sales {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .nav.is-menu-open .mobile {
    display: block;
    max-height: calc(100vh - 64px);
    padding: 4px var(--gutter) 28px;
    overflow: auto;
    border-top: 1px solid var(--line);
  }

  .mobile p {
    margin: 20px 0 4px;
    color: var(--muted);
    font-size: 13px;
  }

  .mobile a {
    display: block;
    padding: 9px 0;
    font-size: 18px;
    text-decoration: none;
  }

  .mobile .btn {
    display: flex;
    margin-top: 24px;
    color: #fff;
    font-size: 16px;
  }

  .split-section,
  .two-col,
  .company-hero,
  .featured,
  .contact {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .grid-3,
  .joined {
    grid-template-columns: 1fr 1fr;
  }

  .joined .card + .card {
    border-left: 0;
  }

  .foot-inner {
    grid-template-columns: 1fr;
  }

  .foot-brand {
    padding-right: 0;
    border-right: 0;
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 20px;
  }

  .crumb {
    flex-wrap: wrap;
    justify-content: center;
  }

  .crumb i {
    display: none;
  }

  .crumb span {
    flex-basis: 100%;
  }

  .orbit-row,
  .trust-grid,
  .features,
  .start-steps {
    grid-template-columns: 1fr;
  }

  .chapters {
    grid-auto-flow: row;
    grid-template-columns: 1fr 1fr;
  }

  .stage {
    width: calc(100% - 24px);
  }

  .aside-band {
    padding: 32px 24px;
  }

  .speech {
    margin-right: var(--gutter);
    margin-left: var(--gutter);
    padding: 32px 20px;
  }

  .reviews,
  .lang-facts {
    grid-template-columns: 1fr;
  }

  .bento-proof {
    grid-template-columns: 1fr;
  }

  .proof-quote {
    grid-row: auto;
    min-height: 420px;
  }

  .marquee .app {
    width: 300px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-title br {
    display: none;
  }

  .bento,
  .posts,
  .start-grid,
  .grid-3,
  .joined,
  .feature-cards,
  .prices {
    grid-template-columns: 1fr;
  }

  .split-toggle {
    display: none;
  }

  .split-main {
    padding-right: 18px;
    border-radius: 999px;
  }

  .stats {
    grid-template-columns: 1fr;
    margin-right: var(--gutter);
    margin-left: var(--gutter);
  }

  .stats > div {
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .stats > div:first-child {
    border-top: 0;
  }

  .mini-facts {
    flex-direction: column;
    gap: 14px;
  }

  .progress {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-right: var(--gutter);
    margin-left: var(--gutter);
  }

  .foot-cols {
    grid-template-columns: 1fr 1fr;
  }

  .start-card,
  .mail-card {
    padding: 32px 24px;
  }

  .cta-band {
    margin-right: var(--gutter);
    margin-left: var(--gutter);
    padding: 64px 24px;
  }

  .scope-card {
    top: 6%;
    right: 5%;
    left: 5%;
  }

  .scope-list li {
    padding: 9px 0;
    font-size: 14px;
  }

  .pill span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
  }

  .marquees {
    mask-image: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- The keyboard: what we hold ourselves to ----------
   After Raycast's keyboard band (2026-09-24), in light: a board of keycaps fading into the
   page, and four lit keys that carry the claims. Each lit key is pressed in turn. The board is
   decoration; the same four lines are in a visually hidden list for screen readers. */
.kb-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 40px;
  align-items: center;
}

.kb-copy h2 {
  max-width: 420px;
  font-size: clamp(30px, 2.8vw, 40px);
  line-height: 1.15;
}

.kb-copy h2 span {
  display: block;
  color: var(--faint);
}

.kb-copy .btn {
  margin-top: 32px;
}

.kb {
  --u: clamp(64px, 7.4vw, 108px);
  --gap: calc(var(--u) * 0.12);
  position: relative;
  height: calc(var(--u) * 5.9);
  overflow: hidden;
  mask-image: radial-gradient(72% 64% at 48% 54%, #000 55%, transparent 100%);
}

.kb-board {
  position: absolute;
  top: 50%;
  left: calc(var(--u) * 0.45);
  display: grid;
  gap: var(--gap);
  transform: translateY(-50%);
}

.kb-row {
  display: flex;
  gap: var(--gap);
}

.kb-off {
  margin-left: calc(var(--u) * -0.35);
}

.kb-key {
  position: relative;
  display: flex;
  flex: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(var(--u) * var(--w, 1) + var(--gap) * (var(--w, 1) - 1));
  height: var(--u);
  border-radius: calc(var(--u) * 0.13);
  background: linear-gradient(#fff, #f4f5f7);
  box-shadow:
    inset 0 0 0 1px #e6e8eb,
    inset 0 1px 0 #fff,
    0 2px 0 #dfe2e6,
    0 10px 20px -12px rgb(16 24 40 / 0.18);
  color: #c4c8ce;
}

.kb-fn .kb-key {
  height: calc(var(--u) * 0.55);
  align-items: flex-start;
  padding-left: calc(var(--u) * 0.16);
}

.kb-key i {
  font: 400 calc(var(--u) * 0.17) / 1 var(--font);
  font-style: normal;
}

.kb-key b {
  font: 450 calc(var(--u) * 0.26) / 1.2 var(--font);
}

.kb-fn .kb-key b {
  font-size: calc(var(--u) * 0.15);
}

.kb-mod {
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0 0 calc(var(--u) * 0.14) calc(var(--u) * 0.16);
}

.kb-mod svg,
.kb-card svg {
  flex: none;
  width: calc(var(--u) * 0.24);
  height: calc(var(--u) * 0.24);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* The four lit keys: white, sharper, and printed with a claim. */
.kb-card {
  z-index: 1;
  align-items: flex-start;
  justify-content: space-between;
  padding: calc(var(--u) * 0.15) calc(var(--u) * 0.17);
  background: #fff;
  box-shadow:
    inset 0 0 0 1px #d9dce1,
    inset 0 1px 0 #fff,
    0 2px 0 #d3d7dc,
    0 16px 30px -14px rgb(16 24 40 / 0.28);
  color: var(--ink-2);
  animation: kb-press 8.8s var(--ease) infinite;
  animation-delay: var(--d, 0s);
}

.kb-card > span {
  color: var(--muted);
  font-size: calc(var(--u) * 0.2);
  line-height: 1.3;
  text-align: left;
}

.kb-card strong {
  color: var(--ink);
  font-weight: 560;
}

/* A press: the key drops by its own depth and its edge lights in the brand blue. */
@keyframes kb-press {
  0%,
  8%,
  100% {
    transform: none;
  }
  2%,
  5% {
    transform: translateY(2px);
    box-shadow:
      inset 0 0 0 1px rgb(0 92 177 / 0.45),
      inset 0 1px 0 #fff,
      0 0 0 #d3d7dc,
      0 0 0 4px rgb(61 138 224 / 0.12),
      0 8px 18px -12px rgb(16 24 40 / 0.3);
  }
}

@media (prefers-reduced-motion: reduce) {
  .kb-card {
    animation: none;
  }
}

@media (max-width: 960px) {
  .kb-section {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .kb-copy h2 {
    margin: 0 auto;
  }

  .kb {
    mask-image: radial-gradient(60% 58% at 50% 50%, #000 45%, transparent 100%);
  }

  .kb-board {
    left: 50%;
    transform: translate(-40%, -50%);
  }
}

/* On a phone the board is too wide to read: the four lit keys stand alone, two by two. */
@media (max-width: 720px) {
  .kb {
    --u: 76px;
    height: auto;
    overflow: visible;
    mask-image: none;
  }

  .kb-board {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    transform: none;
  }

  .kb-row {
    display: contents;
  }

  .kb-key:not(.kb-card) {
    display: none;
  }

  .kb-card {
    width: auto;
    height: auto;
    min-height: 118px;
    gap: 14px;
    padding: 16px;
  }

  .kb-card > span {
    font-size: 14px;
  }
}

/* ---------- Home: the Clario tile ----------
   After Granola's hero (2026-09-24): a meeting's transcript runs up the tile, each line tagged
   with its speaker, and whenever something matters it drops out as a note card onto the stack
   below. Clario's edge is on every card: the moment it came from, ready to play. */
.cg {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px 20px 0;
}

/* The transcript: newest line at the bottom, older ones drifting up and fading. */
.cg-talk {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  mask-image: linear-gradient(transparent, #000 45%);
}

.cg-talk p {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transform: translateY(calc(var(--row) * -30px));
  opacity: calc(1 - var(--row) * 0.28);
  transition:
    transform 0.6s var(--ease),
    opacity 0.6s var(--ease),
    color 0.4s var(--ease);
}

.cg-talk p.is-new {
  animation: cg-in 0.6s var(--ease) backwards;
}

@keyframes cg-in {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(12px);
  }
}

.cg-talk span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

/* A speaker, as a small coloured pill with a voice mark. */
.cg-who {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 5px;
  padding: 3px 8px 3px 6px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg);
  font-size: 11.5px;
  font-weight: 500;
}

.cg-who::before {
  width: 9px;
  height: 8px;
  background:
    linear-gradient(currentColor, currentColor) 0 50% / 2px 4px no-repeat,
    linear-gradient(currentColor, currentColor) 50% 50% / 2px 8px no-repeat,
    linear-gradient(currentColor, currentColor) 100% 50% / 2px 5px no-repeat;
  content: "";
}

.cg-arjun {
  --bg: #dfeafb;
  --fg: #1f5fbf;
}

.cg-riya {
  --bg: #fbe4f1;
  --fg: #b3367f;
}

.cg-meera {
  --bg: #e0f3e7;
  --fg: #2f7d4f;
}

/* The notes: each new card lands on top, the ones before it settling behind. */
.cg-stack {
  position: relative;
  isolation: isolate;
  flex: none;
  height: 78px;
  margin: 14px 0 16px;
}

.cg-card {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  height: 50px;
  padding: 0 10px 0 14px;
  border-radius: 12px;
  background: #fff;
  box-shadow:
    0 0 0 1px var(--line),
    0 10px 24px -14px rgb(16 24 40 / 0.3);
  font-size: 13.5px;
  z-index: calc(10 - var(--pos));
  opacity: calc(1 - var(--pos) * 0.15);
  transform: translateY(calc(var(--pos) * -14px))
    scale(calc(1 - var(--pos) * 0.05));
  transform-origin: 50% 0;
  transition:
    transform 0.5s var(--ease),
    opacity 0.5s var(--ease);
}

.cg-card.is-back > * {
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.cg-card.is-new {
  animation: cg-drop 0.55s var(--ease) backwards;
}

@keyframes cg-drop {
  from {
    opacity: 0;
    transform: translateY(-30px) rotate(-2deg) scale(0.98);
  }
}

.cg-card > svg {
  flex: none;
  width: 13px;
  height: 13px;
  fill: var(--brand);
}

.cg-card > span:first-of-type {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cg-card .cg-who::before {
  display: none;
}

.cg-at {
  flex: none;
  padding: 4px 7px;
  border-radius: 6px;
  background: var(--wash);
  color: var(--brand);
  font: 11px/1 var(--mono);
  font-variant-numeric: tabular-nums;
}

@media (prefers-reduced-motion: reduce) {
  .cg-talk p.is-new,
  .cg-card.is-new {
    animation: none;
  }

  .cg-talk p,
  .cg-card {
    transition: none;
  }
}

/* ---------- Home: the Crux tile ----------
   After Profound's bot-visits chart (2026-09-24), with what Crux measures: how often each AI
   engine names the brand. Lines draw in with a soft glow; the right side sinks into the dark
   under a blur. The numbers are sample data. */
.cx {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 20px;
  overflow: hidden;
}

.cx-title {
  margin: 0;
  color: #fff;
  font-size: 15px;
}

.cx-legend {
  display: flex;
  gap: 18px;
  margin: 10px 0 0;
  color: rgb(255 255 255 / 0.62);
  font-size: 13px;
  white-space: nowrap;
}

.cx-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.cx-legend span::before {
  width: 8px;
  height: 8px;
  border-radius: 2.5px;
  background: var(--c);
  content: "";
}

.cx-chart {
  position: relative;
  flex: 1;
  min-height: 0;
  margin: 26px 0 6px 30px;
}

.cx-grid {
  position: absolute;
  right: 0;
  bottom: calc(var(--y) / 4 * 100%);
  left: 0;
  height: 0;
  border-top: 1px dashed rgb(255 255 255 / 0.09);
  color: rgb(255 255 255 / 0.3);
  font: 11px/0 var(--font);
  text-indent: -30px;
}

.cx-plot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  clip-path: inset(-12px 100% -12px -12px);
  transition: opacity 0.5s var(--ease);
}

.cx-plot.is-drawn {
  clip-path: inset(-12px -12px -12px -12px);
  transition:
    clip-path 2.4s cubic-bezier(0.45, 0, 0.2, 1),
    opacity 0.5s var(--ease);
}

.cx-plot.is-out {
  opacity: 0;
}

.cx-plot path {
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* The soft glow: a wider, faint copy under each line (no blur filter, which repaints slowly). */
.cx-plot .cx-glow {
  stroke-width: 6;
  opacity: 0.14;
}

/* The right side sinks into the dark: a blur that grows, then the tile's own black. */
.cx-fade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 46%;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(15 18 22 / 0.6) 50%,
    var(--dark) 92%
  );
  mask-image: linear-gradient(90deg, transparent, #000 45%);
  pointer-events: none;
}

.bx-dark:hover .cx-fade {
  background: linear-gradient(
    90deg,
    transparent,
    rgb(22 26 32 / 0.55) 55%,
    #161a20
  );
}

@media (prefers-reduced-motion: reduce) {
  .cx-plot,
  .cx-plot.is-drawn {
    transition: none;
  }
}

/* ---------- Home: the AirNote tile ----------
   After Wispr Flow's demo (2026-09-24): what was actually said appears word by word, the slips
   marked as they come (fillers, a spoken number, a change of mind). AirNote flags them, strikes
   them out, and types the clean message into the box. */
.an {
  display: flex;
  flex-direction: column;
  padding: 20px 20px 0;
}

.an-said {
  min-height: 62px;
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.5;
  transition: opacity 0.4s var(--ease);
}

.an-said span {
  transition:
    opacity 0.4s var(--ease),
    color 0.3s var(--ease);
}

.an-said .is-filler {
  color: #d9822b;
}

.an-said .is-number {
  color: #9b6ee0;
}

.an-said .is-change {
  color: #e0664a;
}

.an-said.is-cleaning .is-slip {
  opacity: 0.3;
  text-decoration: line-through;
}

.an-said.is-gone {
  opacity: 0;
}

/* The message box the clean text lands in. */
.an-box {
  margin-top: 10px;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow:
    0 0 0 1px var(--line),
    0 10px 24px -16px rgb(16 24 40 / 0.25);
}

.an-typed {
  min-height: 60px;
  margin: 0;
  padding: 11px 13px 6px;
  color: var(--ink);
  font-size: 13.5px;
  line-height: 1.45;
}

.an-caret {
  display: inline-block;
  width: 1.5px;
  height: 14px;
  margin-left: 1px;
  vertical-align: -2px;
  background: var(--brand);
  animation: an-caret 1s steps(2) infinite;
}

@keyframes an-caret {
  50% {
    opacity: 0;
  }
}

.an-tools {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 7px 12px 8px;
  border-top: 1px solid var(--line);
  color: var(--faint);
}

.an-tools svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.an-tools .an-send {
  margin-left: auto;
  fill: currentColor;
  transition: color 0.3s var(--ease);
}

.an.is-ready .an-send {
  color: var(--brand);
}

/* The dictation pill, and the flag that pops up when it catches a slip. */
.an-mic {
  position: relative;
  display: flex;
  align-self: center;
  gap: 8px;
  align-items: center;
  margin: 12px 0 14px;
  padding: 4px;
  border-radius: 999px;
  background: var(--ink);
  box-shadow:
    0 0 0 3px #fff,
    0 8px 18px -8px rgb(0 0 0 / 0.4);
}

.an-x,
.an-ok {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.18);
  color: #fff;
  font-size: 11px;
}

.an-ok {
  background: rgb(255 255 255 / 0.9);
  color: var(--ink);
}

.an-wave {
  display: flex;
  gap: 2px;
  align-items: center;
  height: 16px;
}

.an-wave i {
  width: 2px;
  height: 100%;
  border-radius: 1px;
  background: #fff;
  transform: scaleY(0.3);
}

.an.is-listening .an-wave i {
  animation: an-bar 0.8s ease-in-out infinite alternate;
  animation-delay: calc(var(--i) * -0.11s);
}

@keyframes an-bar {
  to {
    transform: scaleY(1);
  }
}

.an-flag {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  margin: 0;
  padding: 6px 12px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #ee7552;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, 8px) rotate(-5deg) scale(0.9);
  transition:
    opacity 0.3s var(--ease),
    transform 0.35s var(--ease);
}

.an-flag.is-up {
  opacity: 1;
  transform: translate(-50%, 0) rotate(-5deg);
}

@media (prefers-reduced-motion: reduce) {
  .an-caret,
  .an.is-listening .an-wave i {
    animation: none;
  }

  .an-said,
  .an-said span,
  .an-flag {
    transition: none;
  }
}

/* ---------- Home: the Clario C1 tile ----------
   A model training, in 3D (c1-3d.js): a cloud of points settles, epoch by epoch, into the EMIAC
   butterfly, which then turns and beats its wings. Beside it, the run's readout. The run is an
   illustration; the two facts under it are C1's. */
.c3 {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  align-items: center;
}

.c3-canvas {
  width: 100%;
  height: 100%;
}

.c3-panel {
  display: grid;
  gap: 10px;
  margin-right: 30px;
  padding: 16px 16px 14px;
  border-radius: 14px;
  background: #fff;
  box-shadow:
    0 0 0 1px var(--line),
    0 10px 24px -16px rgb(16 24 40 / 0.25);
}

.c3-row {
  display: flex;
  justify-content: space-between;
  margin: 0;
  color: var(--faint);
  font: 11px/1 var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.c3-row b {
  color: var(--ink);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.c3-loss {
  width: 100%;
  height: 56px;
}

.c3-loss-grid {
  fill: none;
  stroke: var(--line);
  stroke-dasharray: 3 4;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.c3-loss-line {
  fill: none;
  stroke: var(--brand);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.c3-bar {
  display: block;
  height: 4px;
  overflow: hidden;
  border-radius: 2px;
  background: var(--sheet-2);
}

.c3-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1f6fd6, #6f95ff, #ff9f70);
  transform: scaleX(var(--p, 0));
  transform-origin: left;
}

.c3-facts {
  display: flex;
  gap: 6px;
  margin: 2px 0 0;
}

.c3-facts span {
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--sheet);
  color: var(--muted);
  font: 11px/1 var(--mono);
}

@media (max-width: 720px) {
  .c3 {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .c3-panel {
    margin: 0 18px 16px;
  }
}

/* ---------- Home: the Timo tile ----------
   An AI time tracker at the centre of the day: work apps on one side, AI models on the other.
   A pulse from an app sets what the timer is tracking and adds a block to the day; a pulse from
   a model sorts the day, and the blocks settle into their categories. Sample data. */
.bx-timo {
  background:
    radial-gradient(55% 65% at 50% 42%, rgb(61 138 224 / 0.2), transparent 72%),
    radial-gradient(40% 50% at 100% 100%, rgb(0 92 177 / 0.1), transparent 70%),
    var(--sheet);
}

.bx-timo:hover {
  background:
    radial-gradient(
      55% 65% at 50% 42%,
      rgb(61 138 224 / 0.26),
      transparent 72%
    ),
    radial-gradient(
      40% 50% at 100% 100%,
      rgb(0 92 177 / 0.12),
      transparent 70%
    ),
    var(--sheet-2);
}

.tm {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-content: center;
  align-items: center;
  padding: 24px 32px 8px;
}

.tm-col {
  display: grid;
  gap: 14px;
}

.tm-col i {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff;
  box-shadow:
    0 0 0 1px rgb(15 18 22 / 0.08),
    0 6px 14px -8px rgb(15 18 22 / 0.3);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.tm-col i.is-on {
  box-shadow:
    0 0 0 1.5px var(--dark),
    0 10px 20px -8px rgb(15 18 22 / 0.4);
  transform: scale(1.08);
}

.tm-col img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.tm-core {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.tm-timer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 16px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 16px;
  background:
    radial-gradient(
      90% 120% at 100% 0%,
      rgb(61 138 224 / 0.38),
      transparent 60%
    ),
    linear-gradient(135deg, var(--dark) 45%, var(--brand-deep) 160%);
  color: #fff;
  box-shadow: 0 20px 40px -20px rgb(15 18 22 / 0.6);
}

.tm-clock {
  margin: 0;
  font: 600 34px/1 var(--font);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.tm-task {
  display: flex;
  grid-column: 1;
  gap: 7px;
  align-items: center;
  min-width: 0;
  margin: 0;
  color: rgb(255 255 255 / 0.75);
  font-size: 13px;
}

.tm-task img {
  flex: none;
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.tm-task span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: opacity 0.25s var(--ease);
}

.tm-task.is-swap span,
.tm-task.is-swap img {
  opacity: 0;
}

.tm-stop {
  display: grid;
  grid-row: 1 / 3;
  grid-column: 2;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--brand-hi), var(--brand) 70%);
  box-shadow: 0 8px 20px -6px rgb(61 138 224 / 0.7);
}

.tm-stop i {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: #fff;
}

/* The AI's mark on the timer, when a model has sorted the day. */
.tm-spark {
  position: absolute;
  top: -10px;
  right: -10px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px -4px rgb(15 18 22 / 0.5);
  opacity: 0;
  transform: scale(0.6);
  transition:
    opacity 0.3s var(--ease),
    transform 0.4s var(--ease);
}

.tm-spark.is-on {
  opacity: 1;
  transform: none;
}

.tm-spark svg {
  width: 13px;
  height: 13px;
  fill: var(--brand);
  stroke: none;
}

/* The day: blocks of time along a ribbon, with the hour marks under it. */
.tm-day {
  padding: 12px 14px 10px;
  border-radius: 14px;
  background: #fff;
  box-shadow:
    0 0 0 1px rgb(15 18 22 / 0.06),
    0 12px 26px -18px rgb(15 18 22 / 0.4);
}

.tm-ribbon {
  position: relative;
  height: 26px;
  overflow: hidden;
  border-radius: 7px;
  background: var(--sheet);
}

.tm-ribbon b {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--x);
  width: var(--w);
  border-radius: 5px;
  background: var(--c);
  transform-origin: left;
  animation: tm-grow 0.7s var(--ease) both;
  transition: background 0.5s var(--ease);
}

@keyframes tm-grow {
  from {
    transform: scaleX(0);
  }
}

.tm-now {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--x, 30%);
  z-index: 1;
  width: 2px;
  background: var(--dark);
  transition: left 0.7s var(--ease);
}

.tm-hours {
  display: flex;
  justify-content: space-between;
  margin: 7px 0 0;
  color: var(--faint);
  font: 10px/1 var(--mono);
}

/* Links from each source to the timer, and the light that runs along them. */
.tm-links {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.tm-links path {
  fill: none;
  stroke: rgb(15 18 22 / 0.14);
  stroke-width: 1;
  stroke-dasharray: 2 4;
}

.tm-links circle {
  fill: var(--dark);
}

.tm-links .tm-glow {
  fill: var(--brand);
  opacity: 0.18;
}

@media (max-width: 720px) {
  .tm {
    gap: 12px;
    padding: 20px 16px 8px;
  }

  .tm-col {
    gap: 10px;
  }

  .tm-col i {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .tm-col img {
    width: 16px;
    height: 16px;
  }

  .tm-clock {
    font-size: 26px;
  }

  .tm-stop {
    width: 36px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tm-ribbon b {
    animation: none;
  }

  .tm-col i,
  .tm-spark,
  .tm-now,
  .tm-task span,
  .tm-ribbon b {
    transition: none;
  }
}

/* ---------- Home: where our AI goes to work ----------
   A stage pinned under the header while the page scrolls past. The tools every team runs
   scatter, then gather into rings around the EMIAC mark; the statement comes into focus and
   lifts, each team arrives beside the hub and draws a line in, and the answer closes it.
   Scroll drives all of it (site.js); only transform and opacity change while it plays. */
.rise {
  position: relative;
  height: 340vh;
  margin-top: 120px;
}

.rise-stage {
  position: sticky;
  top: 64px;
  height: calc(100svh - 64px);
  overflow: hidden;
}

.rise-stage::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      40% 40% at 50% 55%,
      rgb(151 170 255 / 0.22),
      transparent 72%
    ),
    radial-gradient(circle, rgb(17 17 17 / 0.06) 1px, transparent 1.4px) 0 0 /
      24px 24px;
  mask-image: radial-gradient(70% 62% at 50% 55%, #000 30%, transparent 85%);
  content: "";
}

.rise-net {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Soft edges, so the web fades into the page at the top and bottom. */
.rise-stage::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(#fff, transparent 10%, transparent 90%, #fff);
  pointer-events: none;
  content: "";
}

.rise-title {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(720px, 88vw);
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 460;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-align: center;
  will-change: transform;
  transform: translate(-50%, calc(-50% - var(--lift, 0) * var(--lift-px, 32vh)))
    scale(calc(1 - var(--lift, 0) * 0.22));
}

.rise-title span {
  display: inline-block;
  opacity: calc(0.14 + var(--o, 0) * 0.86);
  transform: translateY(calc((1 - var(--o, 0)) * 10px));
}

/* The teams: three a side, the hub between them. */
.ru-cards {
  position: absolute;
  top: 36%;
  right: max(var(--gutter), calc(50% - var(--wrap) / 2));
  left: max(var(--gutter), calc(50% - var(--wrap) / 2));
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 290px) minmax(0, 1fr) minmax(0, 290px);
  grid-auto-flow: dense;
  gap: 18px 24px;
  pointer-events: none;
}

.ru-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid transparent;
  border-radius: 20px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(
        160deg,
        rgb(61 138 224 / 0.35),
        var(--line) 40%,
        var(--line) 70%,
        rgb(61 138 224 / 0.2)
      )
      border-box;
  box-shadow:
    0 1px 2px rgb(16 24 40 / 0.05),
    0 12px 24px -12px rgb(16 24 40 / 0.14),
    0 30px 60px -30px rgb(0 92 177 / 0.22);
  opacity: var(--k, 0);
  will-change: transform, opacity;
  transform: translateX(calc((1 - var(--k, 0)) * var(--from) * 36px))
    scale(calc(0.96 + var(--k, 0) * 0.04));
}

.ru-l {
  --from: -1;
  grid-column: 1;
}

.ru-r {
  --from: 1;
  grid-column: 3;
}

.ru-card .uc-icon {
  flex: none;
  width: 44px;
  height: 44px;
  margin: 0;
  border-radius: 12px;
}

.ru-card .uc-icon svg {
  width: 19px;
  height: 19px;
}

.ru-card > span:last-child {
  display: grid;
  gap: 3px;
}

.ru-card b {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}

.ru-card small {
  color: var(--brand);
  font-size: 12.5px;
}

.rise-end em {
  background: linear-gradient(90deg, var(--brand-deep), var(--brand-hi));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.rise-end {
  position: absolute;
  bottom: 6%;
  left: 50%;
  z-index: 2;
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 34px);
  letter-spacing: -0.015em;
  white-space: nowrap;
  opacity: var(--e, 0);
  transform: translate(-50%, calc((1 - var(--e, 0)) * 16px));
}

@media (max-width: 900px) {
  .ru-cards {
    top: auto;
    bottom: 15%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .ru-l,
  .ru-r {
    grid-column: auto;
  }

  .ru-card {
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .ru-card .uc-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .ru-card b {
    font-size: 13px;
  }

  .ru-card small {
    font-size: 11.5px;
  }

  .rise-end {
    bottom: 5%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rise {
    height: auto;
  }

  .rise-stage {
    position: relative;
    top: 0;
    min-height: 100vh;
  }
}

/* "We build it." in the brand's blue. */
.kb-copy h2 span {
  width: fit-content;
  background: linear-gradient(90deg, var(--brand-deep), var(--brand-hi));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Font preview switch (temporary, see the block at the end of site.js) */
.font-preview {
  position: fixed;
  bottom: 18px;
  left: 18px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border-radius: 14px;
  background: rgb(15 18 22 / 0.92);
  box-shadow: 0 16px 40px -16px rgb(0 0 0 / 0.5);
  backdrop-filter: blur(10px);
}

.font-preview span {
  margin: 0 6px 0 8px;
  color: rgb(255 255 255 / 0.5);
  font: 500 11px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.font-preview button {
  padding: 7px 12px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: rgb(255 255 255 / 0.8);
  font-size: 14px;
  cursor: pointer;
}

.font-preview button:hover {
  background: rgb(255 255 255 / 0.1);
}

.font-preview button.is-on {
  background: #fff;
  color: var(--ink);
}
