:root {
  --ink: #10283b;
  --paper: #f6f4ed;
  --white: #fbfcfa;
  --line: #c7d1cd;
  --line-dark: #36556b;
  --muted: #586b73;
  --mint: #58bf89;
  --mint-dark: #1f825b;
  --cobalt: #557fa5;
  --soft: #aebfc5;
  --sand: #d2ad68;
  --danger: #b65045;
  --radius: 4px;
  --page-pad: clamp(20px, 4vw, 64px);
  --max-width: 1440px;
  --signal-strength: 35%;
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

.mono,
.panel-code,
.range-bounds,
.site-footer__meta,
.breakdown-card__top {
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

.site-header {
  width: 100%;
  min-height: 72px;
  padding: 0 var(--page-pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.brand img {
  width: 34px;
  height: auto;
  display: block;
  filter: invert(1);
}

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

.site-nav a {
  color: #aeb7bc;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--white);
}

.site-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
}

.preference-toggles {
  display: flex;
  align-items: center;
  gap: 8px;
}

.preference-toggle {
  min-height: 40px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  gap: 1px;
  border: 1px solid #53616c;
  border-radius: var(--radius);
  color: #89949a;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
}

.preference-toggle button {
  width: 29px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #929ca2;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
}

.preference-toggle button:hover {
  color: var(--white);
}

.preference-toggle button[aria-pressed="true"] {
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.preference-toggle button:focus-visible {
  border-radius: 2px;
  outline: 2px solid var(--cobalt);
  outline-offset: 1px;
}

.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 140ms ease, border-color 140ms ease, color 140ms ease;
}

.button--small {
  min-height: 40px;
  min-width: 166px;
  padding: 0 17px;
  gap: 24px;
  font-size: 12px;
}

.button--primary {
  background: var(--mint);
  border-color: var(--mint);
  color: var(--ink);
}

.button--primary:hover {
  background: #78d2a4;
  border-color: #78d2a4;
}

.button--primary:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.hero {
  min-height: 620px;
  color: var(--white);
  background: var(--ink);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.07;
  background-image:
    linear-gradient(#565a53 1px, transparent 1px),
    linear-gradient(90deg, #565a53 1px, transparent 1px);
  background-size: 96px 96px;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 74%);
  mask-image: linear-gradient(to bottom, black 0%, transparent 74%);
}

.hero::before {
  content: none;
}

.hero__inner {
  max-width: var(--max-width);
  min-height: 484px;
  margin: 0 auto;
  padding: clamp(76px, 8vw, 116px) var(--page-pad) 66px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  gap: clamp(38px, 5vw, 76px);
  align-items: center;
}

.hero h1 {
  max-width: 780px;
  margin: 0 0 30px;
  font-size: clamp(52px, 6.1vw, 88px);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 1;
}

.hero__lede {
  max-width: 590px;
  margin: 0;
  color: #b1bbc0;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.7;
}

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

.hero__lede strong {
  margin-bottom: 7px;
  color: var(--white);
  font-weight: 600;
}

.hero__cta {
  min-width: 244px;
  justify-content: space-between;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero-product {
  width: 100%;
  max-width: 570px;
  min-width: 0;
  justify-self: end;
  overflow: hidden;
  border: 1px solid #426075;
  border-radius: 7px;
  background: #f3f4ef;
  color: var(--ink);
  box-shadow: 0 30px 70px rgba(3, 17, 27, 0.32);
  transform: perspective(1200px) rotateY(-2deg) rotateX(0.8deg);
  transform-origin: center;
}

.hero-product__topbar {
  height: 34px;
  padding: 0 12px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #d7dedb;
  background: #fbfcfa;
  color: #849197;
  font-family: "IBM Plex Mono", monospace;
  font-size: 6px;
}

.hero-product__topbar strong {
  color: var(--ink);
  font-weight: 500;
}

.hero-product__dots {
  display: flex;
  gap: 4px;
}

.hero-product__dots i {
  width: 5px;
  height: 5px;
  border: 1px solid #9aa5a6;
  border-radius: 50%;
}

.hero-product__live {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-product__live i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 3px rgba(88, 191, 137, 0.12);
}

.hero-product__body {
  min-height: 342px;
  display: grid;
  grid-template-columns: 39px minmax(0, 1fr);
}

.hero-product__nav {
  padding-top: 21px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  border-right: 1px solid #29485b;
  background: #122e42;
  color: #607886;
  font-size: 10px;
}

.hero-product__nav span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 4px;
}

.hero-product__nav .is-active {
  background: #2b5064;
  color: var(--mint);
}

.hero-product__canvas {
  min-width: 0;
  padding: 25px 24px 20px;
  position: relative;
}

.hero-product__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.hero-product__heading span,
.hero-product__metrics span {
  display: block;
  color: #75858b;
  font-family: "IBM Plex Mono", monospace;
  font-size: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-product__heading strong {
  margin-top: 7px;
  display: block;
  color: var(--mint-dark);
  font-size: clamp(21px, 2.2vw, 30px);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.hero-product__heading .hero-product__period {
  padding: 5px 7px;
  border: 1px solid #ccd4d1;
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
}

.hero-product__chart {
  width: 100%;
  height: auto;
  margin: 10px 0 5px;
  display: block;
}

.hero-chart__grid,
.hero-chart__reserve,
.hero-chart__balance,
.hero-chart__forecast,
.hero-chart__today,
.hero-chart__sweep {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.hero-chart__grid {
  stroke: #d9dfdc;
  stroke-width: 1;
}

.hero-chart__surplus {
  fill: url(#hero-product-surplus);
}

.hero-chart__reserve {
  stroke: #6d9c86;
  stroke-dasharray: 4 4;
  stroke-width: 1;
}

.hero-chart__balance {
  stroke: #557fa5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.hero-chart__sweep {
  stroke: #24865b;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-chart__forecast {
  stroke: #557fa5;
  stroke-dasharray: 4 4;
  stroke-linecap: round;
  stroke-width: 1.6;
}

.hero-chart__today {
  stroke: #a7b2b2;
  stroke-dasharray: 2 3;
  stroke-width: 1;
}

.hero-chart__point {
  fill: #f3f4ef;
  stroke: #24865b;
  stroke-width: 1.8;
  vector-effect: non-scaling-stroke;
}

.hero-chart__label {
  fill: #718087;
  font-family: "IBM Plex Mono", monospace;
  font-size: 5.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-chart__label--account {
  fill: #557fa5;
}

.hero-chart__label--reserve {
  fill: #42745d;
}

.hero-chart__label--forecast {
  text-anchor: start;
}

.hero-product__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #d4dcda;
  border-radius: 4px;
  background: var(--white);
}

.hero-product__metrics > div {
  padding: 11px 13px;
}

.hero-product__metrics > div + div {
  border-left: 1px solid #d4dcda;
}

.hero-product__metrics strong {
  margin-top: 5px;
  display: block;
  font-size: 13px;
  font-weight: 600;
}

.hero-product__metrics small {
  margin-top: 4px;
  display: block;
  color: #7d8b8e;
  font-size: 6px;
}

.hero-product__metrics > div:last-child strong,
.hero-product__metrics > div:last-child small {
  color: var(--mint-dark);
}

.hero-product__signal {
  width: 100%;
  margin-top: 8px;
  padding: 8px 10px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  border: 1px solid #b7d7c7;
  border-radius: 4px;
  background: #e4f3eb;
  box-shadow: 0 7px 18px rgba(20, 47, 64, 0.12);
}

.hero-product__signal > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
}

.hero-product__signal span {
  min-width: 0;
}

.hero-product__signal strong,
.hero-product__signal small {
  display: block;
}

.hero-product__signal strong {
  font-size: 7px;
}

.hero-product__signal small {
  margin-top: 2px;
  color: #62776d;
  font-size: 5.5px;
}

.hero-product__signal b {
  color: var(--mint-dark);
  font-size: 10px;
}

.metric-rail {
  min-height: 136px;
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) repeat(3, minmax(200px, 1fr));
}

.metric-rail > * {
  padding: 24px clamp(22px, 3.6vw, 50px);
  border-right: 1px solid var(--line-dark);
}

.metric-rail > *:last-child {
  border-right: 0;
}

.metric-rail__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  color: #89949a;
  font-size: 11px;
}

.metric-rail__intro .mono {
  color: #b9cbc2;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-metric {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  row-gap: 8px;
}

.hero-metric > span {
  color: #98a3a9;
  font-size: 11px;
}

.hero-metric strong {
  grid-column: 1;
  color: var(--white);
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 500;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.hero-metric small {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  padding-bottom: 7px;
  color: #859098;
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.hero-metric--accent strong {
  color: var(--mint);
}

html[data-currency="dkk"] .hero-metric strong {
  font-size: clamp(26px, 2.35vw, 34px);
}

.calculator-section,
.breakdown-section,
.pathway-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(82px, 8vw, 116px) var(--page-pad);
}

.section-heading {
  margin-bottom: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(160px, 0.55fr) minmax(0, 1.45fr);
  gap: 30px;
}

.section-heading > div {
  grid-column: 1 / -1;
}

.section-heading h2 {
  margin: -8px 0 24px;
  font-size: clamp(42px, 4.4vw, 64px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.section-heading > div > p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.calculator-section .section-heading > div > p {
  max-width: 680px;
}

.calculator-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(23, 35, 46, 0.08);
}

.input-panel,
.impact-panel {
  min-width: 0;
}

.input-panel {
  margin: 0;
  padding: clamp(26px, 3.5vw, 52px);
  background: var(--white);
}

.impact-panel {
  padding: clamp(26px, 3.5vw, 52px);
  background: var(--ink);
  color: var(--white);
  border-left: 1px solid var(--line-dark);
}

.panel-heading {
  min-height: 64px;
  padding-bottom: 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #d8ddda;
}

.panel-heading .mono {
  margin: 0 0 7px;
  color: #6f7a81;
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.panel-heading h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.panel-heading--dark {
  border-color: var(--line-dark);
}

.panel-heading--dark .mono {
  color: #b9cbc2;
}

.impact-summary__signal i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint-dark);
}

.panel-code {
  color: #696d66;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.slider-group {
  padding: 27px 0 21px;
  border-bottom: 1px solid #e0e3e0;
}

.slider-group--last {
  padding-bottom: 3px;
  border-bottom: 0;
}

.slider-group__heading {
  margin-bottom: 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.input-label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.input-label label {
  color: #34424b;
  font-size: 12px;
  font-weight: 600;
}

.tooltip-trigger {
  width: 17px;
  height: 17px;
  padding: 0;
  border: 1px solid #bfc7c8;
  border-radius: 50%;
  background: transparent;
  color: #65747c;
  cursor: pointer;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  line-height: 15px;
}

.tooltip-trigger:hover,
.tooltip-trigger[aria-expanded="true"] {
  border-color: var(--mint-dark);
  background: var(--mint-dark);
  color: var(--white);
}

.tooltip {
  width: min(250px, 78vw);
  padding: 12px 14px;
  position: absolute;
  z-index: 10;
  left: calc(100% + 7px);
  bottom: 28px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(4px);
  background: var(--ink);
  color: #d7dee1;
  box-shadow: 0 8px 20px rgba(23, 35, 46, 0.18);
  font-size: 10px;
  line-height: 1.6;
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
}

.tooltip-trigger:hover + .tooltip,
.tooltip-trigger:focus-visible + .tooltip,
.input-label.is-tooltip-open .tooltip {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.slider-group output {
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.slider-group output.is-warning {
  color: var(--danger);
}

input[type="range"] {
  --range-progress: 0%;
  width: 100%;
  height: 18px;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  outline: none;
  cursor: pointer;
  background: transparent;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 2px;
  border-radius: 0;
  background: linear-gradient(to right, var(--mint-dark) 0 var(--range-progress), #cfd5d3 var(--range-progress) 100%);
}

input[type="range"]::-moz-range-track {
  height: 2px;
  border-radius: 0;
  background: linear-gradient(to right, var(--mint-dark) 0 var(--range-progress), #cfd5d3 var(--range-progress) 100%);
}

input[type="range"]::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  margin-top: -7px;
  appearance: none;
  -webkit-appearance: none;
  border: 3px solid var(--mint-dark);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 2px var(--white);
}

input[type="range"]::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: 3px solid var(--mint-dark);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 2px var(--white);
}

input[type="range"]:focus-visible::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px var(--white), 0 0 0 5px var(--cobalt);
}

.range-bounds {
  margin-top: 3px;
  display: flex;
  justify-content: space-between;
  color: #969991;
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.input-warning {
  margin: 14px 0 0;
  padding: 10px 12px;
  border-left: 2px solid var(--danger);
  background: #fff3f0;
  color: #9d3020;
  font-size: 10px;
  line-height: 1.55;
}

.country-selector {
  margin-top: 18px;
}

.country-selector__toggle {
  width: 100%;
  min-height: 62px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 5px 14px;
  border: 1px solid #cbd3d1;
  border-radius: var(--radius);
  background: #f7f8f5;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: border-color 140ms ease, background 140ms ease;
}

.country-selector__toggle:hover,
.country-selector__toggle[aria-expanded="true"] {
  border-color: var(--mint-dark);
  background: #f0f7f3;
}

.country-selector__toggle:focus-visible,
.country-selector__search:focus-visible,
.country-selector__actions button:focus-visible,
.country-selector__option input:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 2px;
}

.country-selector__heading {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 600;
}

.country-selector__optional {
  padding: 3px 6px;
  border: 1px solid #b7c5bf;
  border-radius: 2px;
  color: #62736b;
  font-family: "IBM Plex Mono", monospace;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.country-selector__summary {
  min-width: 0;
  overflow: hidden;
  color: #747f7c;
  font-size: 9px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-selector.has-selection .country-selector__summary {
  color: var(--mint-dark);
  font-weight: 600;
}

.country-selector__chevron {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: #6c7976;
  font-size: 18px;
  line-height: 1;
  transition: transform 140ms ease;
}

.country-selector__toggle[aria-expanded="true"] .country-selector__chevron {
  transform: rotate(180deg);
}

.country-selector__hint {
  margin: 8px 2px 0;
  color: #818b87;
  font-size: 9px;
  line-height: 1.5;
}

.country-selector__panel {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid #cbd3d1;
  border-radius: var(--radius);
  background: #f7f8f5;
  box-shadow: 0 8px 20px rgba(23, 35, 46, 0.08);
}

.country-selector__search-label {
  display: block;
  margin-bottom: 7px;
  color: #53636b;
  font-size: 10px;
  font-weight: 600;
}

.country-selector__search {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #bdc8c5;
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
  font-size: 11px;
}

.country-selector__search::placeholder {
  color: #929b98;
}

.country-selector__actions {
  min-height: 37px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #737d79;
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.country-selector__actions button {
  padding: 5px 0;
  border: 0;
  background: transparent;
  color: var(--mint-dark);
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.country-selector__actions button:disabled {
  color: #9fa7a4;
  cursor: default;
}

.country-selector__options {
  max-height: 220px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow-y: auto;
  border: 1px solid #d1d8d5;
  background: var(--white);
  scrollbar-color: #aab7b2 transparent;
  scrollbar-width: thin;
}

.country-selector__option {
  min-width: 0;
  min-height: 38px;
  padding: 8px 9px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #e4e8e5;
  color: #3f4d54;
  cursor: pointer;
  font-size: 10px;
}

.country-selector__option:nth-child(odd) {
  border-right: 1px solid #e4e8e5;
}

.country-selector__option:hover,
.country-selector__option.is-selected {
  background: #eaf5ef;
}

.country-selector__option:has(input:disabled) {
  color: #9ca5a2;
  cursor: not-allowed;
}

.country-selector__option input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--mint-dark);
}

.country-selector__option span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-selector__option small {
  color: #89938f;
  font-family: "IBM Plex Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.04em;
}

.country-selector__no-results {
  margin: 0;
  padding: 22px 12px;
  border: 1px solid #d1d8d5;
  background: var(--white);
  color: #757f7b;
  font-size: 10px;
  text-align: center;
}

.impact-visual {
  min-height: 330px;
  padding: 39px 0 30px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(150px, 0.75fr);
  align-items: center;
  gap: 30px;
}

.donut-wrap {
  width: min(100%, 270px);
  aspect-ratio: 1;
  position: relative;
}

.donut {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  transform: rotate(-90deg);
}

.donut__track,
.donut__segment {
  fill: none;
  stroke-width: 22;
}

.donut__track {
  stroke: #2b3944;
}

.donut__segment {
  transition: opacity 140ms ease, stroke-width 140ms ease;
  cursor: pointer;
}

.donut__segment--payments { stroke: var(--mint); }
.donut__segment--liquidity { stroke: var(--cobalt); }
.donut__segment--risk { stroke: var(--soft); }
.donut__segment--efficiency { stroke: var(--sand); }
.donut__segment.is-active { stroke-width: 25; }
.donut__segment.is-muted { opacity: 0.35; }

.donut-center {
  position: absolute;
  inset: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.donut-center span,
.donut-center small {
  color: #777b74;
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.donut-center strong {
  margin: 5px 0 4px;
  color: var(--white);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 500;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.impact-summary {
  padding-left: 28px;
  border-left: 1px solid var(--line-dark);
}

.impact-summary__label {
  margin: 0 0 12px;
  color: #747870;
  font-size: 10px;
}

.impact-summary__value {
  margin: 0;
  color: #82d0a7;
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.impact-summary__ratio {
  margin: 13px 0 26px;
  color: #6f736c;
  font-size: 9px;
}

.impact-summary__ratio span {
  color: #aaaea7;
}

.impact-summary__signal {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #777b74;
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.legend-item {
  min-height: 85px;
  padding: 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  border: 0;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease;
}

.legend-item:hover,
.legend-item.is-active {
  background: #21303b;
}

.legend-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.legend-item__dot--payments { background: var(--mint); }
.legend-item__dot--liquidity { background: var(--cobalt); }
.legend-item__dot--risk { background: var(--soft); }
.legend-item__dot--efficiency { background: var(--sand); }

.legend-item > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legend-item b {
  font-size: 10px;
  font-weight: 600;
}

.legend-item small {
  color: #686c65;
  font-size: 8px;
}

.legend-item strong {
  color: #9da099;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 400;
}

.breakdown-section {
  padding-top: 30px;
  padding-bottom: clamp(52px, 6vw, 72px);
}

.section-heading--compact {
  margin-bottom: 54px;
}

.breakdown-section .section-heading--compact {
  margin-bottom: 28px;
}

.breakdown-section .section-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(36px, 3.8vw, 48px);
}

.breakdown-section .section-heading > div > p {
  max-width: 680px;
  line-height: 1.55;
}

.breakdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: var(--radius) var(--radius) 0 0;
}

.breakdown-card {
  min-height: 205px;
  padding: clamp(19px, 1.8vw, 24px);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.breakdown-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #68757d;
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.breakdown-card__top i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
}

.breakdown-card--payments .breakdown-card__top i { background: var(--mint-dark); }
.breakdown-card--liquidity .breakdown-card__top i { background: var(--cobalt); }
.breakdown-card--risk .breakdown-card__top i { background: #a7aaa2; }
.breakdown-card--efficiency .breakdown-card__top i { background: var(--sand); }

.breakdown-card > strong {
  margin: 36px 0 12px;
  font-size: clamp(30px, 2.8vw, 40px);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.breakdown-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.method-note {
  display: grid;
  grid-template-columns: auto minmax(240px, 0.8fr) minmax(320px, 1.2fr);
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-top: 0;
  background: var(--white);
}

.method-note__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--mint);
  border-radius: var(--radius);
}

.method-note__mark img {
  width: 27px;
  height: auto;
}

.method-note h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.method-note > p {
  margin: 0;
  color: #666a63;
  font-size: 10px;
  line-height: 1.5;
}

.pathway-section {
  padding-top: 30px;
}

.product-tour {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(17, 39, 55, 0.08);
}

.product-tour__tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #eef0ec;
}

.product-tour__tabs button {
  min-height: 84px;
  padding: 15px 20px;
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 11px;
  align-content: center;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: #758187;
  cursor: pointer;
  text-align: left;
  transition: background 150ms ease, color 150ms ease;
}

.product-tour__tabs button:last-child {
  border-right: 0;
}

.product-tour__tabs button:hover {
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
}

.product-tour__tabs button[aria-selected="true"] {
  background: var(--white);
  color: var(--ink);
}

.product-tour__tabs button[aria-selected="true"]::after {
  height: 3px;
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  content: "";
  background: var(--mint);
}

.product-tour__tabs button > span {
  width: 25px;
  height: 25px;
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  border: 1px solid #c7d0cd;
  border-radius: 50%;
  color: #7c898d;
  font-family: "IBM Plex Mono", monospace;
  font-size: 7px;
}

.product-tour__tabs button[aria-selected="true"] > span {
  border-color: var(--mint);
  background: var(--mint);
  color: var(--ink);
}

.product-tour__tabs strong {
  align-self: end;
  font-size: 11px;
  font-weight: 600;
}

.product-tour__tabs small {
  align-self: start;
  margin-top: 3px;
  color: #879397;
  font-size: 7px;
}

.product-tour__panel {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  background: var(--white);
}

.product-tour__panel[hidden] {
  display: none;
}

.product-tour__copy {
  padding: clamp(36px, 4vw, 58px) clamp(28px, 3.4vw, 48px);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.product-tour__badge {
  align-self: flex-start;
  padding: 7px 9px;
  border: 1px solid #a8cabb;
  border-radius: 3px;
  color: var(--mint-dark);
  font-family: "IBM Plex Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-tour__copy h3 {
  margin: clamp(34px, 4vw, 56px) 0 18px;
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.product-tour__copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.product-tour__copy ul {
  margin: 27px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.product-tour__copy li {
  position: relative;
  padding-left: 16px;
  color: #54676f;
  font-size: 9px;
  line-height: 1.5;
}

.product-tour__copy li::before {
  width: 6px;
  height: 6px;
  position: absolute;
  left: 0;
  top: 4px;
  content: "";
  border-radius: 50%;
  background: var(--mint);
}

.product-tour__panel > .tour-ui {
  align-self: center;
  margin: clamp(28px, 4.5vw, 66px) clamp(22px, 3.5vw, 50px);
}

.tour-ui {
  min-width: 0;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid #c5d0cc;
  border-radius: 6px;
  background: #f1f3ef;
  box-shadow: 0 18px 40px rgba(16, 40, 59, 0.13);
  color: var(--ink);
}

.tour-ui__bar {
  height: 39px;
  padding: 0 13px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #d3dad7;
  background: var(--white);
  color: #77858a;
  font-family: "IBM Plex Mono", monospace;
  font-size: 6.5px;
}

.tour-ui__bar > span:first-child {
  display: flex;
  gap: 4px;
}

.tour-ui__bar > span:first-child i {
  width: 5px;
  height: 5px;
  border: 1px solid #93a09f;
  border-radius: 50%;
}

.tour-ui__bar b {
  color: var(--ink);
  font-weight: 500;
}

.tour-ui__bar em {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #687a7f;
  font-style: normal;
}

.tour-ui__bar em i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
}

.tour-recommendation {
  min-height: 381px;
  display: grid;
  grid-template-columns: minmax(150px, 0.86fr) minmax(225px, 1.25fr) minmax(130px, 0.67fr);
}

.tour-recommendation__intro,
.tour-recommendation__logic,
.tour-recommendation__impact {
  min-width: 0;
  padding: clamp(18px, 2.5vw, 28px);
}

.tour-recommendation__intro,
.tour-recommendation__logic {
  border-right: 1px solid #d3dad7;
}

.tour-recommendation__intro {
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.tour-recommendation__intro > span,
.tour-recommendation__logic > span,
.tour-recommendation__impact > span {
  color: #7c8a8f;
  font-family: "IBM Plex Mono", monospace;
  font-size: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tour-recommendation__intro h4 {
  margin: 47px 0 12px;
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.tour-recommendation__intro p {
  margin: 0;
  color: #6e7c81;
  font-size: 8px;
  line-height: 1.55;
}

.tour-recommendation__intro button {
  min-height: 35px;
  margin-top: auto;
  border: 1px solid var(--mint);
  border-radius: 3px;
  background: var(--mint);
  color: var(--ink);
  font-size: 8px;
  font-weight: 600;
}

.tour-recommendation__logic {
  background: #f3f5f1;
}

.tour-recommendation__logic > div {
  margin-top: 53px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.tour-recommendation__logic > div > b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid #d1d9d6;
  border-radius: 4px;
  background: var(--white);
  color: #65777e;
  font-family: "IBM Plex Mono", monospace;
  font-size: 7px;
}

.tour-recommendation__logic > div > i {
  color: var(--mint-dark);
  font-style: normal;
}

.tour-recommendation__logic p {
  min-width: 0;
  margin: 0;
}

.tour-recommendation__logic small,
.tour-recommendation__logic strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tour-recommendation__logic small {
  color: #7c8b8f;
  font-size: 6px;
}

.tour-recommendation__logic strong {
  margin-top: 4px;
  font-size: 8px;
}

.tour-recommendation__logic ul {
  margin: 35px 0 0;
  padding: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid #d2dad7;
  color: #64767c;
  font-size: 6px;
  list-style: none;
}

.tour-recommendation__logic li::before {
  width: 5px;
  height: 5px;
  margin-right: 5px;
  display: inline-block;
  content: "";
  border-radius: 50%;
  background: var(--mint);
}

.tour-recommendation__impact {
  display: flex;
  flex-direction: column;
  background: var(--ink);
  color: var(--white);
}

.tour-recommendation__impact strong {
  margin: 30px 0 7px;
  display: block;
  color: var(--mint);
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.tour-recommendation__impact > small {
  color: #8799a1;
  font-size: 6px;
  line-height: 1.5;
}

.tour-recommendation__impact > div {
  padding: 13px 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid #2e4b5e;
  color: #82959e;
  font-size: 6.5px;
}

.tour-recommendation__impact > div:first-of-type {
  margin-top: 36px;
}

.tour-recommendation__impact > div b {
  color: var(--white);
}

.tour-builder {
  min-height: 381px;
  padding: clamp(18px, 2.5vw, 29px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(190px, 0.75fr);
  gap: 14px;
}

.tour-builder__form,
.tour-builder__simulation {
  border: 1px solid #d0d8d5;
  border-radius: 5px;
  background: var(--white);
}

.tour-builder__form {
  padding: 20px;
}

.tour-builder__form > span,
.tour-builder__form h4 + span {
  color: #7d8b8f;
  font-family: "IBM Plex Mono", monospace;
  font-size: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tour-builder__form h4 {
  margin: 6px 0 17px;
  font-size: 12px;
}

.tour-builder__range {
  padding: 14px;
  border: 1px solid #d4dcda;
  border-radius: 4px;
  background: #f5f7f4;
}

.tour-builder__range p,
.tour-builder__range > span {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tour-builder__range small {
  color: #78878b;
  font-size: 6px;
}

.tour-builder__range strong {
  font-size: 11px;
}

.tour-builder__range > i {
  height: 2px;
  margin: 15px 0 7px;
  display: block;
  background: #b8c5c1;
}

.tour-builder__range > i b {
  width: 64%;
  height: 100%;
  position: relative;
  display: block;
  background: var(--mint-dark);
}

.tour-builder__range > i b::after {
  width: 10px;
  height: 10px;
  position: absolute;
  right: -5px;
  top: -4px;
  content: "";
  border-radius: 50%;
  background: var(--mint-dark);
}

.tour-builder__choices {
  margin-top: 11px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.tour-builder__choices p {
  margin: 0;
  padding: 11px;
  border: 1px solid #d4dcda;
  border-radius: 4px;
}

.tour-builder__choices small,
.tour-builder__choices strong {
  display: block;
}

.tour-builder__choices small {
  color: #7e8c90;
  font-size: 6px;
}

.tour-builder__choices strong {
  margin-top: 6px;
  font-size: 8px;
}

.tour-builder__form label {
  margin-top: 11px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #b9d7c8;
  border-radius: 4px;
  background: #e8f4ed;
}

.tour-builder__form label > i {
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border-radius: 3px;
  background: var(--mint-dark);
  color: var(--white);
  font-size: 7px;
  font-style: normal;
}

.tour-builder__form label strong,
.tour-builder__form label small {
  display: block;
}

.tour-builder__form label strong {
  font-size: 7px;
}

.tour-builder__form label small {
  margin-top: 2px;
  color: #65776e;
  font-size: 5.5px;
}

.tour-builder__simulation {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.tour-builder__simulation > span {
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #2f4d60;
}

.tour-builder__simulation > span small {
  color: #8da0a8;
  font-size: 7px;
}

.tour-builder__simulation > span b {
  padding: 5px 7px;
  border-radius: 10px;
  background: var(--mint);
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 5.5px;
  text-transform: uppercase;
}

.tour-builder__simulation > div {
  padding: 31px 14px 27px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
}

.tour-builder__simulation p {
  margin: 0;
  padding: 12px 9px;
  border: 1px solid #36566a;
  border-radius: 4px;
  background: #17354a;
}

.tour-builder__simulation p small,
.tour-builder__simulation p strong {
  display: block;
}

.tour-builder__simulation p small {
  color: #7f949d;
  font-size: 5.5px;
}

.tour-builder__simulation p strong {
  margin-top: 5px;
  font-size: 8px;
}

.tour-builder__simulation > div > i {
  color: var(--mint);
  font-size: 9px;
  font-style: normal;
  text-align: center;
}

.tour-builder__simulation > div > i b {
  display: block;
  font-size: 6px;
}

.tour-builder__simulation ul {
  margin: 0 14px;
  padding: 0;
  list-style: none;
}

.tour-builder__simulation li {
  padding: 11px 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid #2e4c5f;
  color: #81949d;
  font-size: 6px;
}

.tour-builder__simulation li b {
  color: var(--mint);
}

.tour-automation {
  min-height: 381px;
  padding: clamp(18px, 2.5vw, 29px);
}

.tour-automation__summary {
  margin-bottom: 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid #d0d8d5;
  border-radius: 4px;
  background: var(--white);
}

.tour-automation__summary > span {
  padding: 15px;
  border-right: 1px solid #d7dedb;
}

.tour-automation__summary > span:last-child {
  border-right: 0;
}

.tour-automation__summary small,
.tour-automation__summary strong {
  display: block;
}

.tour-automation__summary small {
  color: #7d8b90;
  font-family: "IBM Plex Mono", monospace;
  font-size: 5.5px;
  text-transform: uppercase;
}

.tour-automation__summary strong {
  margin-top: 7px;
  font-size: 15px;
  font-weight: 500;
}

.tour-automation__head,
.tour-automation__row {
  display: grid;
  grid-template-columns: minmax(150px, 1.25fr) minmax(110px, 0.85fr) minmax(90px, 0.65fr) 70px;
  gap: 10px;
  align-items: center;
}

.tour-automation__head {
  padding: 10px 14px;
  border: 1px solid #d1d9d6;
  border-radius: 4px 4px 0 0;
  background: #e8ece8;
  color: #78868b;
  font-family: "IBM Plex Mono", monospace;
  font-size: 5.5px;
  text-transform: uppercase;
}

.tour-automation__row {
  min-height: 64px;
  padding: 10px 14px;
  border-right: 1px solid #d1d9d6;
  border-bottom: 1px solid #d1d9d6;
  border-left: 1px solid #d1d9d6;
  background: var(--white);
  color: #61747b;
  font-size: 7px;
}

.tour-automation__row:last-child {
  border-radius: 0 0 4px 4px;
}

.tour-automation__row > span:first-child {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tour-automation__row > span:first-child > i {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #e4f3eb;
  color: var(--mint-dark);
  font-style: normal;
}

.tour-automation__row b {
  overflow: hidden;
  color: var(--ink);
  font-size: 7.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tour-automation__row em {
  padding: 6px 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #b8d7c8;
  border-radius: 12px;
  background: #e5f3eb;
  color: var(--mint-dark);
  font-family: "IBM Plex Mono", monospace;
  font-size: 5px;
  font-style: normal;
  text-transform: uppercase;
}

.tour-automation__row em i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.tour-automation__row em.is-blue {
  border-color: #c7d9e5;
  background: #e6eef4;
  color: #4e7694;
}

.tour-results {
  min-height: 381px;
  padding: clamp(20px, 2.7vw, 32px);
  background: var(--ink);
  color: var(--white);
}

.tour-results__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.tour-results__top > span small,
.tour-results__top > span strong {
  display: block;
}

.tour-results__top > span small {
  color: #8498a1;
  font-size: clamp(7px, 0.65vw, 9px);
}

.tour-results__top > span strong {
  margin-top: 7px;
  color: var(--mint);
  font-size: clamp(27px, 3vw, 39px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.tour-results__top > span em {
  margin-top: 5px;
  display: block;
  color: var(--mint);
  font-size: clamp(7px, 0.65vw, 9px);
  font-style: normal;
}

.tour-results__ranges {
  margin: 0;
  padding: 3px;
  display: flex;
  gap: 2px;
  border: 1px solid #355267;
  border-radius: 4px;
  background: #17354a;
}

.tour-results__ranges button {
  min-width: 32px;
  min-height: 27px;
  padding: 6px 9px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: #81959e;
  cursor: pointer;
  font-family: "IBM Plex Mono", monospace;
  font-size: 6px;
  font-weight: 600;
  touch-action: manipulation;
  transition: background 140ms ease, color 140ms ease;
}

.tour-results__ranges button:hover {
  color: var(--white);
}

.tour-results__ranges button[aria-pressed="true"] {
  background: #2d4d61;
  color: var(--white);
}

.tour-results__ranges button:focus-visible {
  outline: 1px solid var(--mint);
  outline-offset: 1px;
}

.tour-results svg {
  width: 100%;
  height: auto;
  max-height: 235px;
  margin-top: 6px;
  display: block;
}

.tour-results__foot {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #82959e;
  font-size: 6px;
}

.tour-results__foot span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tour-results__foot small {
  font-size: clamp(7px, 0.6vw, 8px);
  white-space: nowrap;
}

.tour-results__foot i {
  width: 13px;
  height: 2px;
  background: var(--mint);
}

.tour-results__foot span:nth-child(2) i {
  background: repeating-linear-gradient(
    to right,
    #698ba6 0 4px,
    transparent 4px 7px
  );
}

.access-note {
  padding: 28px clamp(24px, 3vw, 40px);
  border: 1px solid var(--line);
  border-top: 0;
  background: #eeeee9;
}

.access-note > p:last-child {
  max-width: 880px;
  margin: 0;
  color: #666a63;
  font-size: 11px;
  line-height: 1.7;
}

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

.outcome-section {
  min-height: 560px;
  padding: 76px var(--page-pad) 88px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.outcome-section h2 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.outcome-section h2 em {
  color: var(--mint);
  font-style: normal;
}

.outcome-stats {
  margin-bottom: 36px;
  display: flex;
  border: 1px solid var(--line-dark);
}

.outcome-stats > div {
  min-width: 240px;
  padding: 18px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.outcome-stats > div + div {
  border-left: 1px solid var(--line-dark);
}

.outcome-stats span {
  color: #7f837b;
  font-size: 9px;
}

.outcome-stats strong,
.outcome-stats b {
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
}

.button--accent {
  min-width: 230px;
  background: #cfe6db;
  border-color: #cfe6db;
  color: var(--ink);
}

.button--accent:hover {
  background: var(--white);
  border-color: var(--white);
}

.outcome-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.button--outline-light {
  min-width: 230px;
  border-color: #4b6779;
  background: transparent;
  color: var(--white);
}

.button--outline-light:hover {
  border-color: #8299a6;
  background: rgba(255, 255, 255, 0.05);
}

.disclaimer {
  padding: 28px var(--page-pad);
  background: #ebeae5;
  border-bottom: 1px solid var(--line);
}

.disclaimer p {
  max-width: 1070px;
  margin: 0 auto;
  color: #747870;
  font-size: 9px;
  line-height: 1.75;
  text-align: center;
}

.disclaimer strong {
  color: #444740;
}

.site-footer {
  min-height: 190px;
  padding: 44px var(--page-pad);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  gap: 30px;
  background: var(--paper);
}

.brand--footer img {
  filter: none;
}

.site-footer > p {
  margin: 0;
  color: #5d615a;
  font-size: 11px;
  line-height: 1.6;
}

.site-footer__meta {
  justify-self: end;
  font-size: 8px !important;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .metric-rail {
    grid-template-columns: repeat(3, 1fr);
  }

  .metric-rail__intro {
    display: none;
  }

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

  .impact-panel {
    border-left: 0;
    border-top: 1px solid var(--ink);
  }

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

  .breakdown-card {
    min-height: 185px;
  }

}

@media (min-width: 1121px) {
  html[data-currency="dkk"] .impact-summary__value {
    font-size: clamp(34px, 2.5vw, 36px);
    white-space: nowrap;
  }

  html[data-currency="dkk"] .breakdown-card > strong {
    font-size: clamp(30px, 2.6vw, 38px);
    white-space: nowrap;
  }
}

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

  .site-nav {
    display: none;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: 88px;
  }

  .hero-product {
    width: 100%;
    max-width: 640px;
    margin: 14px auto 24px;
    justify-self: center;
    transform: none;
  }

  .metric-rail {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .metric-rail > * {
    padding: 24px 20px;
  }

  .hero-metric {
    display: flex;
    flex-direction: column;
  }

  .hero-metric small {
    padding: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > div {
    grid-column: 1;
  }

  .section-heading h2 {
    margin-top: 0;
  }

  .method-note {
    grid-template-columns: auto 1fr;
  }

  .method-note > p {
    grid-column: 1 / -1;
  }

  .product-tour__panel {
    grid-template-columns: 1fr;
  }

  .product-tour__copy {
    min-height: 440px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-tour__copy h3 {
    margin-top: 36px;
  }

  .product-tour__panel > .tour-ui {
    width: auto;
    margin: 36px;
  }
}

@media (max-width: 620px) {
  :root {
    --page-pad: 20px;
  }

  html {
    scroll-padding-top: 68px;
  }

  .site-header {
    min-height: 68px;
    column-gap: 12px;
  }

  .brand {
    font-size: 20px;
  }

  .brand img {
    width: 29px;
    height: auto;
  }

  .button--small {
    min-height: 36px;
    padding: 0 13px;
    gap: 12px;
  }

  .site-actions .button--small {
    display: none;
  }

  .preference-toggle {
    min-height: 36px;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    min-height: 520px;
    padding-top: 68px;
    padding-bottom: 52px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(42px, 13vw, 54px);
    letter-spacing: -0.045em;
  }

  .hero__lede {
    font-size: 14px;
  }

  .hero__cta {
    width: 100%;
    margin-top: 0;
  }

  .hero__actions {
    margin-top: 28px;
    align-items: stretch;
    flex-direction: column;
    gap: 5px;
  }

  .hero-product {
    margin-top: 24px;
  }

  .hero-product__body {
    min-height: 305px;
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .hero-product__nav {
    gap: 13px;
  }

  .hero-product__nav span {
    width: 20px;
    height: 20px;
  }

  .hero-product__canvas {
    padding: 20px 14px 15px;
  }

  .hero-product__heading strong {
    font-size: 22px;
  }

  .hero-product__metrics > div {
    padding: 9px;
  }

  .hero-product__metrics strong {
    font-size: 10px;
  }

  .metric-rail {
    grid-template-columns: 1fr;
  }

  .metric-rail > * {
    min-height: 98px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .hero-metric {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .hero-metric small {
    grid-column: 2;
    grid-row: 2;
    padding-bottom: 5px;
  }

  .calculator-section,
  .pathway-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .breakdown-section {
    padding-top: 38px;
    padding-bottom: 48px;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .calculator-grid {
    box-shadow: 0 8px 24px rgba(23, 35, 46, 0.07);
  }

  .input-panel,
  .impact-panel {
    padding: 26px 20px;
  }

  .panel-code {
    display: none;
  }

  .slider-group__heading {
    gap: 10px;
  }

  .input-label label {
    font-size: 11px;
  }

  .tooltip {
    left: 0;
  }

  .country-selector__panel {
    padding: 12px;
  }

  .country-selector__options {
    grid-template-columns: 1fr;
    max-height: 240px;
  }

  .country-selector__option:nth-child(odd) {
    border-right: 0;
  }

  .impact-visual {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .impact-summary {
    padding: 24px 0 0;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
    text-align: center;
  }

  .impact-summary__signal {
    justify-content: center;
  }

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

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

  .breakdown-card {
    min-height: 0;
    padding: 18px;
    display: grid;
    grid-template-columns: minmax(132px, 0.9fr) minmax(0, 1.1fr);
    column-gap: 14px;
  }

  .breakdown-card__top { grid-column: 1 / -1; }

  .breakdown-card > strong {
    margin: 18px 0 0;
    align-self: start;
    font-size: 24px;
    white-space: nowrap;
  }

  .breakdown-card > p {
    margin-top: 18px;
    font-size: 9px;
    line-height: 1.45;
  }

  .method-note {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .method-note > p {
    grid-column: 1 / -1;
  }

  .product-tour {
    margin-right: calc(var(--page-pad) * -1);
    margin-left: calc(var(--page-pad) * -1);
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .product-tour__tabs {
    grid-template-columns: repeat(4, minmax(142px, 1fr));
    overflow-x: auto;
  }

  .product-tour__tabs button {
    min-height: 76px;
    padding: 12px 14px;
  }

  .product-tour__copy {
    min-height: 420px;
    padding: 34px 24px;
  }

  .product-tour__copy h3 {
    font-size: 34px;
  }

  .product-tour__panel > .tour-ui {
    margin: 20px 14px;
  }

  .tour-ui {
    min-height: 0;
  }

  .tour-recommendation {
    grid-template-columns: 1fr;
  }

  .tour-recommendation__intro {
    min-height: 295px;
    border-right: 0;
    border-bottom: 1px solid #d3dad7;
  }

  .tour-recommendation__intro h4 {
    margin-top: 34px;
  }

  .tour-recommendation__logic {
    display: none;
  }

  .tour-recommendation__impact {
    min-height: 225px;
  }

  .tour-recommendation__impact > div:first-of-type {
    margin-top: 24px;
  }

  .tour-builder {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .tour-builder__simulation {
    min-height: 255px;
  }

  .tour-automation {
    padding: 14px;
  }

  .tour-automation__summary > span {
    padding: 11px 8px;
  }

  .tour-automation__summary strong {
    font-size: 11px;
  }

  .tour-automation__head,
  .tour-automation__row {
    grid-template-columns: minmax(145px, 1fr) minmax(85px, 0.65fr) 65px;
  }

  .tour-automation__head > :nth-child(2),
  .tour-automation__row > :nth-child(2) {
    display: none;
  }

  .tour-results {
    padding: 20px 14px;
  }

  .tour-results__top > span strong {
    font-size: 25px;
  }

  .tour-results__ranges button {
    min-width: 29px;
    padding: 5px 6px;
  }

  .access-note {
    padding: 26px;
  }

  .outcome-section {
    min-height: 520px;
    padding-top: 62px;
    padding-bottom: 70px;
  }

  .outcome-section h2 {
    margin-top: 28px;
  }

  .outcome-stats {
    width: 100%;
    flex-direction: column;
  }

  .outcome-actions {
    width: 100%;
    flex-direction: column;
  }

  .outcome-actions .button {
    width: 100%;
  }

  .outcome-stats > div {
    min-width: 0;
  }

  .outcome-stats > div + div {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

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

  .site-footer > p:not(.site-footer__meta) {
    display: none;
  }
}

@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;
  }
}

/* Audience, assessment, product-tour, and access sections */
.site-nav {
  gap: clamp(18px, 2.2vw, 32px);
}

.section-kicker {
  margin: 0 0 22px;
  color: #92b7a5;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-product__live--example i {
  background: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(85, 127, 165, 0.14);
}

.fit-section,
.assessment-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(82px, 8vw, 116px) var(--page-pad);
}

.fit-section {
  padding-top: clamp(64px, 6vw, 84px);
  padding-bottom: clamp(64px, 6vw, 84px);
  border-bottom: 1px solid var(--line);
}

.fit-section .section-heading--compact {
  margin-bottom: 36px;
}

.fit-section .section-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 3.8vw, 54px);
}

.fit-section .section-heading > div > p {
  max-width: 760px;
  line-height: 1.6;
}

.fit-section .section-kicker,
.calculator-section .section-kicker,
.pathway-section .section-kicker {
  color: var(--mint-dark);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.fit-grid article {
  min-height: 168px;
  padding: clamp(18px, 1.7vw, 24px);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.fit-grid article:last-child {
  border-right: 0;
}

.fit-grid article > span {
  color: var(--mint-dark);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
}

.fit-grid h3 {
  margin: 22px 0 8px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.fit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.assessment-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(44px, 7vw, 94px);
  border-radius: 7px;
  background: var(--ink);
  color: var(--white);
}

.assessment-section__intro {
  align-self: start;
}

.assessment-section__intro h2 {
  margin: 0 0 24px;
  font-size: clamp(42px, 4.4vw, 64px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.assessment-section__intro > p:not(.section-kicker) {
  margin: 0 0 32px;
  color: #aab8bf;
  font-size: 13px;
  line-height: 1.75;
}

.assessment-deliverables {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.assessment-deliverables article {
  padding: 23px 0;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--line-dark);
}

.assessment-deliverables article > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid #466275;
  border-radius: 50%;
  color: var(--mint);
  font-family: "IBM Plex Mono", monospace;
  font-size: 7px;
}

.assessment-deliverables h3 {
  margin: 0 0 7px;
  font-size: 14px;
  font-weight: 600;
}

.assessment-deliverables p {
  margin: 0;
  color: #9aaab2;
  font-size: 10px;
  line-height: 1.65;
}

.trust-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line-dark);
}

.trust-rail > div {
  padding: 21px 24px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.trust-rail > div + div {
  border-left: 1px solid var(--line-dark);
}

.trust-rail > div > i {
  width: 7px;
  height: 7px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--mint);
}

.trust-rail strong,
.trust-rail small {
  display: block;
}

.trust-rail strong {
  font-size: 10px;
}

.trust-rail small {
  margin-top: 5px;
  color: #8fa0a9;
  font-size: 8px;
  line-height: 1.55;
}

.pathway-section {
  padding-top: clamp(82px, 8vw, 116px);
}

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

.tour-overview {
  padding: clamp(24px, 4vw, 42px);
}

.tour-overview__total {
  padding: 25px;
  border: 1px solid #d4dcda;
  border-radius: 5px;
  background: var(--white);
}

.tour-overview__total > small,
.tour-overview__total > span,
.tour-overview__accounts span,
.tour-overview__accounts b {
  color: #77888e;
  font-family: "IBM Plex Mono", monospace;
  font-size: 7px;
}

.tour-overview__total > strong {
  margin: 10px 0 12px;
  display: block;
  color: var(--mint-dark);
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.tour-overview__accounts {
  margin-top: 14px;
  border: 1px solid #d4dcda;
  border-radius: 5px;
  background: var(--white);
}

.tour-overview__accounts > div {
  padding: 12px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid #e1e5e2;
}

.tour-overview__accounts > div:last-child {
  border-bottom: 0;
}

.tour-overview__accounts span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

.tour-overview__accounts i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cobalt);
}

.tour-overview__accounts i.is-mint { background: var(--mint); }
.tour-overview__accounts i.is-amber { background: var(--sand); }

.tour-overview__note {
  margin-top: 14px;
  padding: 13px 15px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border: 1px solid #b7d7c7;
  border-radius: 5px;
  background: #e4f3eb;
}

.tour-overview__note > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
}

.tour-overview__note strong,
.tour-overview__note small {
  display: block;
}

.tour-overview__note strong { font-size: 8px; }
.tour-overview__note small { margin-top: 3px; color: #63766d; font-size: 6px; }

.access-section {
  min-height: 720px;
  padding-right: var(--page-pad);
  padding-left: var(--page-pad);
}

.access-section__intro {
  width: 100%;
  max-width: 900px;
}

.access-section__intro .section-kicker {
  color: var(--mint);
}

.access-section__intro h2 {
  margin-bottom: 20px;
}

.access-section__intro > p:not(.section-kicker) {
  max-width: 650px;
  margin: 0 auto 34px;
  color: #a6b2b8;
  font-size: 12px;
  line-height: 1.75;
}

.access-form {
  width: min(900px, 100%);
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: #153146;
  text-align: left;
}

.access-form__fields {
  display: grid;
  grid-template-columns: 1fr 1fr 0.72fr;
  gap: 12px;
}

.access-form label > span {
  margin-bottom: 8px;
  display: block;
  color: #a9b7be;
  font-size: 9px;
  font-weight: 600;
}

.access-form input[type="text"],
.access-form input[type="email"],
.access-form select {
  width: 100%;
  height: 48px;
  padding: 0 13px;
  border: 1px solid #456075;
  border-radius: 4px;
  outline: 0;
  background: #10283b;
  color: var(--white);
  font-size: 12px;
}

.access-form input::placeholder {
  color: #718693;
}

.access-form input:focus,
.access-form select:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 2px rgba(88, 191, 137, 0.16);
}

.access-form__consent {
  margin-top: 17px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.access-form__consent input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--mint);
}

.access-form__consent span {
  margin: 0 !important;
  color: #93a5af !important;
  font-weight: 400 !important;
  line-height: 1.55;
}

.access-form__footer {
  margin-top: 23px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
}

.access-form__footer .button {
  width: 100%;
  justify-content: space-between;
  cursor: pointer;
}

.access-form__footer .button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.access-form__footer p {
  margin: 0;
  color: #7f949f;
  font-size: 8px;
  line-height: 1.6;
}

.access-form__status {
  margin: 18px 0 0;
  padding: 11px 13px;
  border: 1px solid #4d687a;
  border-radius: 4px;
  color: #b9c7ce;
  font-size: 10px;
  line-height: 1.5;
}

.access-form__status[data-status="success"] {
  border-color: #4d9d76;
  background: rgba(88, 191, 137, 0.1);
  color: #bde7d0;
}

.access-form__status[data-status="error"] {
  border-color: #9b665f;
  background: rgba(182, 80, 69, 0.08);
  color: #e2bab5;
}

@media (max-width: 1120px) {
  .site-nav { gap: 18px; }
  .fit-grid { grid-template-columns: 1fr 1fr; }
  .fit-grid article:nth-child(2) { border-right: 0; }
  .fit-grid article:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .assessment-section { margin-right: var(--page-pad); margin-left: var(--page-pad); }
  .product-tour__tabs strong { font-size: 10px; }
  .product-tour__tabs button { padding: 13px 12px; }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .assessment-section { grid-template-columns: 1fr; }
  .trust-rail { grid-template-columns: 1fr; }
  .trust-rail > div + div { border-top: 1px solid var(--line-dark); border-left: 0; }
  .access-form__fields { grid-template-columns: 1fr 1fr; }
  .access-form__fields label:last-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .assessment-section { padding-top: 72px; padding-bottom: 72px; }
  .fit-grid { grid-template-columns: 1fr; }
  .fit-grid article { min-height: 0; padding: 20px; border-right: 0; border-bottom: 1px solid var(--line); }
  .fit-grid h3 { margin-top: 18px; }
  .fit-grid article:last-child { border-bottom: 0; }
  .assessment-section { margin-right: 0; margin-left: 0; border-radius: 0; }
  .product-tour__tabs { grid-template-columns: repeat(5, minmax(132px, 1fr)); }
  .tour-overview { padding: 16px; }
  .tour-overview__total { padding: 19px; }
  .access-section { min-height: 790px; }
  .access-section__intro h2 { font-size: 40px; }
  .access-form { padding: 22px 18px; }
  .access-form__fields { grid-template-columns: 1fr; }
  .access-form__fields label:last-child { grid-column: auto; }
  .access-form__footer { grid-template-columns: 1fr; }
}
