@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 100 700;
  font-display: block;
  src: url("../fonts/MaterialSymbolsOutlined.woff2") format("woff2");
}

.ms {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;

  display: inline-block;
  white-space: nowrap;
  direction: ltr;

  letter-spacing: normal;
  text-transform: none;
  word-wrap: normal;

  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;

  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/SourceSans3-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/IBMPlexMono-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/IBMPlexMono-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
:root {
  --surface-page: #FCFDFF;
  --surface-1: #F4F6FA;
  --surface-2: #ECEFF3;
  --surface-3: #F1F3F7;

  --border-1: #DDE2E8;
  --border-row: #E1E6EC;
  --border-cell: #E7EBF0;
  --border-ink-16: rgba(51, 78, 104, .16);
  --border-ink-14: rgba(51, 78, 104, .14);

  --ink-900: #102A43;
  --ink-800: #16233B;
  --ink-700: #334E68;
  --ink-650: #35455C;
  --ink-600: #3F5A73;
  --ink-560: #5A6B7D;
  --ink-540: #54657A;
  --ink-500: #5F6E80;
  --ink-dot: #9BA7B6;

  --brand-050: #EAE2F8;
  --brand-100: #EDE7F9;
  --brand-200: #C9C0E4;
  --brand-300: #9B84D6;
  --brand-600: #51279B;
  --brand-700: #4B2A8E;
  --brand-800: #34126F;
  --cta-grad-end: #E3DAF6;

  --shadow-row: 0 1px 2px rgba(16, 42, 67, .04);

  --font-head: "Montserrat", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --content-width: 1200px;
  --content-gutter: 48px;

  --icon-color: var(--brand-700);
}

*, *::before, *::after { box-sizing: border-box; }

html { overflow-x: clip; }

body {
  margin: 0;
  background: var(--surface-page);
  color: var(--ink-700);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}



h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink-900);
}

a {
  color: var(--brand-600);
  text-decoration: none;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--brand-800);
  text-decoration: underline;
}

::selection { background: rgba(81, 39, 155, .3); }

:focus { outline: none; }

:focus-visible {
  outline: 2px solid var(--brand-600);
  outline-offset: 2px;
}

.container {
  width: min(100% - var(--content-gutter), var(--content-width));
  margin-inline: auto;
}

/* Material Symbols icon */
.ms {
  font-family: "Material Symbols Outlined";
  font-weight: 400;
  line-height: 1;
  flex: none;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  color: var(--icon-color);
}

.ms--15 { font-size: 15px; }
.ms--16 { font-size: 16px; }
.ms--17 { font-size: 17px; }
.ms--18 { font-size: 18px; }
.ms--check { font-size: 16px; line-height: 1.4; }
.ms--sched { font-size: 16px; font-variation-settings: "FILL" 0, "wght" 400, "opsz" 20; margin-left: -4px; }

/* Buttons / links */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  background: var(--brand-600);
  border: 1px solid var(--brand-600);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--surface-page);
  text-decoration: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--brand-800);
  color: var(--surface-page);
  text-decoration: none;
}

/* ---------- Header ---------- */
.site-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 16px 0;
  position: sticky;
  top: 0;
  background: var(--surface-page);
  z-index: 10;
}

.site-header__shade {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 16px;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
  background: linear-gradient(rgba(16, 42, 67, .055), rgba(16, 42, 67, 0));
}

.site-header.is-stuck .site-header__shade { opacity: 1; }

.brand-link {
  margin-right: auto;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-wordmark {
  height: 20px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.site-nav a { color: var(--ink-700); }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 48px 0 64px;
  overflow-x: clip;
}

.hero__stage {
  position: relative;
  overflow: visible;
}

.hero__blueprint {
  position: absolute;
  top: -18px;
  right: -200px;
  width: 963px;
  height: 944px;
  max-width: 88%;
  opacity: .85;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  mask-image: linear-gradient(to bottom, #000 60%, transparent 78%);
  -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 78%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(288px, .8fr);
  gap: 48px;
  align-items: start;
}

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--brand-050);
  color: var(--brand-800);
  font-size: 11px;
  letter-spacing: .02em;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand-600);
  animation: ch-breathe 2.6s ease-in-out infinite;
}

.hero__title {
  font-size: clamp(26px, 2.9vw, 38px);
  line-height: 1.14;
  letter-spacing: -.022em;
  margin: 0 0 16px;
  text-wrap: pretty;
}

.hero__title-accent { color: var(--brand-600); }

.hero__lede {
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-600);
  max-width: 46ch;
  margin: 0 0 24px;
}

/* ---------- Beta form ---------- */
.beta-card {
  padding: 24px;
  border-radius: 14px;
  background: var(--surface-2);
  box-shadow: 0 0 0 1px var(--border-1);
}

.beta-card__hint {
  font-size: 13px;
  color: var(--ink-600);
  margin-bottom: 12px;
}

.segmented {
  display: inline-flex;
  border: 1px solid var(--border-ink-16);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}

.seg-btn {
  padding: 8px 12px;
  font-family: inherit;
  font-size: 13px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--ink-600);
}

.seg-btn.is-active {
  color: var(--brand-800);
  font-weight: 600;
  background: var(--brand-100);
}

.beta-fields {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.email-input {
  flex: 1 1 220px;
  min-height: 38px;
  padding: 4px 12px;
  font: inherit;
  font-size: 14px;
  color: var(--ink-700);
  background: var(--surface-page);
  border: 1px solid var(--border-ink-16);
  border-radius: 8px;
  caret-color: var(--brand-600);
}

.email-input:focus { border-color: var(--brand-600); }

.beta-submit {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--surface-page);
  background: var(--brand-600);
  border: 1px solid var(--brand-600);
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
}

.beta-submit:hover { background: var(--brand-800); }

.beta-perks {
  margin-top: 24px;
  padding-top: 16px;
  background: linear-gradient(to right, var(--border-ink-16) 0, var(--border-ink-16) 100%) no-repeat top / 100% 1px;
}

.beta-perks__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin: 0 0 12px;
}

.beta-perks__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.beta-perk {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-700);
}

.beta-done {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px 0;
}

.beta-done__title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--brand-600);
}

.beta-done__text {
  color: var(--ink-600);
  line-height: 1.6;
}

[hidden] { display: none !important; }

/* ---------- Comparison panel ---------- */
.cmp-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-top: 48px;
  margin-bottom: 16px;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin: 0 0 12px;
}

.cmp-head__eyebrow { margin: 0 0 8px; }

.cmp-head__title {
  font-size: 26px;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0 0 8px;
}

.cmp-head__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-600);
  max-width: 80ch;
  text-wrap: pretty;
}

.cmp-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--surface-page);
  border: 1px solid var(--border-1);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-500);
  white-space: nowrap;
}

.cmp-note__dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--ink-dot);
}

.cmp-panel {
  position: relative;
  border-radius: 14px;
  background: transparent;
  padding-bottom: 4px;
  overflow-x: auto;
  overflow-y: hidden;
}

/* Software-preview perspective tilt.
   Lives on a dedicated wrapper so it never fights the reveal fade
   (on [data-reveal]) or the row stagger / ch-rise animations.
   It also acts as the "window" frame around the table: a padded,
   bordered white card, scaled down so the tilt never clips the edges. */
.cmp-stage {
  width: 1320px;
  max-width: none;
  margin-inline: auto;
  padding: 20px;
  background: var(--surface-page);
  border: 1px solid var(--border-row);
  border-radius: 22px;
  box-shadow:
    0 40px 70px -30px rgba(16, 42, 67, .28),
    0 10px 28px rgba(16, 42, 67, .07);
  transform:
    perspective(1900px)
    rotateX(3deg)
    rotateY(9deg)
    rotate(-2deg)
    scale(.79);
  transform-origin: 50% 50%;
  transition: transform .7s cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}

/* Let the table paint fully inside the frame (incl. row shadows). */
.cmp-stage .cmp-panel {
  overflow: visible;
}

/* Keep a light lift on the rows; the frame carries the main depth. */
.cmp-stage .cmp-row__inner {
  box-shadow: 0 6px 16px rgba(16, 42, 67, .06);
}

/* Ease closer to flat on hover — makes it feel like a live UI. */
.cmp-stage:hover {
  transform:
    perspective(2400px)
    rotateX(1.5deg)
    rotateY(3deg)
    rotate(-.5deg)
    scale(.9);
}

.cmp-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) 190px 140px 124px 150px 182px;
}

.cmp-thead {
  padding: 16px 16px 8px;
}

.cmp-th {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-500);
}

.cmp-th--icon {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  padding-left: 4px;
}

.cmp-row__inner {
  align-items: center;
  padding: 12px;
  margin: 0 4px 8px;
  border: 1px solid var(--border-row);
  border-radius: 12px;
  background: var(--surface-page);
  box-shadow: var(--shadow-row);
}

.cmp-cell {
  min-width: 0;
  align-self: stretch;
}

.cmp-cell--divided {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 12px;
  border-left: 1px solid var(--border-cell);
}

.cmp-provider {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-right: 16px;
}

.cmp-logo {
  flex: none;
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 11px;
  display: grid;
  place-items: center;
}

.cmp-logo svg { width: 24px; height: 24px; }

.cmp-logo--0 { background: linear-gradient(160deg, #2C4A72, #1E3557); }
.cmp-logo--1 { background: linear-gradient(160deg, #5B3AA6, #3B2078); }
.cmp-logo--2 { background: linear-gradient(160deg, #1F6E63, #144A43); }
.cmp-logo--3 { background: linear-gradient(160deg, #3B4A63, #252F42); }
.cmp-logo--4 { background: linear-gradient(160deg, #6B2F6E, #46184A); }

.cmp-provider__body { min-width: 0; }

.cmp-provider__name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-800);
  line-height: 1.25;
}

.cmp-provider__loc {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin: 4px 0 8px;
  font-size: 12.5px;
  color: var(--ink-560);
}

.cmp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 8px;
  background: var(--surface-3);
  font-size: 12.5px;
  color: var(--ink-650);
}

.chip .ms { font-variation-settings: "FILL" 0, "wght" 400; }

.cmp-metric {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.cmp-acc {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-800);
  line-height: 1.3;
  white-space: nowrap;
}

.cmp-strong {
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink-800);
}

.cmp-strong--days {
  font-size: 14px;
  line-height: 1.3;
  white-space: nowrap;
}

.cmp-sub {
  font-size: 12.5px;
  color: var(--ink-500);
  margin-top: 8px;
}

.cmp-sub--acc { line-height: 1.45; }

.cmp-stars {
  display: inline-flex;
  gap: 4px;
  min-width: 0;
}

.star {
  font-family: "Material Symbols Outlined";
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
}

.star--full { font-variation-settings: "FILL" 1, "wght" 400; color: var(--brand-700); }
.star--half { font-variation-settings: "FILL" 1, "wght" 400; color: var(--brand-300); }

.cmp-cell--action {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  padding-left: 8px;
  border-left: 1px solid var(--border-cell);
}

.cmp-best {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
  background: var(--brand-100);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--brand-700);
}

.cmp-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  justify-content: center;
  padding: 8px 12px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  background: transparent;
  color: var(--brand-700);
  border: 1px solid var(--brand-200);
}

.cmp-cta .ms { font-variation-settings: "FILL" 0, "wght" 400; }

.cmp-cta--primary {
  background: var(--brand-600);
  color: var(--surface-page);
  border: 1px solid var(--brand-600);
}

.cmp-cta--primary .ms { color: var(--surface-page); }

/* ---------- Divider ---------- */
.rule {
  height: 1px;
  border: 0;
  margin-block: 0;
  background: linear-gradient(to right, transparent, var(--border-ink-16) 48px, var(--border-ink-16) calc(100% - 48px), transparent);
}

/* ---------- Generic sections ---------- */
.section { padding: 64px 0; }

.section__title {
  font-size: 31px;
  letter-spacing: -.02em;
  line-height: 1.1;
  max-width: 720px;
  margin: 0 0 8px;
}

.section__title--loose { margin-bottom: 48px; }

.section__lede {
  font-size: 16px;
  color: var(--ink-600);
  max-width: 720px;
  margin: 0 0 32px;
}

/* Steps */
.flow {
  list-style: none;
  margin: 64px 0 0;
  padding: 0;
  display: flex;
  gap: 8px;
}

.flow__step {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

/* Connector line running from this node's centre to the next one,
   sitting behind the (opaque) circles so it only shows in the gaps. */
.flow__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--brand-200);
  z-index: 0;
}

.flow__node {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brand-050);
  display: grid;
  place-items: center;
}

.flow__badge {
  position: absolute;
  top: -6px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-600);
  color: #fff;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  display: grid;
  place-items: center;
}

.flow__icon {
  font-size: 30px;
  color: var(--brand-800);
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.flow__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.flow__title {
  margin: 0;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink-900);
}

.flow__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-600);
}

/* Audience cards */
.audience {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.aud-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 14px;
  background: linear-gradient(160deg, #ECEFF3, #F4F6FA);
  box-shadow: 0 0 0 1px var(--border-1);
}

.aud-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--brand-050);
  color: var(--brand-800);
  font-size: 11px;
  margin-bottom: 16px;
}

.aud-card__title {
  font-family: var(--font-head);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -.015em;
  margin: 0 0 12px;
}

.aud-card__text {
  margin: 0 0 16px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-600);
}

.aud-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13.5px;
  color: var(--ink-700);
}

.aud-list__item {
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.aud-list__marker { color: var(--brand-600); }

.aud-card__cta {
  align-self: flex-start;
  margin-top: auto;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.team-copy__title {
  font-size: 31px;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 0 0 16px;
  max-width: 20ch;
}

.team-copy p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-600);
}

.team-copy p:last-child { margin-bottom: 0; }

.team-figures {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.team-figure { margin: 0; }

.team-figure__frame {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--border-1);
  display: grid;
  place-items: center;
  background: repeating-linear-gradient(135deg, #ECEFF3, #ECEFF3 6px, #F4F6FA 6px, #F4F6FA 12px);
}

.team-figure__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-figure__placeholder {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-500);
  padding: 8px;
  text-align: center;
}

.team-figure figcaption {
  font-size: 13px;
  color: var(--ink-700);
  margin-top: 8px;
}

.team-figure figcaption span { color: var(--ink-500); }

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.faq-intro__title {
  font-size: 31px;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 0 0 12px;
  text-wrap: balance;
}

.faq-intro__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-600);
  text-wrap: pretty;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-ink-14);
}

.faq-item__summary {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
  text-wrap: pretty;
  color: var(--ink-900);
}

.faq-item__summary::-webkit-details-marker { display: none; }

.faq-item__summary:hover { color: var(--brand-600); }

.faq-item__sign {
  flex: none;
  color: var(--brand-600);
  font-family: var(--font-mono);
  font-size: 15px;
}

.faq-item__answer {
  margin: 8px 0 0;
  padding-right: 48px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-600);
  text-wrap: pretty;
}

/* CTA */
.cta {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: 32px;
  align-items: center;
  padding: 32px;
  border-radius: 14px;
  background: linear-gradient(150deg, var(--brand-050), var(--cta-grad-end));
  box-shadow: 0 0 0 1px var(--brand-600);
}

.cta__title {
  font-size: 28px;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0 0 8px;
  color: var(--brand-800);
}

.cta__text {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--brand-800);
  max-width: 50ch;
}

.cta-card {
  padding: 16px;
  border-radius: 12px;
  background: var(--surface-page);
  box-shadow: 0 0 0 1px rgba(81, 39, 155, .24);
}

.cta-card__fine {
  font-size: 12px;
  color: var(--ink-500);
  margin-top: 8px;
}

.cta-card .beta-done__title { font-size: 16px; }
.cta-card .beta-done__text { font-size: 13px; }

/* ---------- Footer ---------- */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 0 32px;
  background: linear-gradient(to right, transparent, var(--border-ink-16) 48px, var(--border-ink-16) calc(100% - 48px), transparent) no-repeat top / 100% 1px;
}

.site-footer__logo {
  display: block;
  width: 225px;
  height: auto;
}

.site-footer nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--ink-540);
}

.site-footer nav a { color: var(--ink-540); }

/* ---------- Reveal / entrance animation ---------- */
[data-reveal].is-hidden {
  opacity: 0;
  transform: translateY(18px);
}

[data-reveal].is-armed {
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

@keyframes ch-breathe { 0%, 100% { opacity: .35; } 50% { opacity: .7; } }

@keyframes ch-row {
  from { transform: translate(var(--tx, 0), var(--ty, 0)) rotate(var(--rot, 0deg)); opacity: .25; }
  to { transform: none; opacity: 1; }
}

@keyframes ch-rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1060px) {
  .cmp-thead { display: none; }

  .cmp-row__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    row-gap: 16px;
  }

  .cmp-provider { grid-column: 1 / -1; }

  .cmp-cell--divided {
    border-left: 0;
    padding-left: 0;
  }

  .cmp-cell--action {
    grid-column: 1 / -1;
    border-left: 0;
    padding-left: 0;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  .cmp-panel { overflow-x: visible; }

  /* No 3D tilt or window frame once the table collapses into cards. */
  .cmp-stage {
    width: auto;
    margin-inline: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }
  .cmp-stage .cmp-row__inner { box-shadow: var(--shadow-row); }
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__blueprint { max-width: 60%; }
}

@media (max-width: 760px) {
  .audience,
  .team-grid,
  .faq-grid,
  .cta { grid-template-columns: minmax(0, 1fr); }

  .faq-grid { gap: 24px; }
  .cta { gap: 24px; }

  /* Timeline becomes a vertical list: node left, text right. */
  .flow {
    flex-direction: column;
    gap: 0;
    max-width: 460px;
    margin-inline: auto;
  }
  .flow__step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding-bottom: 26px;
  }
  .flow__step:not(:last-child)::after {
    top: 64px;
    left: 32px;
    width: 2px;
    height: calc(100% - 64px);
  }
  .flow__body { padding-top: 4px; }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .team-figures { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer__logo { width: 180px; }
}

@media (prefers-reduced-motion: reduce) {
  .pulse-dot { animation: none; }

  [data-reveal].is-hidden,
  [data-reveal].is-armed {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .cmp-row__inner { animation: none !important; }
  .cmp-panel { animation: none !important; }

  /* Keep the static tilt, but no motion on interaction. */
  .cmp-stage { transition: none !important; }
  .cmp-stage:hover {
    transform:
      perspective(1900px)
      rotateX(3deg)
      rotateY(9deg)
      rotate(-2deg)
      scale(.79);
  }
}

.seg-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.seg-btn {
  display: inline-flex;
  align-items: center;
}

.seg-input:checked + .seg-btn {
  color: var(--brand-800);
  font-weight: 600;
  background: var(--brand-100);
}

.seg-input:focus-visible + .seg-btn {
  outline: 2px solid var(--brand-600);
  outline-offset: -2px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
