:root {
  --ink: #e9f1fb;
  --ink-muted: rgba(233, 241, 251, 0.74);
  --ink-faint: rgba(233, 241, 251, 0.62);
  --ink-dim: rgba(233, 241, 251, 0.55);
  --paper: #06121f;
  --paper-deep: #04101c;
  --navy: #0b2544;
  --navy-mid: #1d5cb0;
  --blue: #4f8dff;
  --blue-bright: #6ba4ff;
  --blue-link: #7fb2ff;
  --blue-deep: #2563b8;
  --panel: #f3f7fd;
  --white: #ffffff;
  --dark: #0b1f39;
  --body: #4a5b73;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --display: "Space Grotesk", "Manrope", system-ui, sans-serif;
  --sans: "Manrope", system-ui, sans-serif;
  --wrap: 1280px;
  --pad: clamp(20px, 4vw, 48px);
  --radius: 12px;
  --shadow-card: 0 22px 54px rgba(11, 31, 57, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 700;
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: var(--blue-link);
  text-decoration: none;
}

a:hover {
  color: #bfd8ff;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  font: inherit;
}

::selection {
  background: rgba(79, 141, 255, 0.34);
}

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

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--pad);
  width: 100%;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 100;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--paper-deep);
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
  color: var(--paper-deep);
}

.kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-link);
}

.kicker--navy {
  color: var(--navy-mid);
  letter-spacing: 0.16em;
}

.kicker--gold {
  color: #ffe08a;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(6, 18, 31, 0.92), rgba(6, 18, 31, 0.74));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 1px 0 rgba(127, 178, 255, 0.08),
    0 14px 40px rgba(0, 0, 0, 0.28);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 12px var(--pad);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
}

.brand:hover {
  color: #fff;
}

.brand__mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand__sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  padding: 9px 14px;
  border-radius: 9px;
  color: rgba(233, 241, 251, 0.78);
  transition: background 0.18s ease, color 0.18s ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.site-nav a[aria-current="page"] {
  background: rgba(127, 178, 255, 0.16);
  color: #fff;
}

.site-nav__ext {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.site-nav__ext span {
  font-size: 11px;
  opacity: 0.7;
}

.site-nav__rule {
  width: 1px;
  height: 22px;
  margin: 0 10px;
  background: rgba(255, 255, 255, 0.14);
}

.btn-login {
  padding: 9px 16px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--ink) !important;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff !important;
}

.btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #6ba4ff, #2563b8);
  color: var(--paper-deep) !important;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(79, 141, 255, 0.42);
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-demo:hover {
  color: var(--paper-deep) !important;
  background: linear-gradient(135deg, #6ba4ff, #2563b8);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(79, 141, 255, 0.58);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__glow {
  position: absolute;
  top: -340px;
  left: 50%;
  transform: translateX(-40%);
  width: 1200px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(79, 141, 255, 0.28), rgba(79, 141, 255, 0));
  pointer-events: none;
}

.hero__inner {
  position: relative;
  padding: clamp(40px, 5vw, 72px) var(--pad) clamp(44px, 5vw, 72px);
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}

.hero__grid > * {
  min-width: 0;
}

.hero__copy {
  animation: srsRise 0.7s ease-out both;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 20px 0 0;
  max-width: 18ch;
  color: #fff;
}

.hero h1 span {
  color: var(--blue);
}

.hero__lede {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.58;
  max-width: 54ch;
  margin: 22px 0 0;
  color: var(--ink-muted);
}

.pitch {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.pitch h2 {
  font-size: clamp(19px, 1.6vw, 23px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: #fff;
}

.pitch p {
  font-size: 14.5px;
  line-height: 1.58;
  margin: 12px 0 0;
  max-width: 42ch;
  color: rgba(233, 241, 251, 0.68);
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn-signup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #6ba4ff, #2563b8);
  color: var(--paper-deep);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 34px rgba(79, 141, 255, 0.42);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-signup:hover {
  color: var(--paper-deep);
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(79, 141, 255, 0.55);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-ghost:hover {
  color: var(--ink);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue);
}

/* File scan card */

.scan {
  animation: srsRise 0.8s 0.16s ease-out both;
  min-width: 0;
  max-width: 100%;
}

.file-card {
  position: relative;
  border-radius: 14px;
  background: #fff;
  color: var(--dark);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.file-sweep {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 120px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(79, 141, 255, 0), rgba(79, 141, 255, 0.16) 55%, rgba(79, 141, 255, 0.6));
  animation: srsSweep 2.1s cubic-bezier(0.4, 0, 0.4, 1) 1 both;
}

.file-card.is-scanning .file-sweep {
  display: block;
}

.file-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 20px;
  border-bottom: 1px solid #edf2f8;
}

.file-card__head p:first-child {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.file-card__head p:last-child {
  margin-top: 2px;
  font-size: 12px;
  color: #8391a6;
}

.file-badge {
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 6px;
  background: #eefaf3;
  color: #0f7a55;
}

.file-badge.is-scanning {
  background: #eef4fc;
  color: var(--navy-mid);
}

.file-badge.is-flagged {
  background: #fdecea;
  color: #c0342b;
}

.file-row {
  padding: 12px 20px;
  border-bottom: 1px solid #f4f7fb;
  background: #fff;
}

.file-row.is-red {
  background: #fff6f5;
}

.file-row.is-amber {
  background: #fffaf0;
}

.file-row__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.file-row__label {
  font-size: 14px;
  font-weight: 500;
}

.file-row__pill {
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #17a673;
}

.file-row__pill.is-scanning {
  color: #94a1b4;
}

.file-row__pill.is-red {
  color: #d93a3a;
}

.file-row__pill.is-amber {
  color: #b26a00;
}

.file-row__note {
  display: none;
  margin: 7px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: #52627a;
}

.file-row__note.is-visible {
  display: block;
  animation: srsRise 0.45s ease-out both;
}

.file-card__foot {
  margin: 0;
  padding: 13px 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a1b4;
  background: #fbfcfe;
}

.scan__controls {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.scan-btn {
  cursor: pointer;
  appearance: none;
  border: 0;
  padding: 14px 24px;
  border-radius: 10px;
  background: var(--blue);
  color: var(--paper-deep);
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(79, 141, 255, 0.34);
}

.scan-btn:disabled {
  cursor: default;
}

.scan-btn.is-scanning {
  background: #bfd8ff;
}

.scan-btn.is-done {
  background: #fff;
}

.scan-note {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.scan-note.is-flagged {
  color: #ff9d95;
}

.scan__bot {
  margin-left: auto;
  display: inline-block;
  transform: scaleX(-1);
}

.scan__bot img {
  width: 74px;
  height: auto;
  display: block;
  animation: srsFloat 6s ease-in-out infinite;
}

.scan__hint {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(233, 241, 251, 0.6);
}

/* Ask */

.ask {
  background: var(--panel);
  color: var(--dark);
}

.ask__inner {
  padding: clamp(52px, 6vw, 88px) var(--pad);
}

.ask__intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.ask h2,
.tour h2,
.products h2,
.principles h2 {
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: 20ch;
}

.ask__layout {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: stretch;
  min-width: 0;
}

.chat {
  flex: 1 1 340px;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #dde6f2;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.chat__bar {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 18px;
  background: var(--navy);
}

.chat__bar img {
  width: 30px;
  height: auto;
}

.chat__bar p:first-child {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: #fff;
}

.chat__bar p:last-child {
  margin-top: 1px;
  font-size: 11.5px;
  color: rgba(233, 241, 251, 0.6);
}

.online {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7fe3b0;
}

.online span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
}

.chat__thread {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px 18px;
  background: #f7f9fd;
}

.bubble {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.bubble img {
  width: 30px;
  height: auto;
}

.bubble--answer img {
  width: 34px;
}

.bubble__msg {
  max-width: 82%;
  padding: 12px 15px;
  border-radius: 14px 14px 14px 3px;
  background: #fff;
  border: 1px solid #e6ecf4;
  font-size: 14px;
  line-height: 1.55;
  color: #243a57;
}

.bubble--user {
  justify-content: flex-end;
}

.bubble--user .bubble__msg {
  max-width: 82%;
  padding: 12px 16px;
  border-radius: 14px 14px 3px 14px;
  background: var(--blue-deep);
  color: #fff;
  font-weight: 500;
  border: 0;
}

.bubble--answer .bubble__msg {
  max-width: 84%;
  padding: 13px 16px;
  line-height: 1.6;
}

.evidence {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid #eef2f8;
}

.evidence span {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 5px;
  background: #eef4fc;
  color: var(--navy-mid);
}

.chat__composer {
  padding: 14px 18px 18px;
  background: #fff;
  border-top: 1px solid #eef2f8;
}

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

.chip {
  cursor: pointer;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid #d7e0ec;
  background: #fff;
  color: #41546e;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
}

.chip.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.fake-input {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid #dde6f2;
  background: #fbfcfe;
}

.fake-input span:first-child {
  flex: 1;
  font-size: 13.5px;
  color: #6b7a92;
}

.fake-input span:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue-deep);
  color: #fff;
  font-size: 14px;
}

.chat__disclaimer {
  font-size: 11.5px;
  line-height: 1.5;
  margin: 12px 0 0;
  color: #8391a6;
}

.ask__shot {
  flex: 2.4 1 280px;
  min-width: 0;
  max-width: 100%;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.browser {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #dbe4f0;
  background: #fff;
  box-shadow: var(--shadow-card);
  max-width: 100%;
  min-width: 0;
}

.browser--tour {
  border-radius: 16px;
  box-shadow: 0 28px 64px rgba(11, 31, 57, 0.18);
}

.browser__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #f2f5fa;
  border-bottom: 1px solid #e4eaf3;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.dot--red { background: #e0654f; }
.dot--amber { background: #e8b84b; }
.dot--green { background: #59b871; }

.browser__label,
.browser__url {
  margin-left: 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  color: #8391a6;
  min-width: 0;
}

.browser__url {
  flex: 1;
  padding: 5px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e4eaf3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser img {
  width: 100%;
  height: auto;
  display: block;
}

.ask__caption {
  font-size: 14px;
  line-height: 1.55;
  color: var(--body);
}

/* Why */

.why {
  padding: clamp(56px, 6vw, 96px) var(--pad);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(28px, 3vw, 52px);
  margin-top: 34px;
}

.why__item {
  border-top: 2px solid rgba(255, 255, 255, 0.16);
  padding-top: 22px;
}

.why__num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(79, 141, 255, 0.5);
}

.why__item h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 16px 0 12px;
  color: #fff;
}

.why__item p {
  font-size: 15.5px;
  line-height: 1.62;
  color: rgba(233, 241, 251, 0.7);
}

.why__close {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: clamp(44px, 5vw, 72px) 0 0;
  max-width: 30ch;
  color: #fff;
}

.why__close span {
  color: #ffc94d;
}

/* Tour */

.tour {
  background: var(--panel);
  color: var(--dark);
}

.tour__inner {
  padding: clamp(52px, 6vw, 88px) var(--pad);
}

.tour__intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
}

.tour h2 {
  margin: 14px 0 0;
}

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

.tour__pager button {
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #d7e0ec;
  background: #fff;
  color: var(--navy-mid);
  font-size: 16px;
  transition: background 0.18s ease;
}

.tour__pager button:hover {
  background: #e9f1fd;
}

.tour__count {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--body);
}

.tour__layout {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 34px;
  align-items: flex-start;
  min-width: 0;
}

.tour__steps {
  flex: 1 1 300px;
  max-width: 390px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tour-step {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid #dde6f2;
  background: #fff;
  color: #41546e;
  font-family: var(--sans);
  transition: transform 0.18s ease;
}

.tour-step:hover {
  transform: translateX(3px);
}

.tour-step.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.tour-step__num,
.tour-step__product {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #5b6c85;
}

.tour-step__product {
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tour-step.is-active .tour-step__num,
.tour-step.is-active .tour-step__product {
  color: var(--blue-link);
}

.tour-step__label {
  flex: 1;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.tour__caption {
  margin-top: 14px;
  padding: 18px;
  border-radius: var(--radius);
  background: #e9f1fd;
  border: 1px solid #d5e3f7;
}

.tour__caption p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #243a57;
}

.tour__shot {
  flex: 2.3 1 280px;
  min-width: 0;
  max-width: 100%;
  align-self: flex-start;
}

.tour__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.tour__meta p {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.live-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 6px;
  background: #eef4fc;
  color: var(--navy-mid);
}

/* Products */

.products {
  padding: clamp(56px, 6vw, 96px) var(--pad);
}

.products h2 {
  margin: 20px 0 0;
  max-width: 22ch;
  color: #fff;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  gap: 18px;
  margin-top: 44px;
  align-items: stretch;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  color: var(--ink);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  color: var(--ink);
  transform: translateY(-6px);
  border-color: rgba(127, 178, 255, 0.55);
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.45);
}

.product-card__step {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(233, 241, 251, 0.68);
}

.product-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  padding: 9px;
  box-sizing: border-box;
  background: #eef4fc;
  border-radius: var(--radius);
  margin-top: 18px;
}

.product-card h3 {
  font-size: 26px;
  letter-spacing: -0.03em;
  margin: 16px 0 6px;
  color: #fff;
}

.product-card__role {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-link);
}

.product-card p {
  margin: 14px 0 22px;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(233, 241, 251, 0.7);
}

.product-card__cta {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-link);
}

.vetta-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(160deg, #2f6fd0, #0b2544);
  border: 1px solid rgba(127, 178, 255, 0.3);
}

.vetta-card img {
  width: 76px;
  height: auto;
  animation: srsFloat 6.5s ease-in-out infinite;
}

.vetta-card h3 {
  font-size: 24px;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  color: #fff;
}

.vetta-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(233, 241, 251, 0.82);
}

/* Principles */

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

.principles__inner {
  padding: clamp(52px, 6vw, 88px) var(--pad);
}

.principles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(28px, 3vw, 56px);
  align-items: start;
}

.principles h2 {
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.04;
  margin: 18px 0 0;
}

.principles__lede {
  font-size: 16.5px;
  line-height: 1.62;
  margin: 20px 0 0;
  max-width: 46ch;
  color: var(--body);
}

.principles__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 16px;
}

.does,
.doesnt {
  padding: 26px;
  border-radius: 16px;
}

.does {
  background: #f1fbf6;
  border: 1px solid #cfeadd;
}

.doesnt {
  background: #f6f8fb;
  border: 1px solid #e6ecf4;
}

.does h3 {
  font-size: 19px;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: #0f7a55;
}

.doesnt h3 {
  font-size: 19px;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: #6b7a92;
}

.does ul,
.doesnt ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 14.5px;
  line-height: 1.55;
}

.does ul {
  color: #41546e;
}

.doesnt ul {
  color: #6b7a92;
}

.does li,
.doesnt li {
  display: flex;
  gap: 10px;
}

.does .mark {
  color: #17a673;
  font-weight: 700;
}

.doesnt .mark {
  color: #b3bdcc;
  font-weight: 700;
}

/* Demo */

.demo {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #0b2544, #1d5cb0 55%, #4f8dff);
}

.demo__inner {
  padding: clamp(56px, 6vw, 100px) var(--pad);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
}

.demo h2 {
  font-size: clamp(30px, 4.6vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 20px 0 0;
  max-width: 18ch;
  color: #fff;
}

.demo__lede {
  font-size: 17px;
  line-height: 1.6;
  max-width: 50ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.85);
}

.demo__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn-dark {
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--paper-deep);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
}

.btn-dark:hover {
  color: #fff;
}

.btn-outline {
  padding: 16px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

.btn-outline:hover {
  color: #fff;
}

.video {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: var(--paper-deep);
  box-shadow: 0 34px 76px rgba(0, 0, 0, 0.45);
}

.video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-facade {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-facade__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 48px;
  border-radius: 12px;
  background: #f00;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, background 0.18s ease;
}

.video-facade__play::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 26px;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
}

.video-facade:hover .video-facade__play,
.video-facade:focus-visible .video-facade__play {
  background: #c00;
  transform: translate(-50%, -50%) scale(1.08);
}

.demo__caption {
  margin: 14px 0 0;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* Footer */

.site-footer {
  background: var(--paper-deep);
  color: rgba(233, 241, 251, 0.7);
}

.site-footer__grid {
  padding: 52px var(--pad) 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 30px;
}

.site-footer__brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #fff;
}

.site-footer__brand + p {
  margin: 12px 0 0;
  font-size: 13.5px;
  line-height: 1.6;
}

.site-footer h2 {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: rgba(233, 241, 251, 0.5);
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.site-footer__links a {
  color: rgba(233, 241, 251, 0.82);
}

.site-footer__base {
  padding: 0 var(--pad) 38px;
}

.site-footer__rule {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 18px;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer__legal p {
  font-size: 12.5px;
  color: rgba(233, 241, 251, 0.65);
}

.site-footer__legal a {
  color: var(--blue-link);
  font-weight: 600;
}

/* Product page hero */

.hero--product {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero--product .hero__glow {
  left: auto;
  right: -140px;
  top: -320px;
  transform: none;
  width: 1000px;
  height: 700px;
}

.hero--product .hero__inner {
  padding: clamp(36px, 4vw, 60px) var(--pad) clamp(48px, 5vw, 80px);
}

.hero--product .hero__grid {
  margin-top: clamp(28px, 3vw, 44px);
}

.hero--product .hero__lede {
  max-width: 50ch;
}

.crumb {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.crumb a {
  color: var(--ink-dim);
}

.crumb a:hover {
  color: var(--blue-link);
}

.product-id {
  display: flex;
  align-items: center;
  gap: 16px;
}

.product-id img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  padding: 9px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.product-id__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}

.product-id__role {
  margin-top: 5px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-link);
}

.hero--product h1 {
  max-width: 17ch;
  margin-top: 22px;
  line-height: 0.98;
}

.proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  font-size: 13.5px;
  color: rgba(233, 241, 251, 0.62);
}

.proof span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.proof .mark {
  color: #34d399;
  font-weight: 700;
}

/* Flow */

.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid #dde6f2;
  background: #fff;
  color: #41546e;
  font-family: var(--sans);
  transition: transform 0.18s ease;
}

.flow-step:hover {
  transform: translateX(3px);
}

.flow-step.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.flow-step__num {
  font-family: var(--mono);
  font-size: 11px;
  color: #5b6c85;
}

.flow-step.is-active .flow-step__num {
  color: var(--blue-link);
}

.flow-step__copy {
  flex: 1;
}

.flow-step__title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.flow-step__body {
  display: none;
  margin-top: 8px;
  font-size: 13.5px;
  line-height: 1.55;
  font-weight: 400;
}

.flow-step.is-active .flow-step__body {
  display: block;
  color: rgba(233, 241, 251, 0.78);
}

.tour__steps--flow {
  max-width: 430px;
}

/* Why cards */

.lede {
  font-size: 17px;
  line-height: 1.6;
  max-width: 60ch;
  margin: 20px 0 0;
  color: rgba(233, 241, 251, 0.72);
}

.section-title {
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 18px 0 0;
  max-width: 24ch;
  color: #fff;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 18px;
  margin-top: 44px;
}

.why-card {
  padding: 26px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
}

.why-card h3 {
  font-size: 19px;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: #fff;
}

.why-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(233, 241, 251, 0.7);
}

.why__close + p {
  font-size: 16.5px;
  line-height: 1.62;
  max-width: 56ch;
  margin: 20px 0 0;
  color: rgba(233, 241, 251, 0.7);
}

/* VettaBot findings */

.vetta {
  background: var(--panel);
  color: var(--dark);
}

.vetta__inner {
  padding: clamp(52px, 6vw, 88px) var(--pad);
}

.vetta__layout {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: flex-start;
}

.vetta__intro {
  flex: 1 1 340px;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.vetta__intro h2 {
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 14px 0 0;
}

.vetta__intro p {
  font-size: 16.5px;
  line-height: 1.62;
  margin: 20px 0 0;
  color: var(--body);
}

.vetta__portrait {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding: 26px 24px 0;
  border-radius: 16px;
  background: linear-gradient(180deg, #e9f1fd, #fff);
  border: 1px solid #d5e3f7;
}

.vetta__portrait img {
  width: min(190px, 52%);
  height: auto;
  filter: drop-shadow(0 18px 26px rgba(11, 31, 57, 0.18));
}

.vetta__portrait-copy {
  flex: 1;
  padding-bottom: 26px;
}

.vetta__portrait-copy p {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin: 0;
}

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.mini-tags span {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #d5e3f7;
  color: var(--navy-mid);
}

.vetta__flags {
  flex: 1.5 1 420px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.flag-card {
  padding: 20px 22px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e6ecf4;
  box-shadow: 0 10px 26px rgba(11, 31, 57, 0.08);
}

.flag-card--red {
  border-left: 4px solid #d93a3a;
}

.flag-card--amber {
  border-left: 4px solid #f5a623;
}

.flag-card__kind {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flag-card--red .flag-card__kind {
  color: #d93a3a;
}

.flag-card--amber .flag-card__kind {
  color: #b26a00;
}

.flag-card h3 {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 10px 0 8px;
  color: var(--tsa-navy);
}

.flag-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #52627a;
}

.vetta__note {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 4px 0 0;
  color: #5b6c85;
}

/* How it fits */

.fit {
  padding: clamp(56px, 6vw, 96px) var(--pad);
}

.fit h2 {
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 18px 0 0;
  max-width: 24ch;
  color: #fff;
}

.fit__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 44px;
  align-items: stretch;
}

.fit__col {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fit__col--main {
  flex: 1.4 1 320px;
}

.fit__label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(233, 241, 251, 0.6);
}

.fit__label--accent {
  color: var(--blue-link);
}

.source-card,
.source-link {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.source-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.source-link:hover {
  color: var(--ink);
  border-color: rgba(127, 178, 255, 0.55);
  transform: translateY(-3px);
}

.source-link img,
.journey-card img,
.fit-main img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  padding: 7px;
  background: #eef4fc;
  border-radius: 9px;
}

.source-link strong,
.source-card strong {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

.source-link span,
.source-card span {
  display: block;
  font-size: 13px;
  color: rgba(233, 241, 251, 0.66);
}

.fit__hint {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(233, 241, 251, 0.6);
}

.fit-main {
  flex: 1;
  padding: 26px;
  border-radius: 14px;
  background: linear-gradient(160deg, #2f6fd0, #0b2544);
  border: 1px solid rgba(127, 178, 255, 0.35);
}

.fit-main img {
  width: 44px;
  height: 44px;
  padding: 8px;
  border-radius: 10px;
}

.fit-main h3 {
  font-size: 24px;
  letter-spacing: -0.03em;
  margin: 16px 0 10px;
  color: #fff;
}

.fit-main p {
  margin: 0 0 18px;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(233, 241, 251, 0.82);
}

.fit-main__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fit-main__tags span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.journey-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.journey-card:hover {
  color: var(--ink);
  border-color: rgba(127, 178, 255, 0.55);
  transform: translateY(-3px);
}

.journey-card--static:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.12);
}

.journey-card--static img {
  width: 72px;
  height: auto;
  padding: 0;
  background: none;
}

.journey-card h3 {
  font-size: 20px;
  letter-spacing: -0.02em;
  margin: 16px 0 8px;
  color: #fff;
}

.journey-card p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(233, 241, 251, 0.7);
}

.journey-card__cta {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-link);
}

.demo__bot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.demo__bot img {
  width: 52px;
  height: auto;
  animation: srsFloat 6.5s ease-in-out infinite;
}

.demo__bot p {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

/* Book a demo */

.hero--book .hero__inner {
  padding-bottom: clamp(40px, 5vw, 64px);
}

.hero--book h1 {
  max-width: 12ch;
  margin-top: 18px;
}

.hero--book .hero__lede {
  margin-top: 18px;
  max-width: 52ch;
}

.book {
  background: var(--panel);
  color: var(--dark);
}

.book__inner {
  padding: clamp(40px, 5vw, 72px) var(--pad) clamp(56px, 6vw, 96px);
}

.book__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.book-form,
.book-aside__card,
.book-form.is-success {
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-card);
  min-width: 0;
  max-width: 100%;
}

.book-form {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 32px);
}

.book-panel {
  min-width: 0;
  max-width: 100%;
}

.book-form[hidden],
.book-form.is-success[hidden] {
  display: none !important;
}

.book-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.book-form__split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.book-form__row {
  display: grid;
  gap: 8px;
}

.book-form label,
.book-form legend {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

.book-form label span {
  font-weight: 500;
  color: var(--body);
}

.book-form input,
.book-form select,
.book-form textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(11, 31, 57, 0.16);
  border-radius: 10px;
  background: #fff;
  color: var(--dark);
  font: inherit;
  font-size: 15px;
}

.book-form textarea {
  resize: vertical;
  min-height: 120px;
}

.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
  border-color: var(--blue);
}

.book-form button[type="submit"] {
  justify-self: start;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  max-width: 100%;
}

.book-form button[type="submit"]:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.book-form__status {
  min-height: 1.2em;
  font-size: 14px;
  line-height: 1.5;
  color: var(--body);
}

.book-form__status.is-error {
  color: #b42318;
}

.book-form.is-success {
  padding: clamp(28px, 4vw, 40px);
}

.book-form.is-success h2 {
  margin-top: 16px;
  font-size: clamp(24px, 5vw, 32px);
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.book-form.is-success p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  max-width: none;
  overflow-wrap: anywhere;
}

.book-form.is-success a {
  color: var(--blue-deep);
  font-weight: 700;
}

.book-aside {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.book-aside__card {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 3vw, 28px);
}

.book-aside__kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-mid);
}

.book-aside__card h2 {
  font-size: 28px;
  letter-spacing: -0.03em;
}

.book-aside__card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--body);
}

.book-aside__card .btn-signup {
  justify-self: start;
  margin-top: 6px;
  font-size: 14px;
  overflow-wrap: anywhere;
  white-space: normal;
  text-align: center;
}

.book-aside__card--quiet {
  background: transparent;
  box-shadow: none;
  border: 1px solid rgba(11, 31, 57, 0.12);
}

.book-aside__card--quiet a {
  color: var(--dark);
  font-weight: 700;
}

.book-aside__card--quiet a:hover {
  color: var(--blue-deep);
}

@media (max-width: 980px) {
  .book__layout,
  .book-form__split {
    grid-template-columns: minmax(0, 1fr);
  }

  .book-form,
  .book-form.is-success,
  .book-aside__card {
    padding: 18px;
  }

  .book-form button[type="submit"],
  .book-aside__card .btn-signup {
    width: 100%;
    justify-content: center;
  }

  .book-aside__card h2 {
    font-size: 22px;
  }
}

/* Motion */

@keyframes srsRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@keyframes srsFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes srsSweep {
  0% { transform: translateY(-120%); }
  100% { transform: translateY(560%); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin: 0;
    padding: 12px var(--pad) 18px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(6, 18, 31, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__rule {
    display: none;
  }

  .btn-demo,
  .btn-login {
    justify-content: center;
  }

  .scan__bot {
    margin-left: 0;
  }

  .chat {
    max-width: none;
  }

  .tour__steps {
    max-width: none;
  }

  .tour__steps--flow {
    max-width: none;
  }

  .tour__layout,
  .ask__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .tour__shot,
  .ask__shot,
  .browser,
  .browser img {
    width: 100%;
    max-width: 100%;
  }

  .vetta__intro {
    max-width: none;
  }
}

/* ========================================================================== */
/* The Safeguarding Alliance brand alignment                                  */
/* ========================================================================== */

:root {
  --tsa-midnight: #21263c;
  --tsa-navy: #2a4c73;
  --tsa-navy-deep: #02346a;
  --tsa-ochre: #d89952;
  --tsa-ochre-dark: #8a571f;
  --tsa-ink: #222222;
  --tsa-muted: #606873;
  --tsa-canvas: #f9f9f9;
  --tsa-surface: #ffffff;
  --tsa-border: #d8d8d8;
  --tsa-pale-blue: #eaeff6;
  --paper: var(--tsa-canvas);
  --paper-deep: var(--tsa-midnight);
  --navy: var(--tsa-navy);
  --navy-mid: var(--tsa-navy-deep);
  --blue: var(--tsa-navy);
  --blue-bright: #416b99;
  --blue-link: #e0ad70;
  --blue-deep: var(--tsa-navy);
  --panel: #f1f3f5;
  --dark: var(--tsa-ink);
  --body: #4a4a4a;
  --display: "Figtree", system-ui, sans-serif;
  --sans: "Figtree", system-ui, sans-serif;
  --mono: "Figtree", system-ui, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --wrap: 1140px;
  --pad: clamp(20px, 4vw, 64px);
  --radius: 5px;
  --shadow-card: 0 18px 48px rgba(33, 38, 60, 0.1);
}

html {
  background: var(--tsa-canvas);
}

body {
  background: var(--tsa-canvas);
  color: var(--tsa-ink);
  font-family: var(--sans);
  font-weight: 300;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 600;
}

a {
  color: var(--tsa-navy);
}

a:hover {
  color: var(--tsa-ochre-dark);
}

::selection {
  background: rgba(216, 153, 82, 0.3);
}

:focus-visible {
  outline-color: var(--tsa-ochre-dark);
}

.kicker,
.kicker--navy,
.kicker--gold {
  font-family: var(--serif);
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-transform: none;
  color: var(--tsa-ochre-dark);
}

/* Two-tier shared header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(42, 76, 115, 0.2);
  box-shadow: none;
  backdrop-filter: blur(10px);
  transform: translateY(0);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  will-change: transform;
}

.site-header.is-hidden {
  box-shadow: none;
  pointer-events: none;
  transform: translateY(calc(-100% - 2px));
}

.site-header__utility {
  min-height: 40px;
  border-bottom: 1px solid rgba(42, 76, 115, 0.2);
}

.site-header__utility-inner {
  width: 100%;
  max-width: var(--wrap);
  min-height: 40px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header__utility a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--tsa-navy-deep);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
}

.site-header__utility a:hover {
  color: var(--tsa-ochre-dark);
}

.site-header__utility a span {
  color: var(--tsa-ochre-dark);
  font-size: 10px;
}

.site-header__inner {
  min-height: 88px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  gap: 13px;
  color: var(--tsa-navy-deep);
}

.brand:hover {
  color: var(--tsa-navy-deep);
}

.brand__mark {
  width: 48px;
  height: 48px;
}

.brand__name {
  color: var(--tsa-navy-deep);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.brand__sub {
  margin-top: 4px;
  color: var(--tsa-ochre-dark);
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
}

.site-nav {
  gap: 2px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 13px 12px;
  border-radius: 0;
  color: var(--tsa-navy-deep);
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 7px;
  left: 12px;
  height: 1px;
  background: var(--tsa-ochre);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: transparent;
  color: var(--tsa-navy-deep);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav__ext span {
  color: var(--tsa-ochre-dark);
}

.site-nav__rule {
  display: none;
}

.site-nav .btn-login,
.site-nav .btn-login:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  padding: 12px 16px !important;
  border: 1px solid var(--tsa-navy);
  border-radius: 5px !important;
  background: transparent;
  color: var(--tsa-navy-deep) !important;
}

.site-nav .btn-login:hover,
.site-nav .btn-login:focus-visible,
.site-nav .btn-login:active {
  border-color: var(--tsa-ochre-dark);
  background: var(--tsa-pale-blue);
  color: var(--tsa-navy-deep) !important;
}

.site-nav .btn-demo,
.site-nav .btn-demo:visited {
  margin-left: 8px;
  padding: 13px 20px !important;
  border: 1px solid var(--tsa-navy) !important;
  border-radius: 5px !important;
  background: var(--tsa-navy) !important;
  box-shadow: none;
  color: #fff !important;
}

.btn-demo::after {
  display: none;
}

.site-nav .btn-demo:hover,
.site-nav .btn-demo:focus-visible,
.site-nav .btn-demo:active {
  border-color: var(--tsa-navy-deep) !important;
  background: var(--tsa-navy-deep) !important;
  box-shadow: none;
  color: #fff !important;
  transform: none;
}

.site-nav .btn-demo[aria-current="page"] {
  background: var(--tsa-navy) !important;
  color: #fff !important;
}

.nav-toggle {
  border-color: rgba(42, 76, 115, 0.28);
  border-radius: 4px;
  background: var(--tsa-navy);
  color: #fff;
}

/* Shared editorial hero */

.hero {
  position: relative;
  isolation: isolate;
  background-color: var(--tsa-canvas);
  background-image: none;
  border-bottom: 0;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: min(42vw, 620px);
  height: 100%;
  background: linear-gradient(135deg, transparent 12%, rgba(234, 239, 246, 0.66));
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
}

.hero__glow {
  display: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(22px, 2.6vw, 40px);
  padding-bottom: clamp(56px, 7vw, 96px);
}

.hero__grid {
  gap: clamp(42px, 6vw, 82px);
}

.hero:not(.hero--product) .hero__grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  align-items: start;
}

.hero:not(.hero--product)::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  left: max(-2vw, -16px);
  top: 4%;
  width: min(42vw, 420px);
  height: 58%;
  background-image: url("../assets/tsa-flight-path-04.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  opacity: 0.88;
}

.hero:not(.hero--product) .hero__copy,
.hero:not(.hero--product) .scan {
  position: relative;
  z-index: 1;
  align-self: start;
  margin-top: 0;
}

.hero--product {
  background-image: url("../assets/tsa-flight-path-04.png");
  background-repeat: no-repeat;
  background-position: right -4% 72%;
  background-size: min(28vw, 320px) auto;
}

.hero h1 {
  max-width: 16ch;
  margin-top: 20px;
  color: var(--tsa-navy);
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--tsa-ochre-dark);
}

.hero__lede {
  max-width: 58ch;
  margin-top: 26px;
  color: #3e4349;
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 300;
  line-height: 1.5;
}

.pitch {
  margin-top: 34px;
  padding-top: 24px;
  border-top-color: rgba(216, 153, 82, 0.78);
}

.hero:not(.hero--product) .scan .pitch {
  margin-top: 22px;
  padding-top: 20px;
}

.pitch h2 {
  color: var(--tsa-navy);
  font-size: clamp(20px, 1.8vw, 25px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.pitch p {
  color: var(--tsa-muted);
  font-size: 15px;
}

.hero__actions {
  margin-top: 34px;
}

.btn-signup,
.btn-dark,
.btn-outline,
.btn-ghost,
.scan-btn {
  border-radius: 5px;
  box-shadow: none;
  font-weight: 600;
}

.btn-signup,
.scan-btn {
  background: var(--tsa-navy);
  color: #fff;
}

.btn-signup:hover,
.scan-btn:hover {
  background: var(--tsa-navy-deep);
  box-shadow: none;
  color: #fff;
  transform: translateY(-1px);
}

.scan-btn.is-scanning,
.scan-btn.is-scanning:hover,
.scan-btn:disabled {
  border: 1px solid #aec8e5;
  background: #dbe8f7;
  color: var(--tsa-navy-deep);
  transform: none;
}

.scan-btn.is-done,
.scan-btn.is-done:hover,
.scan-btn.is-done:focus-visible,
.scan-btn.is-done:active {
  border: 1px solid var(--tsa-navy);
  background: #fff;
  color: var(--tsa-navy-deep);
  transform: none;
}

.scan-btn:focus-visible {
  outline: 3px solid rgba(216, 153, 82, 0.48);
  outline-offset: 3px;
}

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

.btn-ghost:hover {
  border-color: var(--tsa-ochre-dark);
  background: transparent;
  color: var(--tsa-ochre-dark);
  transform: translateY(-1px);
}

.live-dot {
  background: var(--tsa-ochre);
  box-shadow: none;
}

.file-card {
  border: 1px solid rgba(42, 76, 115, 0.16);
  border-radius: 2px;
  box-shadow: 0 24px 60px rgba(33, 38, 60, 0.15);
}

.file-badge,
.evidence span,
.live-tag,
.mini-tags span,
.fit-main__tags span {
  border-radius: 3px;
}

.scan-note,
.scan__hint {
  color: var(--tsa-muted);
}

.scan-note.is-flagged {
  color: #a42828;
}

.scan__bot img,
.vetta-card img,
.demo__bot img {
  animation: none;
}

/* Full-width band rhythm */

.ask,
.vetta,
.principles,
.demo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-repeat: no-repeat;
}

.ask,
.vetta,
.principles {
  padding-top: 38px;
  padding-bottom: 38px;
}

.ask::before,
.vetta::before,
.principles::before,
.demo::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -1px;
  right: 0;
  left: 0;
  height: clamp(28px, 4vw, 58px);
  background: var(--tsa-canvas);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  pointer-events: none;
}

.ask > *,
.vetta > *,
.principles > *,
.demo > * {
  position: relative;
  z-index: 1;
}

.ask {
  background-color: var(--tsa-midnight);
  background-image: url("../assets/tsa-flight-path-white.png");
  background-position: right 28px bottom 34px;
  background-size: 290px auto;
  color: #fff;
}

.ask__inner,
.tour__inner,
.principles__inner,
.vetta__inner {
  padding-top: clamp(72px, 8vw, 112px);
  padding-bottom: clamp(72px, 8vw, 112px);
}

.ask h2,
.principles h2 {
  color: #fff;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.chat,
.browser,
.browser--tour {
  border-radius: 2px;
  box-shadow: none;
}

.chat {
  border-color: rgba(255, 255, 255, 0.24);
}

.chat__bar {
  background: var(--tsa-navy);
}

.bubble__msg {
  border-radius: 5px 5px 5px 1px;
}

.bubble--user .bubble__msg {
  border-radius: 5px 5px 1px 5px;
  background: var(--tsa-navy);
}

.chip,
.fake-input,
.browser__url {
  border-radius: 3px;
}

.chip.is-active,
.fake-input span:last-child {
  background: var(--tsa-navy);
}

.ask__caption {
  color: rgba(255, 255, 255, 0.76);
}

.why {
  position: relative;
  padding-top: clamp(82px, 9vw, 126px);
  padding-bottom: clamp(82px, 9vw, 126px);
  color: var(--tsa-ink);
}

.why::after,
.products::after,
.fit::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 180px;
  pointer-events: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.6;
}

.why::after {
  right: var(--pad);
  bottom: 28px;
  background-image: url("../assets/tsa-flight-path-02.png");
}

.why__grid {
  margin-top: 42px;
}

.why__item {
  padding-top: 24px;
  border-top: 1px solid var(--tsa-ochre);
}

.why__num {
  color: var(--tsa-ochre);
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 600;
}

.why__item h3,
.why__close,
.section-title {
  color: var(--tsa-navy);
}

.why__item h3 {
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.18;
  text-transform: uppercase;
}

.why__item p,
.why__close + p,
.lede {
  color: var(--tsa-muted);
}

.why__close {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.04;
  text-transform: uppercase;
}

.why__close span {
  color: var(--tsa-ochre-dark);
}

/* Product tours and editorial feature areas */

.tour {
  background: var(--tsa-pale-blue);
  color: var(--tsa-ink);
}

.tour h2,
.products h2,
.fit h2,
.vetta__intro h2 {
  color: var(--tsa-navy);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-transform: uppercase;
}

.tour__pager button {
  border: 1px solid var(--tsa-navy);
  border-radius: 3px;
  background: transparent;
  color: var(--tsa-navy);
}

.tour__pager button:hover {
  background: var(--tsa-navy);
  color: #fff;
}

.tour__count,
.tour-step__num,
.tour-step__product,
.flow-step__num {
  font-family: var(--sans);
}

.tour-step,
.flow-step {
  border: 0;
  border-bottom: 1px solid rgba(42, 76, 115, 0.22);
  border-radius: 0;
  background: transparent;
  color: var(--tsa-navy);
}

.tour-step:hover,
.flow-step:hover {
  transform: translateX(2px);
}

.tour-step.is-active,
.flow-step.is-active {
  border-color: var(--tsa-ochre);
  background: var(--tsa-navy);
  color: #fff;
}

.tour-step.is-active .tour-step__num,
.tour-step.is-active .tour-step__product,
.flow-step.is-active .flow-step__num {
  color: #f0c18b;
}

.tour__caption {
  border: 0;
  border-left: 3px solid var(--tsa-ochre);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.72);
}

.browser {
  border-color: rgba(42, 76, 115, 0.2);
}

.live-tag {
  background: var(--tsa-navy);
  color: #fff;
}

.products {
  position: relative;
  padding-top: clamp(82px, 9vw, 126px);
  padding-bottom: clamp(100px, 10vw, 150px);
}

.products h2 {
  max-width: 23ch;
}

.products::after {
  right: 0;
  bottom: 18px;
  background-image: url("../assets/tsa-flight-path-04.png");
}

.products__grid {
  gap: 18px;
}

.product-card,
.vetta-card {
  border-radius: 0;
  box-shadow: none;
}

.product-card {
  border: 0;
  border-top: 3px solid var(--tsa-ochre);
  background: var(--tsa-navy);
  color: #fff;
}

.product-card:hover {
  border-color: #f0c18b;
  box-shadow: none;
  color: #fff;
  transform: translateY(-3px);
}

.product-card__step,
.product-card__role,
.product-card__cta,
.journey-card__cta {
  color: #f0c18b;
  font-family: var(--sans);
}

.product-card img,
.source-link img,
.journey-card img,
.fit-main img {
  border-radius: 3px;
}

.product-card h3 {
  font-weight: 600;
  text-transform: uppercase;
}

.product-card p {
  color: rgba(255, 255, 255, 0.78);
}

.vetta-card {
  border: 0;
  border-top: 3px solid var(--tsa-ochre);
  background: var(--tsa-midnight);
}

.principles {
  background-color: var(--tsa-navy);
  background-image: url("../assets/tsa-flight-path-03-white.png");
  background-position: left 24px bottom 46px;
  background-size: 400px auto;
  color: #fff;
}

.principles__lede {
  color: rgba(255, 255, 255, 0.78);
}

.principles__cols {
  gap: 28px;
}

.does,
.doesnt {
  padding: 24px 0;
  border: 0;
  border-top: 1px solid var(--tsa-ochre);
  border-radius: 0;
  background: transparent;
}

.does h3,
.doesnt h3 {
  color: #f0c18b;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.does ul,
.doesnt ul {
  color: rgba(255, 255, 255, 0.82);
}

.does .mark,
.doesnt .mark {
  color: #f0c18b;
}

.demo {
  padding-top: 42px;
  background-color: var(--tsa-midnight);
  background-image: url("../assets/tsa-flight-path-04-white.png");
  background-position: right 24px bottom 15px;
  background-repeat: no-repeat;
  background-size: 400px auto;
}

.demo h2 {
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-transform: uppercase;
}

.btn-dark {
  border: 1px solid #fff;
  background: #fff;
  color: var(--tsa-midnight);
}

.btn-dark:hover {
  background: #f0c18b;
  border-color: #f0c18b;
  color: var(--tsa-midnight);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.72);
}

.video {
  border-radius: 2px;
  box-shadow: none;
}

.demo__caption,
.demo__bot p {
  font-family: var(--sans);
}

/* Product-page feature systems */

.hero--product .hero__inner {
  padding-top: clamp(28px, 3.4vw, 48px);
  padding-bottom: clamp(56px, 7vw, 96px);
}

.crumb {
  color: var(--tsa-muted);
  font-family: var(--sans);
  font-weight: 500;
}

.crumb a {
  color: var(--tsa-navy);
}

.product-id img {
  border: 1px solid rgba(42, 76, 115, 0.16);
  border-radius: 3px;
  box-shadow: none;
}

.product-id__name {
  color: var(--tsa-navy);
  font-weight: 600;
  text-transform: uppercase;
}

.product-id__role {
  color: var(--tsa-ochre-dark);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
}

.proof {
  color: var(--tsa-muted);
}

.proof .mark {
  color: var(--tsa-ochre-dark);
}

.section-title {
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 600;
  text-transform: uppercase;
}

.why-cards {
  gap: clamp(24px, 3vw, 42px);
}

.why-card {
  padding: 22px 0;
  border: 0;
  border-top: 1px solid var(--tsa-ochre);
  border-radius: 0;
  background: transparent;
}

.why-card h3 {
  color: var(--tsa-navy);
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.why-card p {
  color: var(--tsa-muted);
}

.vetta {
  background-color: var(--tsa-midnight);
  background-image: url("../assets/tsa-flight-path-02-white.png");
  background-position: right 24px bottom 30px;
  background-size: 400px auto;
  color: #fff;
}

.vetta__intro h2 {
  color: #fff;
}

.vetta__intro p {
  color: rgba(255, 255, 255, 0.78);
}

.vetta__portrait {
  border: 0;
  border-radius: 0;
  background: #fff;
  color: var(--tsa-navy);
}

.vetta__portrait-copy p {
  color: var(--tsa-navy);
}

.mini-tags span {
  border-color: rgba(42, 76, 115, 0.2);
  color: var(--tsa-navy);
}

.flag-card {
  border-radius: 0;
  box-shadow: none;
  color: var(--tsa-ink);
}

.flag-card h3 {
  color: var(--tsa-navy);
}

.flag-card p {
  color: var(--tsa-muted);
}

.vetta__note {
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--sans);
}

.chat,
.chat__thread,
.chat__composer {
  color: var(--tsa-ink);
}

.tour__caption {
  color: var(--tsa-ink);
}

.fit {
  position: relative;
  padding-top: clamp(82px, 9vw, 126px);
  padding-bottom: clamp(100px, 10vw, 150px);
}

.fit::after {
  right: 0;
  bottom: 20px;
  background-image: url("../assets/tsa-flight-path-03.png");
}

.fit__label {
  color: var(--tsa-muted);
  font-family: var(--sans);
}

.fit__label--accent {
  color: var(--tsa-ochre-dark);
}

.source-card,
.source-link,
.journey-card {
  border: 1px solid rgba(42, 76, 115, 0.18);
  border-radius: 0;
  background: #fff;
  color: var(--tsa-ink);
}

.source-link:hover,
.journey-card:hover {
  border-color: var(--tsa-ochre);
  box-shadow: none;
  color: var(--tsa-ink);
}

.source-link strong,
.source-card strong,
.journey-card h3 {
  color: var(--tsa-navy);
}

.source-link span,
.source-card span,
.journey-card p,
.fit__hint {
  color: var(--tsa-muted);
}

.fit-main {
  border: 0;
  border-radius: 0;
  background: var(--tsa-navy);
}

.fit-main__tags span {
  background: rgba(255, 255, 255, 0.12);
}

/* Demo form */

.hero--book {
  text-align: center;
}

.hero--book .hero__inner {
  padding-top: clamp(54px, 7vw, 92px);
}

.hero--book .hero__inner::before {
  content: "";
  display: block;
  width: 1px;
  height: 74px;
  margin: 0 auto 38px;
  background: var(--tsa-ochre);
}

.hero--book h1,
.hero--book .hero__lede {
  margin-right: auto;
  margin-left: auto;
}

.hero--book h1 {
  max-width: 13ch;
}

.hero--error h1 {
  max-width: 16ch;
}

.hero--error .hero__actions {
  justify-content: center;
}

.book {
  background: var(--tsa-pale-blue);
}

.book-form,
.book-aside__card,
.book-form.is-success {
  border: 1px solid rgba(42, 76, 115, 0.16);
  border-radius: 0;
  box-shadow: none;
}

.book-form label,
.book-form legend {
  color: var(--tsa-navy);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.book-form input,
.book-form select,
.book-form textarea {
  border-color: var(--tsa-border);
  border-radius: 5px;
}

.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  border-color: var(--tsa-navy);
  outline-color: var(--tsa-ochre);
}

.book-aside__kicker {
  color: var(--tsa-ochre-dark);
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0;
  text-transform: none;
}

.book-aside__card h2 {
  color: var(--tsa-navy);
  font-weight: 600;
  text-transform: uppercase;
}

.book-aside__card--quiet {
  border-top: 3px solid var(--tsa-ochre);
  background: transparent;
}

/* Alliance-endorsed footer */

.site-footer {
  background: var(--tsa-midnight);
  color: rgba(255, 255, 255, 0.76);
}

.site-footer__endorsement {
  display: flex;
  justify-content: center;
  padding-top: 64px;
  padding-bottom: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__endorsement a {
  display: block;
  width: min(300px, 100%);
}

.site-footer__endorsement img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer__grid {
  padding-top: 48px;
  padding-bottom: 44px;
}

.site-footer__brand {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.site-footer h2 {
  color: #fff;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__links a:hover,
.site-footer__legal a {
  color: #f0c18b;
}

.site-footer__base {
  max-width: none;
  padding: 18px max(var(--pad), calc((100vw - var(--wrap)) / 2 + var(--pad))) 20px;
  background: #fff;
}

.site-footer__rule {
  display: none;
}

.site-footer__legal p {
  color: #737984;
  font-size: 11px;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

@media (max-width: 1020px) {
  .site-nav a {
    padding-right: 9px;
    padding-left: 9px;
  }

  .btn-demo {
    padding-right: 14px !important;
    padding-left: 14px !important;
  }
}

@media (max-width: 860px) {
  .site-header__inner {
    min-height: 74px;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .brand__name {
    font-size: 15px;
  }

  .brand__sub {
    font-size: 11px;
  }

  .site-nav {
    top: 100%;
    gap: 0;
    padding-top: 18px;
    padding-bottom: 22px;
    background: var(--tsa-midnight);
    border-bottom: 2px solid var(--tsa-ochre);
  }

  .site-nav a,
  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    padding: 14px 4px;
    color: #fff;
  }

  .site-nav a::after {
    right: 4px;
    bottom: 8px;
    left: 4px;
  }

  .site-nav .btn-login {
    display: inline-flex;
    margin: 8px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 4px !important;
    background: transparent;
    color: #fff !important;
  }

  .site-nav .btn-login:hover,
  .site-nav .btn-login:focus-visible,
  .site-nav .btn-login:active {
    border-color: #fff;
    background: #fff;
    color: var(--tsa-midnight) !important;
  }

  .site-nav .btn-demo,
  .site-nav .btn-demo:visited,
  .site-nav .btn-demo[aria-current="page"] {
    margin: 6px 0 0;
    border-color: #fff !important;
    background: #fff !important;
    color: var(--tsa-midnight) !important;
  }

  .site-nav .btn-demo:hover,
  .site-nav .btn-demo:focus-visible,
  .site-nav .btn-demo:active {
    border-color: #f0c18b !important;
    background: #f0c18b !important;
    color: var(--tsa-midnight) !important;
  }

  .hero {
    background-image: none;
  }

  .hero::before {
    width: 78vw;
    opacity: 0.68;
  }

  .hero:not(.hero--product)::after {
    left: -6%;
    top: 0;
    width: min(72vw, 280px);
    height: 36%;
    opacity: 0.5;
  }

  .hero__inner {
    padding-top: 24px;
    padding-bottom: 56px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .hero:not(.hero--product) .hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero:not(.hero--product) .scan {
    margin-top: 12px;
  }

  .hero__actions > a,
  .scan-btn {
    min-height: 46px;
  }

  .ask,
  .vetta,
  .principles {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .ask,
  .vetta,
  .principles {
    background-image: none;
  }

  .why::after,
  .products::after,
  .fit::after {
    display: none;
  }

  .ask__inner,
  .tour__inner,
  .principles__inner,
  .vetta__inner {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .why,
  .products,
  .fit {
    padding-top: 72px;
    padding-bottom: 96px;
  }

  .why::after,
  .products::after,
  .fit::after {
    width: 200px;
    height: 90px;
  }

  .site-footer__endorsement {
    padding-top: 50px;
  }

  .site-footer__grid {
    padding-top: 38px;
  }

  .site-footer__legal {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .brand__sub {
    display: none;
  }

  .hero h1,
  .ask h2,
  .principles h2,
  .demo h2,
  .section-title,
  .tour h2,
  .products h2,
  .fit h2,
  .vetta__intro h2 {
    overflow-wrap: anywhere;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions > a {
    justify-content: center;
    width: 100%;
  }

  .file-card__head,
  .file-row__top {
    align-items: flex-start;
  }

  .file-card__head {
    flex-direction: column;
  }

  .file-row__pill {
    white-space: normal;
    text-align: right;
  }

  .products__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__endorsement a {
    width: min(240px, 100%);
  }
}
