:root {
  --ink: #0b1320;
  --ink-soft: #182536;
  --blue: #1f5eff;
  --blue-dark: #1748c7;
  --blue-pale: #eaf0ff;
  --orange: #ff6b35;
  --orange-pale: #fff0e9;
  --paper: #ffffff;
  --canvas: #f5f4f0;
  --sand: #ece8df;
  --line: #d9dce2;
  --muted: #667080;
  --muted-light: #aeb7c5;
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow-sm: 0 10px 30px rgba(11, 19, 32, .08);
  --shadow: 0 30px 80px rgba(11, 19, 32, .18);
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--canvas);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea {
  font: inherit;
}

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

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

button,
input,
textarea {
  color: inherit;
}

button,
a,
summary,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--paper);
  background: var(--blue);
}

:where(a, button, summary, input, textarea):focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  left: 16px;
  top: 12px;
  padding: 11px 15px;
  color: var(--paper);
  border-radius: 9px;
  background: var(--ink);
  font-size: 13px;
  font-weight: 750;
  transform: translateY(-160%);
  transition: transform .18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.hidden {
  display: none !important;
}

/* Brand and loading radar */

.brand,
.brand-lockup,
.loader-lockup {
  display: inline-flex;
  align-items: center;
}

.brand-lockup,
.loader-lockup {
  gap: 1px;
}

.brand-word,
.loader-word {
  font-size: 22px;
  font-weight: 780;
  letter-spacing: -.055em;
}

.brand-word > span,
.loader-word > span {
  color: var(--blue);
}

.radar-o,
.mini-radar {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 50%;
  background: var(--blue);
}

.radar-o {
  width: 30px;
  height: 30px;
  margin-right: 1px;
  border: 3px solid var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}

.radar-o::before,
.radar-o::after,
.mini-radar::before,
.mini-radar::after {
  position: absolute;
  content: "";
  inset: 21%;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: inherit;
}

.radar-o::after,
.mini-radar::after {
  inset: 38%;
  border-color: rgba(255, 255, 255, .78);
}

.radar-sweep,
.mini-radar > i {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: calc(50% - 1px);
  width: 45%;
  height: 2px;
  border-radius: 99px;
  background: var(--paper);
  transform-origin: 0 50%;
  animation: radarSweep 2.25s linear infinite;
}

.radar-sweep::before {
  position: absolute;
  content: "";
  right: 0;
  top: -9px;
  width: 22px;
  height: 18px;
  background: linear-gradient(150deg, rgba(255, 255, 255, .25), transparent 70%);
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.radar-dot {
  position: absolute;
  z-index: 3;
  right: 21%;
  top: 28%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, .2);
}

@keyframes radarSweep {
  to { transform: rotate(360deg); }
}

.site-loader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  color: var(--paper);
  background: var(--ink);
  transition: opacity .42s ease, visibility .42s ease;
}

.site-loader::before {
  position: absolute;
  content: "";
  width: min(80vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .04);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, .018), 0 0 0 180px rgba(255, 255, 255, .012);
}

.site-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-lockup {
  position: relative;
  z-index: 1;
}

.radar-o-loader {
  width: 56px;
  height: 56px;
  margin-right: 0;
  border-width: 4px;
  border-color: var(--paper);
  box-shadow: 0 0 70px rgba(31, 94, 255, .35), inset 0 0 0 1px rgba(255, 255, 255, .18);
  animation: loaderPulse 1.2s ease-out both;
}

.radar-o-loader .radar-sweep {
  height: 3px;
  animation-duration: 1.05s;
}

.radar-o-loader .radar-dot {
  width: 8px;
  height: 8px;
}

.loader-word {
  max-width: 180px;
  overflow: hidden;
  color: var(--paper);
  font-size: 38px;
  white-space: nowrap;
  animation: revealWord .58s .22s cubic-bezier(.22, .8, .24, 1) both;
}

.loader-word > span {
  color: #85a8ff;
}

.loader-status {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  color: var(--muted-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  animation: loaderStatus .45s .5s both;
}

@keyframes loaderPulse {
  0% { opacity: 0; transform: scale(.72); }
  55% { opacity: 1; transform: scale(1.08); }
  100% { transform: scale(1); }
}

@keyframes revealWord {
  0% { max-width: 0; opacity: 0; transform: translateX(-8px); }
  100% { max-width: 180px; opacity: 1; transform: translateX(0); }
}

@keyframes loaderStatus {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Header and shared actions */

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(11, 19, 32, .1);
  background: rgba(245, 244, 240, .92);
  backdrop-filter: blur(18px);
  transition: min-height .2s ease, box-shadow .2s ease, background .2s ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(245, 244, 240, .97);
  box-shadow: 0 8px 30px rgba(11, 19, 32, .08);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-header nav a {
  position: relative;
  color: #3d4755;
  font-size: 14px;
  font-weight: 650;
}

.site-header nav a::after {
  position: absolute;
  content: "";
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--blue);
  transition: right .2s ease;
}

.site-header nav a:hover::after {
  right: 0;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 13px 18px;
  color: var(--paper);
  border-radius: 999px;
  background: var(--ink);
  font-size: 13px;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease;
}

.header-cta:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 760;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--paper);
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(31, 94, 255, .22);
}

.button-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 18px 34px rgba(31, 94, 255, .3);
}

.button-ghost {
  border-color: #cbd0d8;
  background: rgba(255, 255, 255, .6);
}

.button-ghost:hover {
  border-color: var(--ink);
  background: var(--paper);
}

.button-play {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  padding-left: 2px;
  color: var(--blue);
  border-radius: 50%;
  background: var(--blue-pale);
  font-size: 8px;
}

/* Hero */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  gap: clamp(44px, 5vw, 88px);
  align-items: center;
  max-width: calc(var(--max) + 80px);
  min-height: 720px;
  margin: 0 auto;
  padding: 70px 40px 80px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  content: "";
  top: 8%;
  left: -18%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 94, 255, .09), transparent 68%);
}

.hero-kicker,
.overline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-kicker span {
  padding: 7px 9px;
  color: var(--ink);
  border: 1px solid #c9ced6;
  border-radius: 99px;
  background: var(--paper);
  font-size: 9px;
  letter-spacing: .1em;
}

.hero-kicker i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(60px, 5.6vw, 84px);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .96;
}

.hero h1 em,
.product-copy h2 em {
  color: var(--blue);
  font-style: normal;
}

.hero-lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: #566170;
  font-size: 19px;
  line-height: 1.65;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid #d7d9de;
}

.hero-proof div {
  position: relative;
  padding-left: 14px;
}

.hero-proof div::before {
  position: absolute;
  content: "";
  left: 0;
  top: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 12px;
}

.hero-proof span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 0 12px 22px 0;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  content: "";
  right: -20px;
  bottom: 0;
  width: 78%;
  height: 74%;
  border-radius: var(--radius-lg);
  background: var(--orange);
}

.hero-photo {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  margin: 0;
  border-radius: var(--radius-lg);
  background: #c9cdd1;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  object-position: center;
  filter: saturate(.56) contrast(1.04);
}

.photo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 19, 32, .04) 35%, rgba(11, 19, 32, .72) 100%);
}

.hero-photo figcaption,
.evidence-photo figcaption {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 13px;
  color: rgba(255, 255, 255, .64);
  font-size: 9px;
}

.hero-photo figcaption a:hover,
.evidence-photo figcaption a:hover {
  color: var(--paper);
}

.hero-alert {
  position: absolute;
  z-index: 4;
  left: -48px;
  bottom: 63px;
  width: min(420px, 72%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 20px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 60px rgba(11, 19, 32, .26);
  backdrop-filter: blur(14px);
}

.sample-chip {
  display: inline-flex;
  margin-bottom: 13px;
  padding: 5px 8px;
  color: #566170;
  border: 1px solid #d8dce2;
  border-radius: 999px;
  background: #f7f8fa;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .11em;
}

.alert-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.alert-top > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: .1em;
}

.alert-top > span i,
.dashboard-sync i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-pale);
}

.alert-top > strong {
  color: var(--blue);
  font-size: 30px;
  letter-spacing: -.06em;
}

.alert-top > strong small {
  font-size: 12px;
}

.hero-alert h2 {
  margin: 12px 0 15px;
  font-size: 19px;
  letter-spacing: -.025em;
  line-height: 1.25;
}

.alert-meta,
.tender-copy > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.alert-meta span,
.tender-copy > div span {
  padding: 5px 8px;
  border-radius: 6px;
  background: #f0f2f5;
  color: #5c6674;
  font-size: 9px;
}

.alert-match {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 17px;
  padding-top: 15px;
  border-top: 1px solid #e2e4e8;
}

.alert-match > b {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--paper);
  border-radius: 50%;
  background: var(--blue);
  font-size: 12px;
}

.alert-match p {
  margin: 0;
}

.alert-match strong,
.alert-match span {
  display: block;
}

.alert-match strong {
  font-size: 11px;
}

.alert-match span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.source-pill {
  position: absolute;
  z-index: 4;
  top: 28px;
  right: -14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  background: rgba(11, 19, 32, .84);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.mini-radar {
  width: 28px;
  height: 28px;
}

.source-pill p {
  margin: 0;
}

.source-pill strong,
.source-pill span {
  display: block;
}

.source-pill strong {
  font-size: 10px;
}

.source-pill p span {
  margin-top: 3px;
  color: #b9c3d1;
  font-size: 8px;
}

.source-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px max(32px, calc((100vw - var(--max)) / 2));
  color: var(--paper);
  background: var(--blue);
}

.source-bar p {
  margin: 0;
  font-size: 16px;
}

.source-bar > div {
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, .72);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.source-bar > div i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
}

/* Shared sections */

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 118px 28px;
}

.section-heading h2,
.evidence-copy h2,
.access-copy h2,
.trust-section h2,
.product-copy h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 790;
  letter-spacing: -.06em;
  line-height: 1.02;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: end;
}

.split-heading > p,
.centered-heading > p,
.evidence-copy > p,
.access-copy > p,
.trust-section > p,
.product-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 66px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.flow-grid article {
  position: relative;
  min-height: 370px;
  padding: 28px;
  background: var(--paper);
}

.flow-number {
  color: #9ba3ae;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
}

.flow-icon {
  position: relative;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  margin: 58px 0 46px;
  border-radius: 26px;
  background: var(--blue-pale);
}

.flow-grid h3 {
  margin: 0 0 12px;
  font-size: 23px;
  letter-spacing: -.035em;
}

.flow-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.flow-highlight {
  color: var(--paper);
  background: var(--ink) !important;
}

.flow-highlight .flow-icon {
  background: var(--blue);
}

.flow-highlight p,
.flow-highlight .flow-number {
  color: #aab5c4;
}

.source-icon i {
  position: absolute;
  width: 31px;
  height: 31px;
  border: 2px solid var(--blue);
  border-radius: 50%;
}

.source-icon i:nth-child(1) { transform: translate(-8px, -5px); }
.source-icon i:nth-child(2) { transform: translate(8px, 5px); }
.source-icon i:nth-child(3) { width: 6px; height: 6px; border: 0; background: var(--orange); }

.document-icon i:nth-child(1) {
  width: 38px;
  height: 48px;
  border: 2px solid var(--blue);
  border-radius: 5px;
}

.document-icon i:nth-child(2),
.document-icon i:nth-child(3) {
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--blue);
  transform: translateY(-7px);
}

.document-icon i:nth-child(3) { transform: translateY(2px); }

.compare-icon i {
  position: absolute;
  width: 42px;
  height: 2px;
  background: var(--blue);
}

.compare-icon i::after {
  position: absolute;
  content: "";
  right: 0;
  top: -4px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  transform: rotate(45deg);
}

.compare-icon i:nth-child(1) { transform: translateY(-12px); }
.compare-icon i:nth-child(2) { transform: translateY(12px) rotate(180deg); }
.compare-icon i:nth-child(3) { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); }

.notify-icon i:nth-child(1) {
  width: 38px;
  height: 38px;
  border: 2px solid var(--paper);
  border-radius: 50%;
}

.notify-icon i:nth-child(2) {
  position: absolute;
  right: 21px;
  top: 22px;
  width: 10px;
  height: 10px;
  border: 3px solid var(--blue);
  border-radius: 50%;
  background: var(--orange);
}

/* Product preview */

.product-section {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(620px, 1.28fr);
  gap: clamp(52px, 6vw, 96px);
  align-items: center;
  padding: 118px max(28px, calc((100vw - 1440px) / 2));
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.product-copy {
  min-width: 0;
}

.overline-light {
  color: #85a8ff;
}

.product-copy > p {
  margin-top: 28px;
  color: #aab4c2;
}

.product-copy ul {
  display: grid;
  gap: 22px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.product-copy li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}

.product-copy li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--paper);
  border: 1px solid #344256;
  border-radius: 50%;
  font-size: 11px;
}

.product-copy li p {
  margin: 0;
  color: #aab4c2;
  font-size: 12px;
  line-height: 1.55;
}

.product-copy li strong {
  display: block;
  margin-bottom: 3px;
  color: var(--paper);
  font-size: 14px;
}

.dashboard-shell {
  position: relative;
  min-width: 0;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 20px;
  background: #f5f7f9;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .34);
  transform: perspective(1800px) rotateY(-2deg);
}

.dashboard-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 58px;
  padding: 0 18px;
  border-bottom: 1px solid #e3e6ea;
  border-radius: 20px 20px 0 0;
  background: var(--paper);
}

.dashboard-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #46505c;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
}

.dashboard-brand b {
  color: var(--blue);
}

.dashboard-brand .mini-radar {
  width: 22px;
  height: 22px;
}

.dashboard-sync {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7b8491;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.dashboard-sync i {
  width: 5px;
  height: 5px;
  box-shadow: 0 0 0 3px var(--orange-pale);
}

.dashboard-user {
  justify-self: end;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--paper);
  border-radius: 50%;
  background: var(--ink-soft);
  font-size: 8px;
  font-weight: 800;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 600px;
}

.dashboard-body aside {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px 14px 18px;
  border-right: 1px solid #e0e4e8;
  background: #eef1f3;
}

.aside-label {
  margin: 0 10px 12px;
  color: #8a939e;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .11em;
}

.dashboard-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 10px;
  border-radius: 8px;
  color: #5e6875;
  font-size: 9px;
  font-weight: 650;
}

.dashboard-nav-item i {
  color: var(--blue);
  font-style: normal;
}

.dashboard-nav-item b {
  display: grid;
  width: 19px;
  height: 19px;
  margin-left: auto;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: var(--orange);
  font-size: 8px;
}

.dashboard-nav-item.active {
  color: var(--paper);
  background: var(--ink);
}

.dashboard-nav-item.active i {
  color: #85a8ff;
}

.aside-profile {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 14px 8px 0;
  border-top: 1px solid #d8dde2;
}

.aside-profile > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--blue);
  border-radius: 50%;
  background: var(--blue-pale);
  font-size: 8px;
  font-weight: 800;
}

.aside-profile p {
  margin: 0;
}

.aside-profile strong,
.aside-profile small {
  display: block;
}

.aside-profile strong {
  font-size: 9px;
}

.aside-profile small {
  margin-top: 3px;
  color: #8a929d;
  font-size: 7px;
}

.dashboard-main {
  min-width: 0;
  padding: 34px 28px;
}

.dashboard-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-title span {
  color: var(--blue);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: .09em;
}

.dashboard-title h3 {
  margin: 7px 0 0;
  font-size: 23px;
  letter-spacing: -.04em;
}

.dashboard-filter {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  color: #757e89;
  border: 1px solid #d8dde3;
  border-radius: 7px;
  background: var(--paper);
  font-size: 8px;
}

.dashboard-filter b {
  display: inline-grid;
  width: 16px;
  height: 16px;
  margin-left: 5px;
  place-items: center;
  color: var(--paper);
  border-radius: 50%;
  background: var(--ink);
  font-size: 7px;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin: 22px 0 12px;
}

.dashboard-stats div {
  padding: 14px;
  border: 1px solid #dde1e6;
  border-radius: 9px;
  background: var(--paper);
}

.dashboard-stats span,
.dashboard-stats strong {
  display: block;
}

.dashboard-stats span {
  color: #8a929c;
  font-size: 7px;
}

.dashboard-stats strong {
  margin-top: 7px;
  font-size: 17px;
}

.tender-card {
  display: grid;
  grid-template-columns: 55px 1fr 18px;
  gap: 13px;
  align-items: center;
  margin-top: 10px;
  padding: 16px;
  border: 1px solid #dce1e7;
  border-radius: 11px;
  background: var(--paper);
}

.tender-featured {
  border-color: rgba(31, 94, 255, .42);
  box-shadow: 0 10px 25px rgba(31, 94, 255, .09);
}

.score {
  display: grid;
  width: 50px;
  height: 50px;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background: var(--blue-pale);
}

.score strong,
.score span {
  display: block;
}

.score strong {
  color: var(--blue);
  font-size: 17px;
  letter-spacing: -.04em;
}

.score span {
  color: #788391;
  font-size: 6px;
  text-transform: uppercase;
}

.tender-copy {
  min-width: 0;
}

.tender-copy > p {
  margin: 0 0 6px;
  color: #7c8693;
  font-size: 7px;
  font-weight: 760;
  letter-spacing: .05em;
}

.tender-copy h4 {
  margin: 0 0 8px;
  overflow: hidden;
  font-size: 11px;
  letter-spacing: -.02em;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tender-copy > div span {
  font-size: 7px;
}

.tender-copy small {
  display: block;
  margin-top: 10px;
  color: #65707d;
  font-size: 7px;
}

.tender-copy small b {
  display: inline-grid;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  place-items: center;
  color: var(--paper);
  border-radius: 50%;
  background: var(--blue);
  font-size: 7px;
}

.tender-arrow {
  color: var(--blue);
  font-size: 13px;
}

.tender-muted {
  opacity: .65;
}

.dashboard-insight {
  position: absolute;
  right: -28px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 270px;
  padding: 14px;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 13px;
  background: var(--blue);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .3);
}

.dashboard-insight > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--paper);
  border-radius: 9px;
  background: var(--orange);
}

.dashboard-insight p {
  flex: 1;
  margin: 0;
}

.dashboard-insight small,
.dashboard-insight strong {
  display: block;
}

.dashboard-insight small {
  color: rgba(255, 255, 255, .68);
  font-size: 6px;
  letter-spacing: .08em;
}

.dashboard-insight strong {
  margin-top: 3px;
  font-size: 9px;
}

.dashboard-insight i {
  font-style: normal;
}

/* Evidence and use cases */

.evidence-section {
  display: grid;
  grid-template-columns: minmax(380px, .9fr) minmax(420px, 1.1fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
}

.evidence-photo-wrap {
  position: relative;
  padding-left: 28px;
}

.evidence-photo-wrap::before {
  position: absolute;
  z-index: -1;
  content: "";
  left: 0;
  bottom: -28px;
  width: 72%;
  height: 72%;
  border-radius: var(--radius);
  background: var(--blue);
}

.evidence-photo {
  position: relative;
  overflow: hidden;
  height: 650px;
  margin: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.evidence-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  filter: saturate(.72) contrast(1.02);
}

.evidence-photo::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11, 19, 32, .55));
}

.document-counter {
  position: absolute;
  z-index: 3;
  right: -34px;
  top: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid #dfe2e7;
  border-radius: 15px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.document-counter > span {
  color: var(--blue);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.06em;
}

.document-counter p {
  margin: 0;
}

.document-counter strong,
.document-counter small {
  display: block;
}

.document-counter strong { font-size: 10px; }
.document-counter small { margin-top: 3px; color: var(--muted); font-size: 8px; }

.evidence-copy > p {
  margin-top: 28px;
}

.data-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 36px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.data-points div {
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .5);
}

.data-points span,
.data-points strong {
  display: block;
}

.data-points span {
  color: var(--muted);
  font-size: 10px;
}

.data-points strong {
  margin-top: 7px;
  font-size: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 760;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.centered-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.centered-heading .overline {
  justify-content: center;
}

.centered-heading > p {
  max-width: 620px;
  margin: 24px auto 0;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 60px;
}

.use-case-grid article {
  min-width: 0;
  padding: 18px 18px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.use-case-grid article > span {
  color: #9aa2ad;
  font-size: 10px;
  font-weight: 800;
}

.use-case-grid h3 {
  margin: 14px 0 12px;
  font-size: 25px;
  letter-spacing: -.04em;
}

.use-case-grid p {
  min-height: 86px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.use-case-grid small {
  display: block;
  margin-top: 25px;
  color: var(--blue);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
}

.case-visual {
  position: relative;
  overflow: hidden;
  height: 220px;
  margin-bottom: 24px;
  border-radius: 15px;
  background: var(--blue-pale);
}

.case-building::before,
.case-building::after {
  position: absolute;
  content: "";
  bottom: 0;
  width: 38%;
  height: 66%;
  border: 2px solid var(--blue);
  border-bottom: 0;
  background: repeating-linear-gradient(90deg, transparent 0 15px, rgba(31, 94, 255, .13) 15px 28px);
}

.case-building::before { left: 17%; }
.case-building::after { right: 12%; height: 85%; }
.case-building i { position: absolute; z-index: 2; left: 18%; right: 12%; bottom: 35%; height: 2px; background: var(--orange); }

.case-drawing {
  background: var(--orange-pale);
}

.case-drawing::before,
.case-drawing::after {
  position: absolute;
  content: "";
  width: 58%;
  height: 62%;
  left: 21%;
  top: 18%;
  border: 2px solid var(--ink);
  background: linear-gradient(90deg, transparent 30%, rgba(11, 19, 32, .08) 30% 31%, transparent 31% 68%, rgba(11, 19, 32, .08) 68% 69%, transparent 69%), linear-gradient(0deg, transparent 47%, rgba(11, 19, 32, .12) 47% 48%, transparent 48%);
  transform: rotate(-5deg);
}

.case-drawing::after {
  left: 27%;
  top: 23%;
  border-color: var(--orange);
  background: transparent;
  transform: rotate(4deg);
}

.case-dark {
  color: var(--paper);
  border-color: var(--ink) !important;
  background: var(--ink) !important;
}

.case-dark p { color: #adb7c5; }
.case-dark small { color: #85a8ff; }

.case-award {
  background: #182536;
}

.case-award::before {
  position: absolute;
  content: "";
  width: 90px;
  height: 90px;
  left: calc(50% - 45px);
  top: calc(50% - 45px);
  border: 2px solid #85a8ff;
  border-radius: 50%;
  box-shadow: 0 0 0 25px rgba(31, 94, 255, .14), 0 0 0 52px rgba(31, 94, 255, .08);
}

.case-award::after {
  position: absolute;
  content: "✓";
  display: grid;
  width: 44px;
  height: 44px;
  left: calc(50% - 22px);
  top: calc(50% - 22px);
  place-items: center;
  color: var(--paper);
  border-radius: 50%;
  background: var(--orange);
  font-weight: 800;
}

/* Trust, access, FAQ and footer */

.trust-section {
  display: grid;
  grid-template-columns: 130px 1.1fr .9fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  padding: 92px max(28px, calc((100vw - var(--max)) / 2));
  color: var(--paper);
  background: var(--blue);
}

.trust-mark {
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
}

.radar-o-large {
  width: 74px;
  height: 74px;
  background: var(--ink);
}

.trust-section .overline {
  color: #d9e3ff;
}

.trust-section h2 {
  font-size: clamp(38px, 4vw, 58px);
}

.trust-section > p {
  color: #d9e3ff;
}

.trust-tags {
  grid-column: 2 / 4;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: rgba(255, 255, 255, .8);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.access-section {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(500px, 1.18fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 28px;
}

.access-copy {
  position: sticky;
  top: 120px;
}

.access-copy > p {
  margin-top: 26px;
}

.access-benefits {
  display: grid;
  gap: 13px;
  margin-top: 34px;
}

.access-benefits span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4e5967;
  font-size: 12px;
  font-weight: 650;
}

.access-benefits b {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--paper);
  border-radius: 50%;
  background: var(--blue);
  font-size: 10px;
}

.lead-form {
  position: relative;
  padding: 38px;
  border: 1px solid #d9dde3;
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.lead-form::before {
  position: absolute;
  content: "";
  left: 38px;
  right: 38px;
  top: 0;
  height: 4px;
  border-radius: 0 0 99px 99px;
  background: linear-gradient(90deg, var(--blue) 0 72%, var(--orange) 72%);
}

.form-heading {
  margin-bottom: 28px;
}

.form-heading > span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: .12em;
}

.form-heading h3 {
  margin: 9px 0 0;
  font-size: 29px;
  letter-spacing: -.04em;
}

.field-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 15px;
  color: #333e4b;
  font-size: 12px;
  font-weight: 700;
}

.lead-form label > span {
  color: #8a929d;
  font-weight: 500;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid #d8dce2;
  border-radius: 11px;
  outline: 0;
  background: #fafbfc;
  font-size: 13px;
  font-weight: 450;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.lead-form input {
  height: 50px;
  padding: 0 14px;
}

.lead-form textarea {
  min-height: 96px;
  padding: 14px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(31, 94, 255, .11);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #a4abb4;
}

.consent {
  display: flex !important;
  grid-template-columns: 18px 1fr;
  align-items: flex-start;
  gap: 10px !important;
  margin: 20px 0 !important;
  color: #6e7783 !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1.55;
}

.consent input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.consent a {
  color: var(--blue);
  text-decoration: underline;
}

.honey {
  position: fixed !important;
  left: 0 !important;
  top: 0 !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  clip-path: inset(100%) !important;
}

.form-submit {
  position: relative;
  width: 100%;
  border: 0;
}

.form-submit:disabled {
  cursor: wait;
  opacity: .88;
}

.submit-radar {
  display: none;
  position: relative;
  width: 24px;
  height: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
}

.submit-radar::before {
  position: absolute;
  content: "";
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
}

.submit-radar i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 46%;
  height: 1px;
  background: var(--paper);
  transform-origin: left;
  animation: radarSweep .7s linear infinite;
}

.form-submit.is-loading .submit-arrow {
  display: none;
}

.form-submit.is-loading .submit-radar {
  display: block;
}

.form-note {
  margin: 12px 0 0;
  color: #8a929d;
  text-align: center;
  font-size: 10px;
}

.form-result {
  display: none;
  margin-top: 14px;
  padding: 12px;
  border-radius: 9px;
  font-size: 11px;
  line-height: 1.5;
}

.form-result.show {
  display: block;
  color: #164b91;
  background: var(--blue-pale);
}

.form-result.error {
  color: #8f2f17;
  background: var(--orange-pale);
}

.faq-section {
  border-top: 1px solid var(--line);
}

.faq-list {
  margin-top: 50px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 0;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue);
  border: 1px solid #cfd4da;
  border-radius: 50%;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.faq-list details[open] summary span {
  color: var(--paper);
  background: var(--blue);
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 750px;
  margin: -5px 0 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.site-footer {
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  color: var(--paper);
  background: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 180px;
  border-bottom: 1px solid #2d3949;
}

.brand-footer .brand-word {
  color: var(--paper);
}

.brand-footer .brand-word > span {
  color: #85a8ff;
}

.brand-footer .radar-o {
  border-color: var(--paper);
}

.footer-main > p {
  margin: 0;
  color: #aab4c2;
  font-size: 14px;
  line-height: 1.6;
}

.footer-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #a9c0ff;
  font-size: 13px;
  font-weight: 720;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1.5fr auto auto;
  gap: 28px;
  align-items: center;
  min-height: 90px;
  color: #8590a0;
  font-size: 9px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  gap: 18px;
}

.footer-bottom a:hover {
  color: var(--paper);
}

/* Legal pages */

.legal-page {
  background: var(--canvas);
}

.site-header.compact {
  position: static;
}

.legal-shell {
  width: min(820px, calc(100% - 40px));
  min-height: 65vh;
  margin: 0 auto;
  padding: 90px 0 120px;
}

.legal-shell h1 {
  margin: 0 0 35px;
  font-size: clamp(42px, 7vw, 72px);
  letter-spacing: -.06em;
  line-height: 1;
}

.legal-shell h2 {
  margin: 40px 0 12px;
  font-size: 22px;
  letter-spacing: -.03em;
}

.legal-shell p,
.legal-shell li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.legal-shell a {
  color: var(--blue);
  text-decoration: underline;
}

.legal-callout {
  margin: 30px 0;
  padding: 20px 22px;
  border: 1px solid #f0c9ba;
  border-radius: 14px;
  background: var(--orange-pale);
}

.legal-callout strong {
  display: block;
  color: #7e2e18;
  font-size: 14px;
}

.legal-callout p {
  margin: 8px 0 0;
  color: #704b40;
}

.legal-updated {
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px !important;
}

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

.error-shell {
  display: grid;
  align-content: center;
  width: min(760px, calc(100% - 40px));
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  padding: 80px 0;
}

.error-shell h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(50px, 8vw, 84px);
  letter-spacing: -.07em;
  line-height: .98;
}

.error-shell > p:not(.overline) {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.error-radar {
  display: grid;
  width: 92px;
  height: 92px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 28px;
  background: var(--blue-pale);
}

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

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, .85fr) minmax(440px, 1.15fr);
    gap: 40px;
  }

  .hero-alert {
    left: -25px;
  }

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

  .flow-grid article {
    min-height: 330px;
  }

  .flow-icon {
    margin: 42px 0 36px;
  }

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

  .product-copy {
    max-width: 750px;
  }

  .dashboard-shell {
    width: min(900px, calc(100% - 28px));
    justify-self: center;
    transform: none;
  }

  .trust-section {
    grid-template-columns: 100px 1fr;
  }

  .trust-section > p {
    grid-column: 2;
  }

  .trust-tags {
    grid-column: 2;
  }
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 58px;
  }

  .hero-copy {
    max-width: 690px;
  }

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

  .hero-visual {
    margin: 24px 28px 0;
  }

  .hero-photo,
  .hero-photo img {
    min-height: 560px;
  }

  .source-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .split-heading,
  .evidence-section,
  .access-section {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 26px;
  }

  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .use-case-grid article {
    display: grid;
    grid-template-columns: 220px 1fr;
    column-gap: 26px;
  }

  .case-visual {
    grid-row: 1 / 6;
    height: 100%;
    min-height: 280px;
    margin: 0;
  }

  .use-case-grid p {
    min-height: 0;
  }

  .access-copy {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main > p {
    grid-column: 1 / 3;
    grid-row: 2;
    padding-bottom: 35px;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    padding: 22px 0;
  }

  .footer-bottom > span {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 70px;
    padding: 0 16px;
  }

  .brand-word {
    font-size: 19px;
  }

  .radar-o {
    width: 28px;
    height: 28px;
  }

  .header-cta {
    padding: 12px 14px;
    font-size: 11px;
  }

  .header-cta span {
    display: none;
  }

  .hero {
    gap: 38px;
    padding: 42px 16px 52px;
  }

  .hero-kicker {
    flex-wrap: wrap;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 66px);
  }

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

  .hero-actions {
    display: grid;
  }

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

  .hero-visual {
    margin: 0;
    padding-right: 0;
  }

  .hero-visual::before {
    right: -12px;
    bottom: -12px;
  }

  .hero-photo,
  .hero-photo img {
    min-height: 490px;
  }

  .hero-photo img {
    object-position: 54% center;
  }

  .hero-alert {
    left: 12px;
    right: 12px;
    bottom: 30px;
    width: auto;
    padding: 18px;
  }

  .source-pill {
    top: 14px;
    right: 12px;
  }

  .source-bar {
    padding: 24px 18px;
  }

  .source-bar > div {
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .section {
    padding: 82px 16px;
  }

  .section-heading h2,
  .evidence-copy h2,
  .access-copy h2,
  .trust-section h2,
  .product-copy h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

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

  .flow-grid article {
    min-height: auto;
  }

  .flow-icon {
    margin: 35px 0 30px;
  }

  .product-section {
    grid-template-columns: minmax(0, 1fr);
    gap: 46px;
    padding: 82px 16px 105px;
  }

  .product-copy {
    width: 100%;
  }

  .dashboard-shell {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    margin: 0;
    border-radius: 16px;
    transform: none;
  }

  .dashboard-topbar {
    grid-template-columns: 1fr auto;
    height: 54px;
    border-radius: 16px 16px 0 0;
  }

  .dashboard-sync {
    display: none;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .dashboard-body aside {
    display: none;
  }

  .dashboard-main {
    padding: 24px 14px 16px;
  }

  .dashboard-title h3 {
    font-size: 21px;
  }

  .dashboard-stats {
    gap: 6px;
    margin-top: 18px;
  }

  .dashboard-stats div {
    min-width: 0;
    padding: 11px 9px;
  }

  .dashboard-stats span {
    min-height: 20px;
    line-height: 1.35;
  }

  .tender-card {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 10px;
    padding: 13px 11px;
  }

  .score {
    width: 43px;
    height: 43px;
  }

  .score strong {
    font-size: 15px;
  }

  .tender-copy h4 {
    white-space: normal;
    line-height: 1.3;
  }

  .tender-arrow {
    display: none;
  }

  .dashboard-insight {
    position: static;
    min-width: 0;
    margin: 0 14px 14px;
    padding: 12px;
  }

  .dashboard-insight strong {
    font-size: 8px;
  }

  .evidence-section {
    gap: 75px;
  }

  .evidence-photo-wrap {
    padding-left: 0;
  }

  .evidence-photo {
    height: 520px;
  }

  .document-counter {
    right: 12px;
    top: 25px;
  }

  .data-points {
    grid-template-columns: 1fr;
  }

  .use-case-grid article {
    display: block;
  }

  .case-visual {
    height: 220px;
    min-height: 0;
    margin-bottom: 24px;
  }

  .trust-section {
    grid-template-columns: 1fr;
    padding: 76px 18px;
  }

  .trust-mark {
    width: 92px;
    height: 92px;
  }

  .radar-o-large {
    width: 58px;
    height: 58px;
  }

  .trust-section > p,
  .trust-tags {
    grid-column: 1;
  }

  .access-section {
    gap: 48px;
    padding: 82px 16px;
  }

  .lead-form {
    padding: 28px 18px;
    border-radius: 22px;
  }

  .lead-form::before {
    left: 18px;
    right: 18px;
  }

  .field-pair {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .lead-form input,
  .lead-form textarea {
    font-size: 16px;
  }

  .faq-list summary {
    font-size: 15px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 45px 0;
  }

  .footer-main > p {
    grid-column: 1;
    grid-row: auto;
    padding: 0;
  }

  .footer-cta {
    justify-self: start;
  }

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

  .footer-bottom > span {
    grid-column: 1;
  }

  .loader-word {
    font-size: 30px;
  }

  .radar-o-loader {
    width: 50px;
    height: 50px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
