:root {
  --colors-neutral-50: #fafafa;
  --colors-neutral-100: #f5f5f5;
  --colors-neutral-200: #e5e5e5;
  --colors-neutral-300: #d4d4d4;
  --colors-neutral-400: #a3a3a3;
  --colors-neutral-500: #737373;
  --colors-neutral-600: #525252;
  --colors-neutral-700: #404040;
  --colors-neutral-800: #262626;
  --colors-neutral-900: #171717;
  --colors-neutral-950: #111111;
  --colors-stone-50: #f2f2f0;
  --colors-stone-100: #e9e9df;
  --colors-stone-200: #dddac7;
  --colors-lime-50: #f3effc;
  --colors-lime-100: #e8e0fa;
  --colors-lime-300: #9b82ed;
  --colors-lime-400: #866ae7;
  --colors-lime-500: #6d4fd4;
  --ink: #111111;
  --lime: #866ae7;
  --canvas: #f7f7f4;
  --paper: #ffffff;
  --font-family-sans: Geist, ui-sans-serif, system-ui, sans-serif;
  --border-radius-sm: 8px;
  --border-radius-default: 8px;
  --border-radius-md: 8px;
  --border-radius-lg: 8px;
  --border-radius-xl: 8px;
  --shadow-sm: 0 0 0 1px hsla(0deg, 0%, 7%, 0.04), 0 4px 8px 0 hsla(0deg, 0%, 7%, 0.08);
  --shadow-md: 0 0 0 1px hsla(0deg, 0%, 7%, 0.04), 0 8px 24px 0 hsla(0deg, 0%, 7%, 0.16);
  --shadow-lg: 0 0 0 1px hsla(0deg, 0%, 7%, 0.04), 0 12px 32px 0 hsla(0deg, 0%, 7%, 0.24);
  --wrap: min(1200px, calc(100% - 40px));
  --header-h: 108px;
  --banner-h: 40px;
  --nav-h: 68px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--font-family-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

[hidden] {
  display: none !important;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
ul,
blockquote,
figure {
  margin: 0;
}

button,
input {
  font: inherit;
}

::selection {
  background: var(--lime);
  color: #fff;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 80;
  padding: 8px 12px;
  border-radius: var(--border-radius-sm);
  background: var(--lime);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
}

.promo-banner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
  min-height: var(--banner-h);
  padding: 8px 40px;
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.promo-banner p {
  max-width: 42ch;
  font-size: 13px;
  line-height: 1.3;
}

.promo-banner a {
  flex-shrink: 0;
  color: #fff;
  font-size: 13px;
  text-underline-offset: 2px;
}

.banner-dismiss {
  position: absolute;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.banner-toggle:checked + .promo-banner {
  display: none;
}

.header-bar {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(25px);
}

.header-inner {
  width: var(--wrap);
  min-height: var(--nav-h);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wordmark {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  text-decoration: none;
}

.wordmark img {
  width: 98px;
  height: 28px;
}

.header-actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
}

.header-link {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
}

.header-link:hover {
  color: var(--colors-neutral-600);
}

.header-actions .btn {
  min-height: 34px;
  padding: 6px 14px;
  font-size: 13px;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: var(--border-radius-default);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.btn-sm {
  min-height: 36px;
  padding: 8px 14px;
  font-size: 13px;
}

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

.btn-lime:hover {
  background: var(--colors-lime-300);
}

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

.btn-ink:hover {
  background: var(--colors-neutral-800);
}

.btn-ghost {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--canvas);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 36px 0 28px;
  background: #fff;
  color: var(--ink);
}

.hero-dots {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--colors-neutral-300) 0.8px, transparent 0.9px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 28%, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 28%, #000 70%, transparent 100%);
  opacity: 0.55;
}

.hero-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
}

.hero .eyebrow {
  margin-bottom: 0;
  color: var(--colors-neutral-500);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.hero-copy {
  margin-top: 28px;
}

.hero-lead {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-top: 20px;
}

.hero-lead .btn,
.hero-ctas {
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow.ink {
  color: var(--colors-neutral-600);
}

h1,
h2,
h3 {
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.35rem, 9vw, 4rem);
}

h2 {
  max-width: 18ch;
  font-size: clamp(1.85rem, 6vw, 3.15rem);
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 5vw, 2.5rem);
}

#platform,
#contact,
.contact-anchor {
  scroll-margin-top: 116px;
}

.contact-anchor {
  height: 0;
  overflow: visible;
}

.lede {
  max-width: 38ch;
  margin-top: 18px;
  color: var(--colors-neutral-300);
  font-size: 1.05rem;
  line-height: 1.55;
}

.hero .lede {
  max-width: 42ch;
  margin-top: 0;
  color: var(--colors-neutral-500);
  font-size: 0.95rem;
  line-height: 1.45;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.25rem, 8vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.product-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  background: #171717;
  box-shadow: var(--shadow-lg);
}

.light-frame {
  border-color: var(--colors-neutral-200);
  background: var(--paper);
  box-shadow: var(--shadow-md);
}

.hero-stage {
  position: relative;
  z-index: 1;
  overflow: hidden;
  isolate: isolate;
  width: var(--wrap);
  margin: 36px auto 0;
  padding: 40px 20px 48px;
  border-radius: var(--border-radius-default);
  background: #0c1224;
}

.hero-frame {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  min-height: 0;
  margin: 0 auto;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 64px rgb(20 16 8 / 0.28), 0 2px 10px rgb(20 16 8 / 0.12);
}

.frame-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.light-frame .frame-chrome {
  border-bottom-color: var(--colors-neutral-100);
  background: var(--colors-neutral-50);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--colors-neutral-700);
}

.light-frame .dot {
  background: var(--colors-neutral-300);
}

.dot:nth-child(2) {
  background: var(--colors-neutral-600);
}

.dot:nth-child(3) {
  background: var(--lime);
}

.chrome-title {
  margin-left: 8px;
  color: var(--colors-neutral-400);
  font-size: 12px;
  font-weight: 500;
}

.frame-body {
  min-height: 220px;
  padding: 16px 16px 48px;
}

.frame-label {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 5px 10px;
  border-radius: var(--border-radius-default);
  background: rgba(17, 17, 17, 0.82);
  color: var(--lime);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.light-frame .frame-label {
  background: var(--ink);
}

.hero-ui,
.workspace-ui,
.buyer-ui,
.ask-ui {
  display: grid;
  gap: 14px;
}

.hero-ui {
  grid-template-columns: 72px 1fr;
}

.ui-rail {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 8px;
  border-radius: var(--border-radius-default);
  background: #1f1f1f;
}

.ui-pill {
  width: 28px;
  height: 28px;
  border-radius: var(--border-radius-default);
  background: var(--lime);
}

.ui-line,
.ui-bar {
  display: block;
  border-radius: 999px;
  background: var(--colors-neutral-800);
}

.ui-search,
.ui-swatch {
  display: block;
  border-radius: var(--border-radius-default);
  background: var(--colors-neutral-800);
}

.ui-line {
  width: 100%;
  height: 6px;
}

.ui-bar {
  width: 72%;
  height: 8px;
  background: var(--colors-neutral-200);
}

.light-frame .ui-bar,
.light-frame .ui-search {
  background: var(--colors-neutral-200);
}

.ui-bar.wide,
.ui-line.wide {
  width: 88%;
}

.ui-bar.mid,
.ui-line.mid {
  width: 56%;
}

.ui-bar.thin,
.ui-line.short {
  width: 40%;
  height: 6px;
}

.ui-main {
  display: grid;
  gap: 14px;
}

.ui-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ui-card {
  padding: 12px;
  border-radius: var(--border-radius-default);
  background: #1c1c1c;
}

.ui-card.accent {
  background: linear-gradient(180deg, #2a2248 0%, #1c1c1c 100%);
}

.ui-kicker,
.ui-card span {
  display: block;
  color: var(--colors-neutral-400);
  font-size: 11px;
}

.ui-card strong {
  display: block;
  margin: 6px 0 2px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.ui-rows {
  display: grid;
  gap: 8px;
}

.ui-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: var(--border-radius-default);
  background: #1c1c1c;
}

.light-frame .ui-row {
  background: var(--colors-neutral-50);
  border: 1px solid var(--colors-neutral-100);
}

.ui-avatar {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--colors-neutral-700);
}

.ui-avatar.lime,
.ui-swatch.lime {
  background: var(--lime);
}

.ui-tag {
  margin-left: auto;
  padding: 3px 8px;
  border-radius: var(--border-radius-default);
  background: rgba(134, 106, 231, 0.16);
  color: var(--lime);
  font-size: 10px;
  font-weight: 600;
}

.ui-tag.mute {
  background: var(--colors-neutral-800);
  color: var(--colors-neutral-400);
}

.ui-toolbar {
  display: flex;
  gap: 8px;
}

.ui-search {
  flex: 1;
  height: 32px;
  border-radius: var(--border-radius-default);
}

.ui-chip {
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: var(--border-radius-default);
  background: var(--colors-neutral-100);
  color: var(--colors-neutral-600);
  font-size: 12px;
  font-weight: 600;
}

.ui-chip.lime {
  background: var(--colors-lime-50);
  color: var(--ink);
}

.ui-stack {
  display: grid;
  flex: 1;
  gap: 6px;
}

.ui-metric {
  color: var(--colors-neutral-600);
  font-size: 12px;
  font-weight: 600;
}

.ui-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ui-tile {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--colors-neutral-100);
  border-radius: var(--border-radius-default);
  background: var(--colors-neutral-50);
}

.ui-swatch {
  width: 100%;
  height: 54px;
  border-radius: var(--border-radius-default);
  background: var(--colors-stone-100);
}

.ui-cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: var(--border-radius-default);
  background: var(--colors-lime-50);
}

.ui-btn-fake {
  padding: 6px 10px;
  border-radius: var(--border-radius-default);
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}

.ask-ui {
  gap: 10px;
}

.chat-bubble {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: var(--border-radius-default);
  font-size: 13px;
  line-height: 1.4;
}

.chat-bubble.in {
  background: var(--colors-neutral-100);
  color: var(--colors-neutral-800);
}

.chat-bubble.out {
  margin-left: auto;
  background: var(--ink);
  color: #fff;
}

.chat-compose {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--colors-neutral-200);
  border-radius: var(--border-radius-default);
}

.compose-send {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lime);
}

.proof-band {
  padding: 48px 0 56px;
  background: var(--paper);
  border-bottom: 1px solid var(--colors-neutral-200);
}

.working-line {
  max-width: 28ch;
  color: var(--colors-neutral-600);
  font-size: 1.05rem;
}

.metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.metrics li {
  display: grid;
  gap: 4px;
}

.metrics strong {
  font-size: clamp(1.4rem, 4vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.metrics span {
  color: var(--colors-neutral-600);
  font-size: 14px;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.logo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 10px 12px;
  border: 1px solid var(--colors-neutral-200);
  border-radius: var(--border-radius-default);
  background: var(--colors-stone-50);
  color: var(--colors-neutral-500);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-slot:has(img) {
  min-height: 80px;
}

.logo-slot img {
  display: block;
  max-width: 88%;
  max-height: 56px;
  object-fit: contain;
  filter: grayscale(1);
}

.logo-tall img {
  max-height: 48px;
}

.logo-wide img {
  max-width: calc(88% - 16px);
  max-height: 40px;
}

.logo-round {
  border-radius: 50%;
}

.platform,
.love {
  padding: 72px 0;
}

.love {
  background: var(--paper);
}

.integrated {
  padding: 72px 0;
  background: var(--paper);
}

.service {
  padding: 72px 0;
}

.section-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.section-intro-copy {
  min-width: 0;
}

.section-mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.platform .section-intro h2 {
  max-width: 40ch;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 500;
}

.chapter {
  display: grid;
  overflow: hidden;
  gap: 24px;
  margin-top: 20px;
  padding: 28px;
  border-radius: var(--border-radius-default);
  background: var(--paper);
}

.chapter + .chapter {
  margin-top: 40px;
}

.chapter-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.chapter-stage {
  position: relative;
  display: flex;
  overflow: hidden;
  isolate: isolate;
  align-items: center;
  min-height: 280px;
  padding: 28px 24px;
  border-radius: var(--border-radius-default);
  background: var(--colors-stone-200);
}

.stage-fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.stage-fx canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

@property --shader-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 210deg;
}

@property --shader-shift {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 18%;
}

.chapter-stage-shader,
.hero-stage {
  background: #0c1224;
}

.chapter-stage-shader .stage-fx,
.hero-stage .stage-fx {
  background:
    radial-gradient(ellipse 90% 80% at var(--shader-shift) 82%, rgb(134 106 231 / 0.55), transparent 58%),
    radial-gradient(ellipse 70% 60% at 92% 8%, rgb(34 211 238 / 0.32), transparent 52%),
    radial-gradient(ellipse 55% 50% at 48% 42%, rgb(20 184 166 / 0.22), transparent 48%),
    conic-gradient(
      from var(--shader-angle) at 42% 58%,
      #866ae7 0deg,
      #163d4f 90deg,
      #1a5a44 160deg,
      #38bdf8 240deg,
      #866ae7 360deg
    );
  animation: shader-drift 16s linear infinite;
}

.hero-stage .stage-fx {
  animation-duration: 6.5s;
}

.chapter-amber {
  --chapter-accent: #ffa02f;
  --chapter-accent-glow: rgb(255 160 47 / 0.18);
}

.chapter-sky {
  --chapter-accent: #6bb5fd;
  --chapter-accent-glow: rgb(107 181 253 / 0.18);
}

.chapter-amber .bullets li::before,
.chapter-sky .bullets li::before {
  background: var(--chapter-accent);
  box-shadow: 0 0 0 3px var(--chapter-accent-glow);
}

.chapter-amber .chapter-stage-shader .stage-fx {
  background:
    radial-gradient(ellipse 90% 80% at var(--shader-shift) 82%, rgb(255 160 47 / 0.55), transparent 58%),
    radial-gradient(ellipse 70% 60% at 92% 8%, rgb(20 184 166 / 0.32), transparent 52%),
    radial-gradient(ellipse 55% 50% at 48% 42%, rgb(26 90 68 / 0.28), transparent 48%),
    conic-gradient(
      from var(--shader-angle) at 42% 58%,
      #ffa02f 0deg,
      #163d4f 90deg,
      #1a5a44 160deg,
      #ffd27a 240deg,
      #ffa02f 360deg
    );
}

.chapter-sky .chapter-stage-shader .stage-fx {
  background:
    radial-gradient(ellipse 90% 80% at var(--shader-shift) 82%, rgb(107 181 253 / 0.55), transparent 58%),
    radial-gradient(ellipse 70% 60% at 92% 8%, rgb(20 184 166 / 0.32), transparent 52%),
    radial-gradient(ellipse 55% 50% at 48% 42%, rgb(26 90 68 / 0.28), transparent 48%),
    conic-gradient(
      from var(--shader-angle) at 42% 58%,
      #6bb5fd 0deg,
      #163d4f 90deg,
      #1a5a44 160deg,
      #b9dcfe 240deg,
      #6bb5fd 360deg
    );
}

.chapter-stage-shader .stage-fx::after,
.hero-stage .stage-fx::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  mix-blend-mode: overlay;
  background-image: 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='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes shader-drift {
  to {
    --shader-angle: 570deg;
    --shader-shift: 78%;
  }
}

.chapter-kicker {
  margin-bottom: 10px;
  color: var(--colors-neutral-500);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.chapter-copy p,
.chapter-copy li {
  color: var(--colors-neutral-700);
}

.chapter-copy > p {
  max-width: 48ch;
}

.chapter-copy h3 {
  max-width: 18ch;
  color: var(--colors-neutral-800);
  font-size: clamp(1.35rem, 3.4vw, 1.85rem);
  font-weight: 500;
}

.chapter .product-frame {
  width: 100%;
  min-height: 280px;
  box-shadow: var(--shadow-md);
}

.frame-shot {
  display: flex;
  flex-direction: column;
}

.frame-shot .frame-chrome {
  position: relative;
  justify-content: flex-start;
  min-height: 38px;
  padding: 6px 14px;
  background: #f4f3f0;
  border-bottom-color: #ebe9e4;
}

.frame-shot .chrome-dots {
  display: flex;
  align-items: center;
  gap: 5px;
}

.frame-shot .dot,
.frame-shot .dot:nth-child(2),
.frame-shot .dot:nth-child(3) {
  width: 6px;
  height: 6px;
  background: #c9c7c2;
}

.chrome-url {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: min(300px, calc(100% - 80px));
  height: 24px;
  padding: 0 8px;
  border: 1px solid #e4e2dc;
  border-radius: 999px;
  background: #fbfaf8;
  color: #8a8882;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: -0.01em;
  transform: translateX(-50%);
}

.chrome-url span {
  overflow: hidden;
  flex: 1;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chrome-icon {
  flex-shrink: 0;
  width: 11px;
  height: 11px;
}

.chapter .frame-shot {
  min-height: 0;
}

.frame-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.shot-compose {
  position: relative;
  width: 100%;
}

.shot-compose .shot-mobile {
  position: absolute;
  left: 16px;
  bottom: -42%;
  z-index: 1;
  width: 32%;
  padding: 8px 6px 9px;
  border-radius: 22px;
  background: #1c1c1c;
  box-shadow: 0 16px 40px rgb(0 0 0 / 0.34);
}

.shot-mobile img {
  display: block;
  width: 100%;
  border-radius: 14px;
}

.phone-island {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 1;
  width: 28%;
  height: 10px;
  border-radius: 999px;
  background: #1c1c1c;
  transform: translateX(-50%);
}

.chapter-copy blockquote {
  max-width: 36ch;
  margin-top: auto;
  padding-top: 28px;
}

.chapter-copy blockquote > p {
  font-size: 1rem;
}

.chapter-copy blockquote cite,
.chapter-copy blockquote footer span {
  font-size: 0.85rem;
}

blockquote > p {
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

blockquote > p::before {
  content: "“";
}

blockquote > p::after {
  content: "”";
}

blockquote footer {
  display: grid;
  gap: 2px;
  margin-top: 22px;
}

blockquote cite {
  color: var(--ink);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
}

blockquote footer span {
  color: var(--colors-neutral-500);
  font-size: 1rem;
}

.bullets,
.checklist,
.quote-grid {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bullets {
  display: grid;
  gap: 10px;
  max-width: 48ch;
  margin-top: 20px;
}

.bullets li,
.checklist li {
  position: relative;
  padding-left: 22px;
  color: var(--colors-neutral-700);
}

.bullets li::before,
.checklist li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px var(--colors-lime-50);
}

.integrate-grid {
  display: grid;
  gap: 12px;
}

.integrate-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border-radius: var(--border-radius-default);
  background: var(--canvas);
}

.integrate-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.integrate-card p,
.integrate-copy p {
  max-width: 42ch;
  color: var(--colors-neutral-600);
  font-size: 0.95rem;
  line-height: 1.45;
}

.integrate-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}

.integrate-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.integrate-apps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  margin-top: auto;
  padding: 24px 0 0;
  list-style: none;
}

.integrate-apps li {
  display: grid;
  gap: 4px;
  padding: 14px 12px;
  border-radius: var(--border-radius-default);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.app-mark {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-bottom: 8px;
  color: var(--ink);
}

.app-mark img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.app-name {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.integrate-preview {
  display: grid;
  gap: 10px;
  width: 100%;
  margin-top: 24px;
  padding: 16px;
  border-radius: var(--border-radius-default);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.integrate-card > .integrate-preview {
  margin-top: auto;
}

.integrate-card > .flow-preview {
  margin-top: auto;
  margin-bottom: auto;
}

.flow-preview {
  align-self: center;
  width: min(300px, 100%);
  gap: 0;
  padding: 12px;
}

.flow-preview .preview-head {
  margin-bottom: 8px;
  padding-bottom: 6px;
}

.flow-title {
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.flow-step {
  position: relative;
  padding: 6px 10px 6px 24px;
  border: 1px solid var(--colors-neutral-100);
  border-radius: var(--border-radius-md);
  background: var(--canvas);
  animation: flow-step 10s ease-in-out infinite;
}

.flow-preview .flow-step:nth-child(2) {
  animation-delay: 0s;
}

.flow-preview .flow-step:nth-child(4) {
  animation-delay: 3.3s;
}

.flow-preview .flow-step:nth-child(6) {
  animation-delay: 6.6s;
}

.flow-step::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  animation: flow-dot 10s ease-in-out infinite;
}

.flow-preview .flow-step:nth-child(2)::before {
  animation-delay: 0s;
}

.flow-preview .flow-step:nth-child(4)::before {
  animation-delay: 3.3s;
}

.flow-preview .flow-step:nth-child(6)::before {
  animation-delay: 6.6s;
}

.flow-kicker {
  display: block;
  margin-bottom: 1px;
  color: var(--lime);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.flow-step strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.flow-connector {
  display: block;
  width: 1px;
  height: 8px;
  margin-left: 11px;
  background: var(--colors-neutral-200);
  transform-origin: top center;
  animation: flow-line 10s ease-in-out infinite;
}

.flow-preview .flow-connector:nth-child(3) {
  animation-delay: 1.9s;
}

.flow-preview .flow-connector:nth-child(5) {
  animation-delay: 5.2s;
}

.flow-preview .ui-chip {
  animation: flow-chip 2.4s ease-in-out infinite;
}

@keyframes flow-step {
  0%,
  22% {
    border-color: var(--lime);
    background: var(--colors-lime-50);
  }

  30%,
  100% {
    border-color: var(--colors-neutral-100);
    background: var(--canvas);
  }
}

@keyframes flow-dot {
  0%,
  22% {
    transform: scale(1.35);
    box-shadow: 0 0 0 3px var(--colors-lime-100);
  }

  30%,
  100% {
    transform: scale(1);
    box-shadow: none;
  }
}

@keyframes flow-line {
  0%,
  16% {
    background: var(--lime);
    transform: scaleY(1);
  }

  24%,
  100% {
    background: var(--colors-neutral-200);
    transform: scaleY(0.7);
  }
}

@keyframes flow-chip {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.45;
  }
}

.preview-head,
.preview-row,
.preview-compose {
  display: flex;
  align-items: center;
  gap: 10px;
}

.preview-head {
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--colors-neutral-100);
}

.preview-compose {
  margin-top: 4px;
  padding: 8px;
  border: 1px solid var(--colors-neutral-200);
  border-radius: var(--border-radius-default);
}

.integrate-wide {
  overflow: hidden;
  gap: 24px;
}

.integrate-preview.labs-orbit,
.labs-orbit {
  --labs-linen-50: #fbfaf7;
  --labs-line: rgb(17 17 17 / 0.12);
  overflow: hidden;
  position: relative;
  align-self: stretch;
  min-height: 260px;
  margin: 4px -28px -28px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  container-type: size;
}

.labs-orbit-graphic {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%) scale(calc(100cqw / 760px));
  transform-origin: center;
}

.labs-orbit-discs {
  position: absolute;
  inset: 0;
}

.labs-disc {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 0 1.5px var(--labs-line);
  transform: translate(-50%, -50%);
}

.labs-disc-lg {
  width: 752px;
  height: 752px;
}

.labs-disc-md {
  width: 544px;
  height: 544px;
}

.labs-disc-sm {
  width: 336px;
  height: 336px;
}

.labs-orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform-origin: 0 0;
  animation: labs-orbit var(--labs-duration) linear infinite;
}

.labs-orbit-outer {
  --labs-duration: 42s;
  --labs-radius: 376px;
}

.labs-orbit-inner {
  --labs-duration: 36s;
  --labs-radius: 272px;
}

.labs-orbit-slot {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  transform: rotate(var(--labs-angle)) translateX(var(--labs-radius));
  transform-origin: 0 0;
}

.labs-orbit-fix {
  transform: rotate(calc(var(--labs-angle) * -1));
}

.labs-orbit-chip {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: -34px 0 0 -34px;
  border-radius: var(--border-radius-default);
  background: var(--labs-linen-50);
  box-shadow:
    0 2px 3px -1px rgb(6 78 59 / 0.12),
    0 1px 0 0 rgb(6 78 59 / 0.04),
    0 0 0 1px #dedbce;
  animation: labs-counter-orbit var(--labs-duration) linear infinite;
}

.labs-orbit-chip img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

@keyframes labs-orbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes labs-counter-orbit {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

.integrate-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.service-grid,
.closing-grid {
  display: grid;
  gap: 28px;
}

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

.pillar-grid li {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--colors-neutral-200);
  border-radius: var(--border-radius-md);
  background: var(--paper);
}

.pillar-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pillar-icon {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: var(--border-radius-md);
  background: var(--colors-lime-50);
  color: var(--lime);
}

.pillar-icon svg {
  width: 17px;
  height: 17px;
}

.pillar-grid h3 {
  display: flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pillar-grid p {
  color: var(--colors-neutral-600);
  font-size: 0.95rem;
  line-height: 1.45;
}

.checklist {
  display: grid;
  gap: 14px;
}

.quote-grid {
  display: grid;
  align-items: stretch;
  gap: 12px;
}

.quote-grid li {
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--colors-neutral-200);
  border-radius: var(--border-radius-md);
  background: var(--canvas);
}

.quote-grid blockquote {
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 100%;
  margin: 0;
}

.quote-grid blockquote > p {
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
}

.quote-grid blockquote footer {
  margin-top: auto;
  padding-top: 22px;
}

.closing {
  position: relative;
  padding: 72px 0 80px;
  background:
    radial-gradient(80% 70% at 0% 0%, rgba(134, 106, 231, 0.18), transparent 45%),
    var(--ink);
  color: #fff;
}

.closing-dots {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgb(255 255 255 / 0.42) 0.8px, transparent 0.9px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 28%, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 28%, #000 70%, transparent 100%);
  opacity: 0.45;
}

.closing-grid {
  position: relative;
  z-index: 1;
}

.closing .lede {
  color: var(--colors-neutral-300);
}

.form-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius-lg);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--colors-neutral-600);
  font-size: 13px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--colors-neutral-200);
  border-radius: var(--border-radius-sm);
  background: var(--canvas);
  color: var(--ink);
  font: inherit;
  outline: none;
  resize: vertical;
}

.contact-form textarea {
  min-height: 112px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--lime);
  background: var(--paper);
}

.contact-form .btn {
  position: relative;
  margin-top: 6px;
  width: 100%;
}

.contact-form .btn.is-loading .btn-label {
  visibility: hidden;
}

.btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
}

.contact-form .btn.is-loading .btn-spinner {
  display: block;
  position: absolute;
}

@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}

.form-error {
  margin: 0;
  color: #b42318;
  font-size: 14px;
  font-weight: 500;
}

.form-confirmation {
  padding: 28px 8px;
  color: var(--lime);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-align: center;
}

.site-footer {
  padding: 28px 0;
  background: var(--paper);
  border-top: 1px solid var(--colors-neutral-200);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px 20px;
  color: var(--colors-neutral-600);
  font-size: 14px;
}

.footer-inner a {
  color: var(--colors-neutral-700);
  text-decoration: none;
}

.footer-inner a:hover {
  color: var(--ink);
}

.footer-inner nav {
  display: flex;
  gap: 16px;
}

.footer-links {
  justify-content: center;
  gap: 24px;
}

.footer-social {
  justify-content: flex-end;
  justify-self: end;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--colors-neutral-600);
}

.footer-social svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

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

@media (max-width: 767px) {
  .header-inner { flex-wrap: nowrap; gap: 10px; }
  .header-actions { flex-shrink: 0; }
  .header-link { font-size: 13px; }
  .header-actions .btn { padding-inline: 10px; font-size: 12px; }
  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
    justify-self: center;
  }
}

@media (max-width: 479px) {
  .integrate-grid { grid-template-columns: minmax(0, 1fr); }
  .integrate-card { min-width: 0; }
  .integrate-apps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  :root {
    --wrap: min(1200px, calc(100% - 64px));
    --header-h: 108px;
    --nav-h: 64px;
  }

  .header-inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
  }

  .header-actions {
    gap: 16px;
  }

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

  #platform,
  #contact {
    scroll-margin-top: 116px;
  }

  .hero {
    padding: 56px 0 40px;
  }

  .hero-copy {
    margin-top: 32px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.75rem, 5vw, 3.5rem);
    font-weight: 400;
  }

  .hero-lead {
    gap: 20px 32px;
    margin-top: 24px;
  }

  .hero .lede {
    max-width: 52ch;
    font-size: 1rem;
  }

  .hero-stage {
    margin-top: 48px;
    padding: 56px 48px 64px;
  }

  .chapter {
    grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 0;
    margin-top: 28px;
    padding: 0;
  }

  .chapter + .chapter {
    margin-top: 64px;
  }

  .chapter-copy {
    padding: 28px 40px;
  }

  .chapter-stage {
    min-height: 460px;
    padding: 48px 40px;
    border-radius: 0;
  }

  .chapter-flip {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  }

  .chapter-flip .chapter-copy {
    order: 2;
  }

  .chapter .product-frame {
    min-height: 480px;
  }

  .chapter .frame-shot {
    min-height: 0;
  }

  .service-grid,
  .closing-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
  }

  .closing-grid {
    align-items: start;
  }

  .pillar-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .metrics {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 36px;
  }

  .logo-cloud {
    grid-template-columns: repeat(5, 1fr);
  }

  .quote-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .integrate-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .integrate-wide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column: 1 / -1;
    align-items: stretch;
    padding: 28px;
  }

  .integrate-wide .integrate-preview {
    margin-top: 0;
    min-height: 280px;
  }

  .integrate-wide .labs-orbit {
    min-height: 380px;
    margin: -28px -28px -28px 0;
  }

  .section-intro {
    margin-bottom: 48px;
  }

  .section-mark {
    width: 40px;
    height: 40px;
  }

  .platform,
  .integrated,
  .service,
  .love,
  .closing {
    padding: 96px 0;
  }

  .working-line {
    font-size: 1.2rem;
  }

  .light-frame {
    min-height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .chapter-stage-shader .stage-fx,
  .hero-stage .stage-fx,
  .flow-step,
  .flow-step::before,
  .flow-connector,
  .flow-preview .ui-chip,
  .labs-orbit-ring,
  .labs-orbit-chip {
    animation: none;
  }
}
