:root {
  --bg: #0a0f1a;
  --bg-deep: #060a12;
  --surface: #101725;
  --surface-raised: #182236;
  --text: #f5f2e9;
  --muted: #a7afc0;
  --border: #2b354a;
  --accent: #d9b26a;
  --accent-deep: #b9924c;
  --warning: #d4a855;
  --error: #e07a82;
  --radius-panel: 18px;
  --radius-field: 12px;
  color-scheme: dark;
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 72%, white 28%);
  outline-offset: 3px;
}

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

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.site-page {
  min-height: 100dvh;
  overflow: clip;
  background: radial-gradient(
      circle at 15% 8%,
      rgba(217, 178, 106, 0.035),
      transparent 28%
    ),
    var(--bg);
}

.shell {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}

.operator-strip {
  min-height: 56px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(169, 178, 196, 0.18);
  background: var(--bg-deep);
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}

.operator-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 9px;
}

.operator-inner a {
  flex: 0 0 auto;
  color: var(--accent);
  border-bottom: 1px solid rgba(217, 178, 106, 0.5);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 72px;
  border-bottom: 1px solid rgba(169, 178, 196, 0.16);
  background: rgba(8, 12, 21, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand span {
  display: grid;
  gap: 1px;
  letter-spacing: 0.13em;
  line-height: 1;
}

.brand strong {
  font-size: 14px;
  font-weight: 600;
}

.brand small {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 34px);
  color: #c6cedd;
  font-size: 14px;
}

.main-nav a {
  position: relative;
  padding-block: 10px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 1px;
  background: var(--accent);
  transition: right 220ms ease;
}

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

.nav-trust {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(217, 178, 106, 0.38);
  border-radius: 999px;
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  align-self: center;
}

.nav-target {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.nav-target::before,
.nav-target::after,
.nav-target span::before,
.nav-target span::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-color: var(--accent);
  transition: transform 180ms ease;
}

.nav-target::before {
  left: 0;
  top: 0;
  border-left: 1px solid;
  border-top: 1px solid;
}
.nav-target::after {
  right: 0;
  top: 0;
  border-right: 1px solid;
  border-top: 1px solid;
}
.nav-target span::before {
  left: 0;
  bottom: 0;
  border-left: 1px solid;
  border-bottom: 1px solid;
}
.nav-target span::after {
  right: 0;
  bottom: 0;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.nav-target:hover::before,
.nav-target:hover span::before {
  transform: translate(3px, 0);
}
.nav-target:hover::after,
.nav-target:hover span::after {
  transform: translate(-3px, 0);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-field);
  background: var(--surface);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--text);
}

.hero-section {
  position: relative;
  min-height: calc(100dvh - 114px);
  display: flex;
  align-items: stretch;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(169, 178, 196, 0.14);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: linear-gradient(
      90deg,
      rgba(5, 8, 15, 0.95) 0%,
      rgba(5, 8, 15, 0.7) 42%,
      rgba(5, 8, 15, 0.04) 78%
    ),
    linear-gradient(0deg, rgba(5, 8, 15, 0.76) 0%, transparent 52%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.2;
  background-image: linear-gradient(
      rgba(169, 178, 196, 0.11) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(169, 178, 196, 0.11) 1px, transparent 1px);
  background-size: 9vw 9vw;
  mask-image: linear-gradient(to right, black, transparent 72%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  padding-top: 74px;
  padding-bottom: clamp(48px, 7vh, 86px);
}

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

.eyebrow {
  margin-bottom: 20px;
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.hero-copy h1 {
  max-width: 830px;
  margin-bottom: 22px;
  font-size: clamp(52px, 5vw, 60px);
  line-height: 0.99;
  letter-spacing: -0.045em;
  font-weight: 500;
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 30px;
  color: #c5cddc;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.hero-calibrate {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-width: 236px;
  height: 56px;
  padding: 0 16px 0 22px;
  border-radius: var(--radius-field);
  background: var(--accent);
  color: #241a09;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
  transition: transform 180ms ease, background 180ms ease;
}

.hero-calibrate i {
  position: relative;
  width: 34px;
  height: 10px;
  border-top: 1px solid #241a09;
  border-bottom: 1px solid #241a09;
}

.hero-calibrate i::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 45%;
  width: 2px;
  height: 16px;
  background: #241a09;
  transition: left 180ms ease;
}

.hero-calibrate:hover {
  background: #e7c98b;
  transform: translateY(-2px);
}
.hero-calibrate:hover i::after {
  left: 78%;
}
.hero-calibrate:active {
  transform: translateY(1px) scale(0.99);
}

.hero-circuit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--text);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  transition: border-color 180ms ease, gap 180ms ease;
}

.hero-circuit:hover {
  border-color: var(--accent);
  gap: 18px;
}

.hero-readout {
  width: 226px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border-left: 1px solid var(--accent);
  background: rgba(5, 8, 15, 0.58);
  backdrop-filter: blur(12px);
  font-family: "IBM Plex Mono", monospace;
}

.hero-readout span {
  color: var(--accent);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.hero-readout strong {
  font-size: 12px;
}
.hero-readout small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.signal-section {
  position: relative;
  min-height: 780px;
  padding: 130px 0;
  border-bottom: 1px solid rgba(169, 178, 196, 0.14);
}

.signal-plate {
  position: absolute;
  inset: 0 0 0 48%;
  overflow: hidden;
}

.signal-plate::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 38%);
}

.signal-plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.signal-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(450px, 0.9fr);
  gap: 10vw;
}

.signal-heading {
  max-width: 620px;
}

.signal-heading h2,
.center-heading h2,
.feature-heading h2,
.scenario-heading h2,
.fit-grid h2,
.transparency-content h2,
.quiz-heading h2,
.faq-intro h2,
.closing-band h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 3.2vw, 40px);
  line-height: 1.03;
  letter-spacing: -0.035em;
  font-weight: 500;
}

.signal-heading p,
.center-heading p,
.feature-heading p,
.scenario-heading > p:last-child,
.transparency-lead,
.quiz-heading > p:last-child,
.faq-intro p,
.closing-band p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.evidence-list {
  margin-top: 220px;
  background: rgba(8, 12, 21, 0.82);
  backdrop-filter: blur(15px);
  border-radius: var(--radius-panel);
  overflow: hidden;
  border: 1px solid rgba(169, 178, 196, 0.18);
}

.evidence-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 27px;
}

.evidence-list article + article {
  border-top: 1px solid rgba(169, 178, 196, 0.18);
}
.evidence-list span {
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}
.evidence-list h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 500;
}
.evidence-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.process-section {
  padding: 132px 0 150px;
  background: var(--bg-deep);
}

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

.center-heading p {
  margin-inline: auto;
}

.process-stack {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
  padding-bottom: 30px;
}

.process-card {
  position: relative;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 155px;
  padding: 28px 34px;
  margin-top: calc(var(--stack-index) * -6px);
  transform: translateY(calc(var(--stack-index) * 14px));
  border: 1px solid rgba(169, 178, 196, 0.23);
  border-radius: var(--radius-panel);
  background: color-mix(
    in srgb,
    var(--surface) calc(82% + var(--stack-index) * 4%),
    var(--bg-deep)
  );
  box-shadow: 0 22px 60px rgba(1, 13, 18, 0.28);
}

.process-card img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}
.process-card h3 {
  margin-bottom: 8px;
  font-size: 27px;
  font-weight: 500;
}
.process-card p {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}
.process-card > span {
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.features-section {
  padding: 132px 0;
}

.feature-heading {
  max-width: 760px;
  margin-bottom: 62px;
}

.feature-bento {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.9fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.feature-bento article {
  position: relative;
  min-height: 290px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(169, 178, 196, 0.18);
  border-radius: var(--radius-panel);
  background: var(--surface);
}

.feature-bento article:not(.feature-overview) img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 44px;
}
.feature-bento h3 {
  margin-bottom: 12px;
  font-size: 25px;
  font-weight: 500;
}
.feature-bento p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.feature-overview {
  grid-column: span 2;
  min-height: 520px !important;
  padding: 0 !important;
  background: var(--bg-deep) !important;
}

.feature-demo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.feature-overview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(5, 8, 15, 0.98) 0%,
    rgba(5, 8, 15, 0.1) 70%
  );
}

.demo-caption {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 32px;
  max-width: 600px;
}

.demo-caption span {
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
}
.demo-caption h3 {
  margin-top: 12px;
  font-size: 32px;
}

.feature-scenarios {
  background: linear-gradient(150deg, #182236, #0b1222) !important;
}
.feature-risk {
  background: #131b2c !important;
}
.feature-alerts {
  grid-column: span 1;
}
.feature-history {
  grid-column: span 1;
  background: linear-gradient(
    150deg,
    rgba(217, 178, 106, 0.08),
    var(--surface)
  ) !important;
}
.feature-sources {
  grid-column: 1 / -1;
  min-height: 230px !important;
}

.scenario-section {
  padding: 130px 0;
  background: var(--bg-deep);
}

.scenario-heading {
  max-width: 790px;
  margin: 0 auto 54px;
  text-align: center;
}

.scenario-heading > p:last-child {
  margin-inline: auto;
}

.scenario-lens {
  --lens-position: 50%;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(169, 178, 196, 0.25);
  border-radius: var(--radius-panel);
  background: var(--surface);
  touch-action: pan-y;
  cursor: ew-resize;
  box-shadow: 0 38px 90px rgba(0, 9, 13, 0.38);
}

.lens-base,
.lens-risk img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lens-risk {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--lens-position)) 0 0);
}

.lens-risk img {
  width: 100%;
  max-width: 100%;
}

.lens-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--lens-position);
  width: 1px;
  background: rgba(242, 245, 243, 0.85);
  transform: translateX(-50%);
}

.lens-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(242, 245, 243, 0.8);
  border-radius: 50%;
  background: rgba(8, 12, 21, 0.86);
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  box-shadow: inset 0 0 0 5px rgba(217, 178, 106, 0.08);
}

.lens-label {
  position: absolute;
  top: 22px;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(5, 8, 15, 0.74);
  backdrop-filter: blur(10px);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
}

.lens-label-neutral {
  left: 22px;
  color: #d3dae6;
}
.lens-label-risk {
  right: 22px;
  color: var(--warning);
}

.lens-range {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: none;
  width: min(420px, calc(100% - 40px));
  transform: translateX(-50%);
  padding: 11px 14px;
  border-radius: var(--radius-field);
  background: rgba(5, 8, 15, 0.86);
  backdrop-filter: blur(12px);
}

.lens-range span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
}
.lens-range input {
  width: 100%;
  accent-color: var(--accent);
}

.scenario-metadata {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 16px;
  border: 1px solid rgba(169, 178, 196, 0.18);
  border-radius: var(--radius-panel);
  background: var(--surface);
}

.scenario-metadata div {
  padding: 20px;
}
.scenario-metadata div + div {
  border-left: 1px solid rgba(169, 178, 196, 0.18);
}
.scenario-metadata div:nth-child(n + 5) {
  border-top: 1px solid rgba(169, 178, 196, 0.18);
}
.scenario-metadata div:nth-child(5) {
  border-left: 0;
}
.scenario-metadata span {
  display: block;
  margin-bottom: 7px;
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}
.scenario-metadata strong {
  font-size: 14px;
  font-weight: 500;
}

.scenario-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  margin-top: 16px;
  padding: 0 30px;
  border-radius: var(--radius-panel);
  background: var(--accent);
  color: #241a09;
  font-size: 22px;
  font-weight: 700;
  transition: filter 180ms ease, transform 180ms ease;
}

.scenario-band i {
  font-style: normal;
  font-size: 30px;
  transition: transform 180ms ease;
}
.scenario-band:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.scenario-band:hover i {
  transform: translateX(8px);
}

.fit-section {
  position: relative;
  padding: 132px 0;
  overflow: hidden;
}

.fit-background {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.fit-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 21, 0.62);
}
.fit-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fit-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  border: 1px solid rgba(169, 178, 196, 0.22);
  border-radius: var(--radius-panel);
  overflow: hidden;
  background: rgba(8, 12, 21, 0.88);
  backdrop-filter: blur(18px);
}

.limits-ledger,
.fit-ledger {
  padding: clamp(34px, 5vw, 68px);
}

.fit-ledger {
  border-left: 1px solid rgba(169, 178, 196, 0.2);
  background: rgba(18, 51, 62, 0.55);
}
.fit-grid h2 {
  font-size: clamp(34px, 3.2vw, 40px);
}

.limit-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(169, 178, 196, 0.16);
}

.limit-row span {
  color: var(--warning);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
}
.limit-row p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.fit-group {
  margin-top: 34px;
}
.fit-group h3 {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
}
.fit-group ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.fit-group li {
  position: relative;
  padding-left: 26px;
  color: #c9d1e0;
  line-height: 1.45;
}
.fit-group li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "IBM Plex Mono", monospace;
}
.fit-positive li::before {
  content: "+";
  color: var(--accent);
}
.fit-negative li::before {
  content: "×";
  color: var(--error);
}

.transparency-section {
  padding: 132px 0;
  background: var(--bg-deep);
}

.transparency-grid {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 58px;
}

.source-rail {
  position: sticky;
  top: 110px;
  align-self: start;
  display: grid;
  gap: 14px;
  padding: 22px 0 22px 22px;
  border-left: 1px solid var(--accent);
}

.source-rail span {
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
}
.source-rail strong {
  font-size: 20px;
  font-weight: 500;
}
.source-rail p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.transparency-content h2 {
  max-width: 900px;
}
.transparency-lead {
  margin-bottom: 50px;
}

.open-ledger {
  display: grid;
  gap: 10px;
}

.ledger-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ledger-group article {
  min-height: 155px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  border: 1px solid rgba(169, 178, 196, 0.18);
  border-radius: var(--radius-panel);
  background: var(--surface);
}

.ledger-group article:only-child {
  grid-column: 1 / -1;
}

.ledger-group span {
  margin-bottom: 13px;
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.13em;
}
.ledger-group strong {
  margin-bottom: 6px;
  font-size: 21px;
  font-weight: 500;
}
.ledger-group small {
  color: var(--muted);
  font-size: 14px;
}

.transparency-warning {
  margin-top: 16px;
  padding: 22px 24px;
  border-left: 3px solid var(--warning);
  border-radius: 0 var(--radius-field) var(--radius-field) 0;
  background: rgba(212, 168, 85, 0.08);
  color: #d9c9a7;
  line-height: 1.55;
}

.quiz-section {
  padding: 132px 0;
  background: linear-gradient(rgba(8, 12, 21, 0.88), rgba(8, 12, 21, 0.96)),
    url("../img/plate-rings.webp") center / cover no-repeat;
}

.quiz-shell {
  max-width: 1100px;
}
.quiz-heading {
  max-width: 780px;
  margin: 0 auto 50px;
  text-align: center;
}
.quiz-heading > p:last-child {
  margin-inline: auto;
}

.quiz-frame {
  border: 1px solid rgba(169, 178, 196, 0.28);
  border-radius: var(--radius-panel);
  background: rgba(8, 12, 21, 0.94);
  box-shadow: 0 38px 90px rgba(2, 4, 9, 0.42);
  overflow: hidden;
}

.quiz-frame form {
  padding: clamp(24px, 5vw, 54px);
}

.quiz-progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.progress-rail {
  height: 2px;
  background: var(--border);
  overflow: hidden;
}
.progress-rail i {
  display: block;
  width: 50%;
  height: 100%;
  background: var(--accent);
}
.progress-rail.is-complete i {
  width: 100%;
}

.quiz-question {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.6fr);
  gap: 28px;
  margin: 0;
  padding: 25px 0;
  border: 0;
  border-bottom: 1px solid rgba(169, 178, 196, 0.16);
}

.quiz-question legend {
  float: left;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.radio-option {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius-field);
  color: #d9dee9;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease,
    transform 160ms ease;
}

.radio-option:hover {
  border-color: #556180;
  transform: translateY(-1px);
}
.radio-option:has(input:checked) {
  border-color: var(--accent);
  background: rgba(217, 178, 106, 0.09);
}
.radio-option input {
  width: 17px;
  height: 17px;
  margin: 0 11px 0 0;
  accent-color: var(--accent);
}
.radio-option span {
  font-size: 16px;
  line-height: 1.3;
}

.quiz-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 28px;
}

.quiz-actions > span {
  color: var(--muted);
  font-size: 14px;
}

.quiz-press {
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius-field);
  background: var(--accent);
  color: #241a09;
  font-weight: 700;
  cursor: pointer;
  box-shadow: inset 0 -4px 0 rgba(6, 37, 29, 0.22);
  transition: transform 140ms ease, filter 140ms ease, box-shadow 140ms ease;
}

.quiz-press:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.quiz-press:active {
  transform: translateY(2px);
  box-shadow: inset 0 -1px 0 rgba(6, 37, 29, 0.2);
}
.quiz-press:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.back-action {
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-field);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.form-intro {
  max-width: 680px;
  margin-bottom: 30px;
}
.form-intro h3 {
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 500;
}
.form-intro p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.form-grid label,
.nurture-panel label {
  display: grid;
  gap: 8px;
}

.form-grid label > span,
.nurture-panel label > span {
  color: #d9dee9;
  font-size: 14px;
  font-weight: 500;
}

.form-grid input,
.form-grid select,
.nurture-panel input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-field);
  background: #0d1424;
  color: var(--text);
}

.form-grid input::placeholder {
  color: #8a94a9;
}
.form-grid input:focus,
.form-grid select:focus,
.nurture-panel input:focus {
  border-color: var(--accent);
}
.form-grid input:user-valid,
.form-grid select:user-valid,
.nurture-panel input:user-valid {
  border-color: color-mix(in srgb, var(--accent) 62%, var(--border));
}
.form-grid input:user-invalid,
.form-grid select:user-invalid,
.nurture-panel input:user-invalid {
  border-color: var(--error);
}
.form-wide {
  grid-column: 1 / -1;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  color: #c4ccdb;
  font-size: 14px;
  line-height: 1.5;
}

.consent-row input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.state-panel {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 58px;
  text-align: center;
}

.state-panel > img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  margin-bottom: 22px;
}
.state-label {
  margin-bottom: 12px;
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
}
.state-panel h3 {
  max-width: 700px;
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
}
.state-panel > p:not(.state-label) {
  max-width: 690px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}
.stop-panel {
  background: linear-gradient(
    160deg,
    rgba(212, 168, 85, 0.08),
    transparent 45%
  );
}
.stop-panel .state-label {
  color: var(--warning);
}
.risk-link {
  margin-bottom: 24px;
  color: var(--warning);
  border-bottom: 1px solid rgba(212, 168, 85, 0.5);
}
.nurture-panel label {
  width: min(480px, 100%);
  margin-bottom: 22px;
  text-align: left;
}
.state-actions {
  display: flex;
  gap: 12px;
}

.faq-section {
  padding: 132px 0;
  background: var(--bg-deep);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 9vw;
}

.faq-intro {
  position: sticky;
  top: 118px;
  align-self: start;
}
.faq-intro h2 {
  font-size: clamp(34px, 3.2vw, 40px);
}

.faq-list {
  border-top: 1px solid rgba(169, 178, 196, 0.22);
}
.faq-item {
  border-bottom: 1px solid rgba(169, 178, 196, 0.22);
}
.faq-item > button {
  width: 100%;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.faq-item > button span {
  font-size: 19px;
  font-weight: 500;
}
.faq-item > button i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--accent);
  font-style: normal;
  font-size: 24px;
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}
.faq-answer > p {
  overflow: hidden;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}
.faq-answer.is-open {
  grid-template-rows: 1fr;
}
.faq-answer.is-open > p {
  padding-bottom: 28px;
}

.closing-section {
  padding: 24px 0 120px;
  background: var(--bg-deep);
}
.closing-band {
  min-height: 290px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 50px;
  padding: 54px;
  border: 1px solid rgba(169, 178, 196, 0.2);
  border-radius: var(--radius-panel);
  background: linear-gradient(
      115deg,
      rgba(217, 178, 106, 0.13),
      transparent 46%
    ),
    var(--surface);
}

.closing-band h2 {
  font-size: clamp(34px, 3.2vw, 40px);
}
.closing-band p {
  margin-bottom: 0;
}
.closing-split {
  position: relative;
  height: 66px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-field);
  background: var(--text);
  color: var(--bg-deep);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.closing-split span,
.closing-split strong {
  position: absolute;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.closing-split strong {
  transform: translateY(160%);
}
.closing-split:hover span {
  transform: translateY(-160%);
}
.closing-split:hover strong {
  transform: translateY(0);
}

.site-footer {
  padding: 72px 0 36px;
  border-top: 1px solid rgba(169, 178, 196, 0.18);
  background: #04070e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 38px;
}

.footer-grid h3 {
  margin-bottom: 13px;
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
}
.footer-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.footer-brand p {
  max-width: 280px;
  margin-top: 18px;
}

.risk-disclosure {
  margin-top: 48px;
  padding: 24px;
  border: 1px solid rgba(212, 168, 85, 0.35);
  border-radius: var(--radius-field);
  background: rgba(212, 168, 85, 0.055);
}

.risk-disclosure strong {
  display: block;
  margin-bottom: 8px;
  color: var(--warning);
}
.risk-disclosure p {
  margin-bottom: 0;
  color: #c9c3b4;
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  color: #7f8aa0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
}

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

.mobile-sticky {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 25;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-field);
  background: var(--accent);
  color: #241a09;
  font-weight: 700;
  box-shadow: 0 18px 42px rgba(1, 13, 18, 0.45);
}

[data-privacy="open"] .mobile-sticky {
  display: none !important;
}

.cookie-banner {
  position: fixed;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
  border: 1px solid #47536f;
  border-radius: var(--radius-panel);
  background: rgba(11, 37, 48, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(2, 4, 9, 0.48);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
}
.cookie-banner p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}
.cookie-actions {
  display: flex;
  gap: 8px;
}
.cookie-actions button {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius-field);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}
.cookie-actions button:last-child {
  border-color: var(--accent);
  background: var(--accent);
  color: #241a09;
  font-weight: 700;
}
.cookie-actions button:active {
  transform: translateY(1px);
}

.hero-context {
  max-width: 610px;
  margin-bottom: 18px;
  color: #b8c2d4;
  font-size: 16px;
  line-height: 1.5;
}

.hero-usp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 820px;
  margin-top: 26px;
  margin-bottom: 26px;
}

.hero-usp-grid article {
  min-height: 112px;
  padding: 15px 16px;
  border: 1px solid rgba(169, 178, 196, 0.2);
  border-radius: var(--radius-field);
  background: rgba(8, 12, 21, 0.7);
  backdrop-filter: blur(10px);
}

.hero-usp-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 14px;
  line-height: 1.25;
}

.hero-usp-grid span {
  display: block;
  color: #bcc5d6;
  font-size: 12px;
  line-height: 1.45;
}

.hero-calibrate {
  min-width: 360px;
}

.hero-microcopy {
  max-width: 630px;
  margin: 18px 0 0;
  color: #9ea9bd;
  font-size: 14px;
  line-height: 1.55;
}

.evidence-action {
  padding: 24px 27px 27px;
  border-top: 1px solid rgba(169, 178, 196, 0.18);
  background: rgba(217, 178, 106, 0.045);
}

.evidence-action a {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  border-bottom: 1px solid rgba(217, 178, 106, 0.45);
}

.evidence-action p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.process-card small {
  display: block;
  margin-top: 10px;
  color: #939fb5;
  font-size: 14px;
  line-height: 1.45;
}

.section-disclosure,
.limits-disclosure,
.fit-disclosure,
.quiz-legal-note,
.faq-disclosure,
.closing-disclosure,
.onboarding-disclosure {
  color: #aeb6c6;
  font-size: 14px;
  line-height: 1.6;
}

.section-disclosure {
  margin: 18px 0 0;
  padding: 18px 20px;
  border-left: 2px solid var(--warning);
  background: rgba(212, 168, 85, 0.06);
}

.scenario-metadata {
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(169, 178, 196, 0.18);
}

.scenario-metadata div {
  background: var(--surface);
}
.scenario-metadata div + div {
  border-left: 0;
}
.scenario-metadata div:nth-child(n + 5) {
  border-top: 0;
}

.limits-disclosure,
.fit-disclosure {
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(169, 178, 196, 0.18);
}

.onboarding-section {
  padding: 132px 0;
  background: var(--surface);
}

.onboarding-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 8vw;
}

.onboarding-heading h2,
.trust-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 3.2vw, 40px);
  line-height: 1.03;
  letter-spacing: -0.035em;
  font-weight: 500;
}

.legal-shell > h1 {
  margin-bottom: 20px;
  font-size: clamp(52px, 5vw, 60px);
  line-height: 1.03;
  letter-spacing: -0.035em;
  font-weight: 500;
}

.onboarding-heading p,
.trust-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.onboarding-heading a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  margin-top: 16px;
  padding: 0 18px;
  border-left: 2px solid var(--accent);
  background: rgba(217, 178, 106, 0.08);
  color: var(--accent);
  font-weight: 600;
}

.onboarding-list {
  border-top: 1px solid rgba(169, 178, 196, 0.2);
}

.onboarding-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(169, 178, 196, 0.2);
}

.onboarding-list article > span {
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}

.onboarding-list h3 {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 500;
}
.onboarding-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.onboarding-disclosure {
  margin-top: 42px;
  padding: 20px 22px;
  border: 1px solid rgba(169, 178, 196, 0.2);
  border-radius: var(--radius-field);
  background: rgba(8, 12, 21, 0.46);
}

.onboarding-disclosure p {
  margin: 0;
}
.onboarding-disclosure p + p {
  margin-top: 10px;
  color: #d7e1e3;
}

.quiz-legal-note {
  max-width: 720px !important;
  margin: 15px auto 0 !important;
  padding-top: 14px;
  border-top: 1px solid rgba(169, 178, 196, 0.18);
}

.rodo-copy,
.form-disclosure,
.callcenter-disclosure,
.success-risk-note {
  margin: 18px 0 0;
  color: #aeb6c6;
  font-size: 14px;
  line-height: 1.55;
}

.rodo-copy a {
  color: var(--accent);
  border-bottom: 1px solid rgba(217, 178, 106, 0.45);
}
.form-disclosure {
  padding: 16px 18px;
  border-left: 2px solid var(--warning);
  background: rgba(212, 168, 85, 0.06);
}
.callcenter-disclosure {
  margin-bottom: 24px;
  padding: 16px 18px;
  border-left: 2px solid var(--accent);
  background: rgba(217, 178, 106, 0.06);
}
.state-panel > p.success-risk-note {
  max-width: 690px;
  margin: -8px 0 28px;
  color: #d9c9a7;
  font-size: 14px;
  line-height: 1.6;
}
.nurture-consent {
  width: min(560px, 100%) !important;
  margin: 0 auto 20px;
  text-align: left;
}

.trust-section {
  padding: 132px 0;
  background: var(--bg);
}

.trust-heading {
  max-width: 790px;
  margin-bottom: 48px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(169, 178, 196, 0.2);
  border-radius: var(--radius-panel);
  overflow: hidden;
}

.trust-grid article {
  min-height: 250px;
  padding: 26px;
  background: var(--surface);
}

.trust-grid article + article {
  border-left: 1px solid rgba(169, 178, 196, 0.2);
}
.trust-grid span {
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
}
.trust-grid h3 {
  margin: 44px 0 12px;
  font-size: 22px;
  font-weight: 500;
}
.trust-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.faq-disclosure {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(169, 178, 196, 0.18);
}
.closing-band small {
  display: block;
  margin-top: 18px;
  color: #aeb6c6;
  font-size: 14px;
  line-height: 1.55;
}
.closing-disclosure {
  margin-top: 18px;
}

.footer-links {
  display: grid;
  gap: 8px;
}
.footer-links a,
.footer-document-link {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}
.footer-links a:hover,
.footer-document-link:hover {
  color: var(--accent);
}
.footer-privacy-button {
  width: max-content;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}

.privacy-reopen {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 58;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-field);
  background: rgba(11, 37, 48, 0.96);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 12px 34px rgba(2, 4, 9, 0.35);
}

.cookie-settings {
  display: flex;
  gap: 16px;
  margin-top: 13px;
  color: #d6dce8;
  font-size: 14px;
}

.cookie-settings label {
  display: flex;
  align-items: center;
  gap: 7px;
}
.cookie-settings input {
  width: 17px;
  height: 17px;
  accent-color: var(--accent);
}

.legal-page {
  min-height: 100dvh;
  padding: 64px 24px;
  background: radial-gradient(
      circle at 70% 0%,
      rgba(217, 178, 106, 0.08),
      transparent 34%
    ),
    var(--bg);
}

.legal-shell {
  width: min(860px, 100%);
  margin: 0 auto;
}
.legal-back {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--accent);
}
.legal-status {
  color: var(--warning);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
}
.legal-lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.legal-blocker {
  margin: 34px 0 46px;
  padding: 22px 24px;
  border-left: 3px solid var(--warning);
  background: rgba(212, 168, 85, 0.08);
}

.legal-blocker strong {
  color: var(--warning);
}
.legal-blocker p {
  margin: 8px 0 0;
  color: #d7ccb3;
  line-height: 1.6;
}
.legal-shell > h2 {
  margin-top: 40px;
  font-size: clamp(34px, 3.2vw, 40px);
  font-weight: 500;
}
.legal-shell ul {
  display: grid;
  gap: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.thank-you-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 38px 0;
}
.thank-you-grid article {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-panel);
  background: var(--surface);
}
.thank-you-grid span {
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
}
.thank-you-grid h3 {
  margin: 28px 0 10px;
  font-size: 21px;
  font-weight: 500;
}
.thank-you-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.not-found-page,
.error-page {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--bg);
}

.system-message {
  width: min(560px, 100%);
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-panel);
  background: var(--surface);
  text-align: center;
}

.system-message h1 {
  margin-bottom: 12px;
  font-size: 38px;
}
.system-message p {
  color: var(--muted);
}
.system-message a,
.system-message button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius-field);
  background: var(--accent);
  color: #241a09;
  font-weight: 700;
  cursor: pointer;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: hero-enter 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .hero-readout {
    animation: readout-enter 900ms 180ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .hero-image {
    animation: hero-image-enter 1300ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }
}

@keyframes hero-enter {
  from {
    transform: translateY(28px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes readout-enter {
  from {
    transform: translateX(28px);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes hero-image-enter {
  from {
    transform: scale(1.035);
  }
  to {
    transform: scale(1);
  }
}

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

@media (max-width: 1200px) {
  .nav-shell {
    gap: 20px;
  }
  .main-nav {
    gap: 15px;
    font-size: 13px;
  }
  .nav-trust {
    display: none;
  }
  .brand small {
    font-size: 8px;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 1120px) {
  .main-nav {
    gap: 18px;
    font-size: 13px;
  }
  .nav-target {
    padding-inline: 13px;
  }
  .signal-layout {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .signal-plate {
    left: 42%;
  }
  .feature-bento {
    grid-template-columns: 1fr 1fr;
  }
  .feature-overview {
    grid-column: 1 / -1;
  }
  .feature-alerts,
  .feature-history {
    grid-column: auto;
  }
  .feature-sources {
    grid-column: 1 / -1;
  }
  .scenario-metadata {
    grid-template-columns: 1fr 1fr;
  }
  .scenario-metadata div:nth-child(n + 3) {
    border-top: 1px solid rgba(169, 178, 196, 0.18);
  }
  .scenario-metadata div:nth-child(odd) {
    border-left: 0;
  }
}

@media (max-width: 920px) {
  .shell {
    width: min(100% - 32px, 1280px);
  }
  .nav-shell {
    grid-template-columns: 1fr auto auto;
    gap: 14px;
  }
  .main-nav {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-panel);
    background: rgba(8, 12, 21, 0.98);
    box-shadow: 0 24px 60px rgba(2, 4, 9, 0.48);
  }
  .main-nav.is-open {
    display: flex;
  }
  .main-nav a {
    padding: 12px 4px;
  }
  .menu-toggle {
    display: block;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-readout {
    display: none;
  }
  .hero-image {
    object-position: 62% center;
  }
  .hero-scrim {
    background: linear-gradient(
      90deg,
      rgba(5, 8, 15, 0.96),
      rgba(5, 8, 15, 0.58) 72%,
      rgba(5, 8, 15, 0.15)
    );
  }
  .signal-section {
    min-height: auto;
    padding: 100px 0;
  }
  .signal-plate {
    inset: 0 0 45% 25%;
    opacity: 0.45;
  }
  .signal-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .evidence-list {
    margin-top: 80px;
  }
  .process-card {
    grid-template-columns: 68px 1fr;
  }
  .process-card > span {
    grid-column: 2;
  }
  .fit-grid {
    grid-template-columns: 1fr;
  }
  .fit-ledger {
    border-left: 0;
    border-top: 1px solid rgba(169, 178, 196, 0.2);
  }
  .onboarding-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-grid article:nth-child(3) {
    border-left: 0;
  }
  .trust-grid article:nth-child(n + 3) {
    border-top: 1px solid rgba(169, 178, 196, 0.2);
  }
  .transparency-grid {
    grid-template-columns: 1fr;
  }
  .source-rail {
    position: static;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .faq-intro {
    position: static;
  }
  .closing-band {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .operator-inner {
    align-items: flex-start;
  }
  .operator-inner a {
    display: none;
  }
  .site-header {
    height: 64px;
  }
  .brand span {
    display: none;
  }
  .nav-target {
    display: none;
  }
  .main-nav {
    top: 64px;
  }
  .hero-section {
    min-height: 720px;
  }
  .hero-inner {
    padding-top: 68px;
    padding-bottom: 44px;
  }
  .hero-copy h1 {
    font-size: clamp(36px, 10vw, 40px);
  }
  .hero-lead {
    max-width: 420px;
    font-size: 17px;
  }
  .hero-usp-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .hero-usp-grid article {
    min-height: 0;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 360px;
    gap: 12px;
  }
  .hero-calibrate {
    min-width: 0;
    width: 100%;
  }
  .hero-circuit {
    width: max-content;
  }
  .hero-image {
    object-position: 68% center;
  }
  .hero-scrim {
    background: linear-gradient(
      0deg,
      rgba(5, 8, 15, 0.98) 0%,
      rgba(5, 8, 15, 0.65) 68%,
      rgba(5, 8, 15, 0.26)
    );
  }
  .signal-section,
  .process-section,
  .features-section,
  .scenario-section,
  .fit-section,
  .transparency-section,
  .quiz-section,
  .faq-section,
  .onboarding-section,
  .trust-section {
    padding: 88px 0;
  }
  .signal-heading h2,
  .center-heading h2,
  .feature-heading h2,
  .scenario-heading h2,
  .fit-grid h2,
  .transparency-content h2,
  .quiz-heading h2,
  .faq-intro h2,
  .closing-band h2,
  .onboarding-heading h2,
  .trust-heading h2,
  .legal-shell > h2 {
    font-size: clamp(28px, 8vw, 32px);
  }
  .legal-shell > h1 {
    font-size: clamp(36px, 10vw, 40px);
  }
  .evidence-list {
    margin-top: 34px;
  }
  .evidence-list article {
    grid-template-columns: 38px 1fr;
    padding: 22px 18px;
    gap: 12px;
  }
  .center-heading {
    text-align: left;
    margin-bottom: 46px;
  }
  .process-card {
    grid-template-columns: 52px 1fr;
    gap: 16px;
    padding: 20px;
    min-height: 0;
    transform: none;
    margin-top: 10px;
  }
  .process-card img {
    width: 48px;
    height: 48px;
  }
  .process-card h3 {
    font-size: 22px;
  }
  .process-card > span {
    display: none;
  }
  .feature-bento {
    grid-template-columns: 1fr;
  }
  .feature-overview {
    min-height: 390px !important;
  }
  .feature-bento article {
    min-height: 250px;
  }
  .feature-demo {
    object-position: 32% center;
  }
  .demo-caption {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }
  .demo-caption h3 {
    font-size: 26px;
  }
  .scenario-heading {
    text-align: left;
  }
  .scenario-lens {
    aspect-ratio: 4 / 5;
    cursor: default;
  }
  .lens-base,
  .lens-risk img {
    object-position: 62% center;
  }
  .lens-range {
    display: block;
  }
  .lens-divider span {
    top: 44%;
  }
  .lens-label {
    top: 14px;
    padding: 8px;
    font-size: 7px;
  }
  .lens-label-neutral {
    left: 12px;
  }
  .lens-label-risk {
    right: 12px;
  }
  .scenario-metadata {
    grid-template-columns: 1fr;
  }
  .scenario-metadata div + div {
    border-left: 0;
    border-top: 1px solid rgba(169, 178, 196, 0.18);
  }
  .scenario-band {
    min-height: 74px;
    padding: 0 20px;
    font-size: 18px;
  }
  .fit-grid {
    margin-inline: 0;
    width: 100%;
  }
  .limits-ledger,
  .fit-ledger {
    padding: 28px 20px;
  }
  .limit-row {
    grid-template-columns: 82px 1fr;
    gap: 10px;
  }
  .ledger-group {
    grid-template-columns: 1fr;
  }
  .quiz-frame form {
    padding: 22px 16px;
  }
  .quiz-question {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 0;
  }
  .quiz-options {
    grid-template-columns: 1fr;
  }
  .quiz-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .quiz-press {
    width: 100%;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-wide {
    grid-column: auto;
  }
  .state-panel {
    min-height: 520px;
    padding: 34px 20px;
  }
  .state-actions {
    width: 100%;
    flex-direction: column;
  }
  .faq-item > button {
    min-height: 76px;
  }
  .faq-item > button span {
    font-size: 17px;
  }
  .closing-section {
    padding: 0 0 90px;
  }
  .closing-band {
    padding: 30px 22px;
    min-height: 330px;
    gap: 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .mobile-sticky.is-visible {
    display: flex;
  }
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 78px;
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }
  .cookie-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .cookie-settings {
    flex-direction: column;
    gap: 8px;
  }
  .privacy-reopen {
    bottom: 76px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid article + article {
    border-left: 0;
    border-top: 1px solid rgba(169, 178, 196, 0.2);
  }
  .thank-you-grid {
    grid-template-columns: 1fr;
  }
  .site-footer {
    padding-bottom: 100px;
  }
}

@media (max-width: 420px) {
  .shell {
    width: min(100% - 24px, 1280px);
  }
  .operator-strip {
    font-size: 14px;
  }
  .hero-section {
    min-height: 680px;
  }
  .hero-copy h1 {
    font-size: 38px;
  }
  .hero-image {
    object-position: 72% center;
  }
  .process-card {
    grid-template-columns: 1fr;
  }
  .process-card > img {
    margin-bottom: 4px;
  }
  .process-card > div {
    grid-column: 1;
  }
  .scenario-lens {
    aspect-ratio: 3 / 4;
  }
  .limit-row {
    grid-template-columns: 1fr;
  }
  .quiz-progress {
    gap: 10px;
  }
}

/* === Assurance strip (bezpieczeństwo / legalność / przejrzystość) === */
.assurance-section {
  padding: 34px 0;
  border-block: 1px solid rgba(169, 178, 196, 0.16);
  background: var(--bg-deep);
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.assurance-grid article h3 {
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.assurance-grid article h3::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.assurance-grid article p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

/* === Access panel (CTA do quizu na stronie głównej) === */
.access-panel {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(169, 178, 196, 0.28);
  border-radius: var(--radius-panel);
  background: rgba(8, 12, 21, 0.94);
  box-shadow: 0 38px 90px rgba(2, 4, 9, 0.42);
  text-align: center;
}

.access-press {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 38px;
  font-size: 17px;
}

.access-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin-top: 20px;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.access-meta span {
  padding: 6px 12px;
  border: 1px solid rgba(169, 178, 196, 0.22);
  border-radius: 999px;
}

.access-panel .quiz-legal-note {
  margin: 22px auto 0;
}

/* === Strona /quiz === */
.quiz-page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(rgba(8, 12, 21, 0.9), rgba(8, 12, 21, 0.97)),
    url("../img/plate-rings.webp") center / cover no-repeat;
}

.quiz-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px clamp(20px, 4vw, 44px);
  border-bottom: 1px solid rgba(169, 178, 196, 0.16);
  background: rgba(8, 12, 21, 0.82);
}

.quiz-main {
  flex: 1;
  width: min(820px, 100% - 32px);
  margin: 0 auto;
  padding: clamp(30px, 6vw, 64px) 0 44px;
}

.quiz-main h1 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 500;
  line-height: 1.12;
}

.quiz-lead {
  max-width: 640px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.quiz-step {
  padding: clamp(24px, 5vw, 50px);
  animation: quiz-step-in 240ms ease;
}

@keyframes quiz-step-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quiz-step .quiz-question {
  grid-template-columns: 1fr;
  gap: 18px;
  border-bottom: 0;
  padding: 6px 0 10px;
}
.quiz-step .quiz-question legend {
  font-size: clamp(20px, 2.6vw, 26px);
}
.quiz-step .quiz-options {
  grid-template-columns: 1fr;
}
.quiz-step .radio-option {
  min-height: 58px;
  padding: 14px 16px;
}
.quiz-step .quiz-actions {
  padding-top: 20px;
}

.quiz-hint {
  margin: -6px 0 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.quiz-page .quiz-legal-note {
  margin-top: 26px;
}

.quiz-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  padding: 20px;
  border-top: 1px solid rgba(169, 178, 196, 0.16);
  background: rgba(8, 12, 21, 0.82);
  font-size: 13px;
}

.quiz-foot a {
  color: var(--muted);
}
.quiz-foot a:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  .assurance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .assurance-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .quiz-topbar .nav-trust {
    display: none;
  }
  .quiz-step .quiz-actions {
    flex-direction: column-reverse;
    align-items: stretch;
    text-align: center;
  }
}

/* ============================================================
   SIGNATURE LAYER — premium navy & champagne redesign
   Editorial serif display + hairline gold details
   ============================================================ */

h1,
h2,
.state-panel h3,
.quiz-question legend,
.form-intro h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.005em;
}

h1 {
  line-height: 1.06;
}

.gilded {
  font-style: normal;
  background: linear-gradient(
    105deg,
    #e9cd92 0%,
    #d9b26a 42%,
    #f3e3bb 58%,
    #c39a4e 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Eyebrow — gold hairline + tracked mono */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
  flex: 0 0 auto;
}

/* Primary press — champagne gradient, soft bloom */
.quiz-press,
.hero-calibrate,
.nav-target {
  background: linear-gradient(160deg, #e6c887 0%, #d9b26a 48%, #c69c53 100%);
  box-shadow: inset 0 1px 0 rgba(255, 244, 214, 0.5),
    inset 0 -3px 0 rgba(66, 45, 10, 0.28), 0 10px 30px rgba(217, 178, 106, 0.16);
}

.quiz-press:hover,
.hero-calibrate:hover,
.nav-target:hover {
  filter: brightness(1.06);
  box-shadow: inset 0 1px 0 rgba(255, 244, 214, 0.55),
    inset 0 -3px 0 rgba(66, 45, 10, 0.28), 0 14px 40px rgba(217, 178, 106, 0.26);
}

/* Hero — quiet luxury: deep vignette + gold aura */
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      1000px 460px at 78% 18%,
      rgba(217, 178, 106, 0.13),
      transparent 62%
    ),
    radial-gradient(
      900px 520px at 8% 100%,
      rgba(8, 12, 21, 0.55),
      transparent 60%
    );
}

.hero-section .shell {
  position: relative;
  z-index: 2;
}

.hero-readout {
  border: 1px solid rgba(217, 178, 106, 0.34);
  background: rgba(8, 12, 21, 0.62);
  backdrop-filter: blur(10px);
}

/* Cards — hairline gold reveal on hover */
.process-card,
.trust-grid article,
.feature-bento article,
.assurance-grid article,
.onboarding-list article {
  position: relative;
  transition: transform 200ms ease, border-color 200ms ease,
    box-shadow 200ms ease;
}

.process-card::after,
.feature-bento article::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(217, 178, 106, 0.55),
    transparent
  );
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.process-card:hover::after,
.feature-bento article:hover::after {
  opacity: 1;
}

.process-card:hover,
.feature-bento article:hover,
.trust-grid article:hover {
  border-color: rgba(217, 178, 106, 0.38);
  transform: translateY(-2px);
}

/* Section numerals — editorial serif */
.evidence-list article > span,
.trust-grid article > span,
.onboarding-list article > span,
.thank-you-grid span {
  font-family: "Fraunces", Georgia, serif;
  font-size: 15px;
  color: var(--accent);
}

/* Assurance strip — gold dot upgraded to diamond */
.assurance-grid article h3::before {
  border-radius: 1px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #eed9a8, #c69c53);
}

/* Ledger rows — warm hairlines */
.limit-row span,
.scenario-metadata span,
.quiz-progress,
.state-label,
.access-meta,
.nav-trust {
  color: color-mix(in srgb, var(--accent) 72%, var(--muted));
}

/* Inputs — navy wells with gold focus */
.form-grid input:focus,
.form-grid select:focus,
.nurture-panel input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217, 178, 106, 0.16);
}

.radio-option:has(input:checked) {
  border-color: var(--accent);
  background: rgba(217, 178, 106, 0.1);
  box-shadow: inset 0 0 0 1px rgba(217, 178, 106, 0.35);
}

/* Scenario band + closing split — gilded frames */
.scenario-band,
.closing-split {
  border: 1px solid rgba(217, 178, 106, 0.4);
  background: linear-gradient(
      120deg,
      rgba(217, 178, 106, 0.14),
      rgba(217, 178, 106, 0.03) 55%
    ),
    rgba(8, 12, 21, 0.6);
  color: var(--text);
}

.closing-split strong {
  color: var(--accent);
}

/* Статичная двухстрочная CTA вместо hover-свопа (не течёт за рамку) */
.closing-split {
  height: auto;
  min-height: 66px;
  padding: 16px 22px;
  display: grid;
  gap: 4px;
  place-items: center;
  white-space: normal;
  text-align: center;
}

.closing-split span,
.closing-split strong {
  position: static;
  transform: none;
  transition: none;
}

.closing-split:hover span {
  transform: none;
}
.closing-split:hover strong {
  transform: none;
}
.closing-split span {
  font-size: 15px;
}
.closing-split strong {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.scenario-band:hover,
.closing-split:hover {
  border-color: rgba(217, 178, 106, 0.75);
}

/* Footer — deep ink with gold top rule */
.site-footer {
  border-top: 1px solid rgba(217, 178, 106, 0.28);
}

/* Quiz page — vault ambience */
.quiz-page {
  background: radial-gradient(
      900px 400px at 82% 0%,
      rgba(217, 178, 106, 0.1),
      transparent 60%
    ),
    linear-gradient(rgba(8, 12, 21, 0.92), rgba(8, 12, 21, 0.97)),
    url("../img/plate-rings.webp") center / cover no-repeat;
}

.quiz-topbar {
  backdrop-filter: blur(12px);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .quiz-step {
    animation: none;
  }
  .process-card,
  .feature-bento article,
  .trust-grid article {
    transition: none;
  }
}

/* === Accessibility / readability fixes (art-direction QA pass) === */

/* Прогресс-бар квиза — заметнее */
.progress-rail {
  height: 3px;
}

/* Контраст ссылок в футерах и юридических блоках */
.footer-links a,
.footer-document-link,
.quiz-foot a {
  color: #b9c1d2;
}

.footer-links a:hover,
.footer-document-link:hover,
.quiz-foot a:hover {
  color: var(--accent);
}

.rodo-copy,
.form-disclosure,
.callcenter-disclosure {
  color: #c9d0de;
}

/* Мобильный hero: сильнее скрим под текстом + тень на заголовке */
@media (max-width: 768px) {
  .hero-scrim {
    background: linear-gradient(
      180deg,
      rgba(8, 12, 21, 0.82) 0%,
      rgba(8, 12, 21, 0.6) 55%,
      rgba(8, 12, 21, 0.88) 100%
    );
  }
  .hero-copy h1,
  .hero-copy .hero-lead {
    text-shadow: 0 2px 18px rgba(4, 6, 12, 0.85);
  }
  .fit-group ul {
    line-height: 1.55;
  }
  .fit-group li {
    margin-bottom: 6px;
  }
}

/* ============================================================
   LIGHT PASS — компактный ритм, меньше визуального шума
   ============================================================ */

/* Секции: компактные отступы (страница короче ~35%) */
.process-section,
.features-section,
.scenario-section,
.fit-section,
.onboarding-section,
.transparency-section,
.quiz-section,
.faq-section {
  padding: 84px 0;
}

.closing-section {
  padding-bottom: 84px;
}
.center-heading,
.feature-heading,
.scenario-heading,
.quiz-heading {
  margin-bottom: 40px;
}

/* Тише тени и рамки */
.quiz-frame,
.access-panel {
  box-shadow: 0 16px 44px rgba(2, 4, 9, 0.26);
}

.process-card:hover,
.feature-bento article:hover,
.trust-grid article:hover {
  transform: none;
}

.hero-section::after {
  background: radial-gradient(
    1000px 460px at 78% 18%,
    rgba(217, 178, 106, 0.09),
    transparent 62%
  );
}

/* Убраны фоновые плиты — чистые поверхности */
.fit-background {
  display: none;
}

.quiz-section {
  background: radial-gradient(
      700px 320px at 50% 0%,
      rgba(217, 178, 106, 0.07),
      transparent 60%
    ),
    var(--bg-deep);
}

/* Блок "Dla kogo" — одна карточка, две колонки */
.fit-grid-solo {
  grid-template-columns: 1fr;
}

.fit-grid-solo .fit-ledger {
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
}

.fit-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 8px;
}

.fit-columns .fit-group {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .fit-columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* Компактнее подписи-дисклеймеры */
.section-disclosure {
  margin-top: 26px;
  font-size: 13px;
}
.onboarding-disclosure p {
  font-size: 13px;
}

/* Operator strip — тоньше */
.operator-strip {
  min-height: 44px;
  font-size: 13px;
}
.operator-inner {
  padding-block: 8px;
}

/* Мобайл: компактная таблица транспарентности */
@media (max-width: 768px) {
  .open-ledger article {
    padding: 14px 16px;
  }
  .open-ledger article strong {
    font-size: 14px;
  }
  .open-ledger article small {
    font-size: 11px;
  }
  .ledger-group {
    gap: 8px;
  }
}

[hidden] {
  display: none !important;
}

/* ============================================================
   FUNNEL 2.0 — карточки выбора, лоадер, форма, контакт
   ============================================================ */

.step-eyebrow {
  margin-bottom: 10px;
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.choice-grid {
  display: grid;
  gap: 12px;
}

.choice-card {
  position: relative;
  display: grid;
  gap: 4px;
  width: 100%;
  min-height: 64px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-field);
  background: rgba(16, 23, 37, 0.72);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.choice-card:hover {
  border-color: rgba(217, 178, 106, 0.55);
}

.choice-card.is-selected {
  border-color: var(--accent);
  background: rgba(217, 178, 106, 0.1);
  box-shadow: inset 0 0 0 1px rgba(217, 178, 106, 0.35);
}

.choice-card strong {
  font-size: 17px;
  font-weight: 600;
}

.choice-note {
  color: var(--muted);
  font-size: 13.5px;
}

.choice-badge {
  position: absolute;
  top: -9px;
  right: 14px;
  padding: 3px 10px;
  border-radius: 999px;
  background: linear-gradient(160deg, #e6c887, #c69c53);
  color: #241a09;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* Лоадер-терминал */
.loader-panel {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 26px;
  text-align: center;
}

.loader-spinner {
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  border: 2px solid rgba(217, 178, 106, 0.22);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: nx-spin 900ms linear infinite;
}

@keyframes nx-spin {
  to {
    transform: rotate(360deg);
  }
}

.loader-logs {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  color: var(--muted);
  text-align: left;
}

.loader-logs li {
  animation: quiz-step-in 300ms ease;
}
.loader-logs li::before {
  content: "› ";
  color: var(--accent);
}
.loader-logs li.is-final {
  color: var(--accent);
  font-weight: 700;
}

/* Бейдж доступа над формой */
.access-granted {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  padding: 7px 14px;
  border: 1px solid rgba(217, 178, 106, 0.4);
  border-radius: 999px;
  background: rgba(217, 178, 106, 0.08);
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.access-granted i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: nx-pulse 1.4s ease infinite;
}

@keyframes nx-pulse {
  50% {
    opacity: 0.35;
  }
}

/* CTA-дисклеймер под кнопкой hero */
.cta-disclaimer {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

/* Контактная страница */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 26px;
  margin-top: 38px;
}

.contact-card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-panel);
  background: var(--surface);
}

.contact-card h3 {
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 600;
}
.contact-card p {
  margin-bottom: 10px;
  color: var(--muted);
  line-height: 1.55;
}
.contact-card strong {
  color: var(--text);
  font-weight: 600;
}

.contact-form-panel textarea {
  width: 100%;
  min-height: 130px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-field);
  background: #0d1424;
  color: var(--text);
  font: inherit;
  resize: vertical;
}

.contact-form-panel textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217, 178, 106, 0.16);
  outline: none;
}

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

/* Мини-хедер юридических страниц */
.legal-topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(169, 178, 196, 0.16);
  font-size: 13.5px;
}

.legal-topnav a {
  color: #b9c1d2;
}
.legal-topnav a:hover {
  color: var(--accent);
}

.legal-shell h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 600;
}
.legal-shell p,
.legal-shell li {
  color: #c4ccdb;
  line-height: 1.65;
}
.legal-shell ol,
.legal-shell ul {
  padding-left: 22px;
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}
.legal-meta {
  margin-top: 8px;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}

/* Touch targets ≥ 48px */
.quiz-press,
.back-action,
.choice-card,
.nav-target,
.cookie-actions button {
  min-height: 48px;
}

/* === QA polish === */
.choice-grid {
  padding-top: 8px;
}
.choice-card {
  overflow: visible;
}
.choice-badge {
  z-index: 2;
}

.loader-logs {
  font-size: 14.5px;
  gap: 12px;
}

/* Чекбоксы согласий — видимая рамка на тёмном фоне */
.consent-row input {
  box-shadow: 0 0 0 1px #6b7690;
  border-radius: 3px;
  background: #0d1424;
}
.consent-row input:checked {
  box-shadow: 0 0 0 1px var(--accent);
}

/* Контактные карточки — естественная высота */
.contact-grid {
  align-items: start;
}

/* === Opinie użytkowników === */
.reviews-section {
  padding: 84px 0;
  background: radial-gradient(
      720px 300px at 18% 0%,
      rgba(217, 178, 106, 0.06),
      transparent 60%
    ),
    var(--bg);
}

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

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-panel);
  background: var(--surface);
}

.review-card::before {
  content: "„";
  position: absolute;
  top: 6px;
  right: 18px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 64px;
  line-height: 1;
  color: rgba(217, 178, 106, 0.28);
}

.review-quote {
  margin: 0;
  color: #d3dae6;
  font-size: 15.5px;
  line-height: 1.6;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(217, 178, 106, 0.45);
  border-radius: 50%;
  background: rgba(217, 178, 106, 0.1);
  color: var(--accent);
  font-family: "Fraunces", Georgia, serif;
  font-size: 15px;
}

.review-author strong {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
}
.review-author small {
  color: var(--muted);
  font-size: 12.5px;
}

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

/* === Motion layer: scroll-reveal + CTA sheen === */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.hero-calibrate,
.quiz-press {
  position: relative;
  overflow: hidden;
}

.hero-calibrate::before,
.quiz-press::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent,
    rgba(255, 250, 235, 0.35),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 600ms ease;
  pointer-events: none;
}

.hero-calibrate:hover::before,
.quiz-press:hover::before {
  left: 130%;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-calibrate::before,
  .quiz-press::before {
    display: none;
  }
}

/* ============================================================
   SCENARIO ENGINE 2.0 — живой терминал (canvas)
   ============================================================ */
.terminal {
  border: 1px solid rgba(217, 178, 106, 0.3);
  border-radius: var(--radius-panel);
  background: linear-gradient(
    180deg,
    rgba(13, 20, 36, 0.96),
    rgba(7, 10, 18, 0.98)
  );
  box-shadow: 0 24px 70px rgba(2, 4, 9, 0.4),
    inset 0 1px 0 rgba(217, 178, 106, 0.12);
  overflow: hidden;
}

.terminal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(169, 178, 196, 0.14);
  background: rgba(8, 12, 21, 0.7);
}

.terminal-tabs {
  display: flex;
  gap: 6px;
}

.terminal-tabs button {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
}

.terminal-tabs button:hover {
  color: var(--text);
}

.terminal-tabs button.is-active {
  border-color: rgba(217, 178, 106, 0.5);
  background: rgba(217, 178, 106, 0.1);
  color: var(--accent);
}

.terminal-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.terminal-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: nx-pulse 1.3s ease infinite;
}

.terminal-body {
  position: relative;
  height: clamp(300px, 42vw, 440px);
}

.terminal-body canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.terminal-alert {
  position: absolute;
  right: clamp(12px, 3vw, 28px);
  top: clamp(12px, 3vw, 28px);
  width: min(300px, calc(100% - 32px));
  padding: 18px;
  border: 1px solid rgba(217, 178, 106, 0.55);
  border-radius: var(--radius-field);
  background: rgba(8, 12, 21, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 44px rgba(2, 4, 9, 0.5);
  animation: quiz-step-in 320ms ease;
}

.terminal-alert > span {
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.terminal-alert strong {
  display: block;
  margin: 8px 0 4px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  font-weight: 500;
}

.terminal-alert p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.terminal-alert .quiz-press {
  width: 100%;
  min-height: 44px;
  font-size: 13.5px;
}

.terminal-foot {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 10px 26px;
  align-items: center;
  padding: 14px 18px;
  border-top: 1px solid rgba(169, 178, 196, 0.14);
  background: rgba(8, 12, 21, 0.7);
}

.terminal-foot > div > span {
  display: block;
  color: color-mix(in srgb, var(--accent) 72%, var(--muted));
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.terminal-foot > div > strong {
  font-size: 14px;
  font-weight: 600;
}

.terminal-logs {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  color: #b9c1d2;
  text-align: right;
}

.terminal-logs li {
  animation: quiz-step-in 260ms ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.terminal-logs li span {
  color: rgba(167, 175, 192, 0.5);
  margin-right: 6px;
}
.terminal-logs li.is-final {
  color: var(--accent);
}

@media (max-width: 860px) {
  .terminal-foot {
    grid-template-columns: 1fr 1fr;
  }
  .terminal-logs {
    grid-column: 1 / -1;
    text-align: left;
  }
  .terminal-statuscell {
    grid-column: 1 / -1;
  }
  .terminal-body {
    height: clamp(260px, 78vw, 360px);
  }
}

/* ============================================================
   AUDIENCE — Dla kogo (чистая сетка, без legacy-обёрток)
   ============================================================ */
.audience-section {
  padding: 84px 0;
  background: radial-gradient(
      720px 300px at 82% 0%,
      rgba(217, 178, 106, 0.05),
      transparent 60%
    ),
    var(--bg-deep);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1020px;
  margin: 0 auto;
}

.audience-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-panel);
  background: var(--surface);
}

.audience-yes {
  border-top: 2px solid rgba(217, 178, 106, 0.65);
}
.audience-no {
  border-top: 2px solid rgba(224, 122, 130, 0.55);
}

.audience-card h3 {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
}

.audience-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-card li {
  position: relative;
  padding-left: 26px;
  color: #c9d1e0;
  font-size: 15px;
  line-height: 1.55;
}

.audience-yes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.audience-no li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--error);
  font-weight: 700;
}

.audience-note {
  max-width: 1020px;
  margin: 22px auto 0;
  padding: 14px 18px;
  border-left: 2px solid rgba(217, 178, 106, 0.5);
  background: rgba(217, 178, 106, 0.05);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

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

/* Фото-аватары отзывов */
.review-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(217, 178, 106, 0.45);
}

.iti__country-list {
  color: #04070e;
}
