/* =========================================================================
   Boundless — design tokens
   ========================================================================= */
:root {
  /* brand */
  --bd-purple: #693efe;
  --bd-purple-soft: #efebff;
  --bd-purple-ink: #2c1f6e;
  --bd-lime: #d3fe3e;
  --bd-lime-soft: #f3ffc6;

  /* neutrals (warm paper) */
  --paper: #f6f5ef;
  --paper-2: #efeee7;
  --paper-3: #e6e4da;
  --ink: #0c0c0e;
  --ink-2: #2a2a2e;
  --ink-3: #5b5b62;
  --ink-4: #8a8a92;
  --line: rgba(12, 12, 14, 0.10);
  --line-strong: rgba(12, 12, 14, 0.18);

  /* radii / shadow */
  --r-xl: 28px;
  --r-lg: 22px;
  --r-md: 14px;
  --r-sm: 8px;
  --shadow-soft: 0 1px 0 rgba(12, 12, 14, 0.04),
    0 30px 60px -30px rgba(12, 12, 14, 0.18);
  --shadow-card: 0 1px 0 rgba(12, 12, 14, 0.05),
    0 18px 40px -28px rgba(12, 12, 14, 0.22);

  /* type */
  --font-sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Roboto, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* layout */
  --maxw: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* =========================================================================
   Reset + base
   ========================================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  font-variant-ligatures: common-ligatures;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}
p {
  margin: 0;
}
em {
  font-style: italic;
  font-family: "Geist", ui-sans-serif;
}
::selection {
  background: var(--bd-lime);
  color: var(--ink);
}
.skip {
  position: absolute;
  inset-inline-start: -9999px;
}
.skip:focus {
  inset-inline-start: 16px;
  top: 16px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 100;
}

/* paper grain backdrop — fixed, pointer-event-none */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(rgba(12, 12, 14, 0.05) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.35;
  mix-blend-mode: multiply;
}

/* =========================================================================
   Buttons + utility
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: transform 0.25s var(--ease-out),
    background-color 0.25s var(--ease-out), color 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
  will-change: transform;
}
.btn--lg {
  padding: 14px 20px;
  font-size: 15px;
  border-radius: 999px;
}
.btn--primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 28px -16px rgba(12, 12, 14, 0.55);
}
.btn--primary:hover {
  background: var(--bd-purple);
  color: #fff;
}
.btn--primary:active {
  transform: translateY(1px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn__arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.25s var(--ease-out);
}
.btn:hover .btn__arrow {
  transform: translateX(3px);
}
.btn__icon {
  width: 12px;
  height: 12px;
}
.link-quiet {
  color: var(--ink-3);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.link-quiet:hover {
  color: var(--ink);
}
.link-quiet::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}
.link-quiet:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  background: rgba(12, 12, 14, 0.04);
  border: 1px solid var(--line);
  font-size: 12.5px;
  letter-spacing: 0;
  color: var(--ink-2);
  font-family: var(--font-mono);
  font-weight: 500;
}
.eyebrow--live .eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bd-lime);
  box-shadow: 0 0 0 4px rgba(211, 254, 62, 0.25);
  animation: pulse 1.8s var(--ease-in-out) infinite;
}
.eyebrow__text {
  font-weight: 500;
}

/* section heads */
.section-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  margin-bottom: 56px;
}
.section-head__kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-block;
  margin-bottom: 18px;
}
.section-head__kicker::before {
  content: "·";
  margin-right: 8px;
  color: var(--bd-purple);
}
.section-head__title {
  font-size: clamp(36px, 5.2vw, 68px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.section-head__title em {
  font-weight: 600;
  color: var(--ink-3);
  font-style: italic;
}
.section-head--split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
}
.section-head--split .section-head__lede {
  color: var(--ink-3);
  font-size: 17px;
  line-height: 1.5;
  max-width: 44ch;
}
.section-head--demo {
  text-align: left;
}

/* num utility */
.num {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* =========================================================================
   Nav
   ========================================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 14px var(--gutter);
  transition: background-color 0.3s var(--ease-out),
    backdrop-filter 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(246, 245, 239, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 17px;
}
.nav__symbol {
  width: 26px;
  height: auto;
}
.nav__wordmark {
  font-weight: 600;
}
.nav__links {
  display: flex;
  gap: 26px;
  justify-self: center;
  font-size: 14px;
  color: var(--ink-2);
}
.nav__links a {
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s;
}
.nav__links a:hover {
  color: var(--ink);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}
.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav__cta {
  display: flex;
  gap: 14px;
  align-items: center;
}
@media (max-width: 880px) {
  .nav__links {
    display: none;
  }
  .nav__cta .link-quiet {
    display: none;
  }
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  position: relative;
  padding: clamp(28px, 4vw, 56px) var(--gutter) clamp(48px, 6vw, 96px);
  overflow: hidden;
}
.hero__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-top: 16px;
}
.display {
  font-size: clamp(44px, 7.5vw, 104px);
  line-height: 0.93;
  letter-spacing: -0.04em;
  font-weight: 600;
}
.display__highlight {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.display__underline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  width: 100%;
  height: 12px;
  color: var(--bd-purple);
  opacity: 0.85;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: draw 1.4s 0.4s var(--ease-out) forwards;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
.lede {
  color: var(--ink-3);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.5;
  max-width: 56ch;
}
.hero__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 14px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.hero__stat {
  padding-right: 18px;
  border-right: 1px solid var(--line);
}
.hero__stat:last-child {
  border-right: 0;
}
.hero__stat:not(:first-child) {
  padding-left: 18px;
}
.hero__stat dt {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.hero__stat dd {
  margin: 0;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* call card */
.callcard {
  position: relative;
  background: #fff;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  isolation: isolate;
  overflow: hidden;
  /* anti-static feel */
  transform: rotate(-0.4deg);
}
.callcard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px 240px at 80% -10%,
    rgba(105, 62, 254, 0.08),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}
.callcard > * {
  position: relative;
  z-index: 1;
}
.callcard__chrome {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.callcard__id {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
}
.callcard__pip {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bd-purple);
  box-shadow: 0 0 0 4px rgba(105, 62, 254, 0.18);
  animation: pulse 1.8s var(--ease-in-out) infinite;
}
.callcard__time {
  letter-spacing: 0.08em;
}
.callcard__caller {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
}
.callcard__avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(140deg, #2a2a2e 0%, #0c0c0e 100%);
  color: var(--bd-lime);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.callcard__name {
  font-weight: 500;
  font-size: 15.5px;
  letter-spacing: -0.01em;
}
.callcard__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 1px;
}
.callcard__handoff {
  text-align: right;
}
.callcard__handoff-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  display: block;
}
.callcard__handoff-target {
  display: inline-block;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 500;
  background: var(--bd-lime);
  color: var(--ink);
  padding: 3px 8px;
  border-radius: 6px;
}
.callcard__transcript {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 168px;
  padding: 8px 2px 4px;
  font-size: 14.5px;
}
.tline {
  max-width: 86%;
  padding: 9px 13px;
  border-radius: 14px;
  line-height: 1.4;
  letter-spacing: -0.005em;
  opacity: 0;
  transform: translateY(6px);
  animation: tlineIn 0.5s var(--ease-out) forwards;
}
.tline--them {
  background: var(--paper-2);
  color: var(--ink-2);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.tline--us {
  background: var(--ink);
  color: var(--paper);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.tline--us .cursor {
  display: inline-block;
  width: 7px;
  height: 14px;
  vertical-align: -2px;
  margin-left: 2px;
  background: var(--bd-lime);
  animation: blink 0.9s steps(2) infinite;
}
@keyframes tlineIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
.callcard__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.callcard__wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 28px;
}
.callcard__wave span {
  display: block;
  width: 3px;
  border-radius: 4px;
  background: var(--ink-2);
  animation: wave 1.1s ease-in-out infinite;
}
.callcard__wave span:nth-child(odd) {
  background: var(--bd-purple);
}
.callcard__wave span:nth-child(1) { animation-delay: 0s; }
.callcard__wave span:nth-child(2) { animation-delay: 0.05s; }
.callcard__wave span:nth-child(3) { animation-delay: 0.1s; }
.callcard__wave span:nth-child(4) { animation-delay: 0.15s; }
.callcard__wave span:nth-child(5) { animation-delay: 0.2s; }
.callcard__wave span:nth-child(6) { animation-delay: 0.25s; }
.callcard__wave span:nth-child(7) { animation-delay: 0.3s; }
.callcard__wave span:nth-child(8) { animation-delay: 0.35s; }
.callcard__wave span:nth-child(9) { animation-delay: 0.4s; }
.callcard__wave span:nth-child(10) { animation-delay: 0.45s; }
.callcard__wave span:nth-child(11) { animation-delay: 0.5s; }
.callcard__wave span:nth-child(12) { animation-delay: 0.55s; }
.callcard__wave span:nth-child(13) { animation-delay: 0.6s; }
.callcard__wave span:nth-child(14) { animation-delay: 0.65s; }
.callcard__wave span:nth-child(15) { animation-delay: 0.7s; }
.callcard__wave span:nth-child(16) { animation-delay: 0.75s; }
.callcard__wave span:nth-child(17) { animation-delay: 0.8s; }
.callcard__wave span:nth-child(18) { animation-delay: 0.85s; }
.callcard__wave span:nth-child(19) { animation-delay: 0.9s; }
.callcard__wave span:nth-child(20) { animation-delay: 0.95s; }
@keyframes wave {
  0%, 100% {
    height: 6px;
  }
  50% {
    height: 26px;
  }
}
.callcard__meta {
  display: inline-flex;
  gap: 8px;
}
.callcard__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.01em;
}
.callcard__chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bd-lime);
  animation: pulse 1.6s var(--ease-in-out) infinite;
}
.callcard__chip--ghost {
  background: transparent;
  color: var(--ink-3);
  border: 1px solid var(--line);
}

/* hero ticker */
.hero__ticker {
  margin-top: clamp(48px, 6vw, 88px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}
.ticker__track {
  display: inline-flex;
  gap: 28px;
  white-space: nowrap;
  animation: ticker 38s linear infinite;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
  padding-left: 28px;
}
.ticker__track span {
  flex-shrink: 0;
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

/* hero responsive */
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .callcard {
    transform: none;
  }
  .hero__stats {
    grid-template-columns: 1fr 1fr;
  }
  .hero__stat:nth-child(2) {
    border-right: 0;
  }
  .hero__stat:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    padding-top: 18px;
    margin-top: 14px;
    padding-left: 0;
  }
}

/* =========================================================================
   Trust strip
   ========================================================================= */
.trust {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(56px, 8vw, 100px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: clamp(48px, 6vw, 84px);
}
.trust__label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}
.trust__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -0.02em;
  color: var(--ink-2);
}
.trust__list li {
  position: relative;
  padding-right: 22px;
  text-decoration: line-through;
  text-decoration-color: rgba(12, 12, 14, 0.35);
  text-decoration-thickness: 1px;
  font-weight: 500;
}
.trust__list li::after {
  content: "·";
  position: absolute;
  right: 0;
  color: var(--ink-4);
  text-decoration: none;
}
.trust__list li:last-child {
  padding-right: 0;
}
.trust__list li:last-child::after {
  display: none;
}

/* =========================================================================
   How it works
   ========================================================================= */
.how {
  padding: clamp(80px, 10vw, 140px) 0;
}
.steps {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 56px);
}
.step {
  display: grid;
  grid-template-columns: minmax(120px, 200px) 1fr;
  gap: clamp(24px, 4vw, 64px);
  padding-top: 32px;
  border-top: 1px solid var(--line);
  position: relative;
}
.step:first-child {
  border-top-color: var(--ink);
}
.step__num {
  font-family: var(--font-mono);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
}
.step__num span {
  display: inline-block;
  position: relative;
}
.step__num span::after {
  content: "";
  position: absolute;
  inset-inline-start: -10px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bd-purple);
  transform: scale(0);
  animation: pop 0.8s var(--ease-out) 0.2s forwards;
}
.step:nth-child(2) .step__num span::after {
  background: var(--bd-lime);
}
.step:nth-child(3) .step__num span::after {
  background: var(--ink);
}
@keyframes pop {
  to {
    transform: scale(1);
  }
}
.step__body {
  max-width: 720px;
}
.step__body h3 {
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  font-weight: 500;
}
.step__body p {
  color: var(--ink-3);
  font-size: 17px;
  line-height: 1.55;
  max-width: 60ch;
}
.step__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.step__chips li {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(12, 12, 14, 0.04);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.01em;
}
.step__minicall {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 540px;
}
.step__line {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  line-height: 1.45;
}
.step__line--them {
  background: var(--paper-2);
  color: var(--ink-2);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  max-width: 80%;
}
.step__line--us {
  background: var(--ink);
  color: var(--paper);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  max-width: 80%;
}

@media (max-width: 720px) {
  .step {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .step__num {
    font-size: 56px;
  }
}

/* =========================================================================
   Skill agents — bento
   ========================================================================= */
.agents {
  padding: clamp(72px, 9vw, 130px) 0;
  background: #faf9f3;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.bento {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(240px, auto);
  gap: 18px;
}
.bento__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
  isolation: isolate;
}
.bento__card:hover {
  transform: translateY(-2px);
}
.bento__card--front {
  grid-column: span 3;
  grid-row: span 2;
  background: linear-gradient(160deg, #0c0c0e 0%, #1d1c22 100%);
  color: var(--paper);
  border-color: transparent;
}
.bento__card--front .bento__tag,
.bento__card--front .bento__count {
  color: rgba(255, 255, 255, 0.65);
}
.bento__card--front .bento__title {
  color: var(--paper);
}
.bento__card--lead {
  grid-column: span 3;
}
.bento__card--booking {
  grid-column: span 3;
}
.bento__card--support {
  grid-column: span 2;
}
.bento__card--outbound {
  grid-column: span 2;
}
.bento__card--billing {
  grid-column: span 2;
}

.bento__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--ink-3);
}
.bento__tag {
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.bento__count {
  font-weight: 500;
}
.bento__title {
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.025em;
  font-weight: 500;
  line-height: 1.18;
  max-width: 22ch;
}
.bento__demo {
  margin-top: auto;
  position: relative;
}

/* orbit (front desk) */
.orbit {
  position: relative;
  height: 220px;
  display: grid;
  place-items: center;
}
.orbit__core {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bd-lime);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 500;
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 32px -10px rgba(211, 254, 62, 0.4);
}
.orbit__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.orbit__ring--1 {
  width: 120px;
  height: 120px;
}
.orbit__ring--2 {
  width: 180px;
  height: 180px;
}
.orbit__ring--3 {
  width: 240px;
  height: 240px;
  border-color: rgba(255, 255, 255, 0.06);
}
.orbit__pip {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bd-purple);
  box-shadow: 0 0 0 4px rgba(105, 62, 254, 0.18);
  animation: orbit 7s linear infinite;
  transform-origin: center center;
  top: 50%;
  left: 50%;
  margin: -5px 0 0 -5px;
  --r: 60px;
}
.orbit__pip--a { animation-delay: 0s; --r: 60px; }
.orbit__pip--b { animation-delay: -2.4s; --r: 90px; background: var(--bd-lime); box-shadow: 0 0 0 4px rgba(211, 254, 62, 0.25); }
.orbit__pip--c { animation-delay: -4.8s; --r: 120px; background: #fff; box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12); }
@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(var(--r)) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(var(--r)) rotate(-360deg);
  }
}

/* checklist (lead) */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: -0.005em;
  position: relative;
}
.checklist li > span {
  width: 16px;
  height: 16px;
  border-radius: 6px;
  border: 1.5px solid var(--line-strong);
  flex: 0 0 16px;
  position: relative;
  transition: all 0.3s var(--ease-out);
}
.checklist li[data-checked] {
  color: var(--ink);
}
.checklist li[data-checked] > span {
  background: var(--bd-purple);
  border-color: var(--bd-purple);
}
.checklist li[data-checked] > span::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translate(-1px, -1px);
  width: 5px;
  height: 9px;
  top: 0;
  left: 4px;
}

/* calendar */
.cal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  font-family: var(--font-mono);
}
.cal__day {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 6px;
  text-align: center;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: all 0.3s var(--ease-out);
}
.cal__day--active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.cal__d {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.cal__day--active .cal__d {
  color: rgba(255, 255, 255, 0.6);
}
.cal__n {
  font-size: 18px;
  font-weight: 500;
}
.cal__slot {
  grid-column: span 2;
  padding: 8px 12px;
  font-size: 13px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  color: var(--ink-2);
  letter-spacing: 0;
}
.cal__slot--booked {
  background: var(--bd-lime);
  border-color: transparent;
  color: var(--ink);
  font-weight: 500;
}
.cal__slot--ghost {
  opacity: 0.45;
  border-style: dashed;
}

/* triage */
.triage {
  display: flex;
  flex-direction: column;
}
.triage__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  font-size: 14px;
  border-top: 1px dashed var(--line);
}
.triage__row:first-child {
  border-top: 0;
}
.triage__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.triage__row--resolved .triage__dot {
  background: var(--bd-lime);
}
.triage__row--routed .triage__dot {
  background: var(--bd-purple);
}
.triage__tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.triage__row--routed .triage__tag {
  color: var(--bd-purple);
  font-weight: 500;
}

/* dialer */
.dialer {
  display: flex;
  flex-direction: column;
  font-size: 13.5px;
}
.dialer__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-top: 1px dashed var(--line);
}
.dialer__row:first-child { border-top: 0; }
.dialer__row--queued {
  opacity: 0.5;
}
.dialer__name {
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink-2);
}
.dialer__status {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.dialer__status--ok {
  color: var(--ink);
}
.dialer__status--live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--bd-purple);
  font-weight: 500;
}
.dialer__status--live span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bd-purple);
  animation: pulse 1.4s var(--ease-in-out) infinite;
}
.dialer__row--active .dialer__name {
  color: var(--ink);
}

/* invoice */
.invoice {
  display: flex;
  flex-direction: column;
  font-family: var(--font-mono);
  font-size: 13px;
}
.invoice__row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-top: 1px dashed var(--line);
  color: var(--ink-2);
}
.invoice__row:first-child {
  border-top: 0;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 11px;
}
.invoice__row--flag {
  color: var(--bd-purple);
  font-weight: 500;
  position: relative;
}
.invoice__row--flag::before {
  content: "▲";
  position: absolute;
  left: -14px;
  top: 9px;
  font-size: 9px;
}
.invoice__row--total {
  font-weight: 500;
  color: var(--ink);
  border-top: 1px solid var(--ink);
  margin-top: 4px;
  padding-top: 12px;
}
.invoice__amt { letter-spacing: 0.02em; }

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.55;
  }
}

@media (max-width: 1080px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento__card--front {
    grid-column: span 2;
    grid-row: auto;
  }
  .bento__card--lead,
  .bento__card--booking,
  .bento__card--support,
  .bento__card--outbound,
  .bento__card--billing {
    grid-column: span 1;
  }
}
@media (max-width: 640px) {
  .bento {
    grid-template-columns: 1fr;
  }
  .bento__card--front,
  .bento__card--lead,
  .bento__card--booking,
  .bento__card--support,
  .bento__card--outbound,
  .bento__card--billing {
    grid-column: span 1;
  }
  .section-head--split {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* =========================================================================
   Demo (transcript)
   ========================================================================= */
.demo {
  padding: clamp(80px, 10vw, 140px) 0;
}
.demo__panel {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.demo__meta {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.demo__caller {
  display: flex;
  align-items: center;
  gap: 14px;
}
.demo__avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bd-purple);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 0.02em;
}
.demo__name {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.015em;
}
.demo__sub {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-3);
  margin-top: 2px;
  letter-spacing: 0.01em;
}
.demo__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(12, 12, 14, 0.04);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-2);
}
.tag--accent {
  background: var(--bd-lime);
  border-color: transparent;
  color: var(--ink);
  font-weight: 500;
}
.demo__lines {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 320px;
}
.demoline {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  align-items: start;
  font-size: 16.5px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.demoline:first-child {
  border-top: 0;
}
.demoline.is-in {
  opacity: 1;
  transform: translateY(0);
}
.demoline__who {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-3);
  padding-top: 4px;
}
.demoline--us .demoline__who {
  color: var(--bd-purple);
}
.demoline--them p {
  color: var(--ink-2);
}
.demoline--us p {
  color: var(--ink);
  font-weight: 500;
}
.demo__handoff {
  margin-top: 24px;
  border-top: 1px solid var(--line-strong);
  padding-top: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}
.demo__handoff-bar {
  height: 28px;
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--bd-lime) 0%, var(--bd-purple) 100%);
}
.demo__handoff-text {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.demo__handoff-text strong {
  letter-spacing: -0.01em;
  font-weight: 500;
}
.demo__handoff-text span {
  color: var(--ink-3);
}

@media (max-width: 880px) {
  .demo__panel {
    grid-template-columns: 1fr;
  }
  .demo__meta {
    position: static;
  }
}

/* =========================================================================
   Capabilities — zigzag
   ========================================================================= */
.capabilities {
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--line);
}
.zig {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 7vw, 110px);
}
.zig__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: center;
}
.zig__row--reverse .zig__copy {
  order: 2;
}
.zig__row--reverse .zig__art {
  order: 1;
}
.zig__copy h3 {
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  font-weight: 500;
  line-height: 1.05;
}
.zig__copy p {
  font-size: 17px;
  color: var(--ink-3);
  line-height: 1.55;
  max-width: 50ch;
  margin-bottom: 22px;
}
.zig__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  max-width: 50ch;
}
.zig__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-2);
  font-weight: 500;
}
.zig__list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bd-purple);
  flex: 0 0 6px;
}

/* art panels */
.zig__art {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(22px, 3vw, 42px);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.zig__art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px 280px at 100% 0%,
    rgba(105, 62, 254, 0.06),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}
.zig__art > * {
  position: relative;
  z-index: 1;
}

/* big waveform */
.zig__art--waveform {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  min-height: 280px;
  background: linear-gradient(160deg, #0c0c0e 0%, #1d1c22 100%);
  color: var(--paper);
  border-color: transparent;
}
.zig__art--waveform::before {
  background: radial-gradient(
    600px 280px at 100% 0%,
    rgba(105, 62, 254, 0.25),
    transparent 70%
  );
}
.bigwave {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 120px;
  justify-content: center;
}
.bigwave span {
  display: block;
  width: 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.5);
  animation: wave 1.3s ease-in-out infinite;
}
.bigwave span:nth-child(3n) {
  background: var(--bd-lime);
}
.bigwave span:nth-child(7n) {
  background: var(--bd-purple);
}
.bigwave span:nth-child(1)  { animation-delay: 0.00s; }
.bigwave span:nth-child(2)  { animation-delay: 0.04s; }
.bigwave span:nth-child(3)  { animation-delay: 0.08s; }
.bigwave span:nth-child(4)  { animation-delay: 0.12s; }
.bigwave span:nth-child(5)  { animation-delay: 0.16s; }
.bigwave span:nth-child(6)  { animation-delay: 0.20s; }
.bigwave span:nth-child(7)  { animation-delay: 0.24s; }
.bigwave span:nth-child(8)  { animation-delay: 0.28s; }
.bigwave span:nth-child(9)  { animation-delay: 0.32s; }
.bigwave span:nth-child(10) { animation-delay: 0.36s; }
.bigwave span:nth-child(11) { animation-delay: 0.40s; }
.bigwave span:nth-child(12) { animation-delay: 0.44s; }
.bigwave span:nth-child(13) { animation-delay: 0.48s; }
.bigwave span:nth-child(14) { animation-delay: 0.52s; }
.bigwave span:nth-child(15) { animation-delay: 0.56s; }
.bigwave span:nth-child(16) { animation-delay: 0.60s; }
.bigwave span:nth-child(17) { animation-delay: 0.64s; }
.bigwave span:nth-child(18) { animation-delay: 0.68s; }
.bigwave span:nth-child(19) { animation-delay: 0.72s; }
.bigwave span:nth-child(20) { animation-delay: 0.76s; }
.bigwave span:nth-child(21) { animation-delay: 0.80s; }
.bigwave span:nth-child(22) { animation-delay: 0.84s; }
.bigwave span:nth-child(23) { animation-delay: 0.88s; }
.bigwave span:nth-child(24) { animation-delay: 0.92s; }
.bigwave span:nth-child(25) { animation-delay: 0.96s; }
.bigwave span:nth-child(26) { animation-delay: 1.00s; }
.bigwave span:nth-child(27) { animation-delay: 1.04s; }
.bigwave span:nth-child(28) { animation-delay: 1.08s; }
.bigwave span:nth-child(29) { animation-delay: 1.12s; }
.bigwave span:nth-child(30) { animation-delay: 1.16s; }
.bigwave__caption {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}

/* route svg */
.routesvg {
  width: 100%;
  height: auto;
  font-family: var(--font-mono);
  font-size: 11px;
}
.routesvg .route__nodes circle {
  fill: var(--paper-3);
}
.routesvg .route__active {
  fill: var(--bd-purple);
}
.routesvg .route__lines path {
  stroke: var(--line-strong);
  stroke-dasharray: 4 4;
}
.routesvg .route__active-line {
  stroke: var(--bd-purple);
  stroke-dasharray: 0;
  stroke-width: 2.5;
}
.routesvg .route__labels text {
  fill: var(--ink-3);
  letter-spacing: 0.02em;
}
.routesvg .route__active-label {
  fill: var(--ink);
  font-weight: 500;
}

/* campaign */
.campaign {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.campaign__head {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-3);
}
.campaign__pct {
  color: var(--ink);
  font-weight: 500;
}
.campaign__bar {
  height: 6px;
  background: var(--paper-3);
  border-radius: 4px;
  overflow: hidden;
}
.campaign__bar i {
  display: block;
  height: 100%;
  width: var(--w);
  background: linear-gradient(90deg, var(--bd-purple) 0%, var(--bd-lime) 100%);
  border-radius: 4px;
  transform-origin: left;
  animation: barIn 1.6s var(--ease-out) both;
}
@keyframes barIn {
  from {
    transform: scaleX(0);
  }
}
.campaign__list {
  display: flex;
  flex-direction: column;
}
.campaign__list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px dashed var(--line);
  font-size: 14px;
}
.campaign__list li:first-child {
  border-top: 0;
}
.campaign__name {
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink-2);
}
.campaign__r {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.campaign__r--ok {
  color: var(--ink);
  font-weight: 500;
}
.campaign__r--mute {
  color: var(--ink-4);
  text-decoration: line-through;
  text-decoration-color: rgba(12, 12, 14, 0.3);
}

/* metrics */
.metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.metric {
  padding: 18px 18px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.metric__label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-3);
}
.metric__num {
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 500;
  letter-spacing: -0.025em;
  font-feature-settings: "tnum";
}
.metric__delta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.01em;
}
.metric__delta--up {
  color: var(--bd-purple);
}

@media (max-width: 880px) {
  .zig__row {
    grid-template-columns: 1fr;
  }
  .zig__row--reverse .zig__copy {
    order: 1;
  }
  .zig__row--reverse .zig__art {
    order: 2;
  }
}

/* =========================================================================
   Industries
   ========================================================================= */
.industries {
  padding: clamp(80px, 10vw, 140px) 0;
  background: #faf9f3;
  border-top: 1px solid var(--line);
}
.indlist {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.ind {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 22px;
  row-gap: 8px;
  position: relative;
  transition: padding 0.4s var(--ease-out);
}
.ind__num {
  grid-row: span 2;
}
.ind h3,
.ind p {
  grid-column: 2;
}
.ind:nth-child(2n) {
  padding-left: clamp(20px, 4vw, 64px);
  border-left: 1px solid var(--line);
}
.ind:nth-child(2n + 1) {
  padding-right: clamp(20px, 4vw, 64px);
}
.ind:hover {
  padding-left: 12px;
}
.ind:nth-child(2n):hover {
  padding-left: clamp(32px, 4vw, 76px);
}
.ind__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-4);
  letter-spacing: 0.04em;
  padding-top: 6px;
}
.ind h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  font-weight: 500;
}
.ind p {
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1.55;
  max-width: 56ch;
}
@media (max-width: 760px) {
  .indlist {
    grid-template-columns: 1fr;
  }
  .ind:nth-child(2n) {
    padding-left: 0;
    border-left: 0;
  }
  .ind:nth-child(2n + 1) {
    padding-right: 0;
  }
}

/* =========================================================================
   Figures
   ========================================================================= */
.figures {
  padding: clamp(72px, 9vw, 130px) var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.figures__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 64px);
}
.figure {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.figure__num {
  font-size: clamp(56px, 7.5vw, 116px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
  font-feature-settings: "tnum";
  white-space: nowrap;
}
.figure__num [data-count-to] {
  display: inline-block;
}
.figure:nth-child(2) .figure__num {
  color: var(--bd-purple);
}
.figure__label {
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1.5;
  max-width: 32ch;
}
.figures__note {
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-4);
  letter-spacing: 0.04em;
}
@media (max-width: 880px) {
  .figures__row {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* =========================================================================
   CTA
   ========================================================================= */
.cta {
  padding: clamp(80px, 10vw, 160px) var(--gutter);
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      900px 480px at 80% 0%,
      rgba(105, 62, 254, 0.32),
      transparent 70%
    ),
    radial-gradient(
      700px 400px at 0% 100%,
      rgba(211, 254, 62, 0.12),
      transparent 70%
    );
  pointer-events: none;
}
.cta__inner {
  max-width: 940px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.cta__title {
  font-size: clamp(42px, 6vw, 84px);
  letter-spacing: -0.04em;
  line-height: 0.96;
  font-weight: 500;
  color: var(--paper);
}
.cta__copy {
  color: rgba(246, 245, 239, 0.7);
  font-size: 17px;
  line-height: 1.55;
  max-width: 38ch;
  margin-top: 18px;
}
.cta__form {
  display: grid;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  padding: 22px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}
.cta__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cta__field span {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(246, 245, 239, 0.55);
}
.cta__field input,
.cta__field select {
  font: inherit;
  font-size: 15px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--paper);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.cta__field select {
  appearance: none;
  background-image: linear-gradient(
      45deg,
      transparent 50%,
      rgba(246, 245, 239, 0.6) 50%
    ),
    linear-gradient(135deg, rgba(246, 245, 239, 0.6) 50%, transparent 50%);
  background-position: calc(100% - 18px) 22px, calc(100% - 13px) 22px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.cta__field input::placeholder {
  color: rgba(246, 245, 239, 0.35);
}
.cta__field input:focus,
.cta__field select:focus {
  border-color: var(--bd-lime);
  background: rgba(0, 0, 0, 0.5);
}
.cta__form .btn--primary {
  background: var(--bd-lime);
  color: var(--ink);
  justify-content: center;
}
.cta__form .btn--primary:hover {
  background: #fff;
  color: var(--ink);
}
.cta__feedback {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--bd-lime);
  letter-spacing: 0.02em;
  margin: 0;
  text-align: center;
}
@media (max-width: 880px) {
  .cta__inner {
    grid-template-columns: 1fr;
  }
}

/* =========================================================================
   Footer
   ========================================================================= */
.foot {
  padding: clamp(56px, 7vw, 96px) var(--gutter) 24px;
  background: var(--paper);
  position: relative;
}
.foot__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: clamp(32px, 5vw, 80px);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.foot__brand img {
  width: 168px;
  height: auto;
  margin-bottom: 18px;
}
.foot__brand p {
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.55;
  max-width: 38ch;
}
.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.foot__cols h4 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-bottom: 14px;
  font-weight: 500;
}
.foot__cols ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 15px;
}
.foot__cols a {
  color: var(--ink-2);
  transition: color 0.2s;
}
.foot__cols a:hover {
  color: var(--bd-purple);
}
.foot__bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
  flex-wrap: wrap;
  gap: 12px;
}
.foot__legal {
  display: inline-flex;
  gap: 10px;
}
.foot__legal a:hover {
  color: var(--ink);
}
@media (max-width: 760px) {
  .foot__inner {
    grid-template-columns: 1fr;
  }
  .foot__cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================================
   Reveal-on-scroll
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  will-change: transform, opacity;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-stagger] > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.reveal[data-stagger].is-in > * {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal,
  .reveal[data-stagger] > * {
    opacity: 1;
    transform: none;
  }
}
