@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/fonts/bricolage-grotesque-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/fonts/bricolage-grotesque-bold.ttf") format("truetype");
  font-weight: 700 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("/fonts/instrument-sans-regular.ttf") format("truetype");
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("/fonts/instrument-sans-bold.ttf") format("truetype");
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/fonts/ibm-plex-mono-400-latin-ext.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0b0d12;
  --paper: #f6f7fb;
  --white: #ffffff;
  --blue: #2457ff;
  --blue-dark: #173ac2;
  --lime: #d9ff43;
  --muted: #626978;
  --line: #d9dce5;
  --line-dark: #262a34;
  --success: #18864b;
  --warning: #d97706;
  --danger: #df3d42;
  --display: "Bricolage Grotesque", sans-serif;
  --body: "Instrument Sans", sans-serif;
  --mono: "Instrument Sans", sans-serif;
  --page: min(1320px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

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

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

body,
button,
input {
  font-family: var(--body);
}

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

button,
input {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(11, 13, 18, 0.11);
  background: rgba(246, 247, 251, 0.92);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: var(--page);
  height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  color: var(--ink);
  font: 700 22px/1 var(--display);
  letter-spacing: -0.055em;
}

.brand-wordmark > span { color: var(--blue); }
.footer-brand .brand-wordmark { color: var(--white); }
.footer-brand .brand-wordmark > span { color: var(--lime); }

.brand-symbol {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-symbol svg,
.brand-symbol img {
  width: 100%;
  height: 100%;
  display: block;
}

.aistopa-radar .radar-rings circle {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.35;
  stroke-dasharray: 78 22;
}

.aistopa-radar .radar-rings circle:nth-child(2) { stroke-dasharray: 70 30; stroke-dashoffset: 8; }
.aistopa-radar .radar-rings circle:nth-child(3) { stroke-dasharray: 62 38; stroke-dashoffset: 15; }
.aistopa-radar .radar-needle { fill: none; stroke: var(--blue); stroke-width: 3.5; stroke-linecap: round; }
.aistopa-radar .radar-center { fill: var(--blue); }
.aistopa-radar .radar-hit { fill: var(--lime); stroke: var(--ink); stroke-width: 1.1; }
.footer-brand .radar-rings circle { stroke: var(--white); }
.footer-brand .radar-hit { stroke: var(--white); }

.nav-wrap nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #343946;
  font-size: 14px;
  font-weight: 600;
}

.nav-wrap nav a,
.text-link,
.footer-bottom a {
  transition: color 160ms ease;
}

.nav-wrap nav a:hover,
.text-link:hover,
.footer-bottom a:hover {
  color: var(--blue);
}

.nav-cta {
  justify-self: end;
  min-height: 44px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  background: var(--ink);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 160ms ease, transform 160ms ease;
}

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

.hero {
  overflow: visible;
  padding: 64px 0 0;
}

.hero-grid {
  width: var(--page);
  min-height: 530px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(500px, 0.82fr);
  align-items: center;
  gap: clamp(48px, 5vw, 80px);
}

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

.kicker,
.section-label {
  margin: 0;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.kicker span {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(36, 87, 255, 0.12);
}

.hero h1 {
  max-width: 800px;
  margin: 18px 0 22px;
  font-family: var(--display);
  font-size: clamp(56px, 5.1vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.068em;
  font-weight: 700;
}

.hero h1 span { display: block; }
.hero h1 .hero-line { color: var(--ink); white-space: nowrap; }
.hero h1 .hero-accent { color: var(--blue); }

.hero-lead {
  max-width: 650px;
  margin: 0;
  color: #414756;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.42;
  letter-spacing: -0.02em;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.button {
  min-height: 54px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 15px;
  font-weight: 700;
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button-primary:hover {
  background: var(--blue-dark);
  transform: translate(3px, 3px);
  box-shadow: 5px 5px 0 var(--ink);
}

.text-link {
  padding: 8px 0 5px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  margin-left: 7px;
}

.hero-proof {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: var(--muted);
  font-size: 13px;
}

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

.hero-proof span::before {
  content: "✓";
  color: var(--blue);
  font-weight: 800;
}

.hero-stage {
  position: relative;
  min-height: 500px;
  padding: 30px 0 34px 24px;
}

.hero-stage::before {
  position: absolute;
  z-index: -1;
  content: "";
  width: min(640px, calc(100% - 4px));
  height: 460px;
  top: 14px;
  left: 0;
  background: var(--blue);
  transform: rotate(-2deg);
}

.answer-window {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  min-height: 450px;
  overflow: hidden;
  border: 1px solid #cfd3dd;
  background: var(--white);
  box-shadow: 0 22px 70px rgba(5, 11, 39, 0.24);
}

.window-bar {
  min-height: 46px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.window-bar b {
  justify-self: end;
  color: var(--ink);
  font-weight: 400;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 6px;
  height: 6px;
  background: #aeb3be;
  border-radius: 50%;
}

.window-dots i:first-child {
  background: var(--blue);
}

.prompt-line {
  margin: 26px 26px 0;
  padding: 15px 18px;
  display: flex;
  gap: 12px;
  background: #f0f2f7;
  color: #3a4050;
  font-size: 14px;
}

.prompt-line > span {
  color: var(--blue);
}

.prompt-line p {
  margin: 0;
}

.prompt-line strong {
  color: var(--ink);
}

.answer-copy {
  padding: 23px 28px 18px;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  color: #454b58;
  font-size: 13px;
}

.ai-spark {
  color: var(--blue);
  font-size: 18px;
}

.answer-copy p {
  margin: 1px 0 15px;
}

.answer-copy ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.answer-copy li {
  padding: 9px 12px;
  border-top: 1px solid #e4e6ec;
  display: grid;
  grid-template-columns: 122px 1fr;
  align-items: center;
  gap: 10px;
}

.answer-copy li b {
  color: var(--ink);
  font-weight: 700;
}

.answer-copy li span {
  color: #818694;
  font-size: 11px;
}

.answer-copy li.your-brand {
  position: relative;
  border-color: transparent;
  background: rgba(36, 87, 255, 0.1);
}

.answer-copy li.your-brand::after {
  position: absolute;
  content: "";
  width: 3px;
  inset: 0 auto 0 0;
  background: var(--blue);
}

.answer-copy li.your-brand span {
  color: var(--blue-dark);
}

.sources-row {
  margin: 0 28px;
  padding: 13px 0 22px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
}

.sources-row span {
  margin-right: 4px;
  font-family: var(--mono);
  text-transform: uppercase;
}

.sources-row i {
  padding: 4px 8px;
  border: 1px solid var(--line);
  color: #4c5360;
  font-style: normal;
}

.engine-pills {
  min-height: 47px;
  padding: 0 28px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 9px;
  background: #f8f9fb;
}

.engine-pills span {
  padding: 5px 7px;
  border: 1px solid #dfe2e9;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #555c69;
  background: var(--white);
  font-size: 8px;
  font-weight: 700;
}

.engine-pills img {
  width: 11px;
  height: 11px;
}

.visibility-card {
  position: absolute;
  z-index: 4;
  width: 240px;
  right: 0;
  bottom: 4px;
  padding: 20px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
}

.visibility-top {
  display: flex;
  justify-content: space-between;
  color: #9da3b1;
  font-size: 10px;
  text-transform: uppercase;
}

.visibility-top b {
  color: var(--lime);
  font-weight: 700;
}

.visibility-score {
  margin-top: 12px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.visibility-score strong {
  font-family: var(--display);
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.07em;
}

.visibility-score > span {
  color: #737b8e;
  font-family: var(--mono);
  font-size: 11px;
}

.visibility-score i {
  margin-left: auto;
  color: #ff8f93;
  font-size: 10px;
  font-style: normal;
}

.visibility-line {
  height: 50px;
  margin-top: 13px;
  border-bottom: 1px solid #404552;
  display: flex;
  align-items: end;
  gap: 4px;
}

.visibility-line i {
  flex: 1;
  height: var(--h);
  background: var(--blue);
}

.visibility-card > p {
  margin: 13px 0 0;
  color: #c6cad2;
  font-size: 10px;
}

.visibility-card > p span {
  width: 7px;
  height: 7px;
  margin-right: 5px;
  display: inline-block;
  background: var(--lime);
  border-radius: 50%;
}

.stage-badge {
  position: absolute;
  z-index: 5;
  width: 160px;
  min-height: 116px;
  left: -10px;
  bottom: 0;
  padding: 16px;
  border: 1px solid var(--ink);
  background: var(--lime);
  transform: rotate(-2deg);
}

.stage-badge span,
.stage-badge small {
  display: block;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-badge strong {
  margin: 8px 0 3px;
  display: block;
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.scanner-shell {
  position: relative;
  z-index: 10;
  width: var(--page);
  min-height: 190px;
  margin: 44px auto -96px;
  padding: 34px 38px;
  border: 1px solid var(--ink);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 56px;
  background: var(--white);
  box-shadow: 14px 14px 0 var(--blue);
}

.scanner-copy h2 {
  margin: 10px 0 8px;
  font-family: var(--display);
  font-size: clamp(25px, 2.2vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.scanner-copy > p:last-child {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.scan-form label {
  margin-bottom: 7px;
  display: block;
  font-size: 12px;
  font-weight: 700;
}

.url-control {
  height: 62px;
  border: 1px solid #b9bec9;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  background: #f9fafc;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.url-control:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(36, 87, 255, 0.12);
}

.protocol {
  padding-left: 17px;
  display: flex;
  align-items: center;
  color: #9a9fad;
  font-family: var(--mono);
  font-size: 12px;
}

.url-control input {
  width: 100%;
  min-width: 0;
  padding: 0 10px 0 2px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 16px;
  font-weight: 600;
}

.url-control input::placeholder {
  color: #9a9fad;
}

.scan-button {
  min-width: 210px;
  padding: 0 20px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  background: var(--blue);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease;
}

.scan-button:hover:not(:disabled) {
  background: var(--blue-dark);
}

.scan-button:disabled {
  cursor: wait;
  opacity: 0.82;
}

.scan-meta {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #7b8190;
  font-size: 10px;
}

.scan-meta p {
  margin: 0;
}

.scan-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--success);
  font-weight: 700;
}

.scan-meta i {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
}

.scan-progress {
  height: 3px;
  margin-top: 9px;
  overflow: hidden;
  background: #e8eaf0;
  opacity: 0;
}

.scan-progress i {
  width: 42%;
  height: 100%;
  display: block;
  background: var(--blue);
  transform: translateX(-110%);
}

.scanner-shell.is-loading .scan-progress {
  opacity: 1;
}

.scanner-shell.is-loading .scan-progress i {
  animation: scan-progress 1.25s ease-in-out infinite;
}

@keyframes scan-progress {
  50% { transform: translateX(160%); }
  100% { transform: translateX(360%); }
}

.form-error {
  position: absolute;
  right: 38px;
  bottom: 10px;
  margin: 0;
  color: var(--danger);
  font-size: 11px;
  font-weight: 700;
}

.scan-live {
  grid-column: 1 / -1;
  margin: 4px -38px -34px;
  border-top: 1px solid var(--ink);
  background: #f7f8fb;
}

.scan-live-head {
  min-height: 50px;
  padding: 0 38px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.scan-live-head > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.scan-live-head small,
.scan-live-head b {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scan-live-head strong {
  font-size: 13px;
}

.scan-live-head b {
  justify-self: end;
  color: var(--blue);
}

.live-pulse {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(36, 87, 255, 0.28);
  animation: live-pulse 1.25s ease-out infinite;
}

@keyframes live-pulse {
  70% { box-shadow: 0 0 0 8px rgba(36, 87, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(36, 87, 255, 0); }
}

.scan-flow {
  padding: 24px 38px 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(20px, 1fr) minmax(12px, 0.38fr)) minmax(20px, 1fr);
  align-items: center;
}

.scan-flow > i {
  height: 1px;
  margin: 0 8px;
  overflow: hidden;
  background: #cdd1da;
}

.scan-flow > i::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: var(--blue);
  transform: translateX(-100%);
  transition: transform 300ms ease;
}

.scan-node:has(+ i + .is-active) + i::after,
.scan-node.is-done + i::after {
  transform: none;
}

.scan-node {
  min-width: 0;
  display: grid;
  grid-template-columns: 37px 1fr;
  align-items: center;
  column-gap: 9px;
  opacity: 0.42;
  transition: opacity 200ms ease, transform 200ms ease;
}

.scan-node.is-active,
.scan-node.is-done {
  opacity: 1;
}

.scan-node.is-active {
  transform: translateY(-2px);
}

.scan-node > span {
  width: 37px;
  height: 37px;
  grid-row: span 2;
  border: 1px solid #b9bec9;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: var(--white);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
}

.scan-node.is-active > span {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
  box-shadow: 4px 4px 0 var(--lime);
}

.scan-node.is-done > span {
  border-color: var(--success);
  color: var(--success);
}

.scan-node.is-done > span::after {
  content: "✓";
}

.scan-node.is-done > span {
  font-size: 0;
}

.scan-node.is-done > span::after {
  font-size: 12px;
}

.scan-node strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scan-node small {
  overflow: hidden;
  color: var(--muted);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scan-live-foot {
  min-height: 42px;
  padding: 0 38px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 9px;
}

.scan-live-foot p {
  margin: 0;
}

.scan-live-foot code {
  color: var(--ink);
  font-family: var(--mono);
}

.scan-live-foot p:last-child {
  text-align: right;
}

.scan-live-foot p:last-child span {
  color: var(--blue);
  font-weight: 700;
}

.results {
  width: var(--page);
  margin: 150px auto 70px;
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 12px 12px 0 var(--ink);
  scroll-margin-top: 110px;
}

.results-heading {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}

.results-heading h2 {
  margin: 9px 0 5px;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.result-url {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  overflow-wrap: anywhere;
}

.score-orbit {
  width: 132px;
  height: 132px;
  padding: 9px;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--blue) calc(var(--score) * 1%), #e5e7ed 0);
  border-radius: 50%;
}

.score-orbit > div {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: baseline;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
}

.score-orbit strong {
  align-self: center;
  font-family: var(--display);
  font-size: 49px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.score-orbit span {
  align-self: center;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
}

.result-summary {
  max-width: 900px;
  margin: 28px 0 46px;
  font-family: var(--display);
  font-size: clamp(23px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.result-verdict {
  margin: 28px 0 46px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  gap: 55px;
}

.result-verdict .result-summary {
  margin: 0;
}

.plain-language {
  padding: 24px 26px;
  border-left: 5px solid var(--blue);
  background: #f0f3ff;
}

.plain-language > span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plain-language h3 {
  margin: 8px 0 9px;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.plain-language p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.result-plan {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}

.result-plan > div > h3 {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.result-plan > div > h3 span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 10px;
}

.priority-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: priority;
}

.priority-list li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  counter-increment: priority;
}

.priority-list li::before {
  content: counter(priority, decimal-leading-zero);
  color: var(--blue);
  font-family: var(--mono);
  font-size: 10px;
}

.priority-list strong,
.check-row strong {
  font-size: 13px;
}

.priority-list li > div > span {
  margin-bottom: 4px;
  display: block;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.priority-list p,
.check-row p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

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

.next-steps {
  align-self: start;
  padding: 30px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 8px 8px 0 var(--blue);
}

.next-steps > span {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.next-steps h3 {
  margin: 9px 0 20px;
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.next-steps ol {
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
  counter-reset: next;
}

.next-steps li {
  padding: 13px 0 13px 30px;
  border-top: 1px solid var(--line-dark);
  position: relative;
  color: #aeb4c1;
  font-size: 11px;
  counter-increment: next;
}

.next-steps li::before {
  position: absolute;
  left: 0;
  content: counter(next, decimal-leading-zero);
  color: var(--lime);
  font-family: var(--mono);
  font-size: 8px;
}

.next-steps li b {
  color: var(--white);
}

.next-steps a {
  min-height: 48px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: var(--lime);
  font-size: 12px;
  font-weight: 700;
}

.technical-details {
  margin-top: 44px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.technical-details summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
}

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

.technical-details summary i {
  color: var(--blue);
  font-size: 21px;
  font-style: normal;
  transition: transform 160ms ease;
}

.technical-details[open] summary i {
  transform: rotate(45deg);
}

.technical-details .checks-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 38px;
  border-top: 1px solid var(--line);
}

.check-row {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 9px 1fr auto;
  align-items: start;
  gap: 12px;
}

.check-row > i {
  width: 7px;
  height: 7px;
  margin-top: 6px;
  background: var(--warning);
  border-radius: 50%;
}

.check-row.pass > i { background: var(--success); }
.check-row.fail > i { background: var(--danger); }

.check-row > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
}

.method-note {
  margin-top: 35px;
  padding: 16px 18px;
  border-left: 4px solid var(--blue);
  background: #f0f3ff;
  color: #4f5666;
  font-size: 12px;
}

.method-note strong {
  color: var(--ink);
}

.profiq-referral {
  margin-top: 18px;
  padding: 24px 26px;
  border: 1px solid var(--ink);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  background: var(--white);
}

.profiq-referral span,
.profiq-referral > div > span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.profiq-referral h3 {
  margin: 7px 0 5px;
  font-family: var(--display);
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.profiq-referral p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.profiq-referral > a {
  min-height: 48px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  color: var(--white);
  background: var(--ink);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.platform-strip {
  min-height: 190px;
  padding: 118px max(24px, calc((100vw - 1320px) / 2)) 28px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 0.65fr 2fr 0.65fr;
  align-items: end;
  gap: 30px;
  background: var(--white);
}

.platform-strip p,
.platform-strip b {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-logos {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 32px);
  font-family: var(--display);
  font-size: clamp(17px, 1.65vw, 23px);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.platform-logos span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.platform-logos img {
  width: 23px;
  height: 23px;
}

.platform-strip b {
  justify-self: end;
  color: var(--blue);
}

.problem {
  position: relative;
  width: var(--page);
  margin: 0 auto;
  padding: 72px 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(600px, 1.05fr);
  gap: clamp(56px, 6vw, 92px);
}

.problem::before,
.process::before,
.expert-method::before,
.faq::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 76px;
  height: 5px;
  content: "";
  background: var(--blue);
}

.problem-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.problem-intro h2,
.deliverable h2,
.process h2,
.pilot h2,
.faq h2 {
  margin: 16px 0 25px;
  font-family: var(--display);
  font-size: clamp(45px, 5.6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.problem-intro h2 span {
  color: #9ba0ab;
}

.problem-intro h2 {
  font-size: clamp(48px, 4.6vw, 68px);
}

.problem-intro > p:last-child {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.signal-list {
  border-top: 1px solid var(--ink);
}

.signal-list article {
  min-height: 180px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: start;
  gap: 24px;
}

.signal-number {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 10px;
}

.signal-list article > div:nth-child(2) > p:first-child {
  margin: 0 0 8px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-list h3 {
  max-width: 430px;
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 35px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.signal-list article > div:nth-child(2) > p:last-child {
  max-width: 490px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.signal-status {
  padding: 7px 9px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.signal-status i {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
}

.signal-status.bad { color: var(--danger); }
.signal-status.medium { color: var(--warning); }
.signal-status.good { color: var(--success); }

.deliverable {
  position: relative;
  padding: 76px max(24px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
  color: var(--white);
  background: var(--ink);
}

.deliverable::before,
.pilot::before {
  position: absolute;
  top: 0;
  left: max(24px, calc((100vw - 1320px) / 2));
  width: 76px;
  height: 5px;
  content: "";
  background: var(--lime);
}

.section-label.light {
  color: var(--lime);
}

.deliverable h2 {
  margin-bottom: 24px;
}

.deliverable-copy > p:nth-of-type(2) {
  max-width: 530px;
  margin: 0;
  color: #aeb4c1;
  font-size: 17px;
}

.sample-report-link {
  margin-top: 26px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--lime);
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 700;
  transition: gap 160ms ease;
}

.sample-report-link:hover {
  gap: 36px;
}

.deliverable-copy ul {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.deliverable-copy li {
  padding: 18px 0;
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: 35px 1fr;
  column-gap: 14px;
}

.deliverable-copy li > span {
  grid-row: span 2;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 9px;
}

.deliverable-copy li strong {
  font-size: 14px;
}

.deliverable-copy li small {
  margin-top: 4px;
  color: #858c9b;
  font-size: 11px;
}

.report-shell {
  position: relative;
  width: min(520px, 100%);
  min-height: 500px;
  justify-self: center;
  color: var(--ink);
  background: var(--white);
  box-shadow: 14px 14px 0 var(--blue);
  transform: rotate(0.8deg);
}

.report-nav {
  min-height: 55px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-nav b {
  justify-self: end;
  color: var(--ink);
  font-weight: 400;
}

.report-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.055em;
  text-transform: none;
}

.report-logo > span { color: var(--blue); }

.report-mark {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
}

.report-mark svg,
.report-mark img {
  width: 100%;
  height: 100%;
  display: block;
}

.report-body {
  padding: 22px 24px 28px;
}

.report-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
}

.report-head > div:first-child span,
.report-head > div:first-child small {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.report-head > div:first-child strong {
  margin: 5px 0 7px;
  display: block;
  font-family: var(--display);
  font-size: clamp(42px, 4vw, 50px);
  line-height: 1;
  letter-spacing: -0.07em;
}

.report-head > div:first-child small {
  color: var(--success);
  text-transform: none;
}

.report-ring {
  width: 70px;
  height: 70px;
  padding: 6px;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--blue) 37%, #e9ebf0 0);
  border-radius: 50%;
}

.report-ring span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: var(--white);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 700;
}

.report-bars {
  margin-top: 18px;
}

.report-engines {
  margin-top: 18px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.report-engines span {
  min-width: 0;
  display: grid;
  grid-template-columns: 14px 1fr auto;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 8px;
}

.report-engines img {
  width: 13px;
  height: 13px;
}

.report-engines b {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 7px;
}

.report-bars > div {
  min-height: 30px;
  display: grid;
  grid-template-columns: 105px 1fr 36px;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 10px;
}

.report-bars i {
  position: relative;
  height: 8px;
  background: #e6e8ed;
}

.report-bars i::after {
  position: absolute;
  content: "";
  height: 100%;
  inset: 0 auto 0 0;
  width: var(--value);
  background: #aeb4c0;
}

.report-bars .active {
  color: var(--ink);
  font-weight: 700;
}

.report-bars .active i::after {
  background: var(--blue);
}

.report-bars b {
  text-align: right;
  font-family: var(--mono);
  font-size: 9px;
}

.report-insight {
  position: relative;
  margin-top: 18px;
  padding: 13px 16px;
  border-left: 4px solid var(--blue);
  background: #f0f3ff;
}

.report-insight > span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-insight p {
  max-width: 100%;
  margin: 6px 0 9px;
  font-family: var(--display);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.report-insight b {
  display: inline-block;
  padding: 5px 7px;
  color: var(--success);
  background: #dcefe5;
  font-family: var(--mono);
  font-size: 7px;
  line-height: 1;
  text-transform: uppercase;
}

.sample-note {
  position: absolute;
  right: 16px;
  bottom: 11px;
  margin: 0;
  color: #9a9fac;
  font-size: 8px;
}

.process {
  position: relative;
  width: var(--page);
  margin: 0 auto;
  padding: 70px 0 64px;
}

.process-head {
  max-width: 760px;
}

.process h2 { font-size: clamp(48px, 4.8vw, 70px); }

.process-head > p:last-child {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.process-steps {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-steps article {
  position: relative;
  min-width: 0;
  min-height: 410px;
  overflow: hidden;
  padding: 25px 26px 26px;
  border: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  box-shadow: 0 8px 0 #dfe5ff;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.process-steps article:hover {
  z-index: 2;
  border-color: var(--blue);
  transform: translateY(-7px);
  box-shadow: 0 15px 0 #dfe5ff;
}

.process-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.process-number {
  color: var(--blue);
  font-family: var(--display);
  font-size: 58px;
  line-height: 0.8;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.process-steps small {
  padding: 7px 9px;
  color: var(--blue);
  background: #eef2ff;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-visual {
  position: relative;
  height: 112px;
  margin: 34px 0 31px;
  border: 1px solid var(--line);
  background: #f7f8fc;
}

.process-map {
  padding: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.process-map::before,
.process-map::after {
  position: absolute;
  content: "";
  background: var(--line);
}

.process-map::before { width: 1px; inset: 0 auto 0 50%; }
.process-map::after { height: 1px; inset: 50% 0 auto; }

.process-map span {
  position: relative;
  z-index: 2;
  padding: 8px 10px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--white);
  font-size: 11px;
  font-weight: 700;
  transform: none;
  opacity: 1;
}

.process-map i {
  position: absolute;
  z-index: 1;
  width: 17px;
  height: 17px;
  border: 5px solid var(--lime);
  background: var(--blue);
  border-radius: 50%;
}

.process-scan {
  height: 132px;
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 7px;
}

.process-scan span {
  min-width: 0;
  height: 44px;
  padding: 0 9px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  background: var(--white);
  font-size: 10px;
  font-weight: 700;
}

.process-scan span:last-child { grid-column: 1 / -1; justify-content: center; }
.process-scan img { width: 17px; height: 17px; object-fit: contain; }
.process-scan span b { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.process-scan i {
  position: absolute;
  z-index: 2;
  width: 2px;
  inset: 10px auto 10px 14px;
  background: var(--blue);
  box-shadow: 0 0 16px rgba(36, 87, 255, 0.65);
  opacity: 0;
}

.process-rank {
  padding: 21px 18px;
  display: grid;
  align-content: center;
  gap: 9px;
}

.process-rank span {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 8px;
}

.process-rank b {
  color: var(--muted);
  font-size: 9px;
}

.process-rank i {
  height: 7px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
}

.process-rank span:nth-child(1) i { width: 92%; }
.process-rank span:nth-child(2) i { width: 67%; opacity: 0.65; }
.process-rank span:nth-child(3) i { width: 43%; opacity: 0.35; }

.process-copy {
  position: relative;
  z-index: 2;
}

.process-steps h3 {
  margin: 0 0 11px;
  font-family: var(--display);
  font-size: clamp(27px, 2.25vw, 35px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.process-steps p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.process-copy > b {
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  display: block;
  color: var(--blue);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.expert-method {
  position: relative;
  width: var(--page);
  margin: 0 auto;
  padding: 72px 0 58px;
}

.expert-method-head {
  padding-bottom: 42px;
  border-bottom: 1px solid var(--ink);
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 70px;
}

.expert-method-head h2 {
  margin: 13px 0 0;
  font-family: var(--display);
  font-size: clamp(46px, 6vw, 82px);
  line-height: .94;
  letter-spacing: -.065em;
}

.expert-method-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.expert-method-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.expert-method-grid article {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 26px 24px 28px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.expert-method-grid article:nth-child(2),
.expert-method-grid article:nth-child(4) {
  background: #eef2ff;
}

.expert-method-grid article::after {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 72px;
  height: 72px;
  border: 14px solid rgba(36, 87, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.expert-method-grid article:hover {
  z-index: 2;
  border-color: var(--blue);
  box-shadow: 7px 7px 0 #dfe5ff;
  transform: translateY(-4px);
}

.expert-method-grid span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 10px;
}

.expert-method-grid h3 {
  margin: 48px 0 12px;
  font-family: var(--display);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.expert-method-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.expert-method-source {
  margin-top: 22px;
  padding: 22px 24px;
  border: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--white);
}

.expert-method-source p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.expert-method-source strong { color: var(--ink); }

.expert-method-source a {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.process-steps article.is-revealed .process-map span {
  opacity: 1;
  transform: none;
  transition: opacity 420ms ease, transform 520ms cubic-bezier(.2,.8,.2,1);
}

.motion-ready .process-steps article[data-reveal]:not(.is-revealed) .process-map span {
  opacity: 0;
  transform: translateY(8px);
}

.process-steps article.is-revealed .process-map span:nth-child(2) { transition-delay: 90ms; }
.process-steps article.is-revealed .process-map span:nth-child(3) { transition-delay: 180ms; }
.process-steps article.is-revealed .process-scan i { animation: process-scan 900ms 220ms cubic-bezier(.2,.8,.2,1) forwards; }
.process-steps article.is-revealed .process-rank i { transform: scaleX(1); transition: transform 700ms cubic-bezier(.2,.8,.2,1); }
.process-steps article.is-revealed .process-rank span:nth-child(2) i { transition-delay: 100ms; }
.process-steps article.is-revealed .process-rank span:nth-child(3) i { transition-delay: 200ms; }

@keyframes process-scan {
  0% { left: 14px; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { left: calc(100% - 16px); opacity: 0; }
}

.pilot {
  position: relative;
  padding: 84px max(24px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: clamp(60px, 10vw, 170px);
  color: var(--white);
  background: var(--blue);
}

.pilot h2 {
  max-width: 820px;
  font-size: clamp(50px, 6.5vw, 90px);
}

.pilot-copy > p:nth-of-type(2) {
  max-width: 590px;
  margin: 0;
  color: #d8e1ff;
  font-size: 18px;
}

.pilot-guarantee {
  max-width: 540px;
  margin-top: 34px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.pilot-guarantee span {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.pilot-guarantee p {
  margin: 1px 0 0;
  font-size: 13px;
}

.pilot-card {
  padding: clamp(28px, 4vw, 50px);
  color: var(--ink);
  background: var(--white);
  box-shadow: 16px 16px 0 var(--ink);
}

.pilot-card > span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  margin: 15px 0 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.price strong {
  font-family: var(--display);
  font-size: clamp(50px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.price small {
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
  text-align: right;
}

.pilot-card ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.pilot-card li {
  padding: 10px 0;
  border-bottom: 1px solid #eceef2;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.pilot-card li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 800;
}

.measurement-status {
  margin: -7px 0 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
}

.measurement-status i {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
  background: var(--warning);
}

.measurement-status.is-ready {
  color: var(--success);
}

.measurement-status.is-ready i {
  background: var(--success);
}

.pilot-button {
  min-height: 58px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: var(--ink);
  font-weight: 700;
  transition: background 160ms ease;
}

.pilot-button:hover:not([aria-disabled="true"]) {
  background: var(--blue);
}

.pilot-button[aria-disabled="true"] {
  cursor: not-allowed;
}

.pilot-card > small:last-child {
  margin-top: 11px;
  display: block;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.faq {
  position: relative;
  width: var(--page);
  margin: 0 auto;
  padding: 68px 0 76px;
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(620px, 1.32fr);
  gap: clamp(56px, 7vw, 100px);
}

.faq-head {
  align-self: start;
}

.faq h2 {
  font-size: clamp(43px, 4.6vw, 64px);
}

.faq-list {
  display: grid;
  gap: 10px;
  counter-reset: faq;
}

.faq-list details {
  border: 1px solid var(--line);
  background: var(--white);
  counter-increment: faq;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: var(--ink);
}

.faq-list details[open] {
  margin-bottom: 6px;
  box-shadow: 7px 7px 0 #dfe5ff;
  transform: translateY(-2px);
}

.faq-list summary {
  min-height: 78px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.faq-list summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -2px;
}

.faq-list summary::before {
  content: counter(faq, decimal-leading-zero);
  color: var(--blue);
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

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

.faq-list summary i {
  flex: 0 0 auto;
  color: var(--blue);
  font-family: var(--body);
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -5px 58px 24px 72px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

footer {
  padding: 85px max(24px, calc((100vw - 1320px) / 2)) 28px;
  color: var(--white);
  background: var(--ink);
}

.footer-main {
  padding-bottom: 62px;
  display: grid;
  grid-template-columns: 0.8fr 1.3fr 0.9fr;
  align-items: start;
  gap: 40px;
}

.footer-info {
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.footer-info section {
  min-height: 178px;
  padding: 28px 28px 30px 0;
}

.footer-info section + section {
  padding-left: 28px;
  border-left: 1px solid var(--line-dark);
}

.footer-info span {
  color: var(--lime);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-info h3 {
  margin: 16px 0 8px;
  font-family: var(--display);
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.footer-info p {
  max-width: 360px;
  margin: 0;
  color: #9da4b2;
  font-size: 12px;
  line-height: 1.55;
}

.footer-info a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.footer-main > p {
  margin: -8px 0 0;
  font-family: var(--display);
  font-size: clamp(36px, 4.5vw, 65px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.footer-cta {
  justify-self: end;
  min-width: 230px;
  min-height: 58px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: var(--lime);
  font-size: 14px;
  font-weight: 700;
  transition: transform 160ms ease;
}

.footer-cta:hover {
  transform: translateY(-3px);
}

.footer-trust {
  min-height: 92px;
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.payment-methods,
.social-links {
  display: flex;
  align-items: center;
}

.payment-methods { gap: 24px; }
.social-links { gap: 17px; }

.payment-methods > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: transparent;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.03em;
  opacity: .92;
}

.payment-methods .pay-apple { gap: 3px; font-family: -apple-system, BlinkMacSystemFont, sans-serif; font-size: 14px; }
.payment-methods .pay-apple b { font-size: 18px; line-height: 1; }
.payment-methods .pay-apple i,
.payment-methods .pay-google i { font-style: normal; }
.payment-methods .pay-google { gap: 4px; }
.payment-methods .pay-google b {
  color: var(--white);
  font-size: 16px;
}
.payment-methods .pay-visa { color: var(--white); font-size: 16px; font-style: italic; letter-spacing: -0.07em; }
.payment-methods .pay-mastercard { gap: 0; }
.payment-methods .pay-mastercard b { margin-left: 6px; color: var(--white); font-size: 8px; font-weight: 600; letter-spacing: -0.04em; }

/* Automatické spracovanie zaplatenej objednávky */
.order-page{min-height:100vh;background:#eef0f6}.order-card{width:min(100% - 32px,760px);padding:42px;background:#fff;border-radius:0;box-shadow:12px 12px 0 var(--blue)}
.order-brand{display:inline-flex;margin-bottom:34px}.order-brand .brand-wordmark{font:700 24px/1 var(--display);letter-spacing:-.055em}.order-brand .brand-wordmark>span{color:var(--blue)}
.order-card>h1{max-width:620px;font:700 clamp(46px,8vw,76px)/.92 var(--display);letter-spacing:-.065em}.order-card .success-lede{max-width:620px}
.order-progress{margin:34px 0;padding:24px;border:1px solid var(--line);background:var(--paper)}.order-progress-head{display:flex;justify-content:space-between;gap:20px;font-size:12px;font-weight:700}.order-progress-head strong{color:var(--blue)}.order-progress-track{height:11px;margin:15px 0;background:#dfe3ee;overflow:hidden}.order-progress-track i{display:block;width:0;height:100%;background:var(--blue);transition:width .35s ease}.order-model-count{color:var(--muted);font-size:11px}
.order-input-form{margin:34px 0;padding:28px;border:1px solid var(--ink);box-shadow:8px 8px 0 var(--blue)}.order-form-heading>span,.order-ready-label,.order-failed>span{color:var(--blue);font-size:9px;font-weight:700;letter-spacing:.08em;text-transform:uppercase}.order-form-heading h2,.order-ready h2,.order-failed h2{margin:7px 0 8px;font:700 28px/1 var(--display);letter-spacing:-.04em}.order-form-heading p,.order-ready p,.order-failed p{margin:0 0 22px;color:var(--muted);font-size:12px}.order-input-form label{display:block;margin-top:15px;color:var(--ink);font-size:11px;font-weight:700}.order-input-form label span{color:var(--muted);font-weight:400}.order-input-form input{width:100%;margin-top:7px;padding:13px 14px;border:1px solid var(--line);border-radius:0;background:#fff;color:var(--ink);font:14px var(--body)}.order-input-form input:focus{outline:2px solid var(--blue);outline-offset:1px}.order-input-form button,.order-failed button{width:100%;margin-top:22px;padding:15px 17px;border:0;background:var(--ink);color:#fff;font:700 13px var(--body);cursor:pointer}.order-input-form button:disabled,.order-failed button:disabled{opacity:.55;cursor:wait}.order-form-error{margin:12px 0 0!important;color:#b4232c!important;font-size:11px!important}
.order-ready,.order-failed{margin:34px 0;padding:28px}.order-ready{color:#fff;background:var(--blue)}.order-ready .order-ready-label{color:var(--lime)}.order-ready h2{color:#fff}.order-ready p{color:#dce4ff}.order-ready-actions{display:flex;gap:10px;flex-wrap:wrap}.order-ready-actions a{padding:14px 17px;background:var(--lime);color:var(--ink);font-size:12px;font-weight:700;text-decoration:none}.order-ready-actions a.secondary{border:1px solid #829cff;background:transparent;color:#fff}.order-failed{border:1px solid #d64a52;background:#fff7f7}.order-failed button{background:#b4232c}.order-home-link{display:inline-flex!important}.order-card .success-help{margin-top:34px}
.order-email-toggle{margin-top:18px;padding:0;border:0;border-bottom:1px solid #aabaff;background:transparent;color:#fff;font:600 11px var(--body);cursor:pointer}.order-email-form{margin-top:18px;padding:18px;border:1px solid #829cff;background:#1648df}.order-email-form label{display:block;color:#fff;font-size:11px;font-weight:700}.order-email-form input{width:100%;margin-top:7px;padding:12px 13px;border:1px solid #fff;background:#fff;color:var(--ink);font:14px var(--body)}.order-email-form input:focus{outline:2px solid var(--lime);outline-offset:2px}.order-email-form button{width:100%;margin-top:10px;padding:13px 15px;border:0;background:var(--lime);color:var(--ink);font:700 12px var(--body);cursor:pointer}.order-email-form button:disabled{opacity:.6;cursor:wait}.order-email-error{margin:10px 0 0!important;color:#fff4f4!important;font-size:11px!important}
@media(max-width:620px){.order-card{width:100%;min-height:100vh;padding:28px 18px;box-shadow:none}.order-progress,.order-input-form,.order-ready,.order-failed{padding:21px 17px}.order-ready-actions{display:grid}.order-ready-actions a{text-align:center}}

.pay-mastercard i {
  width: 15px;
  height: 15px;
  border: 1.4px solid var(--white);
  background: transparent;
  border-radius: 50%;
}

.pay-mastercard i + i {
  margin-left: -6px;
}

.social-links a,
.social-links > span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: transparent;
  line-height: 0;
  transition: opacity 160ms ease, transform 160ms ease;
}

.social-links a:hover {
  opacity: .7;
  transform: translateY(-2px);
}

.social-links a:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 5px;
}

.social-links > span {
  color: var(--white);
  cursor: default;
  opacity: 1;
}

.social-links svg {
  width: 20px;
  height: 20px;
  display: block;
  overflow: visible;
}

.social-email svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-whatsapp svg,
.social-instagram svg,
.social-tiktok svg {
  fill: currentColor;
  stroke: none;
}

.social-tiktok svg {
  width: 19px;
  height: 19px;
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  color: #858c9b;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.footer-bottom > a {
  justify-self: end;
}

.motion-ready [data-reveal] {
  opacity: 0;
  translate: 0 30px;
  transition: opacity 650ms cubic-bezier(.2,.8,.2,1), translate 760ms cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, translate;
}

.motion-ready [data-reveal="left"] { translate: -34px 0; }
.motion-ready [data-reveal="right"] { translate: 34px 0; }

.motion-ready [data-reveal].is-revealed {
  opacity: 1;
  translate: 0 0;
  will-change: auto;
}

.faq-list details[open] > p {
  animation: faq-reveal 260ms ease-out both;
}

@keyframes faq-reveal {
  from { opacity: 0; translate: 0 -8px; }
  to { opacity: 1; translate: 0 0; }
}

[hidden] {
  display: none !important;
}

@media (max-width: 1120px) {
  :root { --page: min(100% - 40px, 1040px); }

  .hero-grid {
    grid-template-columns: 1fr 0.92fr;
    gap: 45px;
  }

  .hero-stage { transform: scale(0.92); transform-origin: center right; }
  .visibility-card { right: -6px; }
  .stage-badge { left: 2px; }

  .scanner-shell {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 32px;
  }

  .platform-strip { padding-left: 20px; padding-right: 20px; }
  .platform-logos { gap: 14px; font-size: 17px; }
  .platform-logos img { width: 19px; height: 19px; }
  .problem { gap: 70px; }
  .deliverable { grid-template-columns: 0.9fr 1.1fr; gap: 60px; }
  .report-shell { min-height: 500px; }
  .pilot { gap: 70px; }
}

@media (max-width: 900px) {
  .nav-wrap { grid-template-columns: 1fr auto; }
  .nav-wrap nav { display: none; }

  .hero { padding-top: 62px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-stage { width: min(660px, 100%); margin: 0 auto; transform: none; }
  .hero-stage::before { width: calc(100% - 10px); }

  .scanner-shell {
    margin-top: 35px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .platform-strip {
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
  }

  .platform-strip div { flex-wrap: wrap; }
  .platform-strip b { justify-self: center; }

  .problem,
  .deliverable,
  .pilot,
  .faq {
    grid-template-columns: 1fr;
  }

  .problem-intro { position: static; }
  .problem { padding: 72px 0 82px; gap: 48px; }
  .deliverable { padding-top: 78px; padding-bottom: 82px; }
  .report-shell { width: min(680px, 100%); justify-self: center; }
  .pilot-card { width: min(570px, 100%); }
  .process { padding: 72px 0 62px; }
  .process-steps { margin-top: 48px; }
  .expert-method { padding: 62px 0 52px; }
  .pilot { padding-top: 74px; padding-bottom: 78px; }
  .faq { padding: 70px 0 78px; gap: 34px; }

  .expert-method-head { grid-template-columns: 1fr; gap: 24px; }
  .expert-method-grid { grid-template-columns: 1fr 1fr; }
  .expert-method-source { align-items: flex-start; flex-direction: column; }

  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > p { grid-column: 1 / -1; grid-row: 2; }
  .footer-cta { grid-column: 2; grid-row: 1; }
  .footer-info { grid-template-columns: 1fr 1fr; }
  .footer-info section:nth-child(3) { grid-column: 1 / -1; border-top: 1px solid var(--line-dark); border-left: 0; padding-left: 0; }
}

@media (max-width: 700px) {
  :root { --page: calc(100% - 40px); }
  html { scroll-padding-top: 76px; }
  .nav-wrap { height: 66px; }
  .brand { font-size: 19px; }
  .brand-symbol { width: 26px; height: 26px; }
  .nav-cta { min-height: 40px; padding: 0 13px; gap: 10px; font-size: 12px; }

  .hero { padding-top: 45px; }
  .hero-grid { gap: 50px; }
  .hero h1 { margin-top: 18px; font-size: clamp(40px, 10.8vw, 52px); }
  .hero h1 .hero-line { white-space: normal; }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .button-primary { width: calc(100% - 8px); justify-content: space-between; }
  .hero-proof { gap: 8px 16px; }

  .hero-stage { min-height: 440px; padding: 23px 0 25px 9px; }
  .hero-stage::before { height: 390px; top: 0; }
  .answer-window { min-height: 350px; }
  .window-bar { min-height: 40px; padding: 0 11px; }
  .prompt-line { margin: 16px 13px 0; padding: 12px; font-size: 12px; }
  .answer-copy { padding: 17px 14px 12px; grid-template-columns: 16px 1fr; gap: 7px; font-size: 11px; }
  .answer-copy li { padding: 8px; grid-template-columns: 100px 1fr; }
  .answer-copy li span { font-size: 9px; }
  .sources-row { margin: 0 14px; padding: 10px 0 16px; }
  .engine-pills { padding: 0 14px; gap: 5px; }
  .engine-pills span { padding: 4px; font-size: 0; }
  .engine-pills img { width: 13px; height: 13px; }
  .visibility-card { width: 195px; right: 0; bottom: 0; padding: 15px; }
  .visibility-score strong { font-size: 40px; }
  .visibility-line { height: 35px; }
  .stage-badge { width: 126px; min-height: 92px; left: -3px; padding: 11px; }
  .stage-badge strong { font-size: 23px; }

  .scanner-shell { padding: 26px 20px 30px; box-shadow: 7px 7px 0 var(--blue); }
  .scanner-copy h2 { font-size: 28px; }
  .url-control { height: auto; grid-template-columns: auto 1fr; }
  .protocol { height: 56px; padding-left: 12px; }
  .url-control input { height: 56px; }
  .scan-button { grid-column: 1 / -1; min-width: 0; min-height: 54px; }
  .scan-meta { align-items: flex-start; flex-direction: column; gap: 5px; }
  .form-error { position: static; grid-column: 1 / -1; margin-top: -8px; }
  .scan-live { margin: 4px -20px -30px; }
  .scan-live-head { padding: 0 20px; grid-template-columns: auto 1fr auto; }
  .scan-live-head > div small { display: none; }
  .scan-live-head strong { font-size: 11px; text-align: center; }
  .scan-flow { padding: 21px 16px; grid-template-columns: repeat(4, 1fr 10px) 1fr; }
  .scan-flow > i { margin: 0 3px; }
  .scan-node { grid-template-columns: 1fr; justify-items: center; gap: 5px; }
  .scan-node > span { width: 33px; height: 33px; grid-row: auto; }
  .scan-node strong { font-size: 8px; }
  .scan-node small { display: none; }
  .scan-live-foot { padding: 11px 20px; align-items: flex-start; flex-direction: column; gap: 5px; }
  .scan-live-foot p:last-child { text-align: left; }

  .results { margin-top: 140px; padding: 25px 20px; box-shadow: 7px 7px 0 var(--ink); }
  .results-heading { grid-template-columns: 1fr; }
  .score-orbit { width: 110px; height: 110px; }
  .score-orbit strong { font-size: 40px; }
  .result-verdict,
  .result-plan { grid-template-columns: 1fr; gap: 30px; }
  .technical-details .checks-list { grid-template-columns: 1fr; }
  .profiq-referral { grid-template-columns: 1fr; }
  .profiq-referral > a { width: 100%; }

  .platform-strip { padding-top: 125px; }
  .platform-strip div { gap: 14px 24px; }

  .problem { padding: 66px 0 74px; gap: 42px; }
  .problem-intro h2,
  .deliverable h2,
  .process h2,
  .pilot h2,
  .faq h2 { font-size: clamp(42px, 12vw, 61px); }
  .problem-intro > p:last-child { font-size: 16px; }
  .signal-list article { grid-template-columns: 32px 1fr; gap: 13px; }
  .signal-status { grid-column: 2; justify-self: start; }

  .deliverable { padding: 68px 20px 72px; gap: 52px; }
  .report-shell { min-height: 480px; box-shadow: 8px 8px 0 var(--blue); transform: none; }
  .report-body { padding: 24px 17px 44px; }
  .report-nav { padding: 0 12px; }
  .report-nav > span:nth-child(2) { display: none; }
  .report-nav { grid-template-columns: 1fr 1fr; }
  .report-ring { width: 68px; height: 68px; }
  .report-engines { gap: 5px; }
  .report-engines span { grid-template-columns: 12px 1fr; gap: 4px; font-size: 7px; }
  .report-engines img { width: 11px; height: 11px; }
  .report-engines b { grid-column: 2; }
  .report-bars > div { grid-template-columns: 85px 1fr 30px; gap: 8px; }
  .report-insight p { max-width: 100%; font-size: 15px; }

  .process { padding: 66px 0 56px; }
  .process-steps { margin-top: 42px; grid-template-columns: 1fr; }
  .process-steps { gap: 16px; }
  .process-steps article,
  .process-steps article + article { min-height: 390px; padding: 23px 20px 24px; border: 1px solid var(--ink); }
  .process-number { font-size: 51px; }
  .process-visual { margin: 27px 0 26px; }

  .expert-method { padding: 58px 0 48px; }
  .expert-method-grid { grid-template-columns: 1fr; }
  .expert-method-grid article,
  .expert-method-grid article:nth-child(3) { min-height: 225px; }
  .expert-method-grid h3 { margin-top: 42px; }
  .expert-method-source { padding: 20px; }

  .pilot { padding: 66px 20px 72px; gap: 48px; }
  .pilot h2 { font-size: clamp(48px, 13vw, 68px); }
  .pilot-copy > p:nth-of-type(2) { font-size: 16px; }
  .pilot-card { padding: 28px 20px; box-shadow: 8px 8px 0 var(--ink); }
  .price strong { font-size: 50px; }

  .faq { padding: 64px 0 72px; gap: 30px; }
  .faq-list summary { font-size: 21px; }
  .faq-list details p { margin: -3px 22px 22px 70px; }

  footer { padding: 54px 20px 22px; }
  .footer-main { padding-bottom: 48px; grid-template-columns: 1fr; }
  .footer-main > p { grid-column: 1; grid-row: 2; }
  .footer-cta { width: 100%; grid-column: 1; grid-row: 3; justify-self: stretch; }
  .footer-info { grid-template-columns: 1fr; }
  .footer-info section,
  .footer-info section + section,
  .footer-info section:nth-child(3) { min-height: auto; padding: 24px 0; border-top: 1px solid var(--line-dark); border-left: 0; }
  .footer-info section:first-child { border-top: 0; }
  .footer-trust { align-items: flex-start; flex-direction: column; }
  .payment-methods { max-width: 100%; flex-wrap: wrap; }
  .social-links { width: 100%; flex-wrap: wrap; }
  .footer-bottom { grid-template-columns: 1fr; gap: 17px; }
  .footer-bottom div { flex-wrap: wrap; gap: 10px 18px; }
  .footer-bottom > a { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .motion-ready [data-reveal] { opacity: 1; translate: none; transition: none; }
}
/* Consent banner is rendered only when optional measurement is configured. */
.consent-banner{position:fixed;z-index:1000;left:18px;right:18px;bottom:18px;display:flex;align-items:center;justify-content:space-between;gap:28px;max-width:1120px;margin:auto;padding:18px 20px;background:#090b12;color:#fff;border:1px solid #2a3040;box-shadow:0 18px 60px #0006}.consent-banner strong{display:block;margin-bottom:5px;font:700 16px/1.2 var(--sans,Arial,sans-serif)}.consent-banner p{max-width:720px;margin:0;color:#bdc4d3;font-size:13px;line-height:1.5}.consent-banner a{color:#fff}.consent-actions{display:flex;gap:8px;flex:none}.consent-actions button{min-height:42px;padding:0 16px;border:1px solid #485066;background:transparent;color:#fff;font:700 12px/1 var(--sans,Arial,sans-serif);cursor:pointer}.consent-actions button.primary{border-color:#caff2c;background:#caff2c;color:#090b12}@media(max-width:720px){.consent-banner{align-items:stretch;flex-direction:column;gap:14px}.consent-actions{display:grid;grid-template-columns:1fr 1fr}.consent-actions button{padding:0 10px}}
.footer-bottom button{border:0;padding:0;background:none;color:inherit;font:inherit;text-decoration:underline;cursor:pointer}
