@font-face {
  font-family: "Rubik";
  src: url("/assets/fonts/rubik-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  src: url("/assets/fonts/rubik-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
}

:root {
  --green: oklch(0.72 0.19 145);
  --green-hover: oklch(0.65 0.18 145);
  --green-dark: oklch(0.25 0.07 150);
  --ink: oklch(0.18 0.025 150);
  --muted: oklch(0.52 0.025 150);
  --bg: oklch(0.995 0.003 145);
  --mint: oklch(0.965 0.025 145);
  --mint-strong: oklch(0.92 0.055 145);
  --line: oklch(0.89 0.018 145);
  --white: oklch(1 0 0);
  --shadow: 0 24px 70px oklch(0.2 0.04 150 / 0.1);
  --container: 1240px;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: clip;
}

body {
  overflow-x: clip;
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.hero-grid > *,
.city-hero-grid > *,
.hero-copy,
.city-hero-copy,
.hero-actions {
  min-width: 0;
}

button,
input {
  font-family: inherit;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid oklch(0.62 0.19 250);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: oklch(0.995 0.003 145 / 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px oklch(0.2 0.03 150 / 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 78px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  line-height: 1;
}

.brand > span:last-child {
  display: grid;
  gap: 4px;
}

.brand strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
}

.brand-mark {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--green);
  overflow: hidden;
}

.brand-mark span {
  position: absolute;
  width: 4px;
  height: 21px;
  border-radius: 3px;
  background: var(--white);
  transform: rotate(32deg);
}

.brand-mark span:nth-child(1) {
  left: 10px;
  top: 12px;
}

.brand-mark span:nth-child(2) {
  left: 17px;
  top: 6px;
}

.brand-mark span:nth-child(3) {
  left: 24px;
  top: 1px;
}

.partner-label {
  flex: 0 0 auto;
  padding: 6px 9px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: clamp(16px, 2vw, 30px);
}

.nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease;
}

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

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  gap: 10px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  color: var(--white);
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
}

.button svg,
.text-link svg {
  width: 19px;
  height: 19px;
  transition: transform 160ms ease;
}

.button:hover svg,
.text-link:hover svg {
  transform: translateX(3px);
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 13px;
}

.button-ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button-ghost:hover {
  color: var(--ink);
  background: var(--mint);
  border-color: var(--mint-strong);
}

.button-light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-weight: 800;
}

.text-link:hover {
  color: var(--green-hover);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--green);
  border-radius: 50%;
  vertical-align: 1px;
}

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

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(62px, 6.6vw, 96px);
  font-weight: 900;
}

h1 span,
.home-hero h1 span {
  color: var(--green-hover);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(40px, 4.2vw, 64px);
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
  font-weight: 850;
}

.hero {
  padding: 48px 0 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: 72px;
  min-height: 570px;
}

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

.hero-lead {
  max-width: 590px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.microcopy {
  max-width: 570px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-height: 550px;
}

.photo-frame {
  position: absolute;
  top: 4px;
  right: 0;
  width: 88%;
  height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-frame picture,
.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route {
  position: absolute;
  z-index: 3;
  width: 250px;
  height: 180px;
  border: 8px solid var(--green);
  border-right: 0;
  border-bottom: 0;
  border-radius: 100% 0 0;
  transform: rotate(-17deg);
  pointer-events: none;
}

.route-one {
  left: -36px;
  bottom: 18px;
}

.route span {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--white);
  border: 6px solid var(--green);
  border-radius: 50%;
}

.route span:first-child {
  left: -13px;
  bottom: -8px;
}

.route span:last-child {
  top: -13px;
  right: -6px;
}

.floating-note {
  position: absolute;
  z-index: 4;
  right: 34px;
  bottom: 2px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 218px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.floating-note > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--green-dark);
  background: var(--mint);
  border-radius: 50%;
}

.floating-note svg {
  width: 20px;
}

.floating-note div {
  display: grid;
  gap: 2px;
}

.floating-note small,
.floating-note strong {
  line-height: 1.2;
}

.floating-note small {
  color: var(--muted);
  font-size: 11px;
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metrics-strip > div {
  display: grid;
  gap: 4px;
  padding: 25px 28px;
  border-right: 1px solid var(--line);
}

.metrics-strip > div:first-child {
  padding-left: 0;
}

.metrics-strip > div:last-child {
  border-right: 0;
}

.metrics-strip strong {
  font-size: 24px;
  letter-spacing: -0.035em;
}

.metrics-strip span {
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 110px 0;
}

.section-heading {
  margin-bottom: 50px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 60px;
}

.split-heading p:last-child {
  max-width: 430px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 17px;
}

.search-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding: 8px 10px 8px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.search-panel label {
  display: grid;
  color: var(--muted);
}

.search-panel svg {
  width: 22px;
  height: 22px;
}

.search-panel input {
  min-width: 0;
  height: 52px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 16px;
}

.search-panel > span {
  padding: 10px 13px;
  color: var(--muted);
  background: var(--mint);
  border-radius: 8px;
  font-size: 12px;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.city-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 170ms ease, transform 170ms ease;
}

.city-card:hover {
  position: relative;
  z-index: 2;
  background: var(--mint);
}

.city-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 64px;
  gap: 16px;
}

.city-card h3 {
  margin-bottom: 4px;
  font-size: 27px;
}

.city-card h3 a {
  transition: color 160ms ease;
}

.city-card h3 a:hover {
  color: var(--green-hover);
}

.city-region {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.city-rate {
  display: grid;
  justify-items: end;
  flex: 0 0 auto;
  line-height: 1.1;
}

.city-rate small,
.city-rate span {
  color: var(--muted);
  font-size: 10px;
}

.city-rate strong {
  color: var(--green-hover);
  font-size: 19px;
}

.city-roles {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.city-priority {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 22px;
  font-size: 13px;
}

.city-priority > span {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 7px;
  background: var(--green);
  border-radius: 50%;
}

.city-card .text-link {
  margin-top: 22px;
  font-size: 13px;
}

.city-card[hidden] {
  display: none;
}

.city-grid .city-card:nth-child(n + 10) {
  display: none;
}

.cities-expanded .city-grid .city-card {
  display: flex;
}

.cities-expanded .city-grid .city-card[hidden] {
  display: none;
}

.show-cities {
  display: flex;
  margin: 28px auto 0;
}

.empty-state {
  padding: 50px;
  text-align: center;
  background: var(--mint);
  border-radius: var(--radius);
}

.empty-state p {
  color: var(--muted);
}

.roles-section,
.delivery-section,
.requirements-section,
.reviews-section {
  background: var(--mint);
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.role-overview {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.role-overview-1,
.role-overview-4 {
  grid-column: span 7;
}

.role-overview-2,
.role-overview-3 {
  grid-column: span 5;
}

.role-overview:nth-child(1) {
  background: var(--green-dark);
  color: var(--white);
}

.role-overview:nth-child(1) .eyebrow,
.role-overview:nth-child(1) > p {
  color: oklch(0.85 0.02 145);
}

.role-overview:nth-child(1) .text-link {
  color: var(--green);
}

.role-overview:nth-child(3) {
  background: var(--green);
  border-color: var(--green);
}

.role-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 55px;
  color: var(--green-dark);
  background: var(--mint-strong);
  border-radius: 50%;
}

.role-overview:nth-child(1) .role-icon,
.role-overview:nth-child(3) .role-icon {
  color: var(--ink);
  background: var(--white);
}

.role-icon svg {
  width: 28px;
  height: 28px;
}

.role-overview > p {
  max-width: 560px;
  color: var(--muted);
}

.role-overview .role-fit {
  margin-bottom: 30px;
  font-size: 13px;
}

.role-overview .text-link {
  margin-top: auto;
}

.quiz-section {
  color: var(--white);
  background: var(--green-dark);
}

.quiz-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

.quiz-intro {
  max-width: 470px;
}

.quiz-intro .eyebrow {
  color: var(--green);
}

.quiz-intro h2 {
  margin-bottom: 24px;
  color: var(--white);
}

.quiz-intro > p:not(.eyebrow) {
  max-width: 48ch;
  color: oklch(0.86 0.025 150);
  font-size: 18px;
}

.quiz-intro ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 34px 0 0;
  color: oklch(0.91 0.02 150);
  font-size: 14px;
  list-style: none;
}

.quiz-intro li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quiz-intro li svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.quiz-card {
  min-height: 540px;
  padding: clamp(28px, 4vw, 44px);
  color: var(--ink);
  background: var(--white);
  border-radius: 16px;
}

.quiz-progress {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.quiz-progress > div {
  height: 5px;
  background: var(--mint);
  border-radius: 999px;
  overflow: hidden;
}

.quiz-progress > div > span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--green);
  border-radius: inherit;
  transition: width 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.quiz-step {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.quiz-step legend {
  max-width: 620px;
  padding: 0;
  margin-bottom: 24px;
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.quiz-options {
  display: grid;
  gap: 9px;
}

.quiz-options label {
  display: block;
  cursor: pointer;
}

.quiz-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.quiz-options label > span {
  position: relative;
  display: grid;
  gap: 3px;
  min-height: 74px;
  padding: 14px 56px 14px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.quiz-options label > span::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--line);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.quiz-options strong {
  font-size: 16px;
  line-height: 1.25;
}

.quiz-options small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.quiz-options input:checked + span {
  background: var(--mint);
  border-color: var(--green);
}

.quiz-options input:checked + span::after {
  background: var(--green);
  border-color: var(--green);
  box-shadow: inset 0 0 0 4px var(--white);
}

.quiz-options input:focus-visible + span {
  outline: 3px solid oklch(0.62 0.19 250);
  outline-offset: 3px;
}

.quiz-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.quiz-actions [data-quiz-next] {
  margin-left: auto;
}

.button:disabled {
  color: oklch(0.63 0.015 150);
  background: oklch(0.93 0.01 150);
  border-color: oklch(0.93 0.01 150);
  cursor: not-allowed;
  transform: none;
}

.quiz-result {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  justify-content: center;
}

.quiz-result-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--green-dark);
  background: var(--mint-strong);
  border-radius: 50%;
}

.quiz-result-icon:empty {
  background: var(--mint);
}

.quiz-result-icon:empty::before {
  font-size: 28px;
  font-weight: 800;
  content: "i";
}

.quiz-result-icon svg {
  width: 31px;
  height: 31px;
}

.quiz-result-label {
  margin: 0 0 8px;
  color: var(--green-hover);
  font-size: 14px;
  font-weight: 800;
}

.quiz-result h3 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.quiz-result > p:not(.quiz-result-label) {
  max-width: 60ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.quiz-result-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.quiz-result-actions .text-link {
  min-height: 44px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-weight: 800;
  cursor: pointer;
}

.quiz-result > small {
  max-width: 62ch;
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.45;
}

.quiz-noscript {
  padding: 16px;
  background: var(--mint);
  border-radius: 12px;
}

.conditions-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 90px;
}

.condition-photo {
  position: relative;
}

.condition-photo > picture,
.condition-photo > picture img {
  display: block;
  width: 100%;
}

.condition-photo > picture img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}

.photo-caption {
  position: absolute;
  right: -32px;
  bottom: 28px;
  display: grid;
  gap: 3px;
  width: 250px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.photo-caption span {
  color: var(--muted);
  font-size: 12px;
}

.conditions-copy h2 {
  max-width: 690px;
}

.condition-list {
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.condition-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.condition-list article > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--green-dark);
  background: var(--mint);
  border-radius: 50%;
}

.condition-list svg {
  width: 21px;
}

.condition-list h3 {
  margin: 2px 0 8px;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.condition-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.steps li {
  min-height: 260px;
  padding: 28px 26px;
  border-right: 1px solid var(--line);
}

.steps li:first-child {
  padding-left: 0;
}

.steps li:last-child {
  border-right: 0;
}

.steps li > span {
  display: block;
  margin-bottom: 70px;
  color: var(--green-hover);
  font-size: 13px;
  font-weight: 900;
}

.steps h3 {
  font-size: 22px;
}

.steps p {
  color: var(--muted);
  font-size: 14px;
}

.steps-action {
  display: flex;
  justify-content: flex-start;
  margin-top: 28px;
}

.steps-action .button {
  min-width: 250px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 100px;
}

.faq-grid > div:first-child {
  position: sticky;
  top: 120px;
}

.faq-intro {
  max-width: 350px;
  color: var(--muted);
}

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

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

.faq-list summary {
  position: relative;
  padding: 25px 56px 25px 0;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 7px;
  width: 18px;
  height: 2px;
  background: var(--ink);
  content: "";
}

.faq-list summary span::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
  transition: transform 170ms ease;
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 690px;
  padding: 0 56px 25px 0;
  color: var(--muted);
}

.final-cta {
  padding: 0 0 40px;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 60px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: var(--radius);
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(38px, 4vw, 58px);
}

.final-cta .eyebrow,
.final-cta p {
  color: oklch(0.84 0.025 145);
}

.footer {
  padding: 70px 0 30px;
  background: var(--mint);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 80px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid p,
.footer-grid a {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-grid a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 22px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  padding-top: 28px;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumbs a:hover {
  color: var(--ink);
}

.city-hero {
  overflow: hidden;
}

.city-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.75fr);
  align-items: center;
  gap: 90px;
  min-height: 660px;
  padding-top: 45px;
  padding-bottom: 65px;
}

.city-hero h1 {
  font-size: clamp(52px, 5.5vw, 86px);
}

.city-hero h1 span {
  display: block;
}

.city-rate-hero {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 22px 0 24px;
  line-height: 1;
}

.city-rate-hero small,
.city-rate-hero span {
  color: var(--muted);
  font-size: 14px;
}

.city-rate-hero strong {
  color: var(--green-hover);
  font-size: clamp(38px, 4vw, 58px);
  letter-spacing: -0.04em;
}

.city-hero-aside {
  position: relative;
  min-height: 530px;
}

.city-hero-aside.without-priority .city-photo {
  width: 100%;
}

.city-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 84%;
  height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
}

.city-photo picture,
.city-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.city-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.priority-card {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 320px;
  padding: 26px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.priority-card h2 {
  margin-bottom: 28px;
  color: var(--green);
  font-size: 29px;
}

.priority-card p:last-child {
  margin: 22px 0 0;
  color: oklch(0.8 0.025 145);
  font-size: 12px;
}

.priority-card strong {
  color: var(--white);
}

.priority-line {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.5fr;
  gap: 4px;
}

.priority-line span {
  height: 5px;
  background: var(--green);
  border-radius: 5px;
}

.priority-line span:nth-child(2) {
  opacity: 0.55;
}

.priority-line span:nth-child(3) {
  opacity: 0.25;
}

.vacancy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.vacancy-card {
  display: flex;
  flex-direction: column;
  min-height: 580px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.vacancy-card.is-priority {
  border: 2px solid var(--green);
  box-shadow: 0 20px 55px oklch(0.7 0.15 145 / 0.11);
}

.vacancy-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 28px;
}

.vacancy-card .role-icon {
  margin-bottom: 0;
}

.status {
  padding: 7px 12px;
  color: var(--muted);
  background: var(--mint);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.status-active {
  color: var(--green-dark);
  background: var(--mint-strong);
}

.vacancy-card h3 {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.22em;
  align-content: flex-start;
  min-height: 2.25em;
  margin: 0;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.vacancy-card h3 .brand-word {
  white-space: nowrap;
}

.vacancy-rate {
  display: grid;
  align-content: start;
  min-height: 60px;
  margin: 14px 0 22px;
}

.vacancy-rate strong {
  font-size: 27px;
  line-height: 1.15;
}

.vacancy-rate-empty strong {
  font-size: 23px;
}

.vacancy-rate span {
  color: var(--muted);
  font-size: 12px;
}

.vacancy-card > p,
.vacancy-card li {
  color: var(--muted);
}

.vacancy-card ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 22px;
  padding: 0;
  list-style: none;
}

.vacancy-card li {
  display: flex;
  gap: 10px;
  font-size: 14px;
}

.vacancy-card li svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--green-hover);
}

.vacancy-card .rate-note {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.vacancy-card .button {
  align-self: flex-start;
  margin-top: 18px;
}

.delivery-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 20px;
}

.delivery-grid article {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.delivery-grid article > span {
  display: block;
  margin-bottom: 90px;
  color: var(--green-hover);
  font-size: 13px;
  font-weight: 900;
}

.delivery-grid article p {
  color: var(--muted);
}

.delivery-grid article small {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  color: var(--green-dark);
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit-grid article {
  min-height: 270px;
  padding: 28px;
  border-top: 3px solid var(--green);
  background: var(--white);
}

.benefit-grid article > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 55px;
  color: var(--green-dark);
  background: var(--mint);
  border-radius: 50%;
}

.benefit-grid svg {
  width: 22px;
}

.benefit-grid h3 {
  font-size: 20px;
}

.benefit-grid p {
  color: var(--muted);
  font-size: 14px;
}

.requirements-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 90px;
}

.requirements-photo picture,
.requirements-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.requirements-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}

.requirements-list {
  margin: 35px 0;
  border-top: 1px solid var(--line);
}

.requirements-list > div {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.requirements-list > div > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--green-dark);
  background: var(--white);
  border-radius: 50%;
}

.requirements-list svg {
  width: 20px;
}

.requirements-list p {
  margin: 0;
  color: var(--muted);
}

.requirements-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.reviews-grid blockquote {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  margin: 0;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.quote-mark {
  margin-bottom: 40px;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 70px;
  line-height: 0.6;
}

.reviews-grid blockquote > p {
  font-size: 17px;
}

.reviews-grid footer {
  display: grid;
  gap: 3px;
  margin-top: auto;
}

.reviews-grid footer span {
  color: var(--muted);
  font-size: 12px;
}

.review-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 11px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.related-grid a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 14px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 160ms ease;
}

.related-grid a:hover {
  background: var(--mint);
}

.related-grid strong {
  grid-column: 1;
  color: var(--green-hover);
  font-size: 14px;
}

.related-grid svg {
  grid-row: 1 / 3;
  grid-column: 2;
  width: 20px;
  align-self: center;
}

.mobile-cta {
  display: none;
}

body.dialog-open {
  overflow: hidden;
}

.apply-dialog {
  width: min(calc(100% - 32px), 760px);
  max-height: min(90dvh, 760px);
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 16px;
  box-shadow: 0 8px 0 oklch(0.18 0.025 150 / 0.18);
}

.apply-dialog::backdrop {
  background: oklch(0.12 0.025 150 / 0.68);
  backdrop-filter: blur(5px);
}

.apply-dialog[open] {
  animation: dialog-in 220ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.apply-dialog-panel {
  position: relative;
  padding: clamp(32px, 6vw, 54px);
}

.apply-dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--mint);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.apply-dialog-close span {
  position: absolute;
  top: 21px;
  left: 13px;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.apply-dialog-close span:first-child {
  transform: rotate(45deg);
}

.apply-dialog-close span:last-child {
  transform: rotate(-45deg);
}

.apply-dialog-label {
  margin: 0 0 10px;
  color: var(--green-hover);
  font-size: 14px;
  font-weight: 800;
}

.apply-dialog h2 {
  max-width: 600px;
  margin: 0;
  padding-right: 44px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.apply-dialog-intro {
  max-width: 60ch;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.apply-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.apply-option {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 24px;
  gap: 14px;
  align-items: center;
  min-height: 100px;
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.apply-option:hover {
  color: var(--ink);
  background: var(--mint);
  border-color: var(--mint-strong);
  transform: translateY(-2px);
}

.apply-option-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--green-dark);
  background: var(--mint-strong);
  border-radius: 50%;
}

.apply-option-icon svg {
  width: 25px;
  height: 25px;
}

.apply-option-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.apply-option-copy strong {
  font-size: 16px;
  line-height: 1.2;
}

.apply-option-copy small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.apply-option-arrow svg {
  width: 22px;
  height: 22px;
  transition: transform 160ms ease;
}

.apply-option:hover .apply-option-arrow svg {
  transform: translateX(3px);
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

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

.reveal {
  animation: reveal 650ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.reveal-delay {
  animation-delay: 120ms;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1050px) {
  .partner-label,
  .header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
    gap: 35px;
  }

  .city-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .conditions-grid,
  .requirements-grid {
    gap: 55px;
  }

  .city-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
    gap: 45px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  html {
    scroll-padding-top: 78px;
  }

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

  .header-inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    margin-left: auto;
    place-content: center;
    gap: 5px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .nav {
    position: fixed;
    top: 68px;
    right: 14px;
    left: 14px;
    display: none;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: grid;
  }

  .nav a {
    padding: 13px;
    border-bottom: 1px solid var(--line);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-grid,
  .city-hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    min-height: 0;
  }

  .hero-copy,
  .city-hero-copy,
  .hero-lead,
  .microcopy,
  .hero-actions,
  .hero-visual,
  .city-hero-aside {
    width: 100%;
    max-width: 100%;
  }

  h1 {
    font-size: clamp(54px, 16vw, 82px);
  }

  .hero-visual {
    min-height: 470px;
  }

  .photo-frame {
    width: 90%;
    height: 430px;
  }

  .metrics-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics-strip > div {
    border-bottom: 1px solid var(--line);
  }

  .metrics-strip > div:nth-child(2) {
    border-right: 0;
  }

  .metrics-strip > div:nth-child(3),
  .metrics-strip > div:nth-child(4) {
    border-bottom: 0;
  }

  .metrics-strip > div:nth-child(3) {
    padding-left: 0;
  }

  .section {
    padding: 80px 0;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 5px;
  }

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

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

  .role-overview {
    grid-column: auto;
    min-height: 360px;
  }

  .conditions-grid,
  .requirements-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .photo-caption {
    right: 18px;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps li:nth-child(2) {
    border-right: 0;
  }

  .steps li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .steps li:nth-child(3) {
    padding-left: 0;
  }

  .faq-grid > div:first-child {
    position: static;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .city-hero-grid {
    padding-top: 35px;
  }

  .city-hero-aside {
    min-height: 480px;
  }

  .vacancy-grid,
  .delivery-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .delivery-heading {
    margin-bottom: 20px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

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

  .brand small {
    display: none;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .hero-visual {
    min-height: 390px;
  }

  .photo-frame {
    width: 94%;
    height: 350px;
  }

  .route {
    width: 180px;
    height: 130px;
    border-width: 6px;
  }

  .route-one {
    left: -25px;
  }

  .floating-note {
    right: 4px;
    min-width: 190px;
  }

  .metrics-strip > div {
    padding: 20px 14px;
  }

  .metrics-strip strong {
    font-size: 19px;
  }

  .section {
    padding: 68px 0;
  }

  h2 {
    font-size: 42px;
  }

  .search-panel {
    grid-template-columns: auto 1fr;
  }

  .search-panel > span {
    display: none;
  }

  .city-card {
    padding: 22px;
  }

  .city-card h3 {
    font-size: 24px;
  }

  .role-overview {
    min-height: 330px;
    padding: 24px;
  }

  .role-icon {
    margin-bottom: 40px;
  }

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

  .steps li {
    display: grid;
    grid-template-columns: 55px 1fr;
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps li:nth-child(3) {
    padding-left: 0;
  }

  .steps li > span {
    grid-row: 1 / 3;
    margin: 0;
  }

  .steps li h3 {
    margin-bottom: 7px;
  }

  .steps li p {
    margin: 0;
  }

  .final-cta-inner {
    padding: 30px 24px;
  }

  .footer {
    padding-bottom: 100px;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .city-hero h1 {
    font-size: 47px;
  }

  .city-rate-hero strong {
    font-size: 42px;
  }

  .city-hero-aside {
    min-height: 420px;
  }

  .priority-card {
    width: calc(100% - 34px);
    padding: 22px;
  }

  .priority-card h2 {
    font-size: 25px;
  }

  .city-photo {
    width: 88%;
    height: 320px;
  }

  .vacancy-grid {
    gap: 14px;
  }

  .vacancy-card {
    min-height: 0;
    padding: 23px;
  }

  .vacancy-card h3 {
    font-size: 27px;
  }

  .vacancy-card .button {
    align-self: stretch;
  }

  .delivery-grid article {
    min-height: 260px;
  }

  .delivery-grid article > span {
    margin-bottom: 60px;
  }

  .benefit-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid article {
    min-height: 230px;
  }

  .reviews-grid blockquote {
    min-height: 320px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 10px 14px max(10px, env(safe-area-inset-bottom));
    background: oklch(1 0 0 / 0.92);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(18px);
  }

  .mobile-cta .button {
    min-height: 50px;
    background: var(--green-dark);
  }
}

.city-about-section {
  background: var(--mint);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.city-about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(36px, 8vw, 130px);
  align-items: start;
}

.city-about-grid h2 {
  max-width: 560px;
}

.city-about-copy > p:first-child {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.42;
}

.city-about-copy > p:first-child strong {
  color: var(--ink);
}

.city-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 18px;
}

.city-facts div {
  min-height: 132px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.city-facts dt {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.city-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 750;
  line-height: 1.25;
}

.city-fact-source {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.city-fact-source a,
.faq-list a {
  color: var(--green-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.about-hero {
  padding: clamp(70px, 10vw, 140px) 0;
  background: var(--mint);
  border-bottom: 1px solid var(--line);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(48px, 9vw, 130px);
  align-items: end;
}

.about-hero h1 {
  margin: 20px 0 0;
  font-size: clamp(62px, 9vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.about-hero h1 span {
  color: var(--green-hover);
}

.about-hero-copy > p {
  max-width: 58ch;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.about-purpose-grid,
.about-principles-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(48px, 9vw, 130px);
}

.about-purpose-grid {
  align-items: start;
}

.about-purpose-grid h2,
.about-principles-heading h2 {
  max-width: 470px;
}

.about-purpose-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.about-purpose-copy p {
  margin: 0;
  padding-top: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  border-top: 1px solid var(--line);
}

.about-purpose-copy p + p {
  margin-top: 0;
}

.about-principles {
  background: var(--mint);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-principles-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.about-principles-list {
  border-top: 1px solid var(--line);
}

.about-principles-list article {
  display: grid;
  grid-template-columns: minmax(210px, 0.7fr) minmax(0, 1.3fr);
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.about-principles-list h3,
.about-principles-list p {
  margin: 0;
}

.about-principles-list h3 {
  font-size: 20px;
}

.about-principles-list p {
  color: var(--muted);
}

@media (hover: hover) {
  .quiz-options label:hover > span {
    background: var(--mint);
    border-color: var(--mint-strong);
    transform: translateY(-1px);
  }
}

@media (max-width: 900px) {
  .quiz-shell,
  .about-hero-grid,
  .about-purpose-grid,
  .about-principles-grid {
    grid-template-columns: 1fr;
  }

  .quiz-intro {
    max-width: 680px;
  }

  .about-principles-heading {
    position: static;
  }

  .about-purpose-grid,
  .about-principles-grid {
    gap: 42px;
  }
}

@media (max-width: 600px) {
  .quiz-card {
    min-height: 0;
    padding: 22px 18px;
  }

  .quiz-progress {
    margin-bottom: 26px;
  }

  .quiz-step legend {
    margin-bottom: 20px;
    font-size: 28px;
  }

  .quiz-options label > span {
    min-height: 70px;
    padding-left: 14px;
  }

  .quiz-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

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

  .quiz-result {
    min-height: 0;
  }

  .quiz-result h3 {
    font-size: 36px;
  }

  .quiz-result-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .quiz-result-actions .button,
  .quiz-result-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .about-hero {
    padding: 58px 0 66px;
  }

  .about-hero h1 {
    font-size: clamp(54px, 17vw, 72px);
  }

  .about-purpose,
  .about-principles {
    padding: 72px 0;
  }

  .about-purpose-copy {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-purpose-copy p {
    padding-top: 18px;
    font-size: 17px;
  }

  .about-principles-list article {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }
}

@media (max-width: 760px) {
  .apply-dialog {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
  }

  .apply-dialog-panel {
    padding: 58px 18px 20px;
  }

  .apply-dialog-close {
    top: 10px;
    right: 10px;
  }

  .apply-dialog h2 {
    padding-right: 0;
    font-size: clamp(30px, 9vw, 40px);
  }

  .apply-dialog-intro {
    margin-top: 12px;
    font-size: 15px;
  }

  .apply-options {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 22px;
  }

  .apply-option {
    grid-template-columns: 46px minmax(0, 1fr) 22px;
    min-height: 78px;
    padding: 12px;
  }

  .apply-option-icon {
    width: 46px;
    height: 46px;
  }

  .city-about-grid,
  .city-facts {
    grid-template-columns: 1fr;
  }

  .city-about-grid {
    gap: 24px;
  }

  .city-facts div {
    min-height: 0;
  }
}

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