@font-face {
  font-family: "PP Neue Montreal";
  src: url("/fonts/pp-neue-montreal/PPNeueMontreal-Book.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 450;
  font-display: swap;
}

@font-face {
  font-family: "PP Neue Montreal";
  src: url("/cdn.prod.website-files.com/697b3b78220c15e1a8ecaeb2/69e8b85dd59e1682e8287e73_PPNeueMontreal-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --exposure-bg: #002758;
  --exposure-panel: rgba(255, 255, 255, 0.045);
  --exposure-panel-hover: rgba(221, 231, 242, 0.095);
  --exposure-line: rgba(221, 231, 242, 0.2);
  --exposure-line-strong: rgba(221, 231, 242, 0.48);
  --exposure-text: #ffffff;
  --exposure-muted: #b8cbe0;
  --exposure-dim: #7895b7;
  --exposure-positive: #dde7f2;
  --exposure-danger: #ffd2cf;
  --exposure-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html,
body {
  width: 100%;
  min-width: 0;
  min-height: 100%;
  margin: 0;
  background: var(--exposure-bg);
}

body.ai-exposure-page {
  overflow: hidden;
  color: var(--exposure-text);
  background:
    radial-gradient(circle at 78% 12%, rgba(221, 231, 242, 0.085), transparent 27rem),
    radial-gradient(circle at 12% 82%, rgba(120, 149, 183, 0.09), transparent 31rem),
    var(--exposure-bg);
  font-family: "PP Neue Montreal", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-weight: 350;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.ai-exposure-page::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(221, 231, 242, 0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(221, 231, 242, 0.042) 1px, transparent 1px);
  background-size: clamp(4.5rem, 8vw, 8.5rem) clamp(4.5rem, 8vw, 8.5rem);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 76%);
  pointer-events: none;
  content: "";
}

body.ai-exposure-page::after {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, #009246 0 33.333%, #d7d8da 33.333% 66.666%, #ce2b37 66.666%);
  opacity: 0.7;
  content: "";
}

.ai-exposure-page :where(button, input, select) { font: inherit; }
.ai-exposure-page :where(button, a, label, input, select) { -webkit-tap-highlight-color: transparent; }
.ai-exposure-page ::selection { background: #ffffff; color: #002758; }

.exposure-app {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  min-height: 34rem;
  grid-template-rows: auto auto minmax(0, 1fr);
  overflow: hidden;
}

.exposure-topbar {
  display: grid;
  width: min(100% - 3rem, 82rem);
  margin-inline: auto;
  padding: 1.2rem 0 1rem;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: end;
}

.exposure-brand { min-width: 0; }

.exposure-brand__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.42rem;
  color: var(--exposure-dim);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.exposure-brand__eyebrow::before {
  width: 0.38rem;
  height: 0.38rem;
  background: #ffffff;
  box-shadow: 0.48rem 0 0 #7895b7;
  content: "";
}

.exposure-brand strong {
  display: block;
  color: var(--exposure-text);
  font-size: clamp(1.15rem, 1.8vw, 1.42rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.exposure-brand p {
  margin: 0.46rem 0 0;
  color: var(--exposure-muted);
  font-size: 0.75rem;
  line-height: 1.35;
}

.exposure-topbar__meta {
  padding-bottom: 0.12rem;
  color: var(--exposure-dim);
  font-size: 0.65rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.exposure-progress-wrap {
  display: grid;
  width: min(100% - 3rem, 82rem);
  margin-inline: auto;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.1rem;
  align-items: center;
}

.exposure-back {
  display: inline-flex;
  min-width: 4.8rem;
  min-height: 2.75rem;
  padding: 0;
  align-items: center;
  border: 0;
  color: var(--exposure-muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  transition: color 180ms ease;
}

.exposure-back:hover { color: var(--exposure-text); }
.exposure-back[hidden] { visibility: hidden; display: inline-flex; }

.exposure-progress {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.exposure-progress::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--progress, 0%);
  background: #ffffff;
  content: "";
  transition: width 620ms var(--exposure-ease);
}

.exposure-progress-label {
  min-width: 5.25rem;
  color: var(--exposure-muted);
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.exposure-stage {
  display: grid;
  min-width: 0;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(2rem, 5.5vh, 4.5rem) 1.5rem max(2rem, env(safe-area-inset-bottom));
  place-items: start center;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 180ms ease, transform 460ms var(--exposure-ease);
}

.exposure-stage.is-leaving { opacity: 0; transform: translate3d(0, 0.85rem, 0); }
.exposure-stage.is-entering { opacity: 0; transform: translate3d(0, -0.85rem, 0); }

.exposure-question,
.exposure-lead,
.exposure-success {
  width: min(100%, 56rem);
  margin: auto;
}

.exposure-question__index {
  display: grid;
  width: min(100%, 34rem);
  margin: 0 auto 1.3rem;
  grid-template-columns: auto minmax(1rem, 3rem) auto;
  gap: 0.7rem;
  align-items: center;
  justify-content: center;
  color: var(--exposure-dim);
  font-size: 0.62rem;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.exposure-question__index i { width: 100%; height: 1px; background: var(--exposure-line); }

.exposure-question__title,
.exposure-lead h1,
.exposure-success h1 {
  max-width: 20ch;
  margin: 0 auto;
  color: var(--exposure-text);
  font-size: clamp(2.15rem, 4.25vw, 4.15rem);
  font-weight: 300;
  letter-spacing: -0.052em;
  line-height: 0.98;
  text-align: center;
  text-wrap: balance;
}

.exposure-question__title:focus,
.exposure-lead h1:focus,
.exposure-success h1:focus { outline: 0; }

.exposure-question__description,
.exposure-lead__intro {
  max-width: 48rem;
  margin: 1.1rem auto 0;
  color: var(--exposure-muted);
  font-size: clamp(0.96rem, 1.2vw, 1.08rem);
  line-height: 1.5;
  text-align: center;
  text-wrap: pretty;
}

.exposure-options {
  display: grid;
  max-width: 50rem;
  margin: clamp(1.8rem, 4vh, 3rem) auto 0;
  padding: 0;
  border: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.58rem;
}

.exposure-option {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 4.5rem;
  padding: 0.88rem 2.9rem 0.88rem 0.9rem;
  border: 1px solid var(--exposure-line);
  background: var(--exposure-panel);
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.86rem;
  align-items: center;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 240ms var(--exposure-ease);
}

.exposure-option:hover { border-color: var(--exposure-line-strong); background: var(--exposure-panel-hover); transform: translateY(-1px); }
.exposure-option.is-selected { border-color: rgba(255, 255, 255, 0.7); background: rgba(221, 231, 242, 0.14); }

.exposure-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.exposure-option:has(input:focus-visible) { outline: 2px solid #ffffff; outline-offset: 3px; }

.exposure-option__marker {
  display: grid;
  width: 1.65rem;
  height: 1.65rem;
  place-items: center;
  border: 1px solid var(--exposure-line);
  color: var(--exposure-dim);
  font-size: 0.58rem;
  font-variant-numeric: tabular-nums;
}

.exposure-option__copy { min-width: 0; }
.exposure-option__copy strong { display: block; color: var(--exposure-text); font-size: 0.94rem; font-weight: 400; line-height: 1.2; }
.exposure-option__copy small { display: block; margin-top: 0.27rem; color: var(--exposure-muted); font-size: 0.73rem; line-height: 1.3; }

.exposure-option > i {
  position: absolute;
  top: 50%;
  right: 1rem;
  display: grid;
  width: 1rem;
  height: 1rem;
  place-items: center;
  border: 1px solid var(--exposure-line-strong);
  border-radius: 50%;
  transform: translateY(-50%);
}

.exposure-options--multiple .exposure-option > i { border-radius: 1px; }
.exposure-option.is-selected > i { border-color: #ffffff; background: #ffffff; box-shadow: inset 0 0 0 3px #002758; }

.exposure-detail {
  max-width: 50rem;
  margin: 0.6rem auto 0;
  padding: 1rem;
  border: 1px solid var(--exposure-line);
  background: rgba(255, 255, 255, 0.025);
}

.exposure-detail[hidden] { display: none; }
.exposure-detail label { display: flex; justify-content: space-between; color: var(--exposure-muted); font-size: 0.72rem; }
.exposure-detail label span { color: var(--exposure-dim); }

.exposure-detail input,
.exposure-form-grid input,
.exposure-form-grid select {
  width: 100%;
  min-width: 0;
  height: 3rem;
  padding: 0 0.1rem;
  border: 0;
  border-bottom: 1px solid var(--exposure-line-strong);
  border-radius: 0;
  outline: 0;
  color: var(--exposure-text);
  background: transparent;
  appearance: none;
  font-size: 1rem;
  transition: border-color 180ms ease;
}

.exposure-detail input:focus,
.exposure-form-grid input:focus,
.exposure-form-grid select:focus { border-color: #fff; }
.exposure-form-grid select { background-image: linear-gradient(45deg, transparent 50%, #8f969e 50%), linear-gradient(135deg, #8f969e 50%, transparent 50%); background-position: calc(100% - 13px) 1.35rem, calc(100% - 8px) 1.35rem; background-size: 5px 5px; background-repeat: no-repeat; }
.exposure-form-grid select option { color: #002758; background: #fff; }
.exposure-detail input::placeholder,
.exposure-form-grid input::placeholder { color: #626970; opacity: 1; }

.exposure-question__actions {
  display: flex;
  max-width: 50rem;
  margin: 1.1rem auto 0;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.exposure-question__actions small,
.exposure-submit-row small { color: var(--exposure-dim); font-size: 0.7rem; line-height: 1.35; }

.exposure-primary {
  display: inline-flex;
  min-width: 12.5rem;
  min-height: 3.35rem;
  padding: 0 1rem 0 1.2rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid #ffffff;
  border-radius: 0;
  color: #002758;
  background: #ffffff;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 450;
  transition: color 180ms ease, background-color 180ms ease, transform 220ms var(--exposure-ease);
}

.exposure-primary:hover:not(:disabled) { color: #ffffff; background: transparent; transform: translateY(-1px); }
.exposure-primary:disabled { cursor: not-allowed; opacity: 0.35; }

.exposure-lead { max-width: 62rem; }
.exposure-lead h1 { max-width: 12ch; }

.exposure-lead form { margin-top: clamp(1.8rem, 4vh, 2.8rem); }
.exposure-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 1.5rem; }
.exposure-form-grid label { display: grid; min-width: 0; gap: 0.35rem; color: var(--exposure-muted); font-size: 0.72rem; }
.exposure-form-grid label.is-wide { grid-column: 1 / -1; }

.exposure-consents {
  display: grid;
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--exposure-line);
  gap: 0.8rem;
}

.exposure-consents label { display: grid; grid-template-columns: 1.15rem minmax(0, 1fr); gap: 0.8rem; align-items: start; color: var(--exposure-muted); cursor: pointer; font-size: 0.76rem; line-height: 1.42; }
.exposure-consents input { width: 1.1rem; height: 1.1rem; margin: 0.05rem 0 0; accent-color: #ffffff; }
.exposure-consents a { color: #ffffff; text-underline-offset: 3px; }
.exposure-consents em { color: var(--exposure-dim); font-style: normal; }

.exposure-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.exposure-error { min-height: 1.4rem; margin: 0.85rem 0 0; color: var(--exposure-danger); font-size: 0.78rem; line-height: 1.4; }
.exposure-error:empty { visibility: hidden; }
.exposure-error:focus { outline: 0; }

.exposure-submit-row { display: flex; margin-top: 0.25rem; align-items: center; gap: 1.2rem; }
.exposure-submit-row small { max-width: 34rem; }

.exposure-spinner {
  width: 0.95rem;
  height: 0.95rem;
  border: 1px solid rgba(0, 39, 88, 0.25);
  border-top-color: #002758;
  border-radius: 50%;
  animation: exposure-spin 0.8s linear infinite;
}

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

.exposure-success { max-width: 49rem; text-align: center; }
.exposure-success__mark { position: relative; width: 4rem; height: 4rem; margin: 0 auto 2rem; border: 1px solid var(--exposure-line-strong); }
.exposure-success__mark span,
.exposure-success__mark i { position: absolute; background: #ffffff; content: ""; }
.exposure-success__mark span { top: 50%; left: 0.9rem; width: 1.1rem; height: 1px; transform: rotate(45deg); }
.exposure-success__mark i { top: 48%; left: 1.6rem; width: 1.75rem; height: 1px; transform: rotate(-48deg); }
.exposure-success > p { margin: 0 0 1rem; color: var(--exposure-dim); font-size: 0.66rem; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; }
.exposure-success__copy { display: grid; max-width: 44rem; margin: 1.5rem auto 0; gap: 0.7rem; color: var(--exposure-muted); font-size: 1rem; line-height: 1.5; }
.exposure-success__copy p { margin: 0; }
.exposure-success > small { display: block; max-width: 38rem; margin: 1.2rem auto 0; color: var(--exposure-dim); font-size: 0.72rem; line-height: 1.45; }
.exposure-success > a { display: inline-flex; margin-top: 2rem; padding-bottom: 0.35rem; border-bottom: 1px solid var(--exposure-line-strong); color: var(--exposure-text); gap: 2rem; font-size: 0.8rem; text-decoration: none; }

.exposure-live,
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

.ai-exposure-page :focus-visible { outline: 2px solid #ffffff; outline-offset: 3px; }
.ai-exposure-page :is(.anpai-consent, .anpai-consent-settings, .anpai-consent-launcher) { display: none !important; }

@media (max-width: 720px) {
  .exposure-app { min-height: 31rem; }
  .exposure-topbar { width: calc(100% - 2rem); padding: max(0.85rem, env(safe-area-inset-top)) 0 0.78rem; align-items: start; }
  .exposure-brand__eyebrow { margin-bottom: 0.35rem; font-size: 0.58rem; }
  .exposure-brand strong { font-size: 1.08rem; }
  .exposure-brand p { max-width: 21rem; margin-top: 0.35rem; font-size: 0.68rem; }
  .exposure-topbar__meta { display: none; }
  .exposure-progress-wrap { width: calc(100% - 2rem); gap: 0.65rem; }
  .exposure-back { min-width: 3.6rem; font-size: 0.72rem; }
  .exposure-progress-label { min-width: 4.7rem; font-size: 0.68rem; }
  .exposure-stage { padding: 1.6rem 1rem max(1.5rem, env(safe-area-inset-bottom)); }
  .exposure-question__index { margin-bottom: 1rem; }
  .exposure-question__title,
  .exposure-lead h1,
  .exposure-success h1 { font-size: clamp(2rem, 10vw, 2.75rem); line-height: 1; }
  .exposure-question__description,
  .exposure-lead__intro { margin-top: 0.85rem; font-size: 0.94rem; line-height: 1.42; }
  .exposure-options { margin-top: 1.45rem; grid-template-columns: minmax(0, 1fr); gap: 0.5rem; }
  .exposure-option { min-height: 3.85rem; padding: 0.72rem 2.7rem 0.72rem 0.78rem; gap: 0.72rem; }
  .exposure-option__marker { width: 1.45rem; height: 1.45rem; }
  .exposure-option__copy strong { font-size: 0.91rem; }
  .exposure-option__copy small { font-size: 0.7rem; }
  .exposure-question__actions { position: sticky; bottom: -1px; z-index: 3; margin-top: 0.75rem; padding: 0.7rem 0 max(0.2rem, env(safe-area-inset-bottom)); background: linear-gradient(transparent, var(--exposure-bg) 22%); flex-direction: column-reverse; align-items: stretch; }
  .exposure-question__actions small { text-align: center; }
  .exposure-primary { width: 100%; min-height: 3.3rem; }
  .exposure-form-grid { grid-template-columns: minmax(0, 1fr); gap: 0.85rem; }
  .exposure-form-grid label.is-wide { grid-column: auto; }
  .exposure-form-grid input,
  .exposure-form-grid select { height: 3.1rem; font-size: 1rem; }
  .exposure-consents { margin-top: 1.15rem; }
  .exposure-consents label { font-size: 0.78rem; }
  .exposure-submit-row { flex-direction: column; align-items: stretch; }
  .exposure-submit-row small { text-align: center; }
  .exposure-success__copy { font-size: 0.94rem; }
}

@media (max-height: 700px) and (min-width: 721px) {
  .exposure-topbar { padding-top: 0.8rem; }
  .exposure-brand p { display: none; }
  .exposure-stage { padding-top: 1.5rem; padding-bottom: 1.5rem; }
  .exposure-question__title { font-size: clamp(2.1rem, 4.3vw, 3.2rem); }
  .exposure-options { margin-top: 1.4rem; }
  .exposure-option { min-height: 3.8rem; }
}

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