:root {
  --white: oklch(1 0 0);
  --bg: oklch(0.982 0.004 248);
  --surface: oklch(0.93 0.018 248);
  --ink: oklch(0.175 0.026 248);
  --muted: oklch(0.43 0.03 248);
  --primary: oklch(0.541 0.122 248.2);
  --primary-ink: oklch(0.48 0.13 248.2);
  --primary-deep: oklch(0.31 0.095 248);
  --primary-dark: oklch(0.205 0.058 248);
  --accent: oklch(0.82 0.11 68);
  --sand: oklch(0.9 0.04 76);
  --line-light: oklch(1 0 0 / 0.2);
  --line-dark: oklch(0.175 0.026 248 / 0.16);
  --font-display: "Barlow Condensed", "Haettenschweiler", sans-serif;
  --font-body: "Atkinson Hyperlegible", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 5.5rem;
  --page-pad: clamp(1.25rem, 4vw, 4.5rem);
  --content-max: 96rem;
  --gutter: max(var(--page-pad), calc((100% - var(--content-max)) / 2));
  --z-sticky: 20;
  accent-color: var(--primary);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  caret-color: var(--primary);
  scrollbar-color: var(--primary) var(--surface);
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

::-webkit-scrollbar-track {
  background: var(--surface);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border: 3px solid var(--surface);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-deep);
}

::selection {
  background: var(--accent);
  color: var(--ink);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

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

.hero :focus-visible,
.outcomes :focus-visible,
.operating-model :focus-visible,
.contact :focus-visible,
.site-header:not(.is-scrolled):not(.menu-open) :focus-visible {
  outline-color: var(--accent);
}

.ico {
  flex: none;
  width: 1.05em;
  height: 1.05em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(100%, var(--content-max));
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

/* ---------- header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-sticky);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--header-height);
  padding-inline: var(--gutter);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background-color 280ms ease, color 280ms ease, border-color 280ms ease;
}

.site-header.is-scrolled {
  background: oklch(0.982 0.004 248 / 0.94);
  color: var(--ink);
  border-bottom-color: var(--line-dark);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  gap: 0.85rem;
  align-items: center;
  min-height: 44px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.24em;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  transform: rotate(30deg);
}

.brand-mark i {
  position: absolute;
  left: 50%;
  width: 1px;
  height: 100%;
  background: currentColor;
  transform-origin: bottom;
}

.brand-mark i:nth-child(2) {
  transform: rotate(60deg);
}

.brand-mark i:nth-child(3) {
  transform: rotate(-60deg);
}

.site-nav {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  font-size: 0.94rem;
}

.site-nav a {
  position: relative;
}

.site-nav a:not(.nav-contact) {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.site-nav a:not(.nav-contact)::after {
  position: absolute;
  top: calc(50% + 0.72em);
  right: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 320ms var(--ease-out);
}

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

.nav-contact {
  padding: 0.7rem 1.15rem;
  border: 1px solid currentColor;
  transition: background-color 220ms ease, color 220ms ease;
}

.nav-contact:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.menu-close {
  display: none;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: min(56rem, 92svh);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 84% 46%, oklch(0.355 0.1 248) 0%, transparent 64%),
    var(--primary-deep);
  color: var(--white);
  isolation: isolate;
}

/* ---------- hero map: Finland, routes out of Kuopio ---------- */

.hero-map-wrap {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 54%;
  padding-right: clamp(0.5rem, 2.4vw, 3rem);
  padding-bottom: clamp(1rem, 3vh, 2.5rem);
  pointer-events: none;
}

.hero-map {
  height: 112%;
  width: auto;
  overflow: visible;
}

.map-land {
  fill: oklch(1 0 0 / 0.04);
  stroke: oklch(1 0 0 / 0.34);
  stroke-width: 1;
  animation: land-in 1100ms ease both;
}

@keyframes land-in {
  from {
    opacity: 0;
  }
}

.map-roads {
  color: var(--accent);
  stroke-width: 1.9;
}

.map-roads .rt {
  stroke-dasharray: 100;
  stroke-dashoffset: 0;
  animation: route-draw 950ms var(--ease-out) backwards;
}

.map-roads .d0 {
  animation-delay: 420ms;
}

.map-roads .d1 {
  animation-delay: 1120ms;
}

.map-roads .d2 {
  animation-delay: 1720ms;
}

@keyframes route-draw {
  from {
    stroke-dashoffset: 100;
  }
}

.map-cities circle {
  fill: oklch(1 0 0 / 0.72);
  animation: dot-in 600ms ease 1900ms backwards;
}

@keyframes dot-in {
  from {
    opacity: 0;
  }
}

.map-hub {
  color: var(--accent);
}

.hub-dot {
  fill: currentColor;
}

.hub-ring {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  opacity: 0.65;
  transform-box: fill-box;
  transform-origin: center;
  animation: hub-in 900ms var(--ease-out) 120ms backwards;
}

@keyframes hub-in {
  from {
    opacity: 0;
    scale: 0.3;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(52rem, 86svh);
  width: min(100%, var(--content-max));
  margin-inline: auto;
  padding: calc(var(--header-height) + 2.5rem) var(--page-pad) 6.5rem;
}

.hero h1 {
  max-width: 21ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.6vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.022em;
  line-height: 0.98;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 strong {
  color: var(--accent);
  font-weight: 400;
}

.hero-lead {
  max-width: 46ch;
  margin: 2.5rem 0 2.75rem;
  color: oklch(0.93 0.015 248);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, 20rem);
  padding: 1rem 1.25rem;
  border: 1px solid oklch(1 0 0 / 0.6);
  font-size: 0.92rem;
  transition: background-color 240ms ease, color 240ms ease, border-color 240ms ease;
}

.hero-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}

.hero-place {
  position: absolute;
  bottom: 2.25rem;
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-place::before {
  width: 2.5rem;
  height: 1px;
  background: var(--accent);
  content: "";
}

/* ---------- outcomes ---------- */

.outcomes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3.5rem);
  padding: clamp(4rem, 7vw, 7rem) var(--gutter) clamp(3.5rem, 6vw, 6rem);
  background: var(--primary-dark);
  color: var(--white);
}

.outcomes article {
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-light);
}

.outcomes article:nth-child(2) { margin-top: clamp(1.25rem, 2.4vw, 3rem); }
.outcomes article:nth-child(3) { margin-top: clamp(2.5rem, 4.8vw, 6rem); }
.outcomes article:nth-child(4) { margin-top: clamp(3.75rem, 7.2vw, 9rem); }

.outcomes h2 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.outcomes p {
  max-width: 28ch;
  margin: 0;
  color: oklch(0.87 0.018 248);
  font-size: 0.98rem;
}

/* ---------- thesis ---------- */

.thesis {
  padding-top: clamp(7rem, 13vw, 13rem);
  padding-bottom: clamp(6rem, 11vw, 11rem);
}

.thesis-main {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(18rem, 0.65fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
}

.thesis h2,
.split-heading h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.6vw, 5.75rem);
  font-weight: 300;
  letter-spacing: -0.022em;
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
}

.thesis h2 span,
.split-heading h2 span,
.contact h2 span {
  color: var(--primary);
}

.thesis-copy {
  max-width: 54ch;
  font-size: 1.1rem;
}

.thesis-copy p:last-child {
  color: var(--muted);
}

.value-line {
  display: flex;
  align-items: center;
  margin-top: clamp(5rem, 9vw, 9rem);
  padding-block: 1.5rem;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  text-transform: uppercase;
}

.value-line i {
  flex: 1;
  height: 1px;
  margin-inline: 1rem;
  background: var(--line-dark);
}

.value-line strong {
  color: var(--primary-ink);
  font-weight: 600;
}

/* ---------- operating model ---------- */

.operating-model {
  padding-block: clamp(6rem, 11vw, 11rem);
  background: var(--primary-deep);
  color: var(--white);
}

.model-intro h2 {
  max-width: 20ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.6vw, 5.75rem);
  font-weight: 300;
  letter-spacing: -0.022em;
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
}

.model-copy {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  max-width: 62rem;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  font-size: 1.05rem;
}

.model-copy p {
  max-width: 52ch;
  margin: 0;
  color: oklch(0.92 0.014 248);
}

.model-copy p:first-child {
  color: var(--white);
  font-size: 1.2rem;
}

.model-steps {
  margin-top: clamp(5rem, 9vw, 9rem);
  padding-left: 0;
  list-style: none;
}

.model-steps li {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 2rem;
  align-items: start;
  padding-block: clamp(2rem, 4vw, 3.25rem);
  border-top: 1px solid var(--line-light);
}

.model-steps li:last-child {
  border-bottom: 1px solid var(--line-light);
}

.step-number {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

.model-steps h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.85rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.model-steps p {
  max-width: 46ch;
  margin: 0;
  color: oklch(0.92 0.014 248);
  font-size: 1.05rem;
}

/* ---------- cases ---------- */

.cases {
  padding-block: clamp(7rem, 12vw, 12rem);
  background: var(--bg);
}

.cases-heading {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.cases-heading h2 {
  max-width: 14ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.6vw, 5.75rem);
  font-weight: 300;
  letter-spacing: -0.022em;
  line-height: 0.95;
  text-transform: uppercase;
  text-wrap: balance;
}

.cases-heading > p {
  max-width: 46ch;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  color: var(--muted);
  font-size: 0.95rem;
}

.case-list {
  border-bottom: 1px solid var(--line-dark);
}

.case-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.85fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  padding-block: clamp(2.25rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line-dark);
}

.case-summary h3 {
  max-width: 26ch;
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.2;
}

.case-summary p {
  max-width: 50ch;
  margin: 0;
  color: var(--muted);
}

.case-view h4 {
  margin: 0 0 0.7rem;
  color: var(--primary-ink);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-view p {
  max-width: 44ch;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.5;
}

/* ---------- split ---------- */

.split {
  padding-top: clamp(7rem, 12vw, 12rem);
  padding-bottom: clamp(6rem, 10vw, 10rem);
}

.split-heading {
  margin-bottom: clamp(3.5rem, 7vw, 7rem);
}

.split-heading h2 {
  max-width: 12ch;
}

.split-heading h2 span {
  display: block;
}

.split-heading > p {
  max-width: 48ch;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.split-rows article {
  display: grid;
  grid-template-columns: 24% minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  padding-block: clamp(1.75rem, 3vw, 2.75rem);
  border-top: 1px solid var(--line-dark);
}

.split-rows article:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.split-rows h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.split-rows article > div:last-child {
  padding-left: clamp(1.25rem, 3vw, 2.5rem);
  border-left: 1px solid var(--line-dark);
}

.lbl {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lbl-agent {
  color: var(--primary-ink);
}

.split-rows p {
  max-width: 40ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.split-note {
  max-width: 50ch;
  margin: clamp(2rem, 4vw, 3rem) 0 0 24%;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ---------- stance ---------- */

.stance {
  background: var(--sand);
  color: var(--ink);
}

.stance-inner {
  padding-block: clamp(7rem, 13vw, 13rem);
}

.stance h2,
.stance p {
  max-width: 18ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 5.75rem);
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
}

.stance p {
  margin-top: 1.25rem;
  color: var(--primary-deep);
}

/* ---------- contact ---------- */

.contact {
  background: var(--ink);
  color: var(--white);
}

.contact-top {
  padding-top: clamp(7rem, 12vw, 12rem);
  padding-bottom: clamp(6rem, 10vw, 10rem);
}

.contact h2 {
  max-width: 14ch;
}

.contact h2 span {
  display: block;
  color: var(--accent);
}

.contact-lead {
  max-width: 46ch;
  margin: 2.25rem 0 0;
  color: oklch(0.88 0.015 248);
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  text-wrap: pretty;
}

.contact-mail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 48rem;
  margin-top: clamp(4rem, 8vw, 8rem);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid oklch(1 0 0 / 0.55);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1;
  transition: color 240ms ease, border-color 240ms ease;
}

.contact-mail:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 2rem;
  align-items: end;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid var(--line-light);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
  color: oklch(0.78 0.015 248);
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-footer nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.site-footer nav a:hover,
.back-top:hover {
  color: var(--accent);
}

.back-top {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  justify-self: end;
  min-height: 44px;
  transition: color 220ms ease;
}

/* ---------- responsive ---------- */

@media (max-width: 1200px) {
  .hero-map-wrap {
    width: 48%;
  }

  .hero-map {
    height: 96%;
  }
}

@media (max-width: 1080px) {
  .split-rows article {
    grid-template-columns: 22% minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 5rem;
  }

  .menu-toggle {
    display: block;
    min-height: 44px;
    padding: 0.5rem 0;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem var(--page-pad) 2rem;
    background: var(--bg);
    color: var(--ink);
    border-bottom: 1px solid var(--line-dark);
    transform: translateY(-130%);
    transition: transform 380ms var(--ease-out);
  }

  .site-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .site-nav .nav-contact {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--ink);
    text-align: center;
  }

  .site-header.menu-open {
    background: var(--bg);
    color: var(--ink);
  }

  .site-header.menu-open .site-nav {
    transform: translateY(0);
  }

  .site-header.menu-open .menu-open {
    display: none;
  }

  .site-header.menu-open .menu-close {
    display: inline;
  }

  .hero-map-wrap {
    width: 100%;
    justify-content: center;
    padding-right: 0;
    padding-left: 34%;
    opacity: 0.8;
  }

  .hero-map {
    height: 92%;
    max-height: none;
  }

  .outcomes {
    grid-template-columns: repeat(2, 1fr);
    row-gap: clamp(2rem, 5vw, 3.5rem);
  }

  .outcomes article:nth-child(2) { margin-top: clamp(1.25rem, 3vw, 2.5rem); }
  .outcomes article:nth-child(3) { margin-top: 0; }
  .outcomes article:nth-child(4) { margin-top: clamp(1.25rem, 3vw, 2.5rem); }

  .thesis-main,
  .model-copy,
  .cases-heading,
  .case-item {
    grid-template-columns: 1fr;
  }

  .thesis-copy {
    margin-left: 22%;
  }

  .case-item {
    gap: 1.75rem;
  }

  .case-view {
    padding-left: 1.5rem;
    border-left: 1px solid var(--line-dark);
  }

  .split-rows article {
    grid-template-columns: 1fr 1fr;
    row-gap: 1.5rem;
  }

  .split-rows h3 {
    grid-column: 1 / -1;
  }

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

  .back-top {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .brand {
    font-size: 1.05rem;
    letter-spacing: 0.2em;
  }

  .hero {
    min-height: auto;
  }

  .hero-map-wrap {
    padding-left: 26%;
    padding-bottom: 0;
    opacity: 0.5;
  }

  .hero-map {
    height: 66%;
  }

  .hero-content {
    justify-content: flex-start;
    min-height: auto;
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 7rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.9rem, 12vw, 4.25rem);
  }

  .hero-cta {
    width: 100%;
  }

  .outcomes {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
  }

  .outcomes article:nth-child(n) {
    margin-top: 0;
  }

  .outcomes p {
    max-width: none;
  }

  .thesis h2,
  .model-intro h2,
  .cases-heading h2,
  .split-heading h2,
  .contact h2,
  .stance h2,
  .stance p {
    font-size: clamp(2.6rem, 11.5vw, 3.9rem);
  }

  .thesis-copy {
    margin-left: 0;
  }

  .value-line {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .value-line i {
    display: none;
  }

  .model-steps li {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .split-rows article {
    grid-template-columns: 1fr;
    row-gap: 1.25rem;
  }

  .split-rows article > div:last-child {
    padding-left: 0;
    border-left: 0;
  }

  .split-note {
    margin-left: 0;
  }

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

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

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

  .map-land,
  .map-roads .rt,
  .map-cities circle,
  .hub-ring {
    animation: none;
    opacity: 1;
    stroke-dashoffset: 0;
  }

  .map-land {
    fill: oklch(1 0 0 / 0.035);
  }

  .hub-ring {
    opacity: 0.65;
  }
}
