/* ==========================================================================
   Landed — design tokens & base
   Palette: night-flight instrumentation. Deep navy void, amber approach
   lights as the primary accent, cyan nav-light as the secondary accent.
   ========================================================================== */

:root {
  --bg: #0b0e14;
  --bg-elevated: #12161f;
  --bg-card: #161b26;
  --bg-card-hover: #1b2130;
  --ink: #e9ecf2;
  --muted: #8891a4;
  --muted-dim: #5c6478;
  --amber: #ffb13c;
  --amber-ink: #1a1200;
  --amber-dim: #c98a2a;
  --cyan: #55d6de;
  --line: #232838;
  --line-bright: #333c54;
  --good: #6fcf97;
  --danger: #e0715c;

  --font-display: "Bricolage Grotesque", "IBM Plex Sans", sans-serif;
  --font-body: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --container: 1180px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  color-scheme: dark;
}

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

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
  color: var(--muted);
}

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

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}

.section--tight {
  padding: 64px 0;
}

.section--noline {
  border-bottom: none;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(255, 177, 60, 0.18);
}

.eyebrow--cyan {
  color: var(--cyan);
}
.eyebrow--cyan::before {
  background: var(--cyan);
  box-shadow: 0 0 0 3px rgba(85, 214, 222, 0.18);
}

.section-head {
  max-width: 640px;
  margin: 0 0 56px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--ink);
}

.section-head p {
  font-size: 17px;
  margin: 0;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--amber);
  color: var(--amber-ink);
  box-shadow: 0 0 0 0 rgba(255, 177, 60, 0.4);
}

.btn--primary:hover {
  background: #ffbe5c;
  box-shadow: 0 4px 24px rgba(255, 177, 60, 0.28);
}

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

.btn--ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn--sm {
  padding: 9px 16px;
  font-size: 13px;
}

.btn--block {
  width: 100%;
}

.btn--disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: rgba(11, 14, 20, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.brand__mark {
  font-size: 20px;
  line-height: 1;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__links a {
  font-size: 14.5px;
  color: var(--muted);
  transition: color 0.15s ease;
}

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

.nav__links .is-active {
  color: var(--ink);
}

.nav__soon {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted-dim);
  border: 1px solid var(--line-bright);
  padding: 2px 6px;
  border-radius: 100px;
  margin-left: 6px;
  vertical-align: middle;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__burger {
  display: none;
  background: none;
  border: 1px solid var(--line-bright);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav__mobile {
  display: none;
}

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

.hero {
  position: relative;
  padding: 88px 0 40px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 640px;
  background:
    radial-gradient(closest-side, rgba(255, 177, 60, 0.10), transparent),
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.028) 0px,
      rgba(255, 255, 255, 0.028) 1px,
      transparent 1px,
      transparent 64px
    ),
    repeating-linear-gradient(
      to right,
      rgba(255, 255, 255, 0.028) 0px,
      rgba(255, 255, 255, 0.028) 1px,
      transparent 1px,
      transparent 64px
    );
  mask-image: radial-gradient(ellipse 60% 50% at 50% 20%, black, transparent);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  color: var(--ink);
}

.hero h1 em {
  font-style: normal;
  color: var(--amber);
}

.hero__sub {
  font-size: 18px;
  max-width: 560px;
  margin: 4px 0 8px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.hero__note {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted-dim);
  margin-top: 6px;
}

/* ---------- departures board (signature element) ---------- */

.board {
  position: relative;
  z-index: 1;
  margin-top: 64px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.6);
}

.board__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

.board__bar span:last-child {
  color: var(--good);
}

.board__head,
.board__row {
  display: grid;
  grid-template-columns: 84px 1fr 130px;
  gap: 12px;
  align-items: center;
  padding: 14px 22px;
}

.board__head {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dim);
  border-bottom: 1px solid var(--line);
}

.board__row {
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}

.board__row:last-of-type {
  border-bottom: none;
}

.board__code {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.board__city {
  color: var(--ink);
}

.board__status {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted-dim);
  transition: color 0.3s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: 50% 50%;
  transform: perspective(200px) rotateX(0deg);
}

.board__status.is-live {
  color: var(--good);
}

.board__status.is-flipping {
  transform: perspective(200px) rotateX(90deg);
}

.board__foot {
  padding: 12px 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-dim);
  background: rgba(255, 255, 255, 0.015);
}

/* ---------- stat strip ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.stats__item {
  background: var(--bg-elevated);
  padding: 28px 24px;
  min-width: 0;
}

.stats__item .num {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 4px;
}

.stats__item .label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ---------- feature cards ---------- */

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

.feature {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  min-width: 0;
}

.feature__index {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--amber);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  display: block;
}

.feature h3 {
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 10px;
}

.feature p {
  margin: 0;
  font-size: 15px;
}

/* ---------- region cards (boarding pass) ---------- */

.regions {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.pass {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px 18px;
  min-width: 0;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.pass:hover {
  border-color: var(--line-bright);
  transform: translateY(-3px);
}

.pass__code {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.pass__city {
  font-size: 14.5px;
  color: var(--muted);
  margin: 4px 0 16px;
}

.pass__row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted-dim);
  border-top: 1px dashed var(--line-bright);
  padding-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- roadmap ---------- */

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

.roadmap__step {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  min-width: 0;
  position: relative;
}

.roadmap__step--next {
  border-style: dashed;
  border-color: var(--line-bright);
}

.roadmap__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 16px;
}

.roadmap__tag--live {
  color: var(--good);
  border: 1px solid rgba(111, 207, 151, 0.4);
}

.roadmap__tag--next {
  color: var(--cyan);
  border: 1px solid rgba(85, 214, 222, 0.35);
}

.roadmap__step h3 {
  color: var(--ink);
  font-size: 20px;
}

/* ---------- pricing ---------- */

.currency-toggle {
  display: inline-flex;
  background: var(--bg-elevated);
  border: 1px solid var(--line-bright);
  border-radius: 100px;
  padding: 4px;
  gap: 4px;
}

.currency-toggle button {
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 7px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.currency-toggle button.is-active {
  background: var(--amber);
  color: var(--amber-ink);
}

.pricing-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.includes-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding: 18px 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 40px;
  font-size: 14px;
  color: var(--muted);
}

.includes-bar strong {
  color: var(--ink);
}

.includes-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.includes-bar span::before {
  content: "✓";
  color: var(--good);
  font-family: var(--font-mono);
}

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

.plan {
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  min-width: 0;
}

.plan--highlight {
  border-color: var(--amber);
  background: linear-gradient(180deg, rgba(255, 177, 60, 0.06), var(--bg-elevated) 30%);
  position: relative;
}

.plan--enterprise {
  border-style: dashed;
  border-color: var(--line-bright);
}

.plan__badge {
  position: absolute;
  top: -13px;
  left: 26px;
  background: var(--amber);
  color: var(--amber-ink);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.plan__name {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.plan__price {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--ink);
  margin-bottom: 4px;
}

.plan__price .per {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}

.plan__price .hkd {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted-dim);
  margin-top: 6px;
}

[data-currency="USD"] .price-hkd { display: none; }
[data-currency="HKD"] .price-usd { display: none; }

.plan__desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 22px;
  min-height: 40px;
}

.plan__features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 26px;
  flex: 1;
}

.plan__features li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink);
}

.plan__features li::before {
  content: "→";
  color: var(--amber);
  font-family: var(--font-mono);
  flex-shrink: 0;
}

.plan--enterprise .plan__features li::before {
  color: var(--cyan);
}

/* ---------- comparison table ---------- */

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

table.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 14px;
}

table.compare th,
table.compare td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

table.compare thead th {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-dim);
  background: var(--bg-elevated);
}

table.compare tbody th {
  color: var(--muted);
  font-weight: 400;
}

table.compare td {
  color: var(--ink);
}

table.compare tr:last-child td,
table.compare tr:last-child th {
  border-bottom: none;
}

/* ---------- FAQ ---------- */

.faq {
  max-width: 780px;
}

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

.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16.5px;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.faq summary::after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--amber);
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq p {
  margin: 14px 0 0;
  font-size: 15px;
  max-width: 640px;
}

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

.cta-banner {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--ink);
  margin-bottom: 8px;
}

.cta-banner p {
  margin: 0;
  max-width: 440px;
}

.cta-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink);
  border: 1px solid var(--line-bright);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.contact-chip:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* ---------- footer ---------- */

.footer {
  padding: 64px 0 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.footer__brand p {
  font-size: 14px;
  max-width: 280px;
  margin-top: 14px;
}

.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-dim);
  margin-bottom: 16px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a {
  font-size: 14.5px;
  color: var(--muted);
  transition: color 0.15s ease;
}

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

.footer__soon {
  color: var(--muted-dim);
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  font-size: 13px;
  color: var(--muted-dim);
  font-family: var(--font-mono);
}

.footer__bottom a {
  color: var(--muted-dim);
}

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

/* ---------- legal / prose pages ---------- */

.prose {
  max-width: 740px;
}

.prose h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  margin-bottom: 8px;
}

.prose .updated {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted-dim);
  margin-bottom: 40px;
  display: block;
}

.prose h2 {
  font-size: 20px;
  color: var(--ink);
  margin-top: 44px;
}

.prose h3 {
  font-size: 16px;
  color: var(--ink);
  margin-top: 28px;
}

.prose p,
.prose li {
  font-size: 15.5px;
  color: var(--muted);
}

.prose ul,
.prose ol {
  margin: 0 0 1em;
  padding-left: 22px;
}

.prose li {
  margin-bottom: 8px;
}

.prose li::marker {
  color: var(--amber);
}

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

.prose a {
  color: var(--cyan);
  text-decoration: underline;
  text-decoration-color: rgba(85, 214, 222, 0.4);
  text-underline-offset: 3px;
}

.callout {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin: 28px 0;
  font-size: 14.5px;
}

.callout p {
  margin: 0;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.legal-nav a {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 100px;
}

.legal-nav a.is-active {
  color: var(--amber);
  border-color: var(--amber-dim);
}

/* ---------- 404 ---------- */

.error-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.error-page .code {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--amber);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .board__status {
    transition: none;
  }
  .pass,
  .btn {
    transition: none;
  }
}

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

@media (max-width: 980px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .regions {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav__links,
  .nav__cta .btn--ghost {
    display: none;
  }
  .nav__burger {
    display: inline-flex;
  }
  .nav__mobile.is-open {
    display: flex;
  }
  .nav__mobile {
    position: fixed;
    inset: 65px 0 0 0;
    background: var(--bg);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    z-index: 99;
    overflow-y: auto;
  }
  .nav__mobile a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    color: var(--ink);
  }
  .nav__mobile-disabled {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    color: var(--muted-dim);
  }
  .grid-3,
  .grid-4,
  .stats,
  .roadmap {
    grid-template-columns: 1fr;
  }
  .regions {
    grid-template-columns: repeat(2, 1fr);
  }
  .board__head,
  .board__row {
    grid-template-columns: 52px 1fr 88px;
  }
  .cta-banner {
    padding: 36px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .section {
    padding: 64px 0;
  }
  .pricing-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .regions {
    grid-template-columns: repeat(2, 1fr);
  }
}
