:root {
  color-scheme: light;
  --bg: #f6f9ff;
  --bg-soft: #eef3fb;
  --panel: #ffffff;
  --panel-strong: #ffffff;
  --text: #0b1626;
  --muted: #56657c;
  --line: rgba(15, 23, 42, 0.10);
  --blue: #2f6df6;
  --violet: #7c3aed;
  --cyan: #0e7490;
  --green: #16a34a;
  --red: #e11d48;
  --shadow: 0 22px 60px rgba(15, 23, 42, 0.10);
  --content-max: 1680px;
  --page-pad: max(24px, calc((100vw - var(--content-max)) / 2));
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(124, 58, 237, 0.10), transparent 40rem),
    radial-gradient(circle at 88% 6%, rgba(47, 109, 246, 0.10), transparent 42rem),
    linear-gradient(180deg, #f7faff 0%, #eef3fb 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin: 0 auto;
  padding: 14px var(--page-pad);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(18px);
}

.brand,
.mini-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.site-header .brand {
  color: #0b1626;
}

.brand-logo {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(14, 116, 144, 0.18);
}

.mini-logo img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

nav {
  display: flex;
  gap: 24px;
  color: #4a5a70;
  font-size: 14px;
}

nav a:hover {
  color: #0b1626;
}

.header-cta,
.secondary-btn,
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 14px;
  padding: 0 18px;
  font-weight: 750;
}

.header-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-login {
  border-radius: 12px;
  padding: 10px 14px;
  color: #334155;
  font-size: 14px;
  font-weight: 750;
}

.header-login:hover { background: #eef3fb; color: #0b1626; }
.existing-label { color: #64748b; font-size: 13px; }

.mobile-site-menu { display: none; position: relative; flex: 0 0 auto; }
.mobile-site-menu summary {
  min-width: 70px;
  cursor: pointer;
  list-style: none;
  border: 1px solid #d6dfed;
  border-radius: 12px;
  padding: 10px 14px;
  color: #17243a;
  text-align: center;
  font-weight: 800;
  background: #fff;
}
.mobile-site-menu summary::-webkit-details-marker { display: none; }
.mobile-site-menu[open] summary { border-color: #8eaaf8; color: #2457df; background: #f2f6ff; }
.mobile-site-menu nav {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  display: grid;
  gap: 3px;
  width: min(290px, calc(100vw - 24px));
  padding: 10px;
  border: 1px solid #d6dfed;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(15, 23, 42, .2);
}
.mobile-site-menu nav a { padding: 12px 13px; border-radius: 10px; color: #24344d; font-size: 15px; font-weight: 700; }
.mobile-site-menu nav a:hover { color: #173fbb; background: #eef4ff; }
.mobile-site-menu .mobile-site-app-link { margin-top: 5px; color: #fff; text-align: center; background: linear-gradient(100deg, #315fe8, #7c3aed); }

.trial-page { min-height: 100vh; }

/* About and canonical product facts */
.about-main { width: min(1500px, calc(100% - 48px)); margin: 0 auto; padding: 72px 0 88px; }
.about-hero { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(340px, .6fr); gap: clamp(36px, 7vw, 100px); align-items: center; }
.about-hero h1 { max-width: 980px; margin: 18px 0; font-size: clamp(46px, 5.5vw, 78px); line-height: 1.02; letter-spacing: -.045em; }
.about-hero p { max-width: 900px; color: var(--muted); font-size: 20px; line-height: 1.72; }
.about-fact-card { display: grid; grid-template-columns: 140px 1fr; gap: 0 20px; overflow: hidden; border: 1px solid #dbe4f0; border-radius: 24px; background: rgba(255,255,255,.9); box-shadow: var(--shadow); }
.about-fact-card span,.about-fact-card strong { padding: 17px 0; border-bottom: 1px solid #e4ebf5; }
.about-fact-card span { padding-left: 22px; color: #64748b; font-size: 13px; font-weight: 750; text-transform: uppercase; letter-spacing: .05em; }
.about-fact-card strong { padding-right: 22px; line-height: 1.45; }
.about-fact-card span:nth-last-of-type(1),.about-fact-card strong:last-child { border-bottom: 0; }
.about-section { margin-top: 90px; }
.about-capabilities article { min-height: 220px; }
.about-capabilities article > b { color: var(--violet); font-size: 14px; letter-spacing: .12em; }
.about-boundaries { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .75fr); gap: 70px; align-items: center; border: 1px solid #d7e1ef; border-radius: 28px; padding: clamp(30px, 5vw, 70px); background: linear-gradient(135deg,#fff,#f3f5ff); }
.about-boundaries h2 { font-size: clamp(34px,4vw,54px); line-height: 1.08; }
.about-boundaries p { color: var(--muted); font-size: 17px; line-height: 1.7; }
.boundary-list { display: grid; gap: 12px; }
.boundary-list span { border: 1px solid #dce4f2; border-radius: 14px; padding: 15px 18px; background: #fff; font-weight: 750; }
.boundary-list span::before { content: "✓"; margin-right: 10px; color: #059669; }
.about-links { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.about-links a { display: grid; gap: 8px; min-height: 142px; border: 1px solid #d9e3f0; border-radius: 18px; padding: 22px; background: rgba(255,255,255,.9); box-shadow: 0 12px 35px rgba(15,23,42,.06); transition: transform .18s ease,border-color .18s ease; }
.about-links a:hover { transform: translateY(-3px); border-color: #8fa9ff; }
.about-links strong { font-size: 18px; }
.about-links span { color: var(--muted); line-height: 1.55; }

@media (max-width: 980px) {
  .about-hero,.about-boundaries { grid-template-columns: 1fr; }
  .about-links { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 640px) {
  .about-main { width: min(100% - 28px,1500px); padding-top: 44px; }
  .about-hero h1 { font-size: 42px; }
  .about-fact-card { grid-template-columns: 110px 1fr; }
  .about-links { grid-template-columns: 1fr; }
}

.trial-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(440px, .72fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  width: min(1260px, calc(100% - 48px));
  min-height: calc(100vh - 150px);
  margin: 0 auto;
  padding: 58px 0;
}

.trial-intro h1 { max-width: 650px; font-size: clamp(46px, 5vw, 70px); }
.trial-intro .hero-lead { max-width: 680px; }

.trial-steps { display: grid; gap: 14px; margin-top: 32px; }
.trial-steps > div { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: center; }
.trial-steps b { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; color: #fff; background: linear-gradient(135deg,var(--blue),var(--violet)); }
.trial-steps strong,.trial-steps small { display: block; }
.trial-steps strong { margin-bottom: 3px; }
.trial-steps small { color: var(--muted); line-height: 1.45; }

.trial-safety { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.trial-safety span { border: 1px solid #c9d8ee; border-radius: 999px; padding: 8px 11px; color: #40516a; background: rgba(255,255,255,.72); font-size: 12px; font-weight: 750; }
.trial-form-card { box-shadow: 0 30px 80px rgba(30,64,175,.14); }
.trial-form-card form { gap: 17px; }
.trial-form-card label span i { color: #dc2626; font-style: normal; }
.trial-form-card .field-message { display: block; min-height: 0; margin-top: 6px; color: #b91c1c; font-size: 13px; font-weight: 700; }
.trial-form-card .field-message:empty { display: none; }
.trial-form-card .field-invalid { border-color: #ef4444 !important; background: #fff7f7 !important; box-shadow: 0 0 0 3px rgba(239,68,68,.1) !important; }
.trial-consent { display: grid !important; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; border: 1px solid #dce4f0; border-radius: 12px; padding: 14px; background: #f8faff; }
.trial-consent input { width: 18px !important; height: 18px; margin-top: 2px; padding: 0 !important; }
.trial-consent span { color: #40516a; font-size: 13px; font-weight: 600 !important; line-height: 1.5; }
.trial-success { padding: 24px 4px; text-align: center; }
.trial-success .success-icon { display: grid; place-items: center; width: 68px; height: 68px; margin: 0 auto 20px; border-radius: 24px; color: #fff; background: #10b981; font-size: 32px; font-weight: 900; box-shadow: 0 16px 40px rgba(16,185,129,.24); }
.trial-success .eyebrow { margin: 0 auto; }
.trial-success h2 { margin: 18px 0 12px; font-size: 38px; }
.trial-success p { color: var(--muted); line-height: 1.65; }
.trial-success-notes { display: grid; gap: 8px; margin: 24px 0; text-align: left; }
.trial-success-notes span { border-radius: 10px; padding: 10px 12px; color: #365169; background: #eef7ff; font-size: 13px; }

@media (max-width: 940px) {
  .trial-layout { grid-template-columns: 1fr; max-width: 720px; padding-top: 36px; }
  .trial-intro h1 { font-size: clamp(42px,10vw,62px); }
}

@media (max-width: 620px) {
  .site-header .existing-label { display: none; }
  .trial-layout { width: min(100% - 24px, 720px); padding: 28px 0; }
  .trial-form-card { padding: 22px 18px; }
  .header-actions { gap: 2px; }
}

.header-cta,
.secondary-btn {
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #ffffff;
  color: #1e2a3c;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.primary-btn {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 18px 48px rgba(47, 109, 246, 0.32);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(520px, 0.92fr);
  gap: clamp(28px, 4vw, 68px);
  align-items: center;
  width: min(var(--content-max), calc(100% - 48px));
  margin: clamp(22px, 4vh, 48px) auto clamp(28px, 5vh, 48px);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(34, 211, 238, 0.08);
  color: #08758b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin: clamp(14px, 2.2vh, 22px) 0 clamp(14px, 2vh, 20px);
  font-size: clamp(42px, min(4.1vw, 7.1vh), 72px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 18px;
  color: inherit;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1;
  letter-spacing: -0.045em;
}

h3 {
  font-size: 21px;
  letter-spacing: -0.02em;
}

.hero-lead,
.section p,
.cta-section p {
  color: var(--muted);
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.75;
}

.hero-lead {
  max-width: 720px;
}

.hero-journey {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  max-width: 760px;
  margin-top: clamp(18px, 2.6vh, 26px);
}

.hero-journey > div {
  position: relative;
  min-width: 0;
  min-height: 92px;
  border: 1px solid rgba(47, 109, 246, 0.16);
  border-radius: 16px;
  padding: 14px 12px 12px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.05);
}

.hero-journey span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  font-size: 12px;
  font-weight: 800;
}

.hero-journey strong,
.hero-journey small {
  display: block;
}

.hero-journey strong {
  font-size: 14px;
}

.hero-journey small {
  overflow: hidden;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.3;
}

.hero-journey i {
  color: var(--blue);
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(18px, 3vh, 26px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(14px, 2.4vh, 22px);
}

.trust-row span {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  padding: 9px 12px;
  color: #44556b;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  font-size: 13px;
}

.hero-product {
  overflow: hidden;
  width: 100%;
  max-width: 620px;
  justify-self: end;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  color: var(--muted);
}

.window-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ef4444;
}

.window-bar span:nth-child(2) {
  background: #f59e0b;
}

.window-bar span:nth-child(3) {
  background: #22c55e;
}

.window-bar strong {
  margin-left: 10px;
  font-size: 13px;
}

.product-grid {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  min-height: clamp(300px, 44vh, 390px);
}

.product-sidebar {
  border-right: 1px solid var(--line);
  padding: clamp(14px, 2vh, 18px);
  background: #f5f8fe;
}

.product-sidebar p {
  margin: clamp(8px, 1.4vh, 12px) 0;
  border-radius: 12px;
  padding: clamp(8px, 1.4vh, 10px) 12px;
  color: var(--muted);
  font-size: 13px;
}

.product-sidebar .active {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.product-main {
  min-width: 0;
  padding: clamp(14px, 2vh, 22px);
}

.status-line {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 999px;
  padding: 8px 12px;
  color: #15803d;
  background: rgba(34, 197, 94, 0.08);
  font-size: 13px;
}

.connected {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12);
}

.product-main h3 {
  margin: clamp(14px, 2.6vh, 22px) 0;
  font-size: clamp(22px, min(2.1vw, 3.4vh), 30px);
  line-height: 1.08;
}

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

.flow div,
.finding-card,
.deploy-card,
.cards article,
.steps div {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.flow div {
  padding: 14px;
  color: var(--muted);
  font-size: 13px;
}

.flow b {
  display: block;
  margin-top: 6px;
  color: #0b1626;
}

.finding-card {
  margin-top: clamp(10px, 2vh, 16px);
  padding: clamp(14px, 2vh, 18px);
  border-color: rgba(22, 163, 74, 0.28);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(240, 249, 244, 0.9));
}

.finding-card span {
  color: #15803d;
  font-size: 13px;
  font-weight: 800;
}

.finding-card h4 {
  margin: 8px 0 6px;
  font-size: clamp(19px, min(1.7vw, 2.8vh), 22px);
}

.finding-card p {
  color: #45566b;
}

.actions-row {
  display: flex;
  gap: 10px;
  margin-top: clamp(12px, 2vh, 18px);
}

.actions-row button {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  padding: 10px 14px;
  color: #1e2a3c;
  background: #f5f8fe;
  font-weight: 600;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--page-pad) clamp(34px, 5vh, 54px);
  color: #56657c;
}

.logos span {
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 999px;
  padding: 12px 18px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.pilot-proof {
  width: min(1380px, calc(100% - 64px));
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.7fr);
  overflow: hidden;
  border: 1px solid #d8e1ef;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(23, 43, 77, .08);
}
.pilot-proof-brand {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 38px;
  color: #fff;
  background: linear-gradient(145deg, #0b1728, #132b4b);
}
.pilot-proof-label {
  color: #a9c7f0;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.pilot-proof-brand a { color: #fff; text-decoration: none; }
.pilot-proof-brand strong { display: block; font-size: clamp(34px, 4vw, 52px); letter-spacing: -.04em; }
.pilot-proof-brand small { display: block; margin-top: 7px; color: #c6d4e8; font-size: 14px; }
.pilot-proof-status { display: flex; gap: 9px; align-items: center; color: #d9e6f7; font-size: 14px; font-weight: 750; }
.pilot-proof-status i { width: 9px; height: 9px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 5px rgba(52, 211, 153, .13); }
.pilot-proof-copy { padding: 38px 42px; }
.pilot-proof-copy h2 { max-width: 850px; margin: 8px 0 14px; color: #101d32; font-size: clamp(26px, 3vw, 38px); line-height: 1.14; }
.pilot-proof-copy > p { max-width: 950px; margin: 0; color: #506178; font-size: 17px; line-height: 1.65; }
.pilot-proof-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 24px 0; }
.pilot-proof-facts span { padding: 14px 16px; border: 1px solid #dbe5f1; border-radius: 12px; color: #52647c; background: #f8fbff; font-size: 14px; }
.pilot-proof-facts b { display: block; margin-bottom: 3px; color: #15243a; font-size: 17px; }
.pilot-proof-link { color: #315fe8; font-weight: 850; text-decoration: none; }

.case-study-main { width: min(1240px, calc(100% - 64px)); margin: 0 auto; padding: 64px 0 90px; }
.case-study-hero { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(290px, .7fr); gap: 28px; align-items: stretch; }
.case-study-hero-copy, .case-study-partner-card, .case-study-section { border: 1px solid #d9e2ef; border-radius: 22px; background: #fff; box-shadow: 0 14px 36px rgba(22, 43, 76, .07); }
.case-study-hero-copy { padding: 48px; background: linear-gradient(135deg, #f7faff, #f7f3ff); }
.case-study-hero h1 { max-width: 850px; margin: 10px 0 18px; color: #0f1c31; font-size: clamp(38px, 5vw, 64px); line-height: 1.02; letter-spacing: -.045em; }
.case-study-hero-copy > p { max-width: 780px; color: #4e6078; font-size: 19px; line-height: 1.65; }
.case-study-partner-card { display: grid; align-content: center; gap: 18px; padding: 34px; color: #fff; background: linear-gradient(145deg, #0b1728, #163154); }
.case-study-partner-card span { color: #a9c7f0; font-size: 12px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.case-study-partner-card strong { font-size: 42px; }
.case-study-partner-card p { margin: 0; color: #d4dfed; line-height: 1.55; }
.case-study-partner-card a { color: #fff; font-weight: 800; }
.case-study-disclosure { margin: 24px 0; padding: 18px 22px; border: 1px solid #f3cf75; border-radius: 14px; color: #714508; background: #fff8e4; line-height: 1.55; }
.case-study-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 22px; }
.case-study-section { padding: 30px; }
.case-study-section h2 { margin: 8px 0 14px; color: #132239; font-size: 25px; }
.case-study-section p, .case-study-section li { color: #56677d; line-height: 1.65; }
.case-study-section ul { padding-left: 20px; }
.case-study-status { margin-top: 22px; padding: 34px; border-radius: 20px; color: #fff; background: linear-gradient(120deg, #193464, #5b21b6); }
.case-study-status h2 { margin: 7px 0 10px; font-size: 30px; }
.case-study-status p { max-width: 900px; color: #e2e7ff; line-height: 1.6; }

@media (max-width: 900px) {
  .pilot-proof, .case-study-hero { grid-template-columns: 1fr; }
  .pilot-proof-facts, .case-study-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .pilot-proof, .case-study-main { width: min(100% - 24px, 680px); }
  .pilot-proof-brand, .pilot-proof-copy, .case-study-hero-copy, .case-study-partner-card { padding: 26px 22px; }
  .case-study-main { padding-top: 28px; }
}

.section,
.cta-section {
  width: 100%;
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  padding: clamp(44px, 5vw, 68px) var(--page-pad);
  color: #07111e;
  background: #f8fbff;
  box-shadow: none;
}

.section + .section,
.section + .cta-section {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 4vw, 48px);
  align-items: center;
}

.reverse {
  grid-template-columns: 1fr 0.95fr;
}

.section .eyebrow,
.cta-section .eyebrow {
  border-color: rgba(47, 109, 246, 0.16);
  color: var(--blue);
  background: rgba(47, 109, 246, 0.08);
}

.section p,
.cta-section p {
  color: #53637a;
}

.steps {
  display: grid;
  gap: 12px;
}

.steps div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: #f7fbff;
}

.steps strong {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.cards {
  display: grid;
  gap: 18px;
}

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

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

.cards article {
  padding: 24px;
  background: #f8fbff;
}

.cards article p {
  font-size: 15px;
  line-height: 1.65;
}

.icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: #edf4ff;
  font-size: 22px;
}

.deploy-card {
  padding: 22px;
  color: #0b1626;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background:
    radial-gradient(circle at 80% 0%, rgba(124, 58, 237, 0.10), transparent 20rem),
    #ffffff;
  box-shadow: var(--shadow);
}

.deploy-header {
  margin-bottom: 18px;
  font-size: 24px;
  font-weight: 850;
}

.deploy-step {
  margin: 10px 0;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 14px;
  padding: 12px;
  color: #56657c;
  background: #f7faff;
}

.deploy-step.active {
  color: #1b3a7a;
  background: rgba(47, 109, 246, 0.10);
  border-color: rgba(47, 109, 246, 0.32);
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.tool-grid span {
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 14px;
  padding: 14px;
  background: #f5f8fe;
  font-weight: 600;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: #26364a;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
}

.security {
  background: #eef3fb;
  color: #0b1626;
}

.security p {
  color: #56657c;
}

.security .cards article {
  color: #0b1626;
  background: #ffffff;
}

.agent-security-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  margin-top: 28px;
}

.agent-security-summary,
.agent-permission-stack article {
  border: 1px solid rgba(47, 109, 246, 0.15);
  border-radius: 22px;
  background: #ffffff;
}

.agent-security-summary {
  padding: 28px;
}

.agent-security-summary h3 {
  margin: 12px 0 10px;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
}

.agent-security-summary code {
  padding: 2px 6px;
  border-radius: 7px;
  color: #183f9d;
  background: #edf3ff;
}

.agent-security-badge {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  color: #057a55;
  background: #e8fbf3;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.agent-installed-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.agent-installed-list span {
  padding: 8px 10px;
  border: 1px solid #dce6f5;
  border-radius: 10px;
  color: #26364a;
  background: #f8fbff;
  font-size: 0.82rem;
  font-weight: 700;
}

.security-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.agent-permission-stack {
  display: grid;
  gap: 12px;
}

.agent-permission-stack article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
}

.agent-permission-stack div {
  display: grid;
  gap: 5px;
}

.agent-permission-stack strong,
.agent-permission-stack span {
  display: block;
}

.agent-permission-stack span {
  color: #607087;
  font-size: 0.9rem;
}

.agent-permission-stack b {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  color: #2856bd;
  background: #eef4ff;
  font-size: 0.78rem;
}

.security-control-cards {
  margin-top: 22px;
}

@media (max-width: 900px) {
  .agent-security-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .agent-permission-stack article {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background:
    radial-gradient(circle at 18% 20%, rgba(47, 109, 246, 0.14), transparent 24rem),
    #ffffff;
}

.cta-section > div {
  max-width: 780px;
}

footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin: 0 auto;
  padding: 40px var(--page-pad) 54px;
  color: #607087;
  background: #ffffff;
}

footer p {
  margin: 0;
  text-align: right;
}

.legal-line {
  display: block;
  margin-top: 6px;
  color: #7b8ba2;
  font-size: 13px;
}

.footer-link {
  color: #315fe8;
  font-weight: 700;
}

.docs-page {
  min-height: 100vh;
  background: #f6f8fc;
}

.docs-header .active {
  color: #0b1626;
  font-weight: 700;
}

.docs-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 860px);
  gap: 36px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 88px;
}

.docs-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid #dfe6f1;
  border-radius: 18px;
  background: #fff;
}

.docs-sidebar strong {
  margin-bottom: 6px;
  color: #0b1626;
}

.docs-sidebar a {
  padding: 9px 10px;
  border-radius: 9px;
  color: #52637a;
  font-size: 14px;
}

.docs-sidebar a:hover {
  color: #315fe8;
  background: #f0f4ff;
}

.docs-content {
  min-width: 0;
}

.docs-hero {
  padding: 34px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, #0b1626 0%, #132a51 62%, #4931ca 100%);
  box-shadow: 0 20px 50px rgba(13, 30, 58, 0.16);
}

.docs-hero h1 {
  margin: 12px 0 12px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.02;
}

.docs-hero p {
  max-width: 700px;
  margin: 0;
  color: #d9e5ff;
  font-size: 18px;
  line-height: 1.65;
}

.docs-section {
  margin-top: 22px;
  padding: 30px;
  border: 1px solid #dfe6f1;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 34, 65, 0.06);
}

.docs-section h2 {
  margin: 0 0 12px;
  color: #0b1626;
  font-size: 27px;
}

.docs-section h3 {
  margin: 24px 0 8px;
  color: #12233d;
  font-size: 19px;
}

.docs-section p,
.docs-section li {
  color: #52637a;
  line-height: 1.7;
}

.docs-section ul,
.docs-section ol {
  margin: 12px 0 0;
  padding-left: 22px;
}

.docs-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.docs-step {
  padding: 16px;
  border: 1px solid #dbe4f4;
  border-radius: 14px;
  background: #f7f9fd;
}

.docs-step b {
  display: block;
  margin-bottom: 5px;
  color: #315fe8;
}

.docs-callout {
  margin-top: 16px;
  padding: 16px 18px;
  border-left: 4px solid #315fe8;
  border-radius: 10px;
  color: #334761;
  background: #eef4ff;
}

.docs-code {
  overflow-x: auto;
  margin-top: 14px;
  padding: 18px;
  border-radius: 13px;
  color: #dbeafe;
  background: #0d1729;
  font: 13px/1.65 ui-monospace, SFMono-Regular, Consolas, monospace;
  white-space: pre;
}

.docs-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.docs-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid #cdd9ec;
  border-radius: 12px;
  color: #244fc6;
  font-weight: 700;
  background: #fff;
}

@media (max-width: 820px) {
  .docs-shell {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 760px);
    padding-top: 28px;
  }

  .docs-sidebar {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .docs-sidebar strong {
    grid-column: 1 / -1;
  }

  .docs-flow {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .docs-sidebar,
  .docs-flow {
    grid-template-columns: 1fr;
  }

  .docs-hero,
  .docs-section {
    padding: 22px;
  }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-product {
    max-width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .mobile-site-menu { display: block; }
  .mobile-site-menu nav { display: grid; }

  .hero,
  .split,
  .reverse {
    grid-template-columns: 1fr;
  }

  .hero {
    margin-top: 38px;
  }

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

  .product-sidebar {
    display: none;
  }

  .cards.three,
  .cards.four {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 60px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .logos {
    width: min(100% - 28px, 1180px);
  }

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

  .section,
  .cta-section,
  footer {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .logos {
    padding-right: 0;
    padding-left: 0;
  }

  h1 {
    max-width: 12ch;
    margin-top: 14px;
    margin-bottom: 14px;
    font-size: clamp(38px, 11.5vw, 48px);
    line-height: 1.02;
    letter-spacing: -0.05em;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-journey {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero-journey > div {
    min-height: 82px;
    padding: 12px;
  }

  .hero-journey i {
    display: none;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions a {
    width: 100%;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-row span {
    padding: 8px 11px;
  }

  .hero-product {
    border-radius: 20px;
  }

  .window-bar {
    padding: 12px;
  }

  .product-main {
    padding: 14px;
  }

  .product-main h3 {
    margin: 14px 0;
    font-size: 23px;
  }

  .flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .flow div {
    min-width: 0;
    padding: 10px 8px;
    font-size: 10px;
  }

  .flow b {
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .actions-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .actions-row button {
    min-width: 0;
    padding: 9px 6px;
    font-size: 11px;
  }

  .cards.three,
  .cards.four,
  .tool-grid {
    grid-template-columns: 1fr;
  }

  .cta-section,
  footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Large desktops & 2K/4K: scale the layout and type up so the page fills big screens
   instead of stranding a narrow column in a sea of whitespace. */
@media (min-width: 1800px) {
  :root {
    --content-max: 1820px;
  }
  .hero-product {
    max-width: 720px;
  }
}

@media (min-width: 2400px) {
  :root {
    --content-max: 2100px;
  }
  h1 {
    max-width: 900px;
    font-size: 88px;
  }
  h2 {
    font-size: 66px;
  }
  h3 {
    font-size: 24px;
  }
  .hero-lead,
  .section p,
  .cta-section p {
    font-size: 20px;
  }
  .hero-lead {
    max-width: 820px;
  }
  .hero-product {
    max-width: 820px;
  }
  .section,
  .cta-section {
    padding-top: clamp(64px, 4.5vw, 96px);
    padding-bottom: clamp(64px, 4.5vw, 96px);
  }
  .cards article {
    padding: 30px;
  }
}

/* Demo request */
.demo-page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.demo-back {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 0.78fr);
  gap: clamp(34px, 6vw, 100px);
  align-items: center;
  width: min(1320px, calc(100% - 48px));
  margin: auto;
  padding: clamp(38px, 7vh, 90px) 0;
}

.demo-intro h1 {
  max-width: 760px;
  font-size: clamp(46px, 5vw, 74px);
}

.demo-benefits {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.demo-benefits > div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
}

.demo-benefits > div > span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  font-weight: 800;
}

.demo-benefits p,
.demo-benefits small {
  margin: 0;
}

.demo-benefits strong,
.demo-benefits small {
  display: block;
}

.demo-benefits small {
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.45;
}

.demo-contact-note {
  margin-top: 24px;
  color: var(--muted);
}

.demo-contact-note a {
  color: var(--blue);
  font-weight: 750;
}

.demo-form-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(24px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.demo-form-heading > span {
  color: var(--violet);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.demo-form-heading h2 {
  margin: 8px 0;
  font-size: clamp(30px, 3vw, 42px);
}

.demo-form-heading p,
.form-privacy {
  color: var(--muted);
}

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

.demo-form-card form,
.demo-form-card label {
  display: grid;
  gap: 8px;
}

.demo-form-card form {
  gap: 18px;
  margin-top: 28px;
}

.demo-form-card label > span {
  font-size: 13px;
  font-weight: 750;
}

.demo-form-card input,
.demo-form-card textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--text);
  background: #fff;
  font: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.demo-form-card input:focus,
.demo-form-card textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(47, 109, 246, 0.12);
}

.demo-form-card textarea {
  min-height: 130px;
  resize: vertical;
}

.website-field {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.form-privacy {
  margin: -2px 0 0;
  font-size: 12px;
  line-height: 1.55;
}

.demo-submit {
  justify-content: space-between;
  width: 100%;
  border: 0;
  cursor: pointer;
  font-size: 15px;
}

.demo-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  display: none;
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 14px;
  line-height: 1.5;
}
.form-status[hidden] { display: none !important; }
.trial-size-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.trial-form-card textarea { width: 100%; resize: vertical; min-height: 112px; }
@media (max-width: 640px) { .trial-size-grid { grid-template-columns: 1fr; } }

.form-status.success,
.form-status.error {
  display: block;
}

.form-status.success {
  border: 1px solid rgba(22, 163, 74, 0.24);
  color: #166534;
  background: #f0fdf4;
}

.form-status.error {
  border: 1px solid rgba(225, 29, 72, 0.22);
  color: #9f1239;
  background: #fff1f2;
}

.demo-footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 18px var(--page-pad);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 900px) {
  .demo-layout {
    grid-template-columns: 1fr;
    width: min(680px, calc(100% - 32px));
    padding: 34px 0;
  }

  .demo-intro h1 {
    font-size: clamp(40px, 10vw, 58px);
  }
}

@media (max-width: 620px) {
  .demo-page .site-header {
    display: flex;
  }

  .demo-back {
    font-size: 12px;
  }

  .demo-layout {
    width: min(100% - 24px, 680px);
    gap: 28px;
    padding: 24px 0;
  }

  .demo-intro h1 {
    font-size: clamp(36px, 11.5vw, 48px);
  }

  .demo-benefits {
    margin-top: 22px;
  }

  .demo-form-card {
    border-radius: 20px;
    padding: 20px 16px;
  }

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

  .demo-footer {
    gap: 8px;
  }
}

/* Documentation portal */
.mobile-docs-menu {
  display: none;
  position: relative;
}

.mobile-docs-menu summary {
  cursor: pointer;
  list-style: none;
  border: 1px solid #d6dfed;
  border-radius: 12px;
  padding: 10px 14px;
  color: #17243a;
  font-weight: 750;
  background: #fff;
}

.mobile-docs-menu > div {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  display: grid;
  min-width: 220px;
  padding: 10px;
  border: 1px solid #d6dfed;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.mobile-docs-menu a {
  padding: 11px 12px;
  border-radius: 9px;
  color: #24344d;
  font-weight: 650;
}

.mobile-docs-menu a:hover {
  background: #eef4ff;
}

.docs-home {
  width: min(1600px, calc(100% - 64px));
  margin: 0 auto;
  padding: 58px 0 86px;
}

.docs-home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
  gap: 36px;
  align-items: center;
  padding: clamp(30px, 5vw, 62px);
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(135deg, #091528 0%, #15325c 58%, #5935d5 100%);
  box-shadow: 0 28px 72px rgba(13, 30, 58, .2);
}

.docs-home-hero h1,
.docs-guide-hero h1 {
  margin: 10px 0 14px;
  letter-spacing: -.04em;
  line-height: 1.03;
}

.docs-home-hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 72px);
}

.docs-home-hero > div > p {
  max-width: 720px;
  margin: 0;
  color: #dce8ff;
  font-size: 19px;
  line-height: 1.65;
}

.docs-home-hero .eyebrow,
.docs-guide-hero .eyebrow {
  color: #a8c7ff;
}

.docs-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.docs-search-panel {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 22px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
}

.docs-search-panel label {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
}

.docs-search-panel input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 14px;
  padding: 0 16px;
  color: #0b1626;
  background: #fff;
  font: inherit;
  font-size: 16px;
}

.docs-search-panel p {
  margin: 10px 0 0;
  color: #d7e5ff;
  font-size: 13px;
  line-height: 1.5;
}

.docs-quick-path,
.docs-library,
.docs-proof-strip,
.docs-help-strip {
  margin-top: 28px;
}

.docs-quick-path,
.docs-library {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid #dfe6f1;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15,34,65,.06);
}

.docs-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.docs-section-heading span {
  color: #315fe8;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.docs-section-heading h2 {
  margin: 5px 0 0;
  font-size: clamp(27px, 4vw, 38px);
}

.docs-section-heading > a {
  color: #315fe8;
  font-weight: 750;
}

.docs-flow-five {
  grid-template-columns: repeat(5, 1fr);
}

.docs-step span {
  display: block;
  color: #5b6b82;
  font-size: 13px;
  line-height: 1.55;
}

.docs-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}

.docs-guide-card {
  display: grid;
  grid-template-columns: 48px minmax(0,1fr);
  gap: 16px;
  min-height: 180px;
  padding: 22px;
  border: 1px solid #dbe4f3;
  border-radius: 18px;
  background: linear-gradient(180deg,#fff 0%,#f8faff 100%);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.docs-guide-card:hover {
  transform: translateY(-2px);
  border-color: #9bb5f5;
  box-shadow: 0 16px 34px rgba(47,109,246,.1);
}

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

.docs-card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #315fe8;
  font-size: 12px;
  font-weight: 850;
  background: #eaf1ff;
}

.docs-guide-card h3 {
  margin: 1px 0 8px;
  font-size: 21px;
}

.docs-guide-card p {
  margin: 0 0 14px;
  color: #56657c;
  line-height: 1.6;
}

.docs-guide-card small {
  color: #315fe8;
  font-size: 13px;
  font-weight: 750;
}

.docs-no-results {
  padding: 32px;
  text-align: center;
  color: #56657c;
}

.docs-proof-strip,
.docs-help-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 32px;
  border-radius: 22px;
}

.docs-proof-strip {
  color: #fff;
  background: #101d33;
}

.docs-proof-strip span {
  display: block;
  color: #94b8ff;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.docs-proof-strip strong {
  display: block;
  margin-top: 5px;
  font-size: 25px;
}

.docs-proof-strip p,
.docs-help-strip p {
  margin: 7px 0 0;
  line-height: 1.55;
}

.docs-proof-strip p {
  color: #cbd8ee;
}

.docs-proof-strip a {
  flex: 0 0 auto;
  color: #d9e6ff;
  font-weight: 750;
}

.docs-help-strip {
  border: 1px solid #d7e2f4;
  background: #edf4ff;
}

.docs-help-strip h2 {
  margin: 0;
}

.docs-help-strip > div:last-child {
  display: flex;
  gap: 10px;
}

.docs-footer {
  align-items: center;
  border-top: 1px solid #e3e9f2;
}

.docs-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #315fe8;
  font-weight: 700;
}

.docs-footer > p {
  text-align: right;
}

.docs-guide-shell {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 32px;
  width: min(1600px, calc(100% - 64px));
  margin: 0 auto;
  padding: 42px 0 82px;
}

.docs-sidebar hr {
  width: 100%;
  border: 0;
  border-top: 1px solid #e5eaf2;
}

.docs-back {
  display: inline-flex;
  margin: 0 0 16px;
  color: #315fe8;
  font-weight: 750;
}

.docs-guide-hero {
  padding: 38px;
  border: 1px solid #d6e0f0;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg,#0c1930 0%,#173865 70%,#5032c8 100%);
  box-shadow: 0 20px 50px rgba(13,30,58,.15);
}

.docs-guide-hero h1 {
  max-width: 780px;
  font-size: clamp(38px, 5vw, 58px);
}

.docs-guide-hero p {
  max-width: 900px;
  margin: 0;
  color: #dbe7fb;
  font-size: 18px;
  line-height: 1.65;
}

/* Let navigation, tables, cards and examples use the desktop canvas while
   keeping long-form prose comfortable to read. */
.docs-guide-shell .docs-section > p,
.docs-guide-shell .docs-section > ul,
.docs-guide-shell .docs-section > ol {
  max-width: 920px;
}

.docs-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.docs-meta-row span {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: #e6efff;
  background: rgba(255,255,255,.08);
  font-size: 12px;
  font-weight: 700;
}

.docs-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 12px;
  color: #315fe8;
  font-size: 13px;
  font-weight: 850;
  background: #eaf1ff;
}

.docs-section a:not(.docs-links a) {
  color: #315fe8;
  font-weight: 700;
}

.docs-section code:not(pre code) {
  padding: 2px 5px;
  border-radius: 5px;
  color: #243e72;
  background: #edf3ff;
  font: .9em ui-monospace, SFMono-Regular, Consolas, monospace;
}

.docs-section > p:last-child {
  margin-bottom: 0;
}

.docs-callout p,
.docs-danger p {
  margin: 5px 0 0;
}

.docs-danger {
  margin-top: 16px;
  padding: 16px 18px;
  border-left: 4px solid #e11d48;
  border-radius: 10px;
  color: #7f1d1d;
  background: #fff1f2;
}

.docs-code-wrap {
  position: relative;
  margin-top: 14px;
}

.docs-code-wrap .docs-code {
  margin: 0;
  padding-right: 76px;
}

.docs-code-wrap button {
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 10px;
  cursor: pointer;
  border: 1px solid #3c4e6a;
  border-radius: 8px;
  padding: 7px 10px;
  color: #eaf2ff;
  background: #17243a;
  font-weight: 700;
}

.docs-check-grid,
.docs-feature-grid,
.docs-result-grid,
.docs-proof-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 12px;
  margin-top: 16px;
}

.docs-check-grid > div,
.docs-feature-grid > div,
.docs-result-grid > div {
  padding: 17px;
  border: 1px solid #dce4f0;
  border-radius: 14px;
  background: #f8faff;
}

.docs-check-grid strong,
.docs-feature-grid strong,
.docs-result-grid strong {
  display: block;
  margin-bottom: 5px;
  color: #13223a;
}

.docs-check-grid span,
.docs-feature-grid span,
.docs-result-grid p {
  margin: 0;
  color: #596a81;
  line-height: 1.55;
}

.docs-result-good {
  border-color: #bce8ce !important;
  background: #f0fdf4 !important;
}

.docs-result-bad {
  border-color: #fecaca !important;
  background: #fff7f7 !important;
}

.docs-process {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 10px;
  margin-top: 17px;
}

.docs-process > div {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  padding: 15px;
  border: 1px solid #dce4f0;
  border-radius: 14px;
  background: #f8faff;
}

.docs-process b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: #315fe8;
}

.docs-process span {
  color: #5b6b82;
  font-size: 13px;
  line-height: 1.5;
}

.docs-process strong {
  display: block;
  color: #14233a;
}

.docs-table {
  width: 100%;
  margin-top: 16px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid #dce4f0;
  border-radius: 14px;
  color: #465870;
}

.docs-table th,
.docs-table td {
  padding: 13px 14px;
  border-bottom: 1px solid #e3e8f0;
  text-align: left;
  line-height: 1.45;
}

.docs-table th {
  color: #263750;
  background: #eef3fb;
  font-size: 12px;
  text-transform: uppercase;
}

.docs-table tr:last-child td {
  border-bottom: 0;
}

.docs-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 4px 0 10px;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 800;
}

.docs-status-platform { color: #9a3412; background: #ffedd5; }
.docs-status-agent { color: #1d4ed8; background: #dbeafe; }
.docs-status-pass { color: #047857; background: #d1fae5; }

.docs-proof-grid {
  grid-template-columns: repeat(3,minmax(0,1fr));
}

.docs-proof-grid > div {
  padding: 22px;
  border: 1px solid #dbe4f2;
  border-radius: 16px;
  background: #f7faff;
}

.docs-proof-grid span,
.docs-proof-grid small {
  display: block;
  color: #607088;
}

.docs-proof-grid strong {
  display: block;
  margin: 8px 0 5px;
  color: #315fe8;
  font-size: 36px;
}

.docs-next {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding: 18px 4px;
  color: #315fe8;
  font-weight: 750;
}

@media (max-width: 1080px) {
  .docs-home-hero { grid-template-columns: 1fr; }
  .docs-flow-five { grid-template-columns: repeat(3,1fr); }
  .docs-guide-shell { grid-template-columns: 220px minmax(0,1fr); }
  .docs-process { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 980px) {
  .docs-header .header-cta { display: none; }
  .mobile-docs-menu { display: block; }
  .docs-guide-shell { grid-template-columns: 1fr; width: min(100% - 30px, 900px); padding-top: 24px; }
  .docs-guide-shell .docs-sidebar { position: static; grid-template-columns: repeat(3,minmax(0,1fr)); top: auto; }
  .docs-guide-shell .docs-sidebar strong,
  .docs-guide-shell .docs-sidebar hr { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .docs-home { width: min(100% - 24px, 680px); padding-top: 24px; }
  .docs-home-hero { padding: 26px 22px; border-radius: 22px; }
  .docs-home-hero h1 { font-size: clamp(38px,12vw,54px); }
  .docs-search-panel { padding: 18px; }
  .docs-section-heading,
  .docs-proof-strip,
  .docs-help-strip { align-items: flex-start; flex-direction: column; }
  .docs-flow-five,
  .docs-card-grid,
  .docs-check-grid,
  .docs-feature-grid,
  .docs-result-grid,
  .docs-proof-grid,
  .docs-process { grid-template-columns: 1fr; }
  .docs-guide-shell .docs-sidebar { display: none; }
  .docs-guide-hero { padding: 28px 22px; }
  .docs-section { padding: 22px 18px; }
  .docs-table { display: block; overflow-x: auto; }
  .docs-help-strip > div:last-child { flex-wrap: wrap; }
  .docs-footer { flex-direction: column; }
  .docs-footer > p { text-align: left; }
}

.website-language-toggle {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 3px;
  margin-left: 10px;
  padding: 3px;
  border: 1px solid #d9e2ef;
  border-radius: 10px;
  background: #fff;
}
.website-language-toggle button {
  min-width: 34px;
  padding: 7px 8px;
  border: 0;
  border-radius: 7px;
  color: #617086;
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}
.website-language-toggle button.selected { color: #fff; background: #2865e8; }
@media (max-width: 760px) {
  .website-language-toggle { margin-left: auto; }
  .site-header .website-language-toggle + .mobile-site-menu { margin-left: 0; }
}

/* Human-centred homepage */
.sales-human-visual {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid #d8e1ed;
  border-radius: 30px;
  background: #dfe8f1;
  box-shadow: 0 34px 80px rgba(37, 58, 96, .18);
}

.sales-human-visual > img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  display: block;
  object-fit: cover;
  object-position: 52% center;
}

.sales-human-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 18, 38, .32));
}

.sales-human-note {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 240px;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 14px;
  color: #4f6077;
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 34px rgba(16, 31, 58, .18);
  backdrop-filter: blur(12px);
  font-size: 12px;
}

.sales-human-note span, .sales-human-note b { display: block; }
.sales-human-note b { margin-bottom: 2px; color: #142238; font-size: 14px; }
.sales-human-note i { width: 10px; height: 10px; flex: 0 0 auto; border-radius: 50%; background: #18b57b; box-shadow: 0 0 0 5px rgba(24,181,123,.13); }
.note-live { top: 24px; left: 24px; }
.note-evidence { top: 46%; right: 20px; }
.note-control { bottom: 38px; left: 28px; }

.sales-capabilities { scroll-margin-top: 90px; }
.product-card-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 18px; }
.product-card-tab {
  display: flex;
  min-height: 240px;
  padding: 24px;
  border: 1px solid #d8e1ed;
  border-radius: 20px;
  color: #142238;
  background: #fff;
  box-shadow: 0 14px 34px rgba(31, 50, 82, .06);
  text-align: left;
  cursor: pointer;
  flex-direction: column;
  font: inherit;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.product-card-tab:hover { transform: translateY(-3px); border-color: #9db7f7; box-shadow: 0 20px 44px rgba(31, 50, 82, .12); }
.product-card-tab:focus-visible { outline: 3px solid rgba(47,109,246,.28); outline-offset: 3px; }
.product-card-tab.active { border-color: #3971f1; background: linear-gradient(150deg,#f4f8ff,#fbf9ff); box-shadow: inset 0 0 0 1px #3971f1, 0 20px 48px rgba(47,109,246,.13); }
.product-card-tab > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; color: #fff; background: linear-gradient(135deg,#2f6df6,#7c3aed); font-size: 13px; font-weight: 850; }
.product-card-tab b { margin: 22px 0 9px; font-size: 25px; }
.product-card-tab small { color: #5b6c83; font-size: 15px; line-height: 1.5; }
.product-card-tab em { margin-top: auto; padding-top: 18px; color: #2d63e8; font-size: 13px; font-style: normal; font-weight: 820; }

.product-story-panel {
  display: grid;
  scroll-margin-top: 104px;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: 28px;
  padding: clamp(28px,4vw,54px);
  border: 1px solid #d7e1ee;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(26,47,82,.08);
}
.product-story-panel[hidden] { display: none; }
.product-story-copy h3 { margin: 10px 0 15px; font-size: clamp(34px,3.6vw,52px); line-height: 1.06; letter-spacing: -.045em; }
.product-story-copy > p { max-width: 760px; margin: 0; color: #56677e; font-size: 17px; line-height: 1.65; }
.product-story-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }
.product-story-steps span { display: flex; gap: 10px; align-items: center; padding: 13px; border: 1px solid #dce4ef; border-radius: 12px; color: #34455e; background: #f9fbfe; font-weight: 720; }
.product-story-steps b { display: grid; place-items: center; width: 26px; height: 26px; flex: 0 0 auto; border-radius: 8px; color: #fff; background: #6f31dc; font-size: 12px; }
.product-story-media { display: grid; min-width: 0; gap: 14px; align-content: start; }
.product-story-visual { overflow: hidden; margin: 0; border: 1px solid #dbe5f1; border-radius: 19px; background: #f8fbff; box-shadow: 0 14px 36px rgba(26,47,82,.12); }
.product-story-visual img { display: block; width: 100%; height: auto; }
.product-story-outcome { display: grid; min-height: 0; padding: 18px 20px; border: 1px solid #d3c9f5; border-radius: 17px; background: linear-gradient(150deg,#f5f2ff,#eef5ff); grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px 16px; }
.product-story-outcome small { color: #7041c9; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.product-story-outcome small, .product-story-outcome p { grid-column: 1 / -1; }
.product-story-outcome strong { color: #17243a; font-size: 18px; line-height: 1.3; }
.product-story-outcome i { color: #6f31dc; font-size: 24px; font-style: normal; }
.product-story-outcome p { margin: 0; color: #64758b; line-height: 1.45; }
.product-benefits { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding-top: 4px; }
.product-benefits article { padding: 19px; border: 1px solid #dce4ef; border-radius: 15px; background: #f9fbfe; }
.product-benefits b, .product-benefits span { display: block; }
.product-benefits b { margin-bottom: 7px; color: #17243a; }
.product-benefits span { color: #5c6d83; line-height: 1.5; }

.founder-story {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
  gap: 0;
  align-items: stretch;
}

.founder-story-copy {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: clamp(38px, 5vw, 72px);
  border: 1px solid #d6e1ef;
  border-right: 0;
  border-radius: 28px 0 0 28px;
  background: linear-gradient(145deg, #ffffff 0%, #f3f7ff 66%, #f5f1ff 100%);
  box-shadow: 0 28px 70px rgba(28, 49, 82, .12);
  flex-direction: column;
}

.founder-story-copy h2 {
  max-width: 10ch;
  margin: 12px 0 18px;
  color: #13213a;
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.founder-story-copy > p {
  max-width: 650px;
  margin: 0;
  color: #52647c;
  font-size: 18px;
  line-height: 1.65;
}

.founder-story-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0;
}

.founder-story-principles span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid #d7e1ee;
  border-radius: 999px;
  color: #38506d;
  background: rgba(255,255,255,.8);
  font-size: 13px;
  font-weight: 760;
}

.founder-story-principles span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16b981;
}

.founder-story-identity { display: grid; gap: 4px; margin-bottom: 26px; }
.founder-story-identity strong { color: #17243a; font-size: 18px; }
.founder-story-identity span { color: #66778e; }
.founder-story-copy .hero-actions { margin-top: 0; }

.founder-story-media {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  margin: 0;
  border: 1px solid #d6e1ef;
  border-left: 0;
  border-radius: 0 28px 28px 0;
  background: #dce7ee;
  box-shadow: 0 28px 70px rgba(28, 49, 82, .12);
}

.founder-story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,.15), transparent 30%);
}

.founder-story-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  object-position: 68% center;
}

@media (max-width: 1120px) {
  .sales-human-visual, .sales-human-visual > img { min-height: 560px; }
  .product-card-tabs { grid-template-columns: 1fr 1fr; }
  .product-story-panel { grid-template-columns: 1fr; }
  .product-story-outcome { min-height: 0; }
  .founder-story { grid-template-columns: 1fr; }
  .founder-story-copy { border-right: 1px solid #d6e1ef; border-bottom: 0; border-radius: 28px 28px 0 0; }
  .founder-story-media { min-height: 520px; border-top: 0; border-left: 1px solid #d6e1ef; border-radius: 0 0 28px 28px; }
  .founder-story-media img { min-height: 520px; object-position: 68% 42%; }
}

@media (max-width: 760px) {
  .sales-human-visual, .sales-human-visual > img { min-height: 430px; }
  .sales-human-visual { border-radius: 20px; }
  .sales-human-note { max-width: 190px; padding: 10px 12px; }
  .note-live { top: 14px; left: 14px; }
  .note-evidence { top: auto; right: 12px; bottom: 74px; }
  .note-control { display: none; }
  .product-card-tabs, .product-story-steps, .product-benefits { grid-template-columns: 1fr; }
  .product-card-tab { min-height: 190px; padding: 20px; }
  .product-story-panel { gap: 20px; padding: 22px; }
  .product-story-copy h3 { font-size: 36px; }
  .product-story-visual { border-radius: 14px; }
  .product-story-outcome { grid-template-columns: 1fr; padding: 18px; }
  .product-story-outcome i { transform: rotate(90deg); }
  .founder-story-copy { padding: 30px 22px; border-radius: 21px 21px 0 0; }
  .founder-story-copy h2 { max-width: 12ch; font-size: 40px; }
  .founder-story-copy > p { font-size: 16px; }
  .founder-story-principles { display: grid; }
  .founder-story-media { min-height: 380px; border-radius: 0 0 21px 21px; }
  .founder-story-media img { min-height: 380px; object-position: 70% center; }
}

@media (max-width: 480px) {
  .docs-hero-actions,
  .docs-help-strip > div:last-child { display: grid; width: 100%; }
  .docs-next { flex-direction: column; }
}

/* Buyer trust package */
.trust-package-shell,
.demo-shell {
  width: min(100% - 40px, 1420px);
  margin: 0 auto;
  padding: 56px 0 70px;
}

.trust-package-hero {
  display: grid;
  grid-template-columns: minmax(0,1.45fr) minmax(320px,.55fr);
  gap: 42px;
  align-items: center;
  padding: 52px;
  border: 1px solid #d9e2f0;
  border-radius: 28px;
  background: radial-gradient(circle at 88% 16%,#e8e4ff 0,transparent 34%),linear-gradient(135deg,#f7f9ff,#fff);
  box-shadow: 0 24px 60px rgba(24,48,88,.09);
}

.trust-package-hero h1,
.demo-heading h1 {
  max-width: 900px;
  margin: 12px 0 16px;
  color: #0d1930;
  font-size: clamp(42px,5vw,72px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.trust-package-hero p,
.demo-heading p {
  max-width: 790px;
  margin: 0;
  color: #53647c;
  font-size: 18px;
  line-height: 1.65;
}

.trust-package-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.trust-package-summary {
  display: grid;
  gap: 12px;
}

.trust-package-summary div {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 104px;
  padding: 20px 22px;
  border: 1px solid rgba(49,95,232,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.86);
}

.trust-package-summary strong {
  display: block;
  min-width: 90px;
  color: #315fe8;
  font-size: 34px;
  line-height: 1;
}
.trust-package-summary span {
  display: block;
  color: #33445d;
  font-weight: 750;
  line-height: 1.35;
}

.trust-package-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
  margin-top: 26px;
}

.trust-package-grid article {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 22px;
  padding: 30px;
  border: 1px solid #dce4f0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(32,55,90,.06);
}

.trust-package-number {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg,#315fe8,#7c3aed);
  font-weight: 850;
}

.trust-package-grid h2 { margin: 0 0 8px; color: #14233a; font-size: 22px; }
.trust-package-grid p { margin: 0 0 18px; color: #596a81; line-height: 1.55; }
.trust-package-grid a { color: #315fe8; font-weight: 800; }

.trust-answer-section {
  margin-top: 28px;
  padding: 34px;
  border: 1px solid #dce4f0;
  border-radius: 22px;
  background: #f8faff;
}

.trust-answer-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 14px;
  margin-top: 18px;
}

.trust-answer-grid article { padding: 20px; border: 1px solid #dbe4f2; border-radius: 15px; background: #fff; }
.trust-answer-grid h3 { margin: 0 0 7px; color: #14233a; font-size: 17px; }
.trust-answer-grid p { margin: 0; color: #596a81; line-height: 1.5; }

.trust-boundary-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: 22px;
  padding: 22px 26px;
  border: 1px solid #f2d89a;
  border-radius: 17px;
  background: #fff9e9;
}

.trust-boundary-strip strong { color: #874a06; }
.trust-boundary-strip p { margin: 0; color: #6d5a37; line-height: 1.45; }
.trust-boundary-strip a { color: #315fe8; font-weight: 800; white-space: nowrap; }

/* 90-second interactive walkthrough */
.demo-heading { display: flex; justify-content: space-between; gap: 30px; align-items: flex-end; }
.demo-heading h1 { max-width: 980px; font-size: clamp(38px,4.5vw,64px); }
.demo-controls { display: flex; gap: 10px; padding-bottom: 8px; }
.demo-controls button,
.demo-issue button,
.fix-action button {
  border: 1px solid #cfd9e9;
  border-radius: 11px;
  padding: 12px 16px;
  color: #15243a;
  background: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.demo-controls button:first-child,
.fix-action button { color: #fff; border-color: #315fe8; background: #315fe8; }
.demo-progress { height: 6px; margin: 30px 0 18px; overflow: hidden; border-radius: 99px; background: #e7ecf5; }
.demo-progress span { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg,#315fe8,#7c3aed); transition: width .12s linear; }
.demo-stage { display: grid; grid-template-columns: 230px minmax(0,1fr); min-height: 650px; overflow: hidden; border: 1px solid #d7e0ee; border-radius: 24px; background: #f7f9fd; box-shadow: 0 22px 52px rgba(25,50,87,.1); }
.demo-scenes { display: grid; align-content: start; gap: 8px; padding: 22px; border-right: 1px solid #dce4f0; background: #0b1728; }
.demo-scenes button { display: grid; grid-template-columns: 36px 1fr; gap: 10px; align-items: center; width: 100%; border: 0; border-radius: 11px; padding: 12px; color: #aab8cc; text-align: left; background: transparent; cursor: pointer; }
.demo-scenes button.active { color: #fff; background: linear-gradient(100deg,#315fe8,#7c3aed); }
.demo-scenes b { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 9px; background: rgba(255,255,255,.1); }
.demo-scenes span { font-weight: 750; }
.demo-canvas { min-width: 0; }
.demo-screen { display: none; grid-template-rows: auto 1fr; min-height: 650px; }
.demo-screen.active { display: grid; animation: demo-in .28s ease-out; }
@keyframes demo-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.demo-screen-copy { padding: 24px 30px 18px; border-bottom: 1px solid #e0e6ef; background: #fff; }
.demo-screen-copy > span { color: #7c3aed; font-size: 12px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.demo-screen-copy h2 { margin: 6px 0; color: #111d31; font-size: 28px; }
.demo-screen-copy p { max-width: 900px; margin: 0; color: #5b6a80; line-height: 1.5; }
.demo-ui { margin: 24px; padding: 22px; border: 1px solid #dce4f0; border-radius: 18px; background: #fff; }
.demo-ui-top { display: flex; justify-content: space-between; gap: 20px; color: #17263d; }
.demo-ui-top span { color: #5e6f86; }
.demo-kpis { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; margin-top: 20px; }
.demo-kpis article,
.optimize-summary article { padding: 18px; border: 1px solid #dce4f0; border-radius: 14px; background: #fafcff; }
.demo-kpis small,.demo-kpis em,.topology-node small,.topology-node em,.optimize-summary small,.optimize-summary em,.access-flow span,.access-flow em { display: block; color: #64758c; font-style: normal; }
.demo-kpis strong,.optimize-summary strong { display: block; margin: 7px 0; color: #101d32; font-size: 24px; }
.demo-issue { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; margin-top: 18px; padding: 18px; border: 1px solid #fecaca; border-radius: 14px; background: #fff5f5; }
.demo-issue > span { color: #b91c1c; font-weight: 850; }
.demo-issue button { color: #fff; border-color: #7c3aed; background: #7c3aed; }
.topology-demo { display: grid; grid-template-columns: minmax(180px,.85fr) 70px minmax(210px,1fr) 70px minmax(210px,1fr); align-items: center; gap: 8px; }
.topology-column { display: grid; gap: 12px; }
.topology-node { padding: 17px; border: 2px solid #b9c8df; border-radius: 14px; background: #fff; box-shadow: 0 7px 18px rgba(31,51,80,.06); }
.topology-node strong { display: block; margin: 4px 0; color: #122138; }
.topology-node.warning { border-color: #f2ad34; background: #fffaf0; }
.topology-root { border-color: #6d4aff; background: #f7f4ff; }
.topology-line { height: 2px; background: #8ea0ba; position: relative; }
.topology-line::after { content: ""; position: absolute; right: -1px; top: -4px; border-width: 5px 0 5px 7px; border-style: solid; border-color: transparent transparent transparent #8ea0ba; }
.investigation-verdict { padding: 22px; border: 1px solid #fca5a5; border-top-width: 5px; border-radius: 14px; background: #fffafa; }
.investigation-verdict span { color: #c02626; font-weight: 850; }
.investigation-verdict h3 { margin: 9px 0; font-size: 25px; }
.investigation-verdict p { margin: 0; color: #45556b; line-height: 1.55; }
.investigation-tabs { display: flex; gap: 8px; margin: 17px 0; border-bottom: 1px solid #dde5ef; }
.investigation-tabs button { border: 0; padding: 10px 14px; color: #607088; background: transparent; font-weight: 750; }
.investigation-tabs button.active { color: #6d28d9; border-bottom: 3px solid #7c3aed; }
.evidence-list { display: grid; gap: 8px; }
.evidence-list div { display: grid; grid-template-columns: 160px 1fr; gap: 14px; padding: 13px 15px; border-radius: 10px; background: #f5f8fc; }
.evidence-list span { color: #55667e; }
.fix-context { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); overflow: hidden; border: 1px solid #bee9d1; border-radius: 13px; }
.fix-context div { padding: 14px; border-right: 1px solid #d7eee1; background: #f0fdf6; }
.fix-context div:last-child { border: 0; }
.fix-context small { display: block; color: #597368; }
.fix-context strong { display: block; margin-top: 5px; color: #123f2d; }
.fix-action { margin-top: 20px; }
.fix-action > span { color: #047857; font-weight: 850; text-transform: uppercase; }
.fix-action h3 { margin: 8px 0 14px; color: #15243a; }
.fix-action pre { padding: 18px; overflow-x: auto; border-radius: 12px; color: #e5edf8; background: #101a2d; line-height: 1.75; }
.optimize-summary { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.optimize-row { display: grid; grid-template-columns: 1.3fr repeat(3,1fr) auto; gap: 16px; align-items: center; margin-top: 18px; padding: 17px; border: 1px solid #dce4f0; border-radius: 14px; }
.optimize-row span,.optimize-row small { display: block; color: #64758c; }
.optimize-row button { border: 1px solid #c7d3e6; border-radius: 9px; padding: 10px 13px; color: #315fe8; background: #fff; font-weight: 800; }
.learning-note { margin-top: 14px; padding: 14px 16px; border-radius: 11px; color: #7c4a03; background: #fff7df; }
.access-flow { display: grid; grid-template-columns: repeat(7,auto); gap: 14px; align-items: center; justify-content: space-between; }
.access-flow article { min-width: 150px; padding: 18px; border: 1px solid #dce4f0; border-radius: 13px; background: #f9fbff; }
.access-flow strong { display: block; margin: 5px 0; color: #17263c; }
.access-flow > b { color: #7c3aed; font-size: 22px; }
.demo-trust-cta { display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-top: 24px; padding: 20px; border-radius: 14px; color: #fff; background: linear-gradient(120deg,#172a54,#5b21b6); }
.demo-trust-cta strong,.demo-trust-cta span { display: block; }
.demo-trust-cta span { margin-top: 4px; color: #d9dcff; }
.demo-trust-cta a { padding: 11px 15px; border-radius: 9px; color: #2f2a75; background: #fff; font-weight: 850; }
.demo-disclaimer { margin: 14px 0 0; color: #687990; font-size: 13px; text-align: center; }
.docs-code { padding: 18px; overflow-x: auto; border-radius: 12px; color: #e8eef8; background: #101a2d; line-height: 1.7; }

@media (max-width: 1050px) {
  .trust-package-hero { grid-template-columns: 1fr; }
  .trust-package-summary { grid-template-columns: repeat(3,1fr); }
  .trust-package-summary div {
    display: grid;
    align-content: center;
    align-items: start;
    gap: 10px;
  }
  .trust-package-summary strong { min-width: 0; }
  .trust-answer-grid { grid-template-columns: repeat(2,1fr); }
  .demo-stage { grid-template-columns: 1fr; }
  .demo-scenes { grid-template-columns: repeat(3,1fr); border-right: 0; }
  .topology-demo { grid-template-columns: 1fr; }
  .topology-line { width: 2px; height: 28px; margin: auto; }
  .topology-line::after { right: -4px; top: auto; bottom: -2px; transform: rotate(90deg); }
  .access-flow { grid-template-columns: repeat(4,1fr); }
  .access-flow > b { display: none; }
}

@media (max-width: 760px) {
  .trust-package-shell,.demo-shell { width: min(100% - 22px,680px); padding-top: 26px; }
  .trust-package-hero { padding: 28px 22px; }
  .trust-package-grid,.trust-answer-grid,.trust-package-summary { grid-template-columns: 1fr; }
  .trust-package-summary div {
    min-height: 0;
    padding: 22px 24px;
  }
  .trust-package-summary strong { font-size: 40px; }
  .trust-package-summary span { font-size: 17px; }
  .trust-package-grid article { grid-template-columns: 52px 1fr; padding: 22px 18px; }
  .trust-package-number { width: 46px; height: 46px; }
  .trust-boundary-strip { grid-template-columns: 1fr; }
  .demo-heading { display: block; }
  .demo-controls { margin-top: 18px; }
  .demo-scenes { grid-template-columns: repeat(2,1fr); padding: 12px; }
  .demo-screen-copy { padding: 20px; }
  .demo-ui { margin: 12px; padding: 14px; }
  .demo-kpis,.optimize-summary,.fix-context { grid-template-columns: 1fr 1fr; }
  .demo-issue,.optimize-row { grid-template-columns: 1fr; }
  .access-flow { grid-template-columns: 1fr 1fr; }
  .demo-trust-cta { align-items: flex-start; flex-direction: column; }
}

/* Sales homepage — concise buyer journey */
.sales-hero,
.sales-proof-strip,
.sales-section,
.sales-final-cta {
  width: min(calc(100% - 48px), var(--content-max));
  margin-right: auto;
  margin-left: auto;
}

.sales-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
  min-height: 680px;
  padding: 72px 0 64px;
}

.sales-hero-copy h1 {
  max-width: 10.5ch;
  margin: 18px 0 24px;
  font-size: clamp(56px, 5.5vw, 88px);
  line-height: 1;
  letter-spacing: -.025em;
  font-kerning: normal;
  font-variant-ligatures: none;
}

.sales-hero-copy h1 span {
  color: transparent;
  background: linear-gradient(100deg, #2f6df6, #7c3aed 75%);
  background-clip: text;
  -webkit-background-clip: text;
}

.sales-hero-copy > p {
  max-width: 700px;
  margin: 0 0 30px;
  color: #4d5e75;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.6;
}

.sales-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 25px;
  color: #52637a;
  font-size: 13px;
}

.sales-assurance span { display: inline-flex; align-items: center; gap: 7px; }
.sales-assurance span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #13b981; }
.sales-assurance b { color: #152238; }

.sales-product {
  overflow: hidden;
  border: 1px solid #d6e0ef;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 34px 80px rgba(37, 58, 96, .17);
  transform: perspective(1300px) rotateY(-2deg) rotateX(1deg);
}

.sales-window-head {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 48px;
  padding: 0 18px;
  color: #65748a;
  border-bottom: 1px solid #e1e7f0;
  background: #f7f9fd;
  font-size: 12px;
}

.sales-window-head span { width: 9px; height: 9px; border-radius: 50%; background: #c9d2e1; }
.sales-window-head span:first-child { background: #ff7d7d; }
.sales-window-head span:nth-child(2) { background: #ffc75c; }
.sales-window-head span:nth-child(3) { background: #40c98b; }
.sales-window-head b { margin-left: 8px; color: #31405a; }

.sales-product-context {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  color: #53647b;
  border-bottom: 1px solid #e6ebf3;
  font-size: 13px;
}
.sales-product-context i { width: 8px; height: 8px; border-radius: 50%; background: #19b77d; }
.sales-product-context strong { color: #17243a; }
.sales-product-context span { padding-left: 10px; border-left: 1px solid #d9e1ec; }
.sales-product-context em { margin-left: auto; font-style: normal; }

.sales-verdict { margin: 20px; padding: 22px; border: 1px solid #f6b8bd; border-top: 5px solid #ef5261; border-radius: 15px; background: #fffafa; }
.sales-verdict small { color: #bd2635; font-weight: 850; letter-spacing: .06em; }
.sales-verdict h3 { margin: 8px 0; font-size: 24px; }
.sales-verdict p { margin: 0; color: #485970; line-height: 1.55; }
.sales-verdict code, .sales-fix code { padding: 2px 5px; border-radius: 5px; color: #25354d; background: #edf2f8; }

.sales-evidence-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 0 20px 16px; }
.sales-evidence-row div { padding: 16px; border: 1px solid #dce4f0; border-radius: 12px; background: #f9fbfe; }
.sales-evidence-row small, .sales-evidence-row span { display: block; color: #6a7890; }
.sales-evidence-row b { display: block; margin: 5px 0; color: #17243a; }
.sales-evidence-row span { font-size: 12px; }

.sales-fix { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; margin: 0 20px 20px; padding: 13px; border: 1px solid #a9e6cd; border-radius: 12px; color: #176043; background: #f0fcf6; font-size: 12px; }
.sales-fix button { border: 0; border-radius: 9px; padding: 10px 13px; color: #fff; background: #2666ed; font: inherit; font-weight: 800; }

.sales-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid #d8e1ed;
  border-radius: 18px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 14px 36px rgba(31, 50, 82, .06);
}
.sales-proof-strip div { min-width: 0; padding: 21px 24px; border-right: 1px solid #e1e7f0; }
.sales-proof-strip div:last-child { border-right: 0; }
.sales-proof-strip b, .sales-proof-strip span { display: block; }
.sales-proof-strip b { margin-bottom: 5px; color: #152239; }
.sales-proof-strip span { color: #66768d; font-size: 13px; line-height: 1.4; }

.sales-section { padding-top: clamp(82px, 9vw, 140px); }
.sales-section-heading { max-width: 900px; margin: 0 auto 42px; text-align: center; }
.sales-section-heading.compact { margin-right: 0; margin-left: 0; text-align: left; }
.sales-section-heading h2, .sales-customer h2, .sales-security h2, .sales-final-cta h2 { margin: 10px 0 14px; font-size: clamp(36px, 4vw, 58px); line-height: 1.08; letter-spacing: -.045em; }
.sales-section-heading p, .sales-customer p, .sales-security p, .sales-final-cta p { margin: 0; color: #56677e; font-size: 18px; line-height: 1.6; }

.sales-outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sales-outcomes article { display: flex; min-height: 330px; padding: 28px; border: 1px solid #d9e2ef; border-radius: 20px; background: #fff; box-shadow: 0 15px 38px rgba(29, 48, 79, .06); flex-direction: column; }
.sales-outcomes article > span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; color: #fff; background: linear-gradient(135deg,#2f6df6,#7c3aed); font-weight: 850; }
.sales-outcomes h3 { margin: 24px 0 12px; font-size: 25px; }
.sales-outcomes p { margin: 0 0 22px; color: #596a81; line-height: 1.6; }
.sales-outcomes a, .text-link { margin-top: auto; color: #285ee7; font-weight: 820; }

.sales-workflow { padding-bottom: 20px; }
.sales-flow-tabs { display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 18px; border: 1px solid #dce4ef; border-radius: 14px; background: #fff; }
.sales-flow-tabs span { padding: 16px; color: #64738a; border-right: 1px solid #e0e7f0; text-align: center; font-weight: 760; }
.sales-flow-tabs span:last-child { border: 0; }
.sales-flow-tabs .active { color: #6f31dc; background: #f4f0ff; }
.sales-workflow-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 42px; align-items: center; padding: clamp(28px,4vw,56px); border: 1px solid #d7e1ee; border-radius: 24px; background: #fff; box-shadow: 0 20px 54px rgba(26, 47, 82, .08); }
.sales-workflow-copy h3 { margin: 10px 0 16px; font-size: clamp(32px,3vw,46px); line-height: 1.08; letter-spacing: -.035em; }
.sales-workflow-copy p { color: #56677e; font-size: 17px; line-height: 1.65; }
.sales-kicker { color: #6f31dc; font-size: 12px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.sales-workflow-copy .text-link { display: inline-block; margin-top: 20px; }
.sales-hypothesis { padding: 24px; border: 1px solid #dee5f0; border-radius: 18px; background: #f8faff; }
.sales-hypothesis-root { width: min(100%, 380px); margin: 0 auto; padding: 17px; border: 1px solid #f3a9b1; border-radius: 13px; color: #a61d2c; background: #fff5f6; text-align: center; }
.sales-hypothesis-root small, .sales-hypothesis-root b, .sales-hypothesis-grid small, .sales-hypothesis-grid b, .sales-hypothesis-grid span { display: block; }
.sales-hypothesis-root small { margin-bottom: 5px; font-weight: 850; text-transform: uppercase; }
.sales-connector { width: 1px; height: 32px; margin: auto; background: #bdc9dc; }
.sales-hypothesis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.sales-hypothesis-grid div { padding: 16px; border: 1px solid #ccd7e6; border-radius: 12px; background: #fff; }
.sales-hypothesis-grid .supported { border-color: #f1ae32; background: #fffaf0; }
.sales-hypothesis-grid small { color: #607087; font-weight: 800; }
.sales-hypothesis-grid b { margin: 7px 0; color: #15243a; }
.sales-hypothesis-grid span { color: #687990; font-size: 12px; }
.sales-stage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 16px; }
.sales-stage-grid article { padding: 24px; border: 1px solid #dbe3ee; border-radius: 17px; background: rgba(255,255,255,.82); }
.sales-stage-grid article > span { color: #6f31dc; font-size: 12px; font-weight: 850; text-transform: uppercase; }
.sales-stage-grid h3 { margin: 8px 0; font-size: 21px; }
.sales-stage-grid p { margin: 0; color: #5c6d83; line-height: 1.55; }

.sales-customer { display: grid; grid-template-columns: .7fr 1.3fr; gap: 54px; align-items: center; }
.sales-customer-brand { display: grid; min-height: 360px; align-content: center; padding: 42px; border-radius: 24px; color: #fff; background: linear-gradient(145deg,#101c31,#243f70 60%,#5930a8); box-shadow: 0 25px 60px rgba(15,30,57,.22); }
.sales-customer-brand small { color: #9fc7ff; font-weight: 850; letter-spacing: .1em; }
.sales-customer-brand strong { margin: 28px 0 7px; font-size: clamp(46px,5vw,76px); letter-spacing: -.05em; }
.sales-customer-brand span { color: #cbd7e9; }
.sales-customer-brand i { width: fit-content; margin-top: 34px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.2); border-radius: 99px; color: #c8f7df; background: rgba(12,180,112,.12); font-size: 12px; font-style: normal; font-weight: 750; }
.sales-customer-copy h2 { font-size: clamp(34px,3.5vw,52px); }
.sales-customer-facts { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.sales-customer-facts span { padding: 10px 13px; border: 1px solid #d8e1ed; border-radius: 10px; color: #53647a; background: #fff; }
.sales-customer-facts b { color: #15243a; }

.sales-integration-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.sales-integration-grid article { min-height: 165px; padding: 24px; border: 1px solid #d9e2ef; border-radius: 17px; background: #fff; }
.sales-integration-grid b, .sales-integration-grid span { display: block; }
.sales-integration-grid b { margin-bottom: 10px; color: #15243a; font-size: 19px; }
.sales-integration-grid span { color: #5c6d83; line-height: 1.55; }

.sales-security { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; padding-bottom: 110px; }
.sales-security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sales-security-grid article { padding: 22px; border: 1px solid #cfe5db; border-radius: 16px; background: #f3fbf7; }
.sales-security-grid b, .sales-security-grid span { display: block; }
.sales-security-grid b { margin-bottom: 8px; color: #164b36; }
.sales-security-grid span { color: #526c61; line-height: 1.5; }

.sales-final-cta { display: flex; justify-content: space-between; gap: 50px; align-items: center; margin-bottom: 70px; padding: clamp(34px,5vw,68px); border-radius: 26px; color: #fff; background: linear-gradient(120deg,#11213d,#274d91 58%,#6f31dc); box-shadow: 0 28px 66px rgba(25,47,87,.23); }
.sales-final-cta > div:first-child { max-width: 850px; }
.sales-final-cta .eyebrow { color: #9bc8ff; }
.sales-final-cta h2 { font-size: clamp(38px,4vw,58px); }
.sales-final-cta p { color: #d3def0; }
.sales-final-cta .secondary-btn { color: #fff; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.08); }

@media (max-width: 1120px) {
  .sales-hero { grid-template-columns: 1fr; }
  .sales-hero-copy { max-width: 850px; }
  .sales-product { max-width: 880px; transform: none; }
  .sales-proof-strip { grid-template-columns: 1fr 1fr; }
  .sales-proof-strip div:nth-child(2) { border-right: 0; }
  .sales-proof-strip div:nth-child(-n+2) { border-bottom: 1px solid #e1e7f0; }
  .sales-workflow-grid, .sales-customer, .sales-security { grid-template-columns: 1fr; }
  .sales-customer-brand { min-height: 280px; }
}

@media (max-width: 760px) {
  .sales-hero, .sales-proof-strip, .sales-section, .sales-final-cta { width: min(calc(100% - 28px), var(--content-max)); }
  .sales-hero { min-height: 0; gap: 34px; padding: 46px 0 36px; }
  .sales-hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(42px, 11.5vw, 54px);
    line-height: 1.04;
    letter-spacing: 0;
  }
  .sales-hero-copy > p { font-size: 17px; }
  .sales-assurance { display: grid; }
  .sales-product { border-radius: 18px; }
  .sales-product-context { flex-wrap: wrap; }
  .sales-product-context em { width: 100%; margin-left: 18px; }
  .sales-verdict { margin: 13px; padding: 17px; }
  .sales-verdict h3 { font-size: 20px; }
  .sales-evidence-row { grid-template-columns: 1fr; margin: 0 13px 12px; }
  .sales-fix { grid-template-columns: 1fr; margin: 0 13px 13px; }
  .sales-proof-strip, .sales-outcomes, .sales-stage-grid, .sales-integration-grid, .sales-security-grid { grid-template-columns: 1fr; }
  .sales-proof-strip div { border-right: 0; border-bottom: 1px solid #e1e7f0; }
  .sales-proof-strip div:last-child { border-bottom: 0; }
  .sales-section { padding-top: 82px; }
  .sales-section-heading { text-align: left; }
  .sales-section-heading h2, .sales-customer h2, .sales-security h2, .sales-final-cta h2 { font-size: 38px; }
  .sales-outcomes article { min-height: 0; }
  .sales-flow-tabs { grid-template-columns: 1fr 1fr; }
  .sales-flow-tabs span:nth-child(2) { border-right: 0; }
  .sales-flow-tabs span:nth-child(-n+2) { border-bottom: 1px solid #e0e7f0; }
  .sales-workflow-grid { gap: 30px; padding: 22px; }
  .sales-hypothesis { padding: 14px; }
  .sales-hypothesis-grid { grid-template-columns: 1fr; }
  .sales-customer { gap: 28px; }
  .sales-customer-brand { min-height: 240px; padding: 28px; }
  .sales-customer-brand strong { font-size: 52px; }
  .sales-security { gap: 28px; padding-bottom: 82px; }
  .sales-final-cta { display: block; margin-bottom: 34px; padding: 30px 22px; }
  .sales-final-cta .cta-actions { display: grid; margin-top: 26px; }
  .sales-final-cta .cta-actions a { width: 100%; }
}
