@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&family=Montserrat:wght@500;600;700&family=PT+Sans:wght@400;700&family=Unbounded:wght@500;600;700&display=swap");

:root {
  --canvas: #f5f2eb;
  --raised: #fdfaf4;
  --paper: #ede9df;
  --pine: #2d5016;
  --moss: #3d5229;
  --muted: #7a8b6f;
  --meadow: #6b8f3e;
  --forest: #1f2a1a;
  --amber: #d47a1e;
  --amber-hover: #ba6513;
  --ink: #1a2210;
  --line: #d4cec0;
  --radius-card: 8px;
  --radius-control: 6px;
  --radius-tag: 4px;
  --shadow-card: 0 5px 18px rgba(104, 75, 35, 0.06);
  --shadow-paper: 0 12px 30px rgba(104, 75, 35, 0.1);
  --shadow-pin: 0 8px 16px rgba(45, 80, 22, 0.22);
  --font-display: "Unbounded", sans-serif;
  --font-heading: "Montserrat", sans-serif;
  --font-sans: "PT Sans", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--canvas);
  color: var(--moss);
  font-family: var(--font-sans);
  line-height: 1.5;
}

::selection {
  background: #f5ddb3;
  color: #1a2210;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

input {
  font: inherit;
  color: inherit;
}

img,
svg {
  display: inline-block;
  vertical-align: middle;
}

.container-page {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 640px) {
  .container-page {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1024px) {
  .container-page {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

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

.font-display {
  font-family: var(--font-display);
}

.font-heading {
  font-family: var(--font-heading);
}

.font-mono {
  font-family: var(--font-mono);
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(245, 242, 235, 0.95);
  border-bottom: 1px solid rgba(212, 206, 192, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 6px 20px rgba(104, 75, 35, 0.06);
}

.header-inner {
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: left;
}

.brand-icon {
  display: flex;
  height: 2rem;
  width: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--pine);
  color: var(--canvas);
  transition: transform 0.2s ease;
}

.brand-logo {
  display: block;
  height: 100px;
  width: 100px;
  flex-shrink: 0;
  border-radius: var(--radius-control);
  transition: transform 0.2s ease;
}

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

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

.brand-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.06em;
  color: var(--pine);
}

.main-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }
}

.nav-link {
  min-height: 2.75rem;
  padding: 0 0.75rem;
  border-radius: var(--radius-control);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--moss);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
  background: var(--paper);
  color: var(--pine);
}

.nav-link.is-active {
  background: var(--paper);
  color: var(--pine);
}

.btn {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-control);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--amber-hover);
}

.btn-primary-nav {
  margin-left: 0.75rem;
}

.menu-toggle {
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-control);
  color: var(--pine);
  transition: background 0.2s ease;
}

.menu-toggle:hover {
  background: var(--paper);
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1.25rem 1.25rem;
  background: var(--canvas);
  border-bottom: 1px solid var(--line);
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu .nav-link {
  text-align: left;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 116px;
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 730px;
  align-items: center;
  gap: 3rem;
  padding: 5rem 0;
}

@media (min-width: 640px) {
  .hero-grid {
    min-height: 770px;
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.04fr 0.96fr;
    padding: 7rem 0;
  }
}

.hero-copy {
  position: relative;
  z-index: 10;
  max-width: 40rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--meadow);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4.7rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.075em;
  color: var(--pine);
}

.hero-lead {
  margin-top: 1.75rem;
  max-width: 36rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--moss);
}

@media (min-width: 640px) {
  .hero-lead {
    font-size: 1.5rem;
  }
}

.hero-sub {
  margin-top: 1.25rem;
  max-width: 32rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--moss);
}

.hero-cta {
  margin-top: 2.25rem;
  min-width: 172px;
}

.hero-thesis {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-card);
  background: var(--paper);
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--pine);
}

.hero-thesis-icon {
  display: flex;
  height: 2rem;
  width: 2rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--raised);
  color: var(--amber);
}

.hero-thesis-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .hero-thesis {
    font-size: 1.125rem;
  }
}

.hero-visual {
  position: relative;
  display: none;
  min-height: 500px;
}

@media (min-width: 1024px) {
  .hero-visual {
    display: block;
  }
}

.hero-map {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 11px;
  background-color: #dce2d0;
  background-image: linear-gradient(rgba(45, 90, 27, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 90, 27, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 19% 24%, rgba(122, 158, 82, 0.3), transparent 22%),
    radial-gradient(circle at 73% 64%, rgba(122, 158, 82, 0.26), transparent 29%);
  background-size: 52px 52px, 52px 52px, auto, auto;
}

.hero-map-contour {
  position: absolute;
  inset: 9%;
  background: #c9d5b8;
  clip-path: polygon(
    7% 28%,
    19% 18%,
    31% 20%,
    41% 9%,
    57% 16%,
    65% 10%,
    78% 20%,
    94% 30%,
    91% 46%,
    98% 56%,
    83% 64%,
    80% 80%,
    63% 87%,
    50% 80%,
    34% 91%,
    23% 78%,
    8% 76%,
    12% 59%,
    2% 47%
  );
}

.hero-map-region-label {
  position: absolute;
  left: 16%;
  top: 19%;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(45, 80, 22, 0.7);
}

@media (min-width: 640px) {
.region-shape {
  clip-path: polygon(
    9% 25%,
    18% 17%,
    34% 20%,
    44% 9%,
    59% 17%,
    70% 11%,
    82% 21%,
    91% 36%,
    87% 47%,
    94% 60%,
    83% 72%,
    77% 86%,
    61% 89%,
    49% 82%,
    35% 91%,
    22% 81%,
    9% 82%,
    6% 65%,
    12% 53%,
    5% 39%
  );
}

.hero-map-region-label {
    font-size: 12px;
  }
}

.hero-map-city {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  color: var(--moss);
}

.hero-map-city--kaluga {
  left: 30%;
  top: 52%;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--pine);
}

.hero-map-city--obninsk {
  left: 63%;
  top: 32%;
}

.hero-map-city--tarusa {
  bottom: 23%;
  right: 19%;
}

.hero-map-marker {
  position: absolute;
  height: 0.75rem;
  width: 0.75rem;
  border-radius: 9999px;
  border: 2px solid var(--canvas);
  background: var(--pine);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-map-marker--kaluga {
  left: 29%;
  top: 60%;
  background: var(--amber);
}

.hero-map-marker--obninsk {
  left: 65%;
  top: 42%;
}

.hero-map-marker--tarusa {
  bottom: 29%;
  right: 21%;
}

.hero-map-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(45, 80, 22, 0.8);
}

.hero-float {
  position: absolute;
  bottom: 1.5rem;
  right: 0.75rem;
  z-index: 2;
  border-radius: var(--radius-card);
  background: var(--raised);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-paper);
}

.hero-float-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.hero-float-title {
  margin-top: 0.25rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--pine);
}

.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 56rem;
  border-top: 1px solid var(--line);
  padding-top: 1.75rem;
}

@media (min-width: 640px) {
  .hero-stats {
    padding-top: 2.25rem;
  }
}

.stat {
  border-left: 1px solid var(--line);
  padding: 0 0.75rem;
}

.stat:first-child {
  border-left: 0;
  padding-left: 0;
}

@media (min-width: 640px) {
  .stat {
    padding: 0 1.5rem;
  }
}

.stat-value {
  font-family: var(--font-mono);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--pine);
}

@media (min-width: 640px) {
  .stat-value {
    font-size: 1.25rem;
  }
}

.stat-label {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25;
  color: var(--muted);
}

@media (min-width: 640px) {
  .stat-label {
    font-size: 1rem;
  }
}

/* ---------- Sections ---------- */

.section {
  padding: 5rem 0;
}

@media (min-width: 640px) {
  .section {
    padding: 7rem 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 8rem 0;
  }
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

@media (min-width: 640px) {
  .section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
  }
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--pine);
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-desc {
  max-width: 24rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--moss);
}

/* ---------- Map ---------- */

.map-shell {
  position: relative;
  height: 580px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--paper);
  box-shadow: var(--shadow-paper);
}

@media (min-width: 640px) {
  .map-shell {
    height: 650px;
  }
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(45, 80, 22, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 80, 22, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
}

.map-territory {
  position: absolute;
  left: 4%;
  top: 6%;
  height: 87%;
  width: 92%;
}

.map-region-bg {
  position: absolute;
  inset: 0;
  background: #dce7cf;
}

.map-region-border {
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(107, 143, 62, 0.35);
}

.map-river {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(107, 143, 62, 0.32), transparent);
  transform: rotate(-15deg);
  transform-origin: center;
}

.map-label {
  position: absolute;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(45, 80, 22, 0.35);
}

.map-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 20;
  border-radius: var(--radius-tag);
  background: rgba(253, 250, 244, 0.9);
  padding: 0.5rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--moss);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.map-zoom {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 20;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-control);
  background: var(--raised);
  box-shadow: var(--shadow-paper);
}

.map-zoom button {
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  color: var(--pine);
  transition: background 0.2s ease;
}

.map-zoom button:hover {
  background: var(--paper);
}

.map-zoom button + button {
  border-top: 1px solid var(--line);
}

.map-pins {
  position: absolute;
  inset: 0;
  transform-origin: center;
  transition: transform 0.3s ease;
}

.map-pin-btn {
  position: absolute;
  z-index: 10;
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 2px solid var(--raised);
  background: var(--pine);
  color: var(--raised);
  box-shadow: var(--shadow-pin);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.map-pin-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.map-pin-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--amber);
}

.map-pin-btn.is-active {
  transform: translate(-50%, -50%) scale(1.25);
  background: var(--amber);
  animation: pulsepin 2.8s ease-in-out infinite;
}

@keyframes pulsepin {
  0%,
  100% {
    box-shadow: 0 0 rgba(212, 122, 30, 0.36);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(212, 122, 30, 0);
  }
}

.map-popup {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 30;
  max-width: 24rem;
  border-radius: var(--radius-card);
  background: var(--raised);
  padding: 1.25rem;
  box-shadow: var(--shadow-paper);
  animation: popup-in 0.25s ease-out;
}

@media (min-width: 640px) {
  .map-popup {
    left: auto;
    right: 5rem;
  }
}

.map-popup[hidden] {
  display: none;
}

@keyframes popup-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.map-popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  height: 2rem;
  width: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-control);
  font-size: 1.25rem;
  line-height: 1;
  color: var(--muted);
  transition: background 0.2s ease;
}

.map-popup-close:hover {
  background: var(--paper);
}

.map-popup-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--meadow);
}

.map-popup-title {
  padding-right: 2rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pine);
}

.map-popup-desc {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: var(--moss);
}

.map-popup-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.625rem 1rem;
  border-radius: var(--radius-control);
  background: var(--amber);
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s ease;
}

.map-popup-link:hover {
  background: var(--amber-hover);
}

/* ---------- Directory ---------- */

.directory-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .directory-grid {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 3.5rem;
  }
}

.directory-sidebar {
  align-self: start;
}

@media (min-width: 1024px) {
  .directory-sidebar {
    position: sticky;
    top: 6rem;
  }
}

.search-field {
  position: relative;
  display: block;
}

.search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--meadow);
}

.search-input {
  width: 100%;
  min-height: 3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--raised);
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-input::placeholder {
  color: var(--muted);
}

.search-input:focus {
  outline: none;
  border-color: var(--meadow);
  box-shadow: 0 0 0 3px rgba(107, 143, 62, 0.2);
}

.letter-block {
  margin-top: 1.5rem;
}

.letter-label {
  margin-bottom: 0.75rem;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.letter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.letter-btn {
  display: flex;
  min-width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  background: var(--paper);
  color: var(--moss);
  transition: background 0.2s ease;
}

.letter-btn:hover {
  background: #e2ddd0;
}

.letter-btn.is-active {
  background: var(--pine);
  color: var(--canvas);
}

.chats-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.chats-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--pine);
}

.chats-count {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
}

.chats-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chat-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: var(--radius-card);
  background: var(--raised);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s ease, outline 0.2s ease;
}

@media (min-width: 640px) {
  .chat-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.chat-card:hover {
  box-shadow: var(--shadow-paper);
}

.chat-card.is-hidden {
  display: none;
}

.chat-card.is-highlighted {
  outline: 2px solid var(--amber);
  outline-offset: -2px;
  box-shadow: var(--shadow-paper);
}

.chat-info {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 0.75rem;
}

.chat-icon {
  display: flex;
  height: 2.25rem;
  width: 2.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
  border-radius: 9999px;
  background: var(--paper);
  color: var(--pine);
}

.chat-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--pine);
}

.chat-desc {
  margin-top: 0.25rem;
  font-size: 1rem;
  color: var(--moss);
}

.chat-link {
  display: inline-flex;
  min-height: 2.75rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: var(--radius-control);
  background: var(--amber);
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s ease;
}

.chat-link:hover {
  background: var(--amber-hover);
}

.empty-state {
  display: none;
  border-radius: var(--radius-card);
  background: var(--paper);
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var(--muted);
}

.empty-state.is-visible {
  display: block;
}

.empty-state-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--pine);
}

.empty-state-text {
  margin-top: 0.375rem;
}

.empty-state-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--amber);
  transition: color 0.2s ease;
}

.empty-state-link:hover {
  color: var(--amber-hover);
}

/* ---------- Request form ---------- */

.request-section {
  margin-top: 3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--raised);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-card);
}

@media (min-width: 640px) {
  .request-section {
    padding: 2.5rem 2.5rem;
  }
}

.request-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--pine);
}

.request-desc {
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--moss);
}

.request-form {
  margin-top: 1.75rem;
}

.request-fields {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .request-fields {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--pine);
}

.form-optional {
  font-style: normal;
  font-weight: 400;
  color: var(--muted);
}

.form-input {
  width: 100%;
  min-height: 3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--canvas);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input::placeholder {
  color: var(--muted);
}

.form-input:focus {
  outline: none;
  border-color: var(--meadow);
  box-shadow: 0 0 0 3px rgba(107, 143, 62, 0.2);
}

.request-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .request-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.form-message {
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--muted);
}

.form-message.is-success {
  color: var(--pine);
}

.form-message.is-error {
  color: #b3272c;
}

.request-form.is-sending .btn {
  opacity: 0.7;
  pointer-events: none;
}

/* ---------- About ---------- */

.about-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--paper);
  padding: 3rem 1.5rem;
}

@media (min-width: 640px) {
  .about-panel {
    padding: 4rem 3rem;
  }
}

@media (min-width: 1024px) {
  .about-panel {
    padding: 5rem;
  }
}

.about-icon-bg {
  position: absolute;
  top: -1.75rem;
  right: -1.5rem;
  height: 9rem;
  width: 9rem;
  color: rgba(107, 143, 62, 0.1);
}

@media (min-width: 640px) {
  .about-icon-bg {
    top: 1.25rem;
    right: 1.5rem;
  }
}

.about-content {
  position: relative;
  max-width: 48rem;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: var(--pine);
}

@media (min-width: 640px) {
  .about-title {
    font-size: 2.25rem;
  }
}

.about-text {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--moss);
}

.about-features {
  position: relative;
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem 2.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.25rem 0;
}

@media (min-width: 640px) {
  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-icon {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--raised);
  color: var(--pine);
}

.feature-text {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--pine);
}

.about-note {
  position: relative;
  margin-top: 2.5rem;
  max-width: 40rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--pine);
}

/* ---------- Roadmap ---------- */

.roadmap-head {
  max-width: 36rem;
}

.roadmap-label {
  margin-bottom: 0.75rem;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.roadmap-sub {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--moss);
}

.roadmap-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .roadmap-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.roadmap-card {
  display: flex;
  min-height: 116px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(212, 206, 192, 0.7);
  border-radius: var(--radius-card);
  background: rgba(237, 233, 223, 0.65);
  padding: 1.25rem;
  opacity: 0.85;
}

.roadmap-tag {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(122, 139, 111, 0.35);
  border-radius: var(--radius-tag);
  background: var(--canvas);
  padding: 0.25rem 0.5rem;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.roadmap-card-title {
  margin-top: 1.25rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--moss);
}

/* ---------- CTA ---------- */

.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--forest);
  padding: 4rem 1.5rem;
  text-align: center;
}

@media (min-width: 640px) {
  .cta-panel {
    padding: 5rem 3rem;
  }
}

@media (min-width: 1024px) {
  .cta-panel {
    padding: 6rem;
  }
}

.cta-ring {
  position: absolute;
  left: 50%;
  top: 0;
  height: 7rem;
  width: 7rem;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(245, 242, 235, 0.15);
  border-radius: 9999px;
}

.cta-pin {
  position: absolute;
  left: 50%;
  top: 1.75rem;
  transform: translateX(-50%);
  color: var(--amber);
}

.cta-content {
  position: relative;
  margin: 0 auto;
  max-width: 42rem;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.04em;
  color: var(--canvas);
}

@media (min-width: 640px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

.cta-btn {
  margin-top: 2rem;
  min-width: 172px;
}

/* ---------- Why ---------- */

.why-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.why-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--raised);
  padding: 1.5rem;
}

.why-icon {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--paper);
  color: var(--muted);
}

.why-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--moss);
}

.why-arrow {
  display: flex;
  grid-column: 1 / -1;
  justify-content: center;
  padding: 0.25rem 0;
  color: var(--muted);
}

.why-solution {
  display: flex;
  grid-column: 1 / -1;
  align-items: flex-start;
  gap: 1.25rem;
  border-radius: var(--radius-card);
  background: var(--pine);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-paper);
}

.why-solution .why-icon {
  background: rgba(245, 242, 235, 0.15);
  color: var(--amber);
}

.why-solution-text {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--canvas);
}

@media (min-width: 640px) {
  .why-solution {
    align-items: center;
  }
}

/* ---------- Network ---------- */

.network-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--raised);
  padding: 3rem 1.5rem;
  box-shadow: var(--shadow-card);
}

.network-card .map-grid {
  opacity: 0.55;
}

.network-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.network-node {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 9999px;
  background: var(--raised);
  padding: 0.625rem 1.125rem;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--pine);
  box-shadow: var(--shadow-card);
}

.network-node--accent {
  border-color: var(--amber);
  background: var(--amber);
  color: var(--ink);
}

.network-arrow {
  display: flex;
  color: var(--muted);
}

.scenarios {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .scenarios {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .scenarios {
    grid-template-columns: repeat(3, 1fr);
  }
}

.scenario {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--raised);
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: var(--moss);
}

.scenario-icon {
  display: flex;
  height: 1.75rem;
  width: 1.75rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--paper);
  color: var(--pine);
}

/* ---------- Start network ---------- */

.start-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--paper);
  padding: 4rem 1.5rem;
  text-align: center;
}

.start-card .map-grid {
  opacity: 0.45;
}

.start-content {
  position: relative;
  margin: 0 auto;
  max-width: 40rem;
}

.start-title {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.04em;
  color: var(--pine);
}

@media (min-width: 640px) {
  .start-title {
    font-size: 2.25rem;
  }
}

.start-text {
  margin: 1.25rem auto 0;
  max-width: 30rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--moss);
}

.start-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--pine);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--raised);
  color: var(--pine);
}

/* ---------- In development tag ---------- */

.soon-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px dashed rgba(212, 122, 30, 0.5);
  border-radius: var(--radius-tag);
  background: rgba(212, 122, 30, 0.08);
  padding: 0.25rem 0.5rem;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
  white-space: nowrap;
}

.soon-tag--inverse {
  border-color: rgba(245, 242, 235, 0.4);
  background: rgba(245, 242, 235, 0.12);
  color: #f5ddb3;
}

/* ---------- Why: solution soon line ---------- */

.why-solution-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.why-solution-soon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(245, 242, 235, 0.8);
}

/* ---------- Network vision ---------- */

.network-vision {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.75rem;
  border: 1px dashed rgba(212, 122, 30, 0.4);
  border-radius: var(--radius-card);
  background: rgba(253, 250, 244, 0.7);
  padding: 1.25rem;
}

.network-vision-text {
  flex: 1;
  min-width: 15rem;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--pine);
}

/* ---------- Start: soon line ---------- */

.start-soon {
  margin: 1rem auto 0;
  max-width: 34rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--muted);
}

/* ---------- About: soon note ---------- */

.about-note--soon {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--moss);
}

/* ---------- Growth ---------- */

.growth-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--raised);
  padding: 3.5rem 1.5rem;
  box-shadow: var(--shadow-paper);
}

@media (min-width: 640px) {
  .growth-panel {
    padding: 5rem 3rem;
  }
}

.growth-panel .map-grid {
  opacity: 0.35;
}

.growth-content {
  position: relative;
  margin: 0 auto;
  max-width: 46rem;
}

.growth-title {
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: var(--pine);
}

@media (min-width: 640px) {
  .growth-title {
    font-size: 2.25rem;
  }
}

.growth-lead {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--moss);
}

.growth-accent {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(212, 206, 192, 0.7);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--pine);
}

@media (min-width: 640px) {
  .growth-accent {
    font-size: 1.75rem;
  }
}

.growth-text {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--moss);
}

.growth-note {
  margin-top: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border: 1px dashed rgba(122, 139, 111, 0.5);
  border-radius: var(--radius-card);
  background: var(--paper);
  padding: 1rem 1.125rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--muted);
}

.growth-note svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--meadow);
}

.growth-steps {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.growth-step {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--canvas);
  padding: 0.875rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--pine);
  box-shadow: var(--shadow-card);
}

.growth-step-num {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-tag);
  background: var(--paper);
  padding: 0.15rem 0.4rem;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}

.growth-step--done .growth-step-num {
  background: var(--pine);
  color: var(--canvas);
}

.growth-step-arrow {
  display: flex;
  padding: 0.15rem 0;
  color: var(--amber);
}

.growth-quote {
  margin-top: 2.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--amber);
  text-align: center;
}

@media (min-width: 640px) {
  .growth-quote {
    font-size: 1.75rem;
  }
}

.growth-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.growth-cta-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--pine);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--forest);
  color: var(--canvas);
}

.footer-inner {
  padding: 3rem 0;
}

@media (min-width: 640px) {
  .footer-inner {
    padding: 4rem 0;
  }
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-bottom: 1px solid rgba(245, 242, 235, 0.2);
  padding-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .footer-top {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.footer-brand {
  max-width: 28rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo .brand-icon {
  background: var(--amber);
  color: var(--forest);
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.06em;
}

.footer-tagline {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(245, 242, 235, 0.9);
}

.footer-region {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(245, 242, 235, 0.6);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  font-size: 0.875rem;
  color: rgba(245, 242, 235, 0.65);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ---------- Hero: pill, extra cities, dense dots ---------- */

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border: 1px dashed rgba(212, 122, 30, 0.5);
  border-radius: var(--radius-tag);
  background: var(--paper);
  padding: 0.4rem 0.8rem;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
}

.hero-pill svg {
  flex-shrink: 0;
}

.hero-map-city--kozel {
  left: 18%;
  top: 62%;
  font-size: 0.75rem;
}

.hero-map-city--maloyar {
  left: 44%;
  top: 38%;
  font-size: 0.75rem;
}

.hero-map-marker--kozel {
  left: 20%;
  top: 70%;
}

.hero-map-marker--maloyar {
  left: 48%;
  top: 47%;
}

.hero-map-dot {
  position: absolute;
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 9999px;
  background: rgba(61, 82, 41, 0.45);
}

/* ---------- Hero stats: goal state ---------- */

.stat-value--small {
  font-size: 0.9375rem;
  line-height: 1.3;
}

@media (min-width: 640px) {
  .stat-value--small {
    font-size: 1rem;
  }
}

.stat--goal {
  border-left-style: dashed;
}

.stat-arrow {
  display: inline-block;
  margin-left: 0.25rem;
  vertical-align: -1px;
  color: var(--amber);
}

/* ---------- Pilot: first region ---------- */

.pilot-accent {
  margin-top: 1.5rem;
  max-width: 40rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--pine);
}

@media (min-width: 640px) {
  .pilot-accent {
    font-size: 1.75rem;
  }
}

.pilot-flow {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .pilot-flow {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
}

.pilot-step {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--paper);
  padding: 0.875rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--pine);
  box-shadow: var(--shadow-card);
}

.pilot-step--goal {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--canvas);
}

.pilot-arrow {
  display: flex;
  padding: 0.15rem 0;
  color: var(--amber);
}

.pilot-arrow svg {
  transform: rotate(90deg);
}

@media (min-width: 1024px) {
  .pilot-arrow svg {
    transform: none;
  }
}

/* ---------- About: solution strip ---------- */

.about-solution {
  position: relative;
  margin-top: 2.5rem;
  border-radius: var(--radius-card);
  background: var(--pine);
  padding: 1.5rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--canvas);
}

@media (min-width: 640px) {
  .about-solution {
    font-size: 1.5rem;
  }
}

/* ---------- Region selector ---------- */

.region-selector {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .region-selector {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
  }
}

.region-field {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.region-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.region-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.region-select {
  appearance: none;
  -webkit-appearance: none;
  min-height: 2.75rem;
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--raised);
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--pine);
  cursor: pointer;
}

.region-select-chevron {
  position: absolute;
  right: 0.875rem;
  pointer-events: none;
  color: var(--muted);
}

.region-hint {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--muted);
}

/* ---------- Federal goal block ---------- */

.federal-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--forest);
  padding: 3rem 1.5rem;
}

@media (min-width: 640px) {
  .federal-panel {
    padding: 4rem 3rem;
  }
}

@media (min-width: 1024px) {
  .federal-panel {
    padding: 5rem;
  }
}

.federal-content {
  position: relative;
  max-width: 46rem;
}

.federal-content .eyebrow {
  color: var(--meadow);
}

.federal-title {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: var(--canvas);
}

@media (min-width: 640px) {
  .federal-title {
    font-size: 2.25rem;
  }
}

.federal-goal {
  margin-top: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--amber);
}

@media (min-width: 640px) {
  .federal-goal {
    font-size: 1.75rem;
  }
}

.federal-text {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(245, 242, 235, 0.8);
}

.federal-scale {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .federal-scale {
    flex-direction: row;
    align-items: center;
  }
}

.federal-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(245, 242, 235, 0.2);
  border-radius: var(--radius-card);
  background: rgba(245, 242, 235, 0.05);
  padding: 0.875rem 1.25rem;
}

.federal-shape {
  height: 2rem;
  width: 2rem;
  flex-shrink: 0;
  background: var(--meadow);
}

.federal-step-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--canvas);
}

.federal-step-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.federal-step--goal {
  border-color: rgba(212, 122, 30, 0.5);
}

.federal-step--goal .federal-step-tag {
  color: var(--amber);
}

.federal-goal-icon {
  display: flex;
  height: 2rem;
  width: 2rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(212, 122, 30, 0.15);
  color: var(--amber);
}

.federal-arrow {
  display: flex;
  padding: 0.15rem 0;
  color: var(--meadow);
}

.federal-arrow svg {
  transform: rotate(90deg);
}

@media (min-width: 640px) {
  .federal-arrow svg {
    transform: none;
  }
}

/* ---------- Final CTA ---------- */

.cta-text {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(245, 242, 235, 0.85);
}

.cta-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
    justify-content: center;
  }
}

.cta-actions .cta-btn {
  margin-top: 0;
}

.cta-btn--ghost {
  background: transparent;
  border: 1px solid rgba(245, 242, 235, 0.3);
  color: var(--canvas);
  box-shadow: none;
}

.cta-btn--ghost:hover {
  background: rgba(245, 242, 235, 0.1);
  color: var(--canvas);
}

.cta-caption {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  color: rgba(245, 242, 235, 0.6);
}