/* Road Empier — toll plaza / highway sign theme */
:root {
  --amber: #ffb020;
  --amber-dk: #e09010;
  --orange: #ff7a1a;
  --green: #33c481;
  --green-dk: #249a62;
  --teal: #3dc8db;
  --violet: #9b6dff;
  --yellow: #ffd84d;
  --ink: #0c1116;
  --night: #131821;
  --slate: #1c2430;
  --steel: #2a3340;
  --border: #3d4a5c;
  --text: #eff4f9;
  --muted: #93a3b4;
  --line: rgba(239, 244, 249, 0.1);
  --panel: #171e28;
  --card: #1e2733;
  --maxw: 1160px;
  --font: "Outfit", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

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

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Reflective mesh background */
.mesh-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 60% 50% at 10% 0%, rgba(51, 196, 129, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 5%, rgba(255, 176, 32, 0.14), transparent 50%),
    linear-gradient(168deg, #080b0f 0%, var(--ink) 40%, var(--night) 100%);
}

.mesh-bg__stud {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 216, 77, 0.35) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.07;
  mask-image: linear-gradient(180deg, black 0%, transparent 70%);
}

h1, h2, h3 { font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
strong { color: var(--text); font-weight: 600; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 720px; }

.accent {
  background: linear-gradient(120deg, var(--amber), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Green highway sign plates */
.plate {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  background: linear-gradient(165deg, var(--green) 0%, var(--green-dk) 100%);
  border-radius: 10px;
  padding: 10px 18px 12px;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.35), 0 0 40px rgba(51, 196, 129, 0.2);
  margin-bottom: 22px;
}

.plate--center { display: flex; width: fit-content; margin-inline: auto; margin-bottom: 22px; }

.plate__code {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.85);
}

.plate__sub {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

/* Lane divider strip */
.divider {
  height: 16px;
  background: var(--steel);
  border-block: 2px solid var(--border);
  overflow: hidden;
}

.divider__line {
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    var(--yellow) 0,
    var(--yellow) 36px,
    transparent 36px,
    transparent 68px
  );
  animation: lane-move 1.4s linear infinite;
}

@keyframes lane-move {
  from { transform: translateX(0); }
  to { transform: translateX(-68px); }
}

/* Top bar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 11, 15, 0.9);
  border-bottom: 1px solid rgba(51, 196, 129, 0.22);
  backdrop-filter: blur(16px);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.mark {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mark img {
  border-radius: 11px;
  border: 2px solid rgba(255, 176, 32, 0.5);
  box-shadow: 0 0 24px rgba(255, 176, 32, 0.25);
}

.mark__name {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.mark__pill {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink);
  background: var(--amber);
  padding: 4px 8px;
  border-radius: 999px;
}

.mark--sm .mark__name { font-size: 15px; }
.mark--sm .mark__pill { display: none; }

.topbar__nav { display: flex; gap: 4px; }

.topbar__nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  padding: 9px 15px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.topbar__nav a:hover,
.topbar__nav a.is-active {
  color: var(--text);
  background: rgba(51, 196, 129, 0.14);
}

.topbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.topbar__toggle span {
  width: 22px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
  transition: 0.25s;
}

/* CTAs */
.cta {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 12px;
  transition: transform 0.15s, filter 0.2s;
}

.cta--amber {
  background: linear-gradient(135deg, var(--amber), var(--orange));
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(255, 176, 32, 0.35);
}

.cta--amber:hover { transform: translateY(-2px); filter: brightness(1.06); }

.cta--ghost {
  background: transparent;
  color: var(--teal);
  border: 2px solid rgba(61, 200, 219, 0.45);
}

.cta--ghost:hover {
  background: rgba(61, 200, 219, 0.1);
  transform: translateY(-2px);
}

/* Hero */
.intro { padding: 58px 0 68px; }

.intro__layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.intro h1 {
  font-size: clamp(34px, 5.2vw, 56px);
  margin-bottom: 18px;
}

.deck {
  font-size: 17px;
  color: var(--muted);
  max-width: 490px;
  margin-bottom: 26px;
}

.intro__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.stats-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.stat {
  background: var(--panel);
  border: 1px solid var(--line);
  border-bottom: 3px solid var(--green);
  border-radius: 14px;
  padding: 14px 20px;
  min-width: 88px;
}

.stat__n {
  display: block;
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.stat__l {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Toll kiosk hero visual */
.kiosk {
  background: var(--panel);
  border: 2px solid rgba(51, 196, 129, 0.28);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 32px 64px -24px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: rotate(-1.5deg);
  transition: transform 0.45s ease;
}

.kiosk:hover { transform: rotate(0deg) scale(1.01); }

.kiosk__header {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  background: #0a0e14;
  border-bottom: 1px solid var(--line);
}

.kiosk__light {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.kiosk__light--red { background: #e04b4b; }
.kiosk__light--amber { background: var(--amber); }
.kiosk__light--green { background: var(--green); animation: glow 2s ease infinite; }

@keyframes glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(51, 196, 129, 0.5); }
  50% { box-shadow: 0 0 12px 2px rgba(51, 196, 129, 0.35); }
}

.kiosk__title {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--green);
}

.kiosk__screen {
  position: relative;
  min-height: 300px;
}

.kiosk__map {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  opacity: 0.72;
}

.kiosk__lanes {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
}

.lane-ticket {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  background: rgba(12, 17, 22, 0.92);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 12px;
  margin-bottom: 7px;
  font-size: 11px;
  opacity: 0.6;
  transform: translateX(10px);
  transition: opacity 0.35s, transform 0.35s, border-color 0.35s;
}

.lane-ticket--live {
  opacity: 1;
  transform: translateX(0);
  border-color: rgba(51, 196, 129, 0.45);
  box-shadow: 0 0 24px rgba(51, 196, 129, 0.12);
}

.lane-ticket b { color: var(--text); font-weight: 600; }
.lane-ticket em { font-style: normal; font-family: var(--mono); color: var(--amber); font-weight: 700; }

.lane-ticket__tag {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 7px;
  border-radius: 6px;
  background: rgba(51, 196, 129, 0.18);
  color: var(--green);
  white-space: nowrap;
}

.kiosk__car {
  position: absolute;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.55));
}

.kiosk__car--a {
  width: 72px;
  bottom: 52px;
  left: 18%;
  animation: drive-a 5s ease-in-out infinite;
}

.kiosk__car--b {
  width: 88px;
  bottom: 38px;
  right: 22%;
  animation: drive-b 6.5s ease-in-out infinite;
}

@keyframes drive-a {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(28px); }
}

@keyframes drive-b {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-22px); }
}

.kiosk__booth {
  position: absolute;
  bottom: -6px;
  right: 12px;
  width: 110px;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.5));
}

.kiosk__strip {
  height: 12px;
  background: var(--slate);
  overflow: hidden;
}

.kiosk__dash {
  height: 100%;
  background: repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 28px, transparent 28px, transparent 52px);
  animation: lane-move 1s linear infinite;
}

/* Sections */
.block { padding: 76px 0; }

.block--sim {
  background: rgba(51, 196, 129, 0.04);
  border-block: 1px solid var(--line);
}

.block--doc { background: rgba(30, 39, 51, 0.45); }
.block--help { background: rgba(61, 200, 219, 0.04); }

.block__h {
  font-size: clamp(28px, 4vw, 42px);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 14px;
}

.block__p {
  text-align: center;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 42px;
  font-size: 16px;
}

/* Corridor feature cards */
.corridor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.corridor__card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 280px;
  transition: transform 0.25s, border-color 0.25s;
}

.corridor__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 176, 32, 0.4);
}

.corridor__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.45s;
}

.corridor__card:hover img { transform: scale(1.05); }

.corridor__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 48px 18px 18px;
  background: linear-gradient(transparent, rgba(12, 17, 22, 0.96));
}

.corridor__idx {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.1em;
}

.corridor__body h3 { font-size: 20px; margin: 6px 0 4px; }
.corridor__body p { font-size: 13px; color: var(--muted); }

/* Region strip */
.regions {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.regions__item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 3 / 4;
  transition: transform 0.25s, border-color 0.25s;
}

.regions__item:hover {
  transform: scale(1.04);
  border-color: rgba(51, 196, 129, 0.45);
  z-index: 2;
}

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

.regions__item span,
.regions__item b {
  position: absolute;
  left: 10px;
  right: 10px;
}

.regions__item span {
  bottom: 32px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--amber);
}

.regions__item b {
  bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.regions__item::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(transparent, rgba(12, 17, 22, 0.92));
}

/* Services grid */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.services__tile {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  transition: border-color 0.2s, transform 0.2s;
}

.services__tile:hover {
  border-color: rgba(255, 176, 32, 0.35);
  transform: translateX(4px);
}

.services__tile img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.services__tile span {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.08em;
}

.services__tile h3 { font-size: 16px; margin: 2px 0 4px; }
.services__tile p { font-size: 13px; color: var(--muted); line-height: 1.45; }

/* Route engineer demo */
.engine {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 940px;
  margin: 0 auto;
}

.engine__view {
  background: var(--panel);
  border: 2px solid rgba(255, 216, 77, 0.22);
  border-radius: 16px;
  padding: 20px;
}

.engine__scene {
  min-height: 180px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  background: var(--night);
}

.engine__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0.55;
  transition: opacity 0.4s;
}

.engine__booth {
  position: absolute;
  bottom: 8px;
  right: 12px;
  width: 90px;
  z-index: 2;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.5));
  transition: transform 0.45s, opacity 0.4s;
}

.engine__vehicle {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  z-index: 3;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.5));
  transition: transform 0.5s, opacity 0.4s;
}

.engine__ticks {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  margin: 16px 0 8px;
}

.tick {
  flex: 1;
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--border);
  padding: 7px 2px;
  border-radius: 6px;
  background: var(--slate);
  border: 1px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.tick.active,
.tick:hover {
  color: var(--amber);
  border-color: rgba(255, 176, 32, 0.4);
  background: rgba(255, 176, 32, 0.08);
}

.engine__label { text-align: center; }
.engine__label b { display: block; font-size: 20px; color: var(--amber); }
.engine__label i { font-size: 11px; color: var(--muted); font-style: normal; font-family: var(--mono); }

.engine__panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.engine__desc { color: var(--muted); font-size: 15px; min-height: 72px; margin-bottom: 18px; }

.engine__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.eg {
  background: var(--slate);
  border-radius: 10px;
  padding: 11px 13px;
  border-left: 3px solid var(--green);
}

.eg span {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.eg b { font-family: var(--mono); font-size: 15px; color: var(--text); }

.engine__range {
  width: 100%;
  accent-color: var(--amber);
  height: 8px;
  cursor: pointer;
  margin-bottom: 16px;
}

.engine__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}

.bar {
  flex: 1;
  height: 10px;
  background: var(--slate);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.bar__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green), var(--amber));
  border-radius: 999px;
  transition: width 0.35s ease;
}

.engine__bar b {
  font-family: var(--mono);
  color: var(--amber);
  min-width: 38px;
  text-align: right;
}

/* About tickets */
.tickets { display: flex; flex-direction: column; gap: 12px; }

.ticket {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card);
  border: 1px dashed rgba(255, 176, 32, 0.25);
  border-radius: 12px;
  padding: 16px 18px;
  transition: border-color 0.2s;
}

.ticket:hover { border-color: rgba(255, 176, 32, 0.45); }

.ticket__head {
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  background: var(--amber);
  padding: 5px 9px;
  border-radius: 6px;
}

.ticket p { font-size: 15px; color: var(--muted); }

.motto {
  text-align: center;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--green);
  margin-top: 30px;
}

/* Privacy */
.doc-meta {
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 28px;
}

.doc {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.doc li {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 10px;
  padding: 16px 18px;
}

.doc h3 { font-size: 15px; margin-bottom: 6px; color: var(--text); }
.doc p { font-size: 14px; color: var(--muted); }
.doc a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }

/* Support */
.signal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: clamp(15px, 2.5vw, 19px);
  font-weight: 700;
  padding: 18px 24px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: var(--panel);
  border: 2px solid rgba(51, 196, 129, 0.35);
  transition: transform 0.2s, border-color 0.2s;
  word-break: break-all;
}

.signal:hover {
  transform: translateY(-2px);
  border-color: var(--green);
}

.signal__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(51, 196, 129, 0.55);
  animation: ping 1.8s ease infinite;
  flex-shrink: 0;
}

@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(51, 196, 129, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(51, 196, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(51, 196, 129, 0); }
}

.channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.channel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.channel:hover {
  transform: translateY(-3px);
  border-color: rgba(61, 200, 219, 0.45);
}

.channel span {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 6px;
}

.channel b { font-size: 14px; font-weight: 700; }

.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 8px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  list-style: none;
}

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

.faq p {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}

/* Footer */
.foot {
  border-top: 1px solid rgba(51, 196, 129, 0.18);
  padding: 38px 0 46px;
  background: #070a0e;
}

.foot__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.foot__nav { display: flex; gap: 20px; flex-wrap: wrap; }

.foot__nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}

.foot__nav a:hover { color: var(--amber); }
.foot__copy { font-size: 12px; color: var(--border); font-family: var(--mono); }

/* Responsive */
@media (max-width: 960px) {
  .intro__layout { grid-template-columns: 1fr; text-align: center; }
  .deck { margin-inline: auto; }
  .intro__actions, .stats-row { justify-content: center; }
  .kiosk { transform: none; max-width: 440px; margin-inline: auto; }
  .corridor { grid-template-columns: 1fr; }
  .regions { grid-template-columns: repeat(3, 1fr); }
  .services { grid-template-columns: 1fr; }
  .engine { grid-template-columns: 1fr; }
  .channels { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .topbar__nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(8, 11, 15, 0.98);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    padding: 0 16px;
  }

  .topbar__nav.open { max-height: 260px; padding-bottom: 12px; }
  .topbar__nav a { padding: 12px 0; border-top: 1px solid var(--line); border-radius: 0; }
  .topbar__toggle { display: flex; }

  .topbar__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .topbar__toggle.open span:nth-child(2) { opacity: 0; }
  .topbar__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .regions { grid-template-columns: repeat(2, 1fr); }
  .mark__pill { display: none; }
  .tick { font-size: 6px; }
}

@media (max-width: 420px) {
  .regions { grid-template-columns: 1fr 1fr; }
}
