@font-face{font-family:Onest;src:url('/assets/fonts/Onest-Regular.ttf') format('truetype');font-weight:400;font-display:swap}
@font-face{font-family:Onest;src:url('/assets/fonts/Onest-Medium.ttf') format('truetype');font-weight:500;font-display:swap}
@font-face{font-family:Onest;src:url('/assets/fonts/Onest-SemiBold.ttf') format('truetype');font-weight:600;font-display:swap}
@font-face{font-family:Onest;src:url('/assets/fonts/Onest-Bold.ttf') format('truetype');font-weight:700;font-display:swap}
:root{--font-onest:Onest}
:root {
  --bg: #ffffff;
  --surface: #f2f7f6;
  --surface-strong: #e3f0ee;
  --ink: #0f1e1c;
  --muted: #586765;
  --faint: #8d9896;
  --line: #d1dad9;
  --line-strong: #aebebd;
  --primary: #006862;
  --primary-dark: #004844;
  --primary-pale: #cfebe8;
  --error: #be222d;
  --radius: 8px;
  --header-height: 72px;
  --container: 1320px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.capture-mode {
  scrollbar-width: none;
}

html.capture-mode::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-onest), "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

.cookie-notice {
  position: fixed;
  z-index: 19;
  inset-inline-start: max(12px, env(safe-area-inset-left));
  bottom: max(12px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  max-width: min(640px, calc(100% - 24px));
  padding: 12px 12px 12px 16px;
  border-radius: 12px;
  background: var(--bg);
  box-shadow: 0 4px 24px rgba(15, 30, 28, 0.18);
}

.cookie-notice p {
  min-width: 0;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.cookie-notice button {
  flex-shrink: 0;
  min-height: 44px;
  padding: 10px 20px;
  border: 0;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--bg);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-notice button:hover,
.cookie-notice button:active {
  background: var(--primary-dark);
}

body.menu-open .cookie-notice {
  display: none;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

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

.container {
  position: relative;
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.shot {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  scroll-margin-top: var(--header-height);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-height);
  border-bottom: 1px solid rgba(209, 218, 217, 0.82);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(calc(100% - 64px), var(--container));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  flex: 0 0 auto;
  display: inline-grid;
  align-items: center;
  justify-items: start;
  gap: 4px;
  color: var(--ink);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1;
  text-decoration: none;
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand-name {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand-domain {
  color: var(--primary);
  font-weight: 500;
}

.brand-description {
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: normal;
  white-space: nowrap;
}

.brand-mark {
  width: 48px;
  height: 42px;
  overflow: visible;
}

.brand-mark path {
  fill: none;
  stroke: var(--primary);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark circle {
  fill: var(--bg);
  stroke: var(--primary);
  stroke-width: 3;
}

.site-nav {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  align-self: stretch;
  gap: 28px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--primary-dark);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  min-height: 52px;
  min-width: 170px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button:active {
  transform: translateY(1px);
}

.button-primary {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
}

.button-primary:hover {
  border-color: var(--primary-dark);
  background: var(--primary-dark);
}

.button-secondary {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary);
}

.button-secondary:hover {
  background: var(--primary-pale);
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(48px, 4.2vw, 60px);
  font-weight: 700;
  letter-spacing: -0.048em;
  line-height: 1.04;
}

h1 span {
  color: var(--primary);
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(38px, 3.6vw, 54px);
  font-weight: 700;
  letter-spacing: -0.042em;
  line-height: 1.08;
}

h3 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

h4 {
  margin-bottom: 16px;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.24;
}

.hero {
  min-height: 940px;
  padding: 126px 0 76px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 65%, rgba(242, 247, 246, 0.72) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -6%;
  bottom: -17%;
  left: -6%;
  height: 38%;
  border-radius: 50% 50% 0 0 / 30% 30% 0 0;
  background: linear-gradient(170deg, rgba(227, 240, 238, 0.48), rgba(207, 235, 232, 0.68));
  transform: rotate(-3deg);
}

.hero-wash {
  position: absolute;
  z-index: 0;
  top: 140px;
  right: -140px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(207, 235, 232, 0.58) 0%, rgba(242, 247, 246, 0.38) 48%, transparent 72%);
}

.hero-grid {
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(390px, 0.78fr);
  align-items: center;
  gap: 40px;
}

.hero-copy-block {
  position: relative;
  z-index: 3;
  padding-bottom: 18px;
}

.hero-copy {
  max-width: 670px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.47;
}

.hero-copy p {
  margin-bottom: 13px;
}

.hero-copy strong {
  color: var(--primary);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.login-trigger {
  cursor: pointer;
}

body:has(.login-dialog[open], .document-lightbox[open]) {
  overflow: hidden;
}

.login-dialog {
  width: min(480px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  box-shadow: 0 24px 64px rgb(15 30 28 / 20%);
  overflow: auto;
  overscroll-behavior: contain;
}

.login-dialog::backdrop {
  background: rgb(15 30 28 / 48%);
}

.login-dialog-content {
  padding: 32px;
}

.login-dialog-close {
  position: absolute;
  inset-block-start: 12px;
  inset-inline-end: 12px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.login-dialog-close:hover {
  background: var(--surface);
  color: var(--ink);
}

.login-dialog-title {
  margin: 0 40px 20px 0;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.login-dialog-description {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.login-dialog-description p {
  margin-bottom: 12px;
}

.login-dialog-description p:last-child {
  margin-bottom: 0;
}

.login-dialog-link {
  width: 100%;
  white-space: normal;
}

.hero-actions > noscript {
  grid-column: 1 / -1;
}

.login-fallback {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 560px) {
  .login-dialog-content {
    padding: 28px 24px;
  }

  .login-dialog-title {
    font-size: 25px;
  }
}

.hero-statistics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.hero-statistic {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 6px;
}

.hero-statistic dt {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.hero-statistic dd {
  order: -1;
  margin: 0;
  color: var(--primary);
  font-size: 32px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.hero-statistics-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 560px) {
  .hero-statistics {
    gap: 12px;
  }

  .hero-statistic dt { font-size: 12px; }
  .hero-statistic dd {
    font-size: clamp(20px, 6.2vw, 28px);
    overflow-wrap: anywhere;
  }
}

.hero-route {
  position: absolute;
  z-index: 1;
  inset: 190px -20px 0 42%;
  pointer-events: none;
}

.hero-route svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-route .route-soft {
  fill: none;
  stroke: rgba(207, 235, 232, 0.95);
  stroke-width: 9;
  stroke-linecap: round;
}

.hero-route .route-line {
  fill: none;
  stroke: var(--primary);
  stroke-width: 2.2;
  stroke-linecap: round;
}

.hero-route .route-node circle {
  fill: var(--bg);
  stroke: var(--primary);
  stroke-width: 4;
  filter: drop-shadow(0 0 0.4rem rgba(0, 104, 98, 0.18));
}

.hero-route .route-number {
  fill: #8bcac5;
  font-family: "Onest", sans-serif;
  font-size: 34px;
  font-weight: 500;
}

.document-preview-trigger {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: inherit;
  cursor: zoom-in;
}

.document-lightbox {
  position: fixed;
  width: min(1180px, calc(100% - 32px));
  height: min(900px, calc(100dvh - 32px));
  max-width: none;
  max-height: none;
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  box-shadow: 0 24px 64px rgb(15 30 28 / 24%);
  overflow: hidden;
}

.document-lightbox[open] {
  display: flex;
  flex-direction: column;
}

.document-lightbox::backdrop {
  background: rgb(15 30 28 / 64%);
}

.document-lightbox-header {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.document-lightbox-title {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.document-lightbox-zoom,
.document-lightbox-close {
  flex: 0 0 auto;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--primary);
  cursor: pointer;
}

.document-lightbox-zoom {
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
}

.document-lightbox-close {
  display: grid;
  width: 44px;
  padding: 0;
  place-items: center;
}

.document-lightbox-zoom:hover,
.document-lightbox-close:hover {
  background: var(--surface-strong);
}

.document-lightbox-zoom:disabled {
  color: var(--muted);
  cursor: not-allowed;
}

.document-lightbox-stage {
  display: grid;
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
  padding: 24px;
  place-items: center;
  overflow: auto;
  overscroll-behavior: contain;
  background: var(--surface);
}

.document-lightbox-stage:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -3px;
}

.document-lightbox-image {
  display: block;
  min-width: 0;
  min-height: 0;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.document-lightbox-stage.is-zoomed {
  place-items: start;
}

.is-zoomed .document-lightbox-image {
  max-width: none;
  max-height: none;
}

.document-preview-error {
  margin: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 560px) {
  .document-lightbox-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 8px;
    padding: 12px;
  }

  .document-lightbox-title {
    font-size: 16px;
  }

  .document-lightbox-zoom {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
  }

  .document-lightbox-close {
    grid-column: 2;
    grid-row: 1;
  }

  .document-lightbox-stage {
    padding: 12px;
  }
}

.report-figure {
  --report-rotation: 5deg;
  position: relative;
  z-index: 3;
  width: min(370px, 100%);
  margin: 0 8px 0 auto;
  transform: rotate(var(--report-rotation));
}

.report-cover-link {
  display: block;
  border-radius: var(--radius);
  cursor: zoom-in;
}

.report-cover-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: 0 30px 70px rgb(0 72 68 / 15%);
}

.report-figure figcaption {
  margin-top: 20px;
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
  text-align: right;
  transform: rotate(calc(-1 * var(--report-rotation)));
}

.journey {
  padding: 96px 0 64px;
}

.journey-first {
  min-height: 900px;
  background: var(--bg);
}

.journey-first > .container {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  align-items: start;
  gap: 72px;
}

.section-heading {
  position: sticky;
  top: 126px;
  padding-right: 12px;
}

.section-heading h2 {
  max-width: 430px;
}

.section-heading::after {
  content: "";
  display: block;
  width: 96px;
  height: 2px;
  margin-top: 40px;
  background: var(--primary);
}

.journey-grid {
  position: relative;
}

.journey-grid-first {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  align-content: start;
  gap: 26px 34px;
}

.step-card {
  position: relative;
  z-index: 2;
  min-height: 0;
  padding: 24px 22px 22px 76px;
  border-top: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.88);
}

.step-card p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.step-card .step-time {
  margin-bottom: 0;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.step-index {
  position: absolute;
  top: 20px;
  left: 8px;
  color: var(--primary-pale);
  font-size: 58px;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
}

.step-one {
  margin-top: 0;
}

.step-two {
  margin-top: 54px;
  background: rgba(242, 247, 246, 0.92);
}

.step-three {
  grid-column: 1 / -1;
  width: 82%;
  margin-top: 0;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.93);
}

.step-path {
  position: absolute;
  z-index: 1;
  inset: 0 -20px -8px;
  pointer-events: none;
}

.step-path svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.step-path path {
  fill: none;
  stroke: var(--primary-pale);
  stroke-width: 10;
  stroke-linecap: round;
}

.step-path circle {
  fill: var(--bg);
  stroke: var(--primary);
  stroke-width: 4;
}

.journey-second {
  min-height: 900px;
  padding: 116px 0 84px;
  display: flex;
  align-items: center;
  background: var(--surface);
}

.journey-grid-second {
  display: grid;
  grid-template-columns: 80px minmax(0, 0.9fr) minmax(0, 1.25fr);
  grid-template-rows: 1fr 1fr;
  align-items: center;
  gap: 36px 40px;
}

.journey-continuation {
  grid-row: 1 / 3;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--primary);
  font-size: 34px;
  font-weight: 600;
}

.continuation-line {
  width: 2px;
  min-height: 340px;
  flex: 0 1 340px;
  background: linear-gradient(var(--primary), var(--primary-pale));
}

.journey-second .step-card {
  min-height: 0;
  padding: 30px 24px 30px 82px;
  background: transparent;
}

.journey-second .step-index {
  color: #b3dcd8;
}

.step-four {
  align-self: end;
}

.step-five {
  align-self: start;
}

.finish-report {
  position: relative;
  grid-column: 3;
  grid-row: 1 / 3;
  min-height: 610px;
  min-width: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.risk-card-preview {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: 680px;
  border-radius: var(--radius);
  color: var(--primary);
  text-decoration: none;
}

.risk-card-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 24px 56px rgb(0 72 68 / 14%);
  transform: rotate(2deg);
}

.risk-card-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 600;
}

.risk-card-preview:hover .risk-card-caption,
.risk-card-preview:focus-visible .risk-card-caption {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.finish-route {
  position: absolute;
  z-index: 1;
  width: 470px;
  height: 470px;
  border: 2px solid var(--primary-pale);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(30deg);
}

.finish-route::after {
  content: "";
  position: absolute;
  top: 38px;
  right: 36px;
  width: 16px;
  height: 16px;
  border: 4px solid var(--primary);
  border-radius: 50%;
  background: var(--surface);
}

.sample {
  min-height: 920px;
  padding: 132px 0 96px;
  display: flex;
  align-items: center;
  background: var(--bg);
}

.sample-orbit {
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 760px;
  height: 760px;
  border: 120px solid rgba(227, 240, 238, 0.55);
  border-radius: 50%;
}

.sample-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 32px 64px;
}

.sample-copy {
  grid-column: 1;
  align-self: start;
  padding-top: 0;
}

.sample-copy h2 {
  max-width: 520px;
}

.sample-copy p {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 17px;
}

.button-download {
  min-width: 258px;
}

.report-contents {
  grid-column: 1;
  grid-row: 2;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}

.report-contents h3 {
  margin-bottom: 26px;
}

.report-contents ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.report-contents li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 14px 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.4;
}

.report-contents li + li {
  border-top: 1px solid var(--line);
}

.report-contents li span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hazard-register {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  min-width: 0;
  margin: 0;
}

.hazard-register-link {
  display: block;
  border-radius: var(--radius);
  color: var(--primary);
  text-decoration: none;
}

.hazard-register-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: 0 24px 56px rgb(0 72 68 / 14%);
  transform: rotate(-2deg);
}

.hazard-register-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 600;
}

.hazard-register-link:hover .hazard-register-caption,
.hazard-register-link:focus-visible .hazard-register-caption {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.price {
  min-height: 900px;
  padding: 124px 0 96px;
  display: flex;
  align-items: center;
  background: var(--surface);
}

.price::before {
  content: "";
  position: absolute;
  inset: auto auto -260px -240px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(0, 104, 98, 0.12);
  border-radius: 50%;
}

.price-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: 80px;
}

.price-copy h2 {
  max-width: 760px;
}

.price-body {
  max-width: 750px;
  display: grid;
  gap: 20px;
  color: var(--muted);
  font-size: 17px;
}

.price-body p {
  margin: 0;
  padding-left: 24px;
  border-left: 2px solid var(--primary-pale);
}

.price-body p:first-child {
  border-left-color: var(--primary);
  color: var(--ink);
}

.alex-figure {
  position: relative;
  width: 520px;
  height: 520px;
  margin: 0;
}

.alex-figure svg {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
}

.alex-figure svg path {
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
  stroke-linecap: round;
}

.alex-figure svg circle {
  fill: var(--surface);
  stroke: var(--primary);
  stroke-width: 4;
}

.alex-halo {
  position: absolute;
  border: 1px solid rgba(0, 104, 98, 0.2);
  border-radius: 50%;
}

.halo-one {
  inset: 50px;
}

.halo-two {
  inset: 115px;
  border-color: rgba(0, 104, 98, 0.34);
}

.alex-core {
  position: absolute;
  z-index: 3;
  inset: 168px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  background: var(--surface-strong);
}

.alex-core::before,
.alex-core::after {
  content: "";
  position: absolute;
  inset: 23px;
  border: 1px solid rgba(0, 104, 98, 0.3);
  border-radius: 50%;
}

.alex-core::after {
  inset: 46px;
  background: var(--primary);
}

.alex-core i {
  position: absolute;
  z-index: 4;
  width: 10px;
  height: 10px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  background: var(--surface);
}

.alex-core i:nth-child(1) { top: -6px; left: 50%; }
.alex-core i:nth-child(2) { top: 24%; right: -5px; }
.alex-core i:nth-child(3) { right: 12%; bottom: 3%; }
.alex-core i:nth-child(4) { bottom: 4%; left: 10%; }
.alex-core i:nth-child(5) { top: 27%; left: -5px; }

.method {
  min-height: 940px;
  padding: 120px 0 90px;
  display: flex;
  align-items: center;
  background: var(--bg);
}

.method::before {
  content: "";
  position: absolute;
  top: 80px;
  right: -240px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(207, 235, 232, 0.5), transparent 70%);
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(580px, 1.12fr);
  align-items: start;
  gap: 76px;
}

.method-intro {
  padding-top: 14px;
}

.method-intro p {
  max-width: 650px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.58;
}

.method-intro p:first-of-type {
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
}

.formula-panel {
  position: relative;
  padding: 44px 46px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.formula-panel::before {
  content: "";
  position: absolute;
  top: 80px;
  right: 34px;
  width: 66px;
  height: 2px;
  background: var(--primary);
}

.formula {
  color: var(--primary);
  font-size: 58px;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1;
}

.formula-caption {
  margin: 15px 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.formula-panel dl {
  margin: 0;
}

.formula-panel dl > div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.formula-panel dt {
  color: var(--primary);
  font-size: 28px;
  font-weight: 700;
}

.formula-panel dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.tables {
  min-height: 828px;
  padding: 46px 0 28px;
  background: var(--surface);
}

.table-stage {
  min-width: 0;
  display: grid;
  gap: 28px;
}

.table-block {
  min-width: 0;
  max-width: 100%;
  border-radius: var(--radius);
  background: var(--bg);
}

.table-block h3 {
  margin: 0;
  padding: 18px 24px 17px;
  border-bottom: 1px solid var(--line);
}

.table-scroll {
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  color: var(--ink);
  font-size: 11.5px;
  line-height: 1.28;
}

th,
td {
  padding: 9px 11px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

tr > :last-child {
  border-right: 0;
}

tbody tr:last-child > * {
  border-bottom: 0;
}

thead th {
  background: var(--surface-strong);
  color: var(--primary-dark);
  font-weight: 600;
}

thead tr:first-child th {
  padding-top: 15px;
  padding-bottom: 15px;
  color: var(--primary);
  font-size: 13px;
  text-align: center;
}

tbody th {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.table-one table {
  table-layout: fixed;
}

.table-one .score-col {
  width: 7%;
}

.table-one .probability-col {
  width: 22%;
}

.table-one .exposure-col {
  width: 23%;
}

.table-one .consequence-col {
  width: 34%;
}

.table-two table {
  table-layout: fixed;
  font-size: 13px;
}

.table-two .risk-score-col {
  width: 18%;
}

.table-two .risk-name-col {
  width: 23%;
}

.table-two .risk-action-col {
  width: 59%;
}

.risk-low td {
  background: #e3f0ee;
}

.risk-medium td {
  background: #f2f7f6;
}

.risk-high td {
  background: #f6e8e8;
}

.risk-critical td {
  background: #efd6d8;
}

.risk-high td:first-child,
.risk-high td:nth-child(2),
.risk-critical td:first-child,
.risk-critical td:nth-child(2) {
  color: var(--error);
  font-weight: 700;
}

.closing {
  min-height: 828px;
  padding: 74px 0 0;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

.closing::before {
  content: "";
  position: absolute;
  top: 80px;
  left: -300px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(0, 104, 98, 0.12);
  border-radius: 50%;
}

.closing-grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(560px, 1.08fr);
  align-items: start;
  gap: 74px;
  padding-bottom: 40px;
}

.documents {
  padding-top: 2px;
}

.documents h3 {
  max-width: 500px;
  margin-bottom: 28px;
  font-size: 36px;
}

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

.documents-list li {
  position: relative;
  padding: 14px 0 14px 48px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.48;
  counter-increment: legal;
}

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

.documents-list li::before {
  content: counter(legal, decimal-leading-zero);
  position: absolute;
  top: 14px;
  left: 0;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.contact-panel {
  padding: 36px 40px 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  scroll-margin-top: var(--header-height);
}

.contact-panel h2 {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: 42px;
}

.contact-panel form {
  display: grid;
  gap: 20px;
}

.contact-email-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.contact-email-note a {
  color: var(--primary);
  font-weight: 500;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.contact-email-note a:hover {
  color: var(--primary-dark);
}

.contact-honeypot {
  display: none;
}

.form-footer.contact-form-footer {
  justify-content: flex-end;
}

.contact-form-footer .button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.contact-form-result {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.6;
}

.contact-form-result.is-success {
  color: var(--primary-dark);
}

.contact-form-result.is-error {
  color: #8d3028;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input {
  min-height: 52px;
  padding: 13px 16px;
}

.field textarea {
  min-height: 155px;
  padding: 15px 16px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
  opacity: 1;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 104, 98, 0.13);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.captcha-placeholder {
  min-width: 246px;
  height: 70px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  background: #fafafa;
  color: var(--ink);
  font-size: 13px;
}

.captcha-placeholder small {
  align-self: end;
  color: var(--faint);
  font-size: 8px;
}

.captcha-box {
  width: 24px;
  height: 24px;
  border: 2px solid var(--line-strong);
  background: var(--bg);
}

.contact-panel .button {
  min-width: 156px;
}

.site-footer {
  position: relative;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 38%;
  height: 2px;
  background: var(--primary);
}

.footer-inner {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  padding-block: 20px;
}

.sitemap-page {
  padding: calc(var(--header-height) + 48px) 0 80px;
}

.sitemap-container {
  max-width: 1184px;
}

.sitemap-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin: 24px 0 48px;
}

.sitemap-intro h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.sitemap-intro p,
.sitemap-section-note {
  margin: 0;
  color: var(--muted);
}

.sitemap-xml-link {
  flex-shrink: 0;
  padding: 10px 0;
  color: var(--primary);
  text-underline-offset: 4px;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 48px 72px;
}

.sitemap-section {
  border-top: 2px solid var(--primary);
  padding-top: 24px;
  min-width: 0;
}

.sitemap-section h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.sitemap-section h2 a {
  color: inherit;
  text-decoration: none;
}

.sitemap-section-note {
  font-size: 14px;
}

.sitemap-links {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.sitemap-links a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 0;
  color: var(--primary);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.sitemap-links a:hover,
.sitemap-section h2 a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sitemap-branches {
  border-left: 1px solid var(--line-strong);
}

.sitemap-branches li {
  position: relative;
  padding-left: 24px;
}

.sitemap-branches li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 14px;
  border-top: 1px solid var(--line-strong);
}

.sitemap-articles li {
  padding: 0 0 16px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.sitemap-articles a {
  font-size: 18px;
  font-weight: 500;
}

.sitemap-category {
  color: var(--muted);
  font-size: 13px;
}

.sitemap-status {
  padding: 20px;
  background: var(--surface);
  border-radius: var(--radius);
}

.sitemap-status a {
  color: var(--primary);
  text-underline-offset: 4px;
}

.sitemap-documents {
  grid-column: 1 / -1;
}

.sitemap-documents .sitemap-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 40px;
}

@media (max-width: 760px) {
  .sitemap-page {
    padding-top: calc(var(--header-height) + 32px);
  }

  .sitemap-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
  }

  .sitemap-grid,
  .sitemap-documents .sitemap-links {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .sitemap-documents .sitemap-links {
    gap: 0;
  }
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-inner a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.footer-legal {
  padding-block: 36px 28px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.footer-legal-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.footer-legal-status {
  margin: 6px 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.footer-legal nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 40px;
}

.footer-legal a {
  display: flex;
  align-items: center;
  min-height: 44px;
  width: fit-content;
  padding-block: 6px;
  color: var(--primary);
  font-size: 14px;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.legal-page {
  padding: calc(var(--header-height) + 56px) 0 72px;
}

.legal-content {
  max-width: 820px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--primary);
  text-underline-offset: 4px;
}

.legal-page h1 {
  margin: 24px 0 32px;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.025em;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.legal-draft-note {
  margin-bottom: 40px;
  padding: 20px 24px;
  border-radius: 12px;
  background: var(--surface-strong);
  color: var(--primary-dark);
}

.legal-draft-note p {
  margin: 0;
}

.legal-page h2 {
  margin: 40px 0 16px;
  font-size: 25px;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.legal-page article p {
  margin: 0 0 16px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

@media (max-width: 560px) {
  .footer-legal nav {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }

  .legal-page {
    padding-top: calc(var(--header-height) + 24px);
  }

  .legal-draft-note {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .shot > .container,
  .shot > .closing-grid,
  .journey-second > .container {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 560ms ease, transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .shot.is-visible > .container,
  .shot.is-visible > .closing-grid,
  .journey-second.is-visible > .container {
    opacity: 1;
    transform: translateY(0);
  }

  .hero.is-visible .route-line {
    stroke-dasharray: 1300;
    stroke-dashoffset: 1300;
    animation: draw-route 1.4s 180ms ease forwards;
  }

  .hero.is-visible .report-figure {
    animation: report-enter 720ms 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  @keyframes draw-route {
    to { stroke-dashoffset: 0; }
  }

  @keyframes report-enter {
    from { opacity: 0; transform: translateY(26px) rotate(var(--report-rotation)); }
    to { opacity: 1; transform: translateY(0) rotate(var(--report-rotation)); }
  }
}

@media (max-width: 1240px) {
  :root {
    --container: 1140px;
  }

  .site-nav {
    gap: 19px;
  }

  .site-nav a {
    font-size: 13px;
  }

  .sample-grid {
    gap: 32px 40px;
  }
}

@media (max-width: 1080px) {
  :root {
    --header-height: 68px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    z-index: 30;
    top: var(--header-height);
    right: 0;
    left: 0;
    max-height: calc(100dvh - var(--header-height));
    padding: 16px 32px 24px;
    border-bottom: 1px solid var(--line);
    display: grid;
    align-content: start;
    align-self: auto;
    justify-content: stretch;
    gap: 0;
    overflow-y: auto;
    background: var(--bg);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-nav a {
    width: 100%;
    min-height: 52px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .site-nav a::after {
    display: none;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  }

  .report-figure {
    width: min(330px, 100%);
  }

  .journey-first > .container {
    grid-template-columns: 310px 1fr;
    gap: 42px;
  }

  .journey-grid-first {
    display: block;
  }

  .step-two,
  .step-three {
    width: 100%;
    margin: 26px 0 0;
  }

  .journey-grid-second {
    grid-template-columns: 64px minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 30px 24px;
  }

  .sample-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }

  .price-grid,
  .method-grid {
    gap: 44px;
  }

  .alex-figure {
    width: 420px;
    height: 420px;
  }

  .closing-grid {
    grid-template-columns: 0.88fr 1.12fr;
    gap: 40px;
  }
}

@media (max-width: 820px) {
  .container,
  .header-inner {
    width: min(calc(100% - 40px), var(--container));
  }

  .shot {
    min-height: auto;
  }

  .hero,
  .journey,
  .sample,
  .price,
  .method,
  .closing {
    padding-top: 104px;
    padding-bottom: 72px;
  }

  .hero {
    min-height: 100dvh;
  }

  .hero-grid,
  .journey-first > .container,
  .sample-grid,
  .price-grid,
  .method-grid,
  .closing-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  h2 {
    font-size: clamp(34px, 8vw, 46px);
  }

  .hero-route {
    inset: auto -160px 0 12%;
    height: 580px;
    opacity: 0.68;
  }

  .report-figure {
    --report-rotation: 0deg;
    width: min(390px, 100%);
    margin: 42px auto 0;
  }

  .section-heading {
    position: static;
  }

  .section-heading h2 {
    max-width: 620px;
  }

  .journey-grid-first {
    margin-top: 52px;
  }

  .step-card,
  .journey-second .step-card {
    padding-left: 72px;
  }

  .step-path {
    display: none;
  }

  .journey-grid-second {
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
  }

  .journey-continuation {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .continuation-line {
    min-height: 270px;
    flex-basis: 270px;
  }

  .step-four,
  .step-five {
    grid-column: 2;
  }

  .finish-report {
    grid-column: 1 / -1;
    grid-row: 3;
    min-height: 0;
    padding-block: 36px 12px;
  }

  .sample-copy {
    padding-top: 0;
  }

  .report-contents {
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hazard-register {
    grid-column: 1;
    grid-row: 3;
    margin-top: 16px;
  }

  .hazard-register-image {
    transform: none;
  }

  .alex-figure {
    width: min(500px, 86vw);
    height: min(500px, 86vw);
    margin-inline: auto;
  }

  .method-grid {
    gap: 34px;
  }

  .tables {
    min-height: auto;
    padding: 96px 0 72px;
  }

  .table-scroll {
    padding-bottom: 8px;
  }

  .table-scroll table {
    min-width: 950px;
  }

  .table-two .table-scroll table {
    min-width: 760px;
  }

  .closing {
    padding-bottom: 0;
  }

  .closing-grid {
    padding-bottom: 64px;
  }

  .documents-list li {
    font-size: 14px;
  }

  .contact-panel {
    padding: 30px 26px;
  }

  .site-footer {
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 64px;
  }

  .container,
  .header-inner {
    width: min(calc(100% - 32px), var(--container));
  }

  .brand {
    gap: 4px;
    font-size: 23px;
  }

  .header-inner {
    gap: 16px;
  }

  .menu-toggle {
    flex-shrink: 0;
  }

  .brand-name {
    font-size: 36px;
  }

  .brand-mark {
    width: 41px;
    height: 36px;
  }

  .hero,
  .journey,
  .sample,
  .price,
  .method,
  .closing {
    padding-top: 88px;
    padding-bottom: 56px;
  }

  h1 {
    margin-bottom: 24px;
    font-size: clamp(26px, 8.5vw, 38px);
    line-height: 1.08;
  }

  h2 {
    margin-bottom: 24px;
    font-size: 34px;
  }

  h3 {
    font-size: 23px;
  }

  h4 {
    font-size: 20px;
  }

  .hero-copy {
    font-size: 15px;
  }

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

  .button {
    min-width: 0;
    width: 100%;
    padding-inline: 14px;
  }

  .report-figure {
    width: min(320px, 100%);
  }

  .step-card,
  .journey-second .step-card {
    padding: 26px 0 24px 60px;
  }

  .step-index {
    left: 0;
    font-size: 48px;
  }

  .journey-grid-second {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 22px 14px;
  }

  .finish-report {
    padding-block: 26px 12px;
  }

  .risk-card-image {
    transform: none;
  }

  .finish-route {
    width: 350px;
    height: 350px;
  }

  .report-contents {
    margin-top: 26px;
  }

  .price-body {
    font-size: 15px;
  }

  .alex-figure {
    margin-top: 10px;
  }

  .alex-core {
    inset: 32%;
  }

  .formula-panel {
    padding: 32px 22px 22px;
  }

  .formula {
    font-size: 44px;
  }

  .formula-panel dl > div {
    grid-template-columns: 44px 1fr;
    gap: 10px;
  }

  .formula-panel dt {
    font-size: 24px;
  }

  .contact-panel {
    padding: 28px 20px;
  }

  .contact-panel h2 {
    font-size: 32px;
  }

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

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .captcha-placeholder {
    min-width: 0;
    width: 100%;
  }

  .footer-inner {
    min-height: 132px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Blog and article routes reuse the approved POAR palette and geometry. */
.blog-page,
.article-page {
  min-height: calc(100dvh - var(--header-height));
  padding-top: var(--header-height);
  background: var(--bg);
}

.blog-intro {
  padding: 88px 0 76px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 20%, rgba(0, 104, 98, 0.12), transparent 24%),
    linear-gradient(135deg, #fff 0%, #f2f7f6 100%);
}

.blog-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  align-items: end;
  column-gap: 64px;
}

.breadcrumbs {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.breadcrumbs span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog-intro h1 {
  margin: 0;
  font-size: clamp(56px, 7vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.blog-intro p {
  max-width: 36ch;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.blog-feed {
  padding: 82px 0 112px;
}

.blog-intro.blog-landing-intro h1 {
  font-size: clamp(32px, 4.7vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  overflow-wrap: break-word;
}

.blog-resource-links {
  max-width: 74ch;
  margin: 64px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.7;
}

.blog-resource-links a {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px 40px;
}

.article-card {
  min-width: 0;
  padding-top: 18px;
  border-top: 2px solid var(--primary);
}

.article-card-cover-link {
  display: block;
  margin-bottom: 28px;
}

.article-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.article-cover img {
  object-fit: cover;
  transition: transform 480ms cubic-bezier(0.16, 1, 0.3, 1);
}

.article-card:hover .article-cover img {
  transform: scale(1.025);
}

.article-cover-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  background:
    radial-gradient(circle at 72% 25%, rgba(0, 104, 98, 0.18), transparent 28%),
    linear-gradient(140deg, #f2f7f6, #d7ebe8);
}

.article-cover-placeholder span {
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.article-cover-placeholder i {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 3px solid var(--primary);
  border-radius: 50%;
  background: var(--surface);
}

.article-cover-placeholder i:nth-child(2) {
  top: 18%;
  left: 16%;
}

.article-cover-placeholder i:nth-child(3) {
  right: 20%;
  bottom: 19%;
}

.article-cover-placeholder i:nth-child(4) {
  right: 10%;
  top: 20%;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 600;
}

.article-meta time {
  color: var(--muted);
  font-weight: 400;
}

.article-card h2 {
  max-width: 19ch;
  margin: 14px 0 14px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.article-card h2 a {
  text-decoration: none;
}

.article-card h2 a:hover {
  color: var(--primary);
}

.article-card-copy > p {
  max-width: 62ch;
  margin: 0 0 22px;
  color: var(--muted);
}

.article-read-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.article-read-link span {
  transition: transform 180ms ease;
}

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

.pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px 24px;
  margin-top: 86px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 16px;
}

.pagination a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.pagination-prev {
  justify-self: start;
}

.pagination-next {
  justify-self: end;
}

.pagination-summary {
  grid-column: 1 / -1;
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.pagination-pages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination-number,
.pagination-prev,
.pagination-next {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: var(--radius);
  line-height: 1.25;
}

.pagination a:hover {
  background: var(--surface-strong);
  color: var(--primary-dark);
}

.pagination-number[aria-current="page"] {
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
}

.pagination .is-disabled {
  color: var(--muted);
}

.pagination-gap {
  min-width: 20px;
  text-align: center;
  color: var(--muted);
}

.content-status {
  max-width: 680px;
  margin: 24px auto;
  padding: 54px 28px;
  text-align: center;
}

.content-status-mark {
  position: relative;
  width: 128px;
  height: 44px;
  margin: 0 auto 28px;
}

.content-status-mark::before {
  content: "";
  position: absolute;
  top: 21px;
  right: 8px;
  left: 8px;
  height: 2px;
  background: var(--primary-pale);
}

.content-status-mark span {
  position: absolute;
  top: 14px;
  width: 16px;
  height: 16px;
  border: 3px solid var(--primary);
  border-radius: 50%;
  background: var(--bg);
}

.content-status-mark span:nth-child(1) {
  left: 0;
}

.content-status-mark span:nth-child(2) {
  left: 56px;
}

.content-status-mark span:nth-child(3) {
  right: 0;
}

.content-status h1,
.content-status h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.08;
}

.content-status p {
  max-width: 54ch;
  margin: 0 auto 28px;
  color: var(--muted);
}

.content-status .error-code {
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.error-page {
  display: grid;
  align-items: center;
  padding-bottom: 72px;
}

.preview-banner {
  padding: 11px 20px;
  color: #fff;
  background: var(--primary-dark);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.article-header {
  padding: 70px 0 64px;
  background:
    radial-gradient(circle at 86% 14%, rgba(0, 104, 98, 0.12), transparent 22%),
    linear-gradient(135deg, #fff, #f2f7f6);
}

.article-header-inner {
  max-width: 1040px;
}

.article-header .breadcrumbs {
  margin-bottom: 52px;
}

.article-header-meta {
  margin-bottom: 22px;
}

.article-header h1 {
  max-width: 19ch;
  margin: 0;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.article-lead {
  max-width: 62ch;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
}

.article-hero-image {
  aspect-ratio: 2 / 1;
  max-height: 660px;
  margin-top: 52px;
  overflow: hidden;
  border-radius: var(--radius);
}

.article-hero-image img {
  object-fit: cover;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(240px, 320px);
  justify-content: center;
  align-items: start;
  gap: 88px;
  padding-top: 76px;
  padding-bottom: 120px;
}

.article-body {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #243330;
  font-size: 18px;
  line-height: 1.82;
}

.article-body > :first-child {
  margin-top: 0;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  color: var(--ink);
  letter-spacing: -0.025em;
}

.article-body h2 {
  margin: 2.2em 0 0.65em;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.16;
}

.article-body h3 {
  margin: 2em 0 0.55em;
  font-size: 27px;
  line-height: 1.24;
}

.article-body p,
.article-body ul,
.article-body ol,
.article-body blockquote,
.article-body figure,
.article-body table {
  margin: 0 0 1.45em;
}

.article-body a {
  color: var(--primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-body ul,
.article-body ol {
  padding-left: 1.35em;
}

.article-body li + li {
  margin-top: 0.55em;
}

.article-body blockquote {
  padding: 8px 0 8px 28px;
  border-left: 3px solid var(--primary);
  color: var(--primary-dark);
  font-size: 21px;
  font-weight: 500;
}

.article-body img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.article-body table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  font-size: 15px;
}

.article-body th,
.article-body td {
  min-width: 150px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-body th {
  background: var(--surface);
}

.article-body h2[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.article-contents {
  margin: 32px 0;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
}

.article-body .article-contents-title {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}

.article-body .article-contents ol {
  display: grid;
  gap: 4px 28px;
  margin: 0;
  padding-left: 1.5em;
  font-size: 16px;
  line-height: 1.5;
}

.article-body .article-contents li {
  margin: 0;
  padding-left: 2px;
}

.article-contents li::marker {
  color: var(--muted);
}

.article-contents a {
  display: block;
  min-height: 44px;
  padding: 10px 0;
}

.article-contents a:hover {
  color: var(--primary-dark);
  text-decoration-thickness: 2px;
}

.article-contents a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (min-width: 760px) {
  .article-contents ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.article-aside {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.article-aside p {
  margin: 0 0 22px;
  color: var(--primary-dark);
  font-weight: 500;
}

.article-aside .button {
  width: 100%;
}

.skeleton {
  border-radius: var(--radius);
  background: linear-gradient(100deg, #e3eeec 22%, #f2f7f6 36%, #e3eeec 52%);
  background-size: 200% 100%;
}

.skeleton-line {
  width: min(100%, 480px);
  height: 18px;
}

.skeleton-small {
  width: 190px;
  height: 14px;
}

.skeleton-title {
  width: 300px;
  height: 82px;
}

.skeleton-cover {
  aspect-ratio: 16 / 9;
}

.skeleton-heading {
  width: min(92%, 420px);
  height: 64px;
  margin: 18px 0;
}

@media (prefers-reduced-motion: no-preference) {
  .skeleton {
    animation: blog-skeleton 1.5s linear infinite;
  }

  @keyframes blog-skeleton {
    to {
      background-position-x: -200%;
    }
  }
}

@media (max-width: 1080px) {
  .blog-intro-grid {
    grid-template-columns: minmax(0, 0.62fr) minmax(260px, 0.38fr);
    gap: 40px;
  }

  .article-layout {
    grid-template-columns: minmax(0, 680px) minmax(220px, 280px);
    gap: 48px;
  }
}

@media (max-width: 820px) {
  .blog-intro {
    padding: 66px 0 58px;
  }

  .blog-intro-grid {
    grid-template-columns: 1fr;
  }

  .blog-landing-intro .blog-intro-grid {
    row-gap: 20px;
  }

  .blog-intro.blog-landing-intro h1 {
    margin-bottom: 0;
  }

  .blog-landing-intro .breadcrumbs {
    margin-bottom: 12px;
  }

  .breadcrumbs {
    margin-bottom: 30px;
  }

  .blog-intro h1 {
    margin-bottom: 24px;
  }

  .blog-feed {
    padding: 62px 0 82px;
  }

  .article-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .article-card h2 {
    max-width: 24ch;
  }

  .article-header {
    padding: 58px 0 52px;
  }

  .article-header .breadcrumbs {
    margin-bottom: 38px;
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
    padding-top: 56px;
    padding-bottom: 82px;
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 32px;
    height: 32px;
  }

  .blog-intro h1 {
    font-size: 54px;
  }

  .blog-intro p,
  .article-body {
    font-size: 16px;
  }

  .article-card-cover-link {
    margin-bottom: 22px;
  }

  .article-card h2 {
    font-size: 29px;
  }

  .pagination {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .pagination-pages {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .pagination-prev {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
  }

  .pagination-next {
    grid-column: 2;
    grid-row: 3;
  }

  .article-header h1 {
    font-size: 40px;
  }

  .article-hero-image {
    width: calc(100% - 32px);
    aspect-ratio: 4 / 3;
    margin-top: 32px;
  }

  .article-layout {
    padding-top: 44px;
  }
}
.partner-eyebrow {
  margin: 0 0 20px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.partner-identity { min-width: 0; }
.partner-identity-link { display: grid; justify-items: start; text-decoration: none; }
.partner-logo { display: block; width: 260px; max-width: 100%; height: auto; }
.partner-company-name { margin-top: 16px; font-size: 15px; font-weight: 600; }
.partner-domain { color: var(--primary); font-size: 14px; text-underline-offset: 4px; }
.partner-identity-link:hover .partner-domain { text-decoration: underline; }

.partner-offer {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}

.partner-offer-copy { padding-left: 36px; border-left: 1px solid var(--line); }
.partner-offer h3 { margin: 0 0 14px; font-size: 28px; }
.partner-offer-copy p { margin: 0; color: var(--muted); }
.partner-offer-copy .partner-offer-note { margin-top: 12px; font-size: 13px; }
.partner-offer .partner-offer-button { white-space: normal; max-width: 270px; gap: 8px; }

.partner-page { padding-top: var(--header-height); }
.partner-intro { padding: 40px 0 80px; background: var(--surface); }
.partner-intro .breadcrumbs { margin-bottom: 56px; }
.partner-intro-grid { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 80px; align-items: start; }
.partner-intro-copy h1 {
  max-width: 20ch;
  margin: 0 0 28px;
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.partner-intro-copy h1 span { color: var(--primary); }
.partner-lead { max-width: 56ch; margin: 0 0 30px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.partner-page .button { white-space: normal; gap: 8px; }
.partner-link-note { margin: 12px 0 0; color: var(--muted); font-size: 13px; }
.partner-profile { padding: 36px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); }
.partner-profile .partner-identity { padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.partner-profile-description { padding-top: 28px; }
.partner-profile-description h2 { margin: 0 0 14px; font-size: 22px; letter-spacing: -0.025em; line-height: 1.25; }
.partner-profile-description p { margin: 0 0 14px; color: var(--muted); font-size: 15px; }
.partner-profile .partner-profile-footnote { margin: 24px 0 0; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }

.partner-documents { padding: 88px 0; }
.partner-documents-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 100px; }
.partner-section-intro h2, .partner-process-heading h2, .partner-next h2 { margin: 0 0 24px; font-size: clamp(30px, 3vw, 42px); line-height: 1.12; }
.partner-section-intro > p:not(.partner-eyebrow) { margin: 0 0 24px; max-width: 44ch; color: var(--muted); }
.partner-text-link { color: var(--primary); font-size: 15px; font-weight: 500; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.partner-text-link:hover { color: var(--primary-dark); }
.partner-document-list { margin: 0; border-top: 3px solid var(--primary); }
.partner-document-list > div { position: relative; padding: 23px 0 23px 28px; border-bottom: 1px solid var(--line); }
.partner-document-list > div::before { position: absolute; top: 32px; left: 0; width: 7px; height: 7px; border: 1px solid var(--primary); content: ""; }
.partner-document-list dt { margin-bottom: 8px; font-size: 19px; font-weight: 600; line-height: 1.3; letter-spacing: -0.015em; }
.partner-document-list dd { margin: 0; color: var(--muted); font-size: 15px; }

.partner-process { padding: 0 0 88px; }
.partner-process-heading { display: flex; gap: 40px; justify-content: space-between; align-items: baseline; padding-top: 60px; border-top: 1px solid var(--line); }
.partner-process-heading > p { max-width: 34ch; margin: 0 0 24px; color: var(--muted); }
.partner-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; margin: 24px 0 0; padding: 0; list-style: none; counter-reset: partner-step; }
.partner-steps li { counter-increment: partner-step; border-top: 2px solid var(--primary-pale); padding-top: 20px; }
.partner-steps li::before { display: block; margin-bottom: 18px; color: var(--primary); font-size: 14px; font-weight: 600; font-variant-numeric: tabular-nums; content: counter(partner-step, decimal-leading-zero); }
.partner-steps h3 { margin: 0 0 14px; font-size: 22px; }
.partner-steps p { margin: 0; color: var(--muted); font-size: 15px; }

.partner-next { padding: 64px 0; background: var(--surface); }
.partner-next-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr); align-items: center; gap: 80px; }
.partner-next p { margin: 0; max-width: 62ch; color: var(--muted); }
.partner-next .partner-next-note { margin-top: 18px; font-size: 13px; }
.partner-next-actions { display: grid; justify-items: start; gap: 14px; }
.partner-next-actions p { font-size: 13px; }
.partner-next-actions .partner-text-link { margin-top: 12px; }

@media (max-width: 1200px) {
  .partner-offer { grid-template-columns: 240px minmax(0, 1fr); gap: 24px 32px; }
  .partner-offer .partner-identity { grid-row: 1 / 3; }
  .partner-offer-copy { padding-left: 32px; }
  .partner-offer .partner-offer-button { grid-column: 2; margin-left: 32px; }
  .partner-intro-grid { grid-template-columns: minmax(0, 1fr) 340px; gap: 40px; }
  .partner-profile { padding: 28px; }
  .partner-documents-grid, .partner-next-grid { gap: 48px; }
}

@media (max-width: 820px) {
  .partner-intro { padding: 28px 0 56px; }
  .partner-intro .breadcrumbs { margin-bottom: 36px; }
  .partner-intro-grid, .partner-documents-grid, .partner-next-grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .partner-intro-copy h1 { max-width: 23ch; }
  .partner-profile { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr); gap: 24px 32px; }
  .partner-profile .partner-identity { padding-bottom: 0; border-bottom: 0; }
  .partner-profile-description { padding-top: 0; }
  .partner-profile .partner-profile-footnote { grid-column: 1 / -1; margin-top: 0; }
  .partner-documents { padding: 56px 0; }
  .partner-section-intro > p:not(.partner-eyebrow) { max-width: 62ch; }
  .partner-process { padding-bottom: 56px; }
  .partner-process-heading { display: block; padding-top: 40px; }
  .partner-process-heading > p { max-width: none; }
  .partner-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partner-next { padding: 48px 0; }
}

@media (max-width: 560px) {
  .partner-logo { width: 220px; }
  .partner-offer { grid-template-columns: minmax(0, 1fr); gap: 24px; padding: 24px; }
  .partner-offer .partner-identity { grid-row: auto; }
  .partner-offer-copy { padding: 24px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .partner-offer h3 { font-size: 26px; }
  .partner-offer .partner-offer-button { grid-column: auto; width: 100%; max-width: none; margin-left: 0; }
  .partner-eyebrow { font-size: 12px; }
  .partner-intro-copy h1 { font-size: clamp(34px, 9vw, 48px); }
  .partner-lead { font-size: 16px; }
  .partner-main-button { width: 100%; }
  .partner-profile { display: block; padding: 24px; }
  .partner-profile .partner-identity { padding-bottom: 24px; border-bottom: 1px solid var(--line); }
  .partner-profile-description { padding-top: 24px; }
  .partner-profile .partner-profile-footnote { margin-top: 24px; }
  .partner-steps { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .partner-steps li { display: grid; grid-template-columns: 28px minmax(0, 1fr); column-gap: 16px; }
  .partner-steps li::before { grid-row: 1 / 3; margin: 3px 0 0; }
  .partner-steps h3 { font-size: 21px; }
  .partner-steps p { grid-column: 2; }
  .partner-next-actions { justify-items: stretch; }
}

/* The review invitation reuses the approved partner offer, without restyling it. */
.reviews-section { padding: 18px 0 46px; background: var(--surface); }
.reviews-image { object-fit: contain; }
.reviews-dialog { width: min(720px, calc(100% - 32px)); }
.reviews-dialog:not([open]) { display: none; }
.reviews-dialog-heading {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.reviews-dialog-heading .login-dialog-title { margin-bottom: 0; font-size: 26px; }
.reviews-dialog-heading .login-dialog-close { top: 20px; }
.reviews-dialog-body { padding: 24px 32px 28px; }
.reviews-dialog-body .login-dialog-description { margin: 0 0 24px; }
.reviews-device { border-top: 1px solid var(--line); }
.reviews-device:last-child { border-bottom: 1px solid var(--line); }
.reviews-device > summary {
  min-height: 48px;
  padding: 16px 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
}
.reviews-device > summary::marker { color: var(--primary); }
.reviews-device > summary:hover { color: var(--primary); }
.reviews-device ol { margin: 0; padding: 0 0 20px 24px; color: var(--muted); font-size: 15px; line-height: 1.65; }
.reviews-device li { padding-left: 4px; }
.reviews-device li + li { margin-top: 10px; }
.reviews-device li::marker { color: var(--primary); font-weight: 600; }
.reviews-device strong { color: var(--ink); font-weight: 600; }
.reviews-instruction-note { margin: 20px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.reviews-fallback { max-width: 720px; margin-top: 24px; }
.reviews-fallback > summary { padding: 12px 0; color: var(--primary); font-weight: 600; cursor: pointer; }
.reviews-fallback .reviews-devices { margin-top: 16px; }
.reviews-device > summary:focus-visible,
.reviews-fallback > summary:focus-visible { outline: 2px solid var(--primary); outline-offset: 4px; }
@media (max-width: 560px) {
  .reviews-section { padding-bottom: 32px; }
  .reviews-dialog-heading { padding: 24px 24px 18px; }
  .reviews-dialog-heading .login-dialog-title { font-size: 23px; }
  .reviews-dialog-heading .login-dialog-close { top: 16px; right: 12px; }
  .reviews-dialog-body { padding: 20px 24px 24px; }
  .reviews-device > summary { font-size: 15px; }
}

[hidden]{display:none!important}.shot{opacity:1;transform:none}.article-hero-image>img{width:100%;height:100%;object-fit:cover}.article-body img{max-width:100%;height:auto}.article-cover-image{object-fit:cover}.skip-link{position:fixed;left:16px;top:-100px;z-index:100;padding:12px;background:#fff;color:#006862}.skip-link:focus{top:12px}

.article-header h1 { overflow-wrap: anywhere; }
