@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@24..96,500;24..96,700;24..96,800&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap");

:root {
  --paper: #f4f7f6;
  --paper-soft: #ffffff;
  --paper-strong: #e4ece8;
  --ink: #10202b;
  --ink-soft: #28404e;
  --ink-muted: #607684;
  --night: #0f2432;
  --night-soft: #163647;
  --card: #ffffff;
  --card-alt: #f5faf8;
  --line: rgba(19, 39, 54, 0.24);
  --text: #132736;
  --text-soft: #3d586a;
  --text-muted: #6f8592;
  --green: #1fa463;
  --green-strong: #127044;
  --amber: #20cf7a;
  --rose: #0f9f5f;
  --cyan: #58bfe5;
  --shadow: 0 18px 42px rgba(19, 39, 54, 0.08);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 12px;
  --shell-width: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(31, 164, 99, 0.08), transparent 20%),
    radial-gradient(circle at 78% 12%, rgba(32, 207, 122, 0.06), transparent 20%),
    linear-gradient(180deg, #f7faf9 0%, #eef4f2 42%, #f7faf9 100%);
  font-family: "IBM Plex Sans", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(19, 39, 54, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(19, 39, 54, 0.025) 1px, transparent 1px);
  background-size: 108px 108px, 108px 108px;
  opacity: 0.38;
}

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

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

.shell {
  width: var(--shell-width);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(19, 39, 54, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(19, 39, 54, 0.12);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow: 0 10px 20px rgba(19, 39, 54, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(31, 164, 99, 0.16), rgba(32, 207, 122, 0.1));
  border: 1px solid rgba(19, 39, 54, 0.12);
  box-shadow: 0 10px 20px rgba(19, 39, 54, 0.08);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}

.brand-copy span {
  color: var(--ink-muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  border: 1px solid transparent;
  font-weight: 600;
}

.nav a:hover,
.nav a:focus-visible {
  border-color: rgba(19, 39, 54, 0.16);
  background: rgba(255, 255, 255, 0.56);
  outline: none;
}

.market-switch-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: min(460px, calc(100vw - 24px));
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(19, 39, 54, 0.14);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(19, 39, 54, 0.16);
  backdrop-filter: blur(14px);
}

.market-switch-copy {
  display: grid;
  gap: 4px;
}

.market-switch-copy strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.market-switch-copy span {
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.market-switch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button-row,
.cta-row,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.ghost-button,
.chip-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.button {
  color: var(--paper-soft);
  background: var(--ink);
  border: 1px solid var(--ink);
  box-shadow: 0 12px 24px rgba(19, 39, 54, 0.14);
}

.button:hover,
.ghost-button:hover,
.chip-link:hover,
.button:focus-visible,
.ghost-button:focus-visible,
.chip-link:focus-visible {
  transform: translateY(-1px);
  outline: none;
  box-shadow: 0 16px 28px rgba(19, 39, 54, 0.14);
}

.ghost-button {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(19, 39, 54, 0.12);
  box-shadow: 0 10px 22px rgba(19, 39, 54, 0.08);
}

.chip-link {
  min-height: 40px;
  padding-inline: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(19, 39, 54, 0.12);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(19, 39, 54, 0.06);
}

.hero {
  padding: 56px 0 30px;
}

.hero-split,
.split-layout,
.content-grid,
.city-grid,
.feature-grid,
.two-column,
.faq-grid,
.kpi-grid,
.suburb-grid {
  display: grid;
  gap: 22px;
}

.hero-split {
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.95fr);
  align-items: stretch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--amber);
  border: 1px solid rgba(19, 39, 54, 0.12);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(31, 164, 99, 0.12);
}

.display {
  margin: 18px 0 14px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  max-width: 900px;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.display span {
  color: var(--rose);
  position: relative;
}

.lead,
.section-copy,
.muted {
  color: var(--text-soft);
}

.lead {
  max-width: 760px;
  font-size: 1.08rem;
  line-height: 1.72;
}

.section {
  padding: 18px 0 34px;
}

.section-title {
  margin: 0 0 10px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.section-copy {
  margin: 0;
  max-width: 760px;
  font-size: 1rem;
}

.panel,
.hero-panel,
.stat-card,
.city-card,
.feature-card,
.table-card,
.faq-card,
.summary-card,
.route-card,
.map-panel,
.quote-card,
.breadcrumb-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 249, 241, 0.94), rgba(247, 239, 226, 0.94));
  border: 1px solid rgba(19, 39, 54, 0.1);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.panel::after,
.hero-panel::after,
.city-card::after,
.feature-card::after,
.table-card::after,
.faq-card::after,
.summary-card::after,
.route-card::after,
.map-panel::after,
.quote-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 34%);
  pointer-events: none;
}

.table-card::before,
.summary-card::before,
.map-panel::before,
.prose-card::before,
.visual-card::before,
.featured-country::before,
.market-card::before,
.directory-panel::before,
.global-index-card::before,
.home-bottom-card::before,
.live-map-card::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23132736' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v4'/%3E%3Cpath d='M12 17v4'/%3E%3Cpath d='M3 12h4'/%3E%3Cpath d='M17 12h4'/%3E%3Ccircle cx='12' cy='12' r='3.5'/%3E%3C/svg%3E")
      center / 16px 16px no-repeat,
    rgba(19, 39, 54, 0.06);
  border: 1px solid rgba(19, 39, 54, 0.08);
  box-shadow: 0 10px 20px rgba(19, 39, 54, 0.08);
  opacity: 0.92;
  pointer-events: none;
  z-index: 1;
}

.hero-panel,
.panel,
.table-card,
.summary-card,
.route-card,
.map-panel,
.quote-card {
  padding: 24px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.stat-card {
  padding: 18px;
  border-radius: var(--radius-lg) var(--radius-lg) 12px var(--radius-lg);
}

.stat-label {
  color: var(--ink-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.stat-value {
  margin-top: 8px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.stat-note {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.mini-grid,
.price-grid,
.city-grid,
.feature-grid,
.faq-grid,
.suburb-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid,
.faq-grid,
.suburb-grid {
  margin-top: 18px;
}

.city-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 20px;
}

.feature-card,
.city-card,
.faq-card {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.feature-card h3,
.city-card h3,
.faq-card h3,
.table-card h3,
.map-panel h3,
.summary-card h3 {
  margin: 0 0 8px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.feature-card p,
.city-card p,
.faq-card p,
.table-card p,
.summary-card p,
.route-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.price-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.price-bar:first-of-type {
  border-top: 0;
}

.price-bar > div {
  min-width: 0;
  flex: 1 1 240px;
}

.price-bar strong {
  font-size: 1rem;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(19, 39, 54, 0.08);
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
  border: 2px solid rgba(19, 39, 54, 0.12);
}

.price-number,
.price-highlight {
  font-family: "Bricolage Grotesque", sans-serif;
  letter-spacing: -0.04em;
}

.price-number {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1;
}

.price-highlight {
  font-size: 1.5rem;
}

.price-tone-green {
  color: var(--green);
}

.price-tone-amber {
  color: var(--amber);
}

.price-tone-rose {
  color: var(--rose);
}

.breadcrumb-wrap {
  margin-top: 26px;
  padding: 16px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  width: fit-content;
  max-width: calc(100vw - 32px);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

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

.quote-card {
  display: grid;
  gap: 16px;
  background: linear-gradient(180deg, #ef6a3b, #ef8357);
  color: #fff5ec;
  border-color: rgba(19, 39, 54, 0.12);
}

.quote-card blockquote {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.45rem;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.quote-card small {
  color: rgba(255, 245, 236, 0.8);
}

.table-card {
  margin-top: 20px;
  background: linear-gradient(180deg, #142b3d, #183246);
  color: #f8f3ea;
  border-color: rgba(255, 255, 255, 0.08);
}

.table-header,
.table-row {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.7fr 0.7fr 0.8fr;
  gap: 12px;
  align-items: center;
}

.table-header {
  padding-bottom: 12px;
  color: rgba(248, 243, 234, 0.54);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.table-row {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.table-row strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.98rem;
  overflow-wrap: anywhere;
}

.table-row span {
  color: rgba(248, 243, 234, 0.68);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.table-row .live-tag {
  justify-self: start;
}

.live-tag,
.tone-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-tag {
  background: rgba(31, 164, 99, 0.18);
  color: #c9f2db;
  border: 1px solid rgba(31, 164, 99, 0.28);
}

.tone-tag {
  background: rgba(255, 191, 84, 0.14);
  color: #ffe0a0;
  border: 1px solid rgba(255, 191, 84, 0.22);
}

.map-panel {
  min-height: 440px;
  background: linear-gradient(180deg, #fff6e8, #f1e1c2);
}

.map-art {
  position: relative;
  min-height: 300px;
  margin-top: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 24%, rgba(88, 191, 229, 0.2), transparent 18%),
    radial-gradient(circle at 74% 74%, rgba(255, 191, 84, 0.2), transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 247, 234, 0.48));
  border: 2px solid rgba(19, 39, 54, 0.12);
  overflow: hidden;
}

.map-art::before,
.map-art::after {
  content: "";
  position: absolute;
  inset: 0;
}

.map-art::before {
  background:
    linear-gradient(90deg, transparent 0 13%, rgba(19, 39, 54, 0.08) 13% 14%, transparent 14% 100%),
    linear-gradient(transparent 0 18%, rgba(19, 39, 54, 0.08) 18% 19%, transparent 19% 100%),
    linear-gradient(transparent 0 45%, rgba(19, 39, 54, 0.08) 45% 46%, transparent 46% 100%),
    linear-gradient(transparent 0 73%, rgba(19, 39, 54, 0.08) 73% 74%, transparent 74% 100%);
  opacity: 0.7;
}

.map-art::after {
  background:
    radial-gradient(circle at 34% 58%, rgba(31, 164, 99, 0.74), transparent 10%),
    radial-gradient(circle at 50% 44%, rgba(255, 191, 84, 0.76), transparent 10%),
    radial-gradient(circle at 66% 33%, rgba(239, 106, 59, 0.7), transparent 10%);
  mix-blend-mode: multiply;
}

.map-pin {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 3px solid rgba(255, 246, 232, 0.95);
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(31, 164, 99, 0.16);
}

.map-pin.is-amber {
  background: var(--amber);
  box-shadow: 0 0 0 8px rgba(255, 191, 84, 0.16);
}

.map-pin.is-rose {
  background: var(--rose);
  box-shadow: 0 0 0 8px rgba(239, 106, 59, 0.16);
}

.map-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.map-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: 2px solid rgba(19, 39, 54, 0.12);
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
}

.dot.is-amber {
  background: var(--amber);
}

.dot.is-rose {
  background: var(--rose);
}

.summary-list,
.link-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.summary-item,
.link-list a {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
  border: 2px solid rgba(19, 39, 54, 0.1);
}

.summary-item > div,
.link-list a > div {
  min-width: 0;
  flex: 1 1 240px;
}

.summary-item strong,
.link-list strong {
  font-size: 0.96rem;
}

.summary-item span,
.link-list span {
  color: var(--ink-muted);
  font-size: 0.88rem;
}

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

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 20px;
  border-top: 2px solid rgba(19, 39, 54, 0.1);
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.callout {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  border: 2px solid rgba(19, 39, 54, 0.12);
  color: var(--text-soft);
  box-shadow: 6px 6px 0 rgba(19, 39, 54, 0.08);
}

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

.stack {
  display: grid;
  gap: 18px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.hero-metric {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  border: 2px solid rgba(19, 39, 54, 0.12);
  box-shadow: 6px 6px 0 rgba(19, 39, 54, 0.08);
}

.hero-metric span {
  display: block;
  color: var(--ink-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.hero-metric strong {
  display: block;
  margin-top: 8px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}

.search-shell {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.18);
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.12);
}

.search-bar input {
  width: 100%;
  padding: 0;
  border: 0;
  outline: none;
  color: var(--text);
  background: transparent;
  font: inherit;
  font-size: 1rem;
}

.search-bar input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.search-suggestions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.search-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.08);
}

.search-option strong {
  display: block;
  font-size: 0.96rem;
}

.search-option span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
}

.kicker {
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(19, 39, 54, 0.08);
  border: 2px solid rgba(19, 39, 54, 0.12);
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.badge.is-green {
  color: var(--green-strong);
  background: rgba(31, 164, 99, 0.12);
  border-color: rgba(31, 164, 99, 0.18);
}

.badge.is-amber {
  color: #925d00;
  background: rgba(255, 191, 84, 0.14);
  border-color: rgba(255, 191, 84, 0.18);
}

.page-note {
  margin-top: 16px;
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.hero-panel,
.table-card,
.page-home .summary-card {
  color: #f8f3ea;
}

.hero-panel,
.page-home .summary-card {
  background: linear-gradient(180deg, #142b3d, #183246);
  border-color: rgba(255, 255, 255, 0.08);
}

.hero-panel h2,
.hero-panel h3,
.hero-panel p,
.page-home .summary-card h3,
.page-home .summary-card p {
  color: #f8f3ea;
}

.hero-panel .section-title {
  color: #fff5ec;
}

.hero-panel .kicker,
.page-home .summary-card .kicker {
  color: #ffcf77;
}

.page-home .map-panel,
.page-state .map-panel {
  background: linear-gradient(180deg, #fff6e8, #efdcb6);
}

.page-home .stat-card,
.page-home .feature-card,
.page-home .preview-route,
.page-home .preview-route-link,
.page-home .home-proof-card,
.page-home .showcase-card,
.page-home .separation-panel,
.page-state .stat-card,
.page-state .city-card,
.page-state .summary-card,
.page-state .visual-card,
.page-state .prose-card,
.page-state .home-proof-card,
.page-state .faq-panel {
  box-shadow: 0 14px 30px rgba(19, 39, 54, 0.06);
  border-color: rgba(19, 39, 54, 0.1);
}

.page-home .hero,
.page-state .hero {
  padding-top: 48px;
}

.page-home .display,
.page-state .display {
  max-width: 740px;
}

.page-home .lead,
.page-state .lead {
  max-width: 700px;
}

.page-state .summary-card {
  background: linear-gradient(180deg, #f8ebc5, #f0ddb0);
}

.page-state .display {
  max-width: 720px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.page-state .stat-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-state .summary-card p,
.page-state .summary-card h3,
.page-state .summary-card .kicker,
.page-city .summary-card p,
.page-city .summary-card h3,
.page-city .summary-card .kicker,
.page-suburb .summary-card p,
.page-suburb .summary-card h3,
.page-suburb .summary-card .kicker {
  color: var(--ink);
}

.page-city .summary-card,
.page-suburb .summary-card {
  background: linear-gradient(180deg, #ffefc6, #f4ddab);
}

.spacer-top {
  margin-top: 18px;
}

.spacer-large {
  margin-top: 28px;
}

.map-print-image {
  width: 100%;
  margin-top: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  display: block;
}

.body-list,
.insight-list {
  display: grid;
  gap: 12px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.body-list li,
.insight-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
}

.body-list li::before,
.insight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(64, 227, 143, 0.12);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.metric-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.metric-card span {
  display: block;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.note-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.note-card h4 {
  margin: 0 0 8px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.06rem;
  letter-spacing: -0.03em;
}

.note-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.section-intro {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 10px;
  margin-bottom: 18px;
}

.section-intro::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / span 3;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23132736' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2.5l2.1 6.4H21l-5.5 4 2.1 6.6L12 15.4 6.4 19.5l2.1-6.6-5.5-4h6.9L12 2.5Z'/%3E%3C/svg%3E")
      center / 22px 22px no-repeat,
    linear-gradient(135deg, rgba(31, 164, 99, 0.18), rgba(255, 191, 84, 0.2));
  border: 1px solid rgba(19, 39, 54, 0.12);
  box-shadow: 0 16px 28px rgba(19, 39, 54, 0.08);
}

.section-intro > * {
  grid-column: 2;
}

.live-map-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 249, 241, 0.95), rgba(247, 239, 226, 0.95));
  border: 1px solid rgba(19, 39, 54, 0.1);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.live-map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 34%);
  pointer-events: none;
}

.live-map-card > * {
  position: relative;
  z-index: 1;
}

.live-map {
  position: relative;
  height: 360px;
  border-radius: 24px;
  overflow: hidden;
  background: #102536;
  border: 1px solid rgba(19, 39, 54, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.compact-live-map {
  height: 300px;
  margin-top: 16px;
}

.feature-live-map {
  height: 468px;
  margin-top: 16px;
}

.map-tile-layer,
.map-marker-layer,
.map-gradient-layer {
  position: absolute;
  inset: 0;
}

.map-tile {
  position: absolute;
  width: 256px;
  height: 256px;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.map-gradient-layer {
  background:
    radial-gradient(circle at top right, rgba(88, 191, 229, 0.22), transparent 26%),
    linear-gradient(180deg, rgba(10, 19, 29, 0) 0%, rgba(10, 19, 29, 0.12) 100%);
  pointer-events: none;
}

.map-marker-layer {
  pointer-events: none;
}

.live-map.is-interactive {
  touch-action: none;
  cursor: grab;
}

.live-map.is-dragging {
  cursor: grabbing;
}

.map-marker {
  position: absolute;
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  appearance: none;
  pointer-events: auto;
  font: inherit;
  color: inherit;
  text-align: left;
  transform: translate(-50%, calc(-100% - 8px));
  transition: transform 160ms ease, filter 160ms ease;
  z-index: 2;
}

.map-marker:hover,
.map-marker:focus-visible,
.map-marker.is-selected {
  transform: translate(-50%, calc(-100% - 8px)) scale(1.03);
  z-index: 4;
}

.map-marker:focus-visible {
  outline: none;
}

.map-marker-bubble {
  display: grid;
  gap: 3px;
  max-width: 180px;
  padding: 9px 10px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(19, 39, 54, 0.12);
  box-shadow: 0 16px 30px rgba(19, 39, 54, 0.14);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.map-marker:hover .map-marker-bubble,
.map-marker:focus-visible .map-marker-bubble,
.map-marker.is-selected .map-marker-bubble {
  border-color: rgba(19, 39, 54, 0.24);
  box-shadow: 0 20px 36px rgba(19, 39, 54, 0.2);
  background: rgba(255, 255, 255, 0.98);
}

.map-marker-bubble strong {
  font-size: 0.82rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.map-marker-bubble em {
  font-style: normal;
  color: var(--ink-muted);
  font-size: 0.72rem;
  line-height: 1.2;
}

.map-marker-value {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(19, 39, 54, 0.08);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.map-marker-pin {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 3px solid #fff;
  background: var(--marker-color, var(--green));
  box-shadow: 0 8px 18px rgba(19, 39, 54, 0.18);
}

.map-marker-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #fff;
  transform: translate(-50%, -50%);
}

.map-marker.tone-green {
  --marker-color: #1fa463;
}

.map-marker.tone-cyan,
.map-marker.tone-sky {
  --marker-color: #58bfe5;
}

.map-marker.tone-amber {
  --marker-color: #ffbf54;
}

.map-marker.tone-rose {
  --marker-color: #ef6a3b;
}

.map-attribution {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(14, 25, 38, 0.78);
  color: rgba(248, 243, 234, 0.88);
  font-size: 0.72rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.map-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.map-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(19, 39, 54, 0.08);
  border: 1px solid rgba(19, 39, 54, 0.08);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.map-inline-note {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.map-user-marker {
  position: absolute;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
}

.map-user-pulse {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(88, 191, 229, 0.22);
  animation: user-pulse 2.4s ease-out infinite;
}

.map-user-dot {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.95);
  background: var(--cyan);
  box-shadow: 0 12px 22px rgba(19, 39, 54, 0.18);
}

.map-user-label {
  position: absolute;
  top: 26px;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(14, 25, 38, 0.78);
  color: rgba(248, 243, 234, 0.94);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.map-ui-layer {
  position: absolute;
  inset: 12px 12px auto 12px;
  display: grid;
  gap: 12px;
  z-index: 4;
  pointer-events: none;
}

.map-ui-layer.is-dragging {
  opacity: 0.86;
}

.map-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: calc(100% - 94px);
}

.map-badge,
.map-browse-hint {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(14, 25, 38, 0.78);
  color: rgba(248, 243, 234, 0.94);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.map-control-stack {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  gap: 8px;
  pointer-events: auto;
}

.map-control-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(14, 25, 38, 0.82);
  color: rgba(248, 243, 234, 0.96);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.18rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(8, 14, 22, 0.24);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.map-control-button:hover,
.map-control-button:focus-visible {
  transform: translateY(-1px);
  background: rgba(20, 43, 61, 0.92);
  border-color: rgba(255, 255, 255, 0.24);
  outline: none;
}

.map-control-button-wide {
  width: auto;
  min-width: 56px;
  padding: 0 12px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-browse-hint {
  justify-self: start;
}

.map-results-panel {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 104px;
}

.map-panel-copy {
  margin: 0;
  color: var(--text-soft);
}

.map-toolbar {
  display: grid;
  gap: 12px;
}

.map-locate-button {
  justify-content: flex-start;
  min-height: 44px;
  padding-inline: 16px;
  font-size: 0.92rem;
  box-shadow: none;
}

.map-locate-button::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23132736' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v3'/%3E%3Cpath d='M12 18v3'/%3E%3Cpath d='M3 12h3'/%3E%3Cpath d='M18 12h3'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3C/svg%3E")
      center / 14px 14px no-repeat;
  flex: 0 0 auto;
}

.map-locate-button.is-active {
  border-color: rgba(31, 164, 99, 0.24);
  background: rgba(31, 164, 99, 0.12);
}

.map-locate-button:disabled {
  opacity: 0.68;
  cursor: progress;
}

.map-geo-status {
  display: block;
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.station-spotlight {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  border: 2px solid rgba(19, 39, 54, 0.1);
}

.station-spotlight-empty strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.02rem;
  letter-spacing: -0.03em;
}

.station-spotlight-empty p {
  margin: 0;
  color: var(--text-soft);
}

.station-spotlight-top,
.station-spotlight-head,
.station-action-row,
.station-feed-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.station-spotlight-head {
  align-items: flex-end;
}

.station-spotlight-head h4 {
  margin: 0 0 4px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.2rem;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.station-spotlight-head p,
.station-spotlight-note {
  margin: 0;
  color: var(--text-soft);
}

.station-spotlight-price {
  flex: 0 0 auto;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--ink);
}

.station-brand-chip,
.station-status-pill,
.station-fact-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.station-brand-chip {
  background: rgba(19, 39, 54, 0.08);
  border: 1px solid rgba(19, 39, 54, 0.1);
  color: var(--ink);
}

.station-status-pill,
.station-fact-chip {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(19, 39, 54, 0.08);
  color: var(--ink-soft);
}

.station-brand-chip.tone-green {
  background: rgba(31, 164, 99, 0.12);
  color: var(--green-strong);
}

.station-brand-chip.tone-cyan,
.station-brand-chip.tone-sky {
  background: rgba(88, 191, 229, 0.14);
  color: #1c5f78;
}

.station-brand-chip.tone-amber {
  background: rgba(255, 191, 84, 0.18);
  color: #8a5b00;
}

.station-brand-chip.tone-rose {
  background: rgba(239, 106, 59, 0.16);
  color: #9b3c15;
}

.station-fact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.station-action-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--paper-soft);
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow: 0 12px 22px rgba(19, 39, 54, 0.12);
}

.station-action-link:hover,
.station-action-link:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.station-feed {
  display: grid;
  gap: 14px;
}

.station-feed-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.station-feed-header strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.04rem;
  letter-spacing: -0.03em;
}

.station-feed-header span {
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.station-feed-list {
  display: grid;
  gap: 10px;
}

.station-feed-row {
  width: 100%;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(19, 39, 54, 0.1);
  background: rgba(255, 255, 255, 0.64);
  cursor: pointer;
  font: inherit;
  color: inherit;
  box-shadow: 0 10px 22px rgba(19, 39, 54, 0.05);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  text-align: left;
}

.station-feed-row:hover,
.station-feed-row:focus-visible,
.station-feed-row.is-active {
  transform: translateY(-1px);
  border-color: rgba(19, 39, 54, 0.2);
  box-shadow: 0 14px 24px rgba(19, 39, 54, 0.1);
}

.station-feed-row:focus-visible {
  outline: none;
}

.station-feed-row.is-active {
  background: rgba(255, 255, 255, 0.82);
}

.station-feed-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(19, 39, 54, 0.08);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
}

.station-feed-row.tone-green .station-feed-rank {
  background: rgba(31, 164, 99, 0.14);
  color: var(--green-strong);
}

.station-feed-row.tone-cyan .station-feed-rank,
.station-feed-row.tone-sky .station-feed-rank {
  background: rgba(88, 191, 229, 0.16);
  color: #1c5f78;
}

.station-feed-row.tone-amber .station-feed-rank {
  background: rgba(255, 191, 84, 0.18);
  color: #8a5b00;
}

.station-feed-row.tone-rose .station-feed-rank {
  background: rgba(239, 106, 59, 0.16);
  color: #9b3c15;
}

.station-feed-copy {
  min-width: 0;
  flex: 1 1 auto;
}

.station-feed-copy strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.96rem;
  overflow-wrap: anywhere;
}

.station-feed-copy span,
.station-feed-price span {
  color: var(--ink-muted);
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.station-feed-price {
  min-width: 110px;
  text-align: right;
}

.station-feed-price strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

@keyframes user-pulse {
  0% {
    transform: scale(0.6);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.table-card.table-wide .table-header,
.table-card.table-wide .table-row {
  grid-template-columns: 1.4fr 0.7fr 0.7fr 0.7fr 0.8fr 0.8fr;
}

.split-65 {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 22px;
}

.map-experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.86fr);
  gap: 22px;
  align-items: start;
}

.long-copy {
  display: grid;
  gap: 16px;
}

.long-copy p {
  margin: 0;
  color: var(--text-soft);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.comparison-band {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-band strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.comparison-band p {
  margin: 0;
  color: var(--text-soft);
}

.toc-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  border: 2px solid rgba(19, 39, 54, 0.1);
  box-shadow: 6px 6px 0 rgba(19, 39, 54, 0.08);
}

.toc-card h3 {
  margin: 0 0 12px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.toc-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc-list a {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(19, 39, 54, 0.1);
  color: var(--ink);
  font-weight: 600;
}

.toc-list a > :first-child,
.toc-list a > span {
  min-width: 0;
}

.toc-list span {
  color: var(--ink-muted);
  font-size: 0.84rem;
  overflow-wrap: anywhere;
}

.band-grid,
.brand-grid,
.query-grid,
.update-grid {
  display: grid;
  gap: 18px;
}

.band-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.query-grid,
.update-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.band-card,
.brand-card,
.query-card,
.update-card,
.prose-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.56);
  border: 2px solid rgba(19, 39, 54, 0.1);
  box-shadow: 6px 6px 0 rgba(19, 39, 54, 0.08);
}

.band-card h4,
.brand-card h4,
.query-card h4,
.update-card h4,
.prose-card h4 {
  margin: 0 0 8px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.04rem;
  letter-spacing: -0.03em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.band-card p,
.brand-card p,
.query-card p,
.update-card p,
.prose-card p {
  margin: 0;
  color: var(--text-soft);
  overflow-wrap: anywhere;
}

.band-topline,
.brand-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.band-topline > *,
.brand-topline > * {
  min-width: 0;
}

.band-price {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.mini-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(19, 39, 54, 0.08);
  overflow: hidden;
  margin-top: 14px;
}

.mini-bar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.brand-card strong,
.update-card strong,
.prose-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
}

.query-card .tag-row {
  margin-top: 12px;
}

.divider-section {
  padding-top: 8px;
}

.stacked-panels {
  display: grid;
  gap: 18px;
}

.anchor-offset {
  scroll-margin-top: 100px;
}

.icon-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.icon-heading > div:last-child,
.faq-question > h3 {
  min-width: 0;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(31, 164, 99, 0.14), rgba(255, 191, 84, 0.16));
  border: 2px solid rgba(19, 39, 54, 0.12);
  box-shadow: 4px 4px 0 rgba(19, 39, 54, 0.08);
}

.icon-badge svg {
  width: 22px;
  height: 22px;
  stroke: var(--ink);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.visual-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.56);
  border: 2px solid rgba(19, 39, 54, 0.1);
  box-shadow: 6px 6px 0 rgba(19, 39, 54, 0.08);
}

.visual-card p {
  margin: 0;
  color: var(--text-soft);
}

.visual-card h3 {
  margin: 0 0 8px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.18rem;
  letter-spacing: -0.04em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.chart-image {
  width: 100%;
  margin-top: 16px;
  border-radius: 20px;
  border: 2px solid rgba(19, 39, 54, 0.1);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.visual-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.visual-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.visual-item-copy {
  min-width: 0;
}

.visual-item-copy strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.92rem;
  color: var(--ink);
}

.visual-item-copy p {
  font-size: 0.92rem;
}

.faq-section {
  display: grid;
  gap: 18px;
}

.faq-section-header {
  display: grid;
  gap: 10px;
}

.faq-stack {
  display: grid;
  gap: 16px;
}

.faq-panel {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  border: 2px solid rgba(19, 39, 54, 0.1);
  box-shadow: 6px 6px 0 rgba(19, 39, 54, 0.08);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 10px;
}

.faq-question h3 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.faq-panel p {
  margin: 0;
  color: var(--text-soft);
}

.faq-answer-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.faq-answer-list li {
  list-style: none;
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
}

.faq-answer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--rose);
  box-shadow: 0 0 0 5px rgba(239, 106, 59, 0.12);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 26px;
  align-items: start;
}

.home-hero-copy {
  display: grid;
  gap: 18px;
}

.query-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.query-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(19, 39, 54, 0.1);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 4px 4px 0 rgba(19, 39, 54, 0.06);
}

.home-stat-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-stat-chip {
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  border: 2px solid rgba(19, 39, 54, 0.1);
  box-shadow: 6px 6px 0 rgba(19, 39, 54, 0.06);
}

.home-stat-chip strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.home-stat-chip span {
  display: block;
  color: var(--ink-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.home-stat-chip p {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.preview-rail {
  display: grid;
  gap: 18px;
}

.preview-route {
  padding: 22px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 246, 232, 0.95), rgba(245, 232, 208, 0.95));
  border: 2px solid rgba(19, 39, 54, 0.12);
  box-shadow: 8px 8px 0 rgba(19, 39, 54, 0.08);
}

.preview-route h3 {
  margin: 0 0 8px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.26rem;
  letter-spacing: -0.04em;
}

.preview-route p {
  margin: 0;
  color: var(--text-soft);
}

.preview-route-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.preview-route-link {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 2px solid rgba(19, 39, 54, 0.1);
  box-shadow: 4px 4px 0 rgba(19, 39, 54, 0.06);
}

.preview-route-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.preview-route-topline strong {
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.preview-route-topline span {
  color: var(--text-soft);
  font-size: 0.9rem;
}

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

.preview-mini-card {
  padding: 14px 16px;
  border-radius: 16px;
  background: #173347;
  color: #f8f3ea;
}

.preview-mini-card span {
  display: block;
  color: rgba(248, 243, 234, 0.72);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.preview-mini-card strong {
  display: block;
  margin-top: 8px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.42rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.home-proof-grid,
.showcase-grid {
  display: grid;
  gap: 18px;
}

.home-proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-proof-card,
.showcase-card,
.separation-panel {
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.62);
  border: 2px solid rgba(19, 39, 54, 0.1);
  box-shadow: 6px 6px 0 rgba(19, 39, 54, 0.08);
}

.home-proof-card p,
.showcase-card p,
.separation-panel p {
  margin: 0;
  color: var(--text-soft);
}

.home-proof-card h3,
.showcase-card h3,
.separation-panel h3 {
  margin: 0 0 8px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.showcase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.showcase-card img {
  width: 100%;
  margin-top: 16px;
  border-radius: 18px;
  border: 2px solid rgba(19, 39, 54, 0.1);
  background: rgba(255, 255, 255, 0.6);
}

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

.showcase-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(19, 39, 54, 0.08);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.separation-panel {
  background: linear-gradient(180deg, rgba(255, 239, 198, 0.96), rgba(244, 221, 171, 0.96));
}

.separation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 22px;
  align-items: start;
}

.split-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.split-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.52);
  border: 2px solid rgba(19, 39, 54, 0.1);
}

.split-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.96rem;
}

.split-item p {
  font-size: 0.92rem;
}

.country-grid,
.state-directory-grid {
  display: grid;
  gap: 18px;
}

.country-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.state-directory-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.country-card,
.state-directory-card {
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(19, 39, 54, 0.1);
  box-shadow: 0 14px 30px rgba(19, 39, 54, 0.06);
}

.country-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.country-head h3,
.state-directory-card h3 {
  margin: 0 0 8px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.24rem;
  letter-spacing: -0.04em;
}

.country-head p,
.state-directory-card p {
  margin: 0;
  color: var(--text-soft);
}

.country-figure {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--ink);
}

.country-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.country-meta-card {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(19, 39, 54, 0.04);
  border: 1px solid rgba(19, 39, 54, 0.08);
}

.country-meta-card span {
  display: block;
  color: var(--ink-muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.country-meta-card strong {
  display: block;
  margin-top: 8px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
}

.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.directory-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(19, 39, 54, 0.1);
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.directory-chip strong {
  margin-left: 6px;
  color: var(--ink);
}

.directory-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.directory-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(19, 39, 54, 0.08);
}

.directory-row strong {
  font-size: 0.94rem;
}

.directory-row span {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.directory-row em {
  font-style: normal;
  color: var(--ink);
  font-weight: 700;
}

.country-note {
  margin-top: 16px;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.hero-home-v2 {
  padding: 56px 0 38px;
}

.home-hero-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  gap: 24px;
  align-items: stretch;
}

.home-hero-main {
  display: grid;
  gap: 20px;
  align-content: start;
}

.home-stat-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-stat-tile {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(19, 39, 54, 0.12);
  box-shadow: 0 14px 26px rgba(19, 39, 54, 0.06);
}

.home-stat-tile span {
  display: block;
  color: var(--ink-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-stat-tile strong {
  display: block;
  margin-top: 10px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.58rem;
  line-height: 1;
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
}

.home-stat-tile p {
  margin: 10px 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.home-hero-panel {
  padding: 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(88, 191, 229, 0.16), transparent 28%),
    linear-gradient(145deg, #163146 0%, #173b46 48%, #102536 100%);
  color: #f5efe5;
  border: 1px solid rgba(19, 39, 54, 0.1);
  box-shadow: 0 26px 50px rgba(19, 39, 54, 0.14);
}

.home-hero-panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.home-hero-panel .kicker {
  background: rgba(255, 191, 84, 0.14);
  border-color: rgba(255, 191, 84, 0.24);
  color: #f7d78a;
}

.home-hero-panel .kicker::before {
  background: #4fdd94;
  box-shadow: 0 0 0 5px rgba(79, 221, 148, 0.14);
}

.home-hero-panel h2 {
  margin: 10px 0 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.55rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.home-panel-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(245, 239, 229, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-panel-copy {
  margin: 16px 0 0;
  color: rgba(245, 239, 229, 0.8);
  font-size: 0.98rem;
}

.home-hero-visual {
  margin-top: 20px;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.country-scoreboard {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.country-score-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.country-score-row strong {
  font-size: 0.95rem;
  color: #fff7ea;
}

.country-score-row span {
  color: rgba(245, 239, 229, 0.72);
  font-size: 0.88rem;
  text-align: right;
}

.launch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 18px;
  align-items: stretch;
}

.featured-country {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(19, 39, 54, 0.12);
  box-shadow: 0 20px 38px rgba(19, 39, 54, 0.08);
}

.featured-country-au {
  background:
    radial-gradient(circle at top right, rgba(31, 164, 99, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(241, 231, 209, 0.98));
}

.featured-country-nz {
  background:
    radial-gradient(circle at top right, rgba(88, 191, 229, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(252, 246, 236, 0.98), rgba(233, 240, 234, 0.98));
}

.featured-country-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.featured-country h3,
.market-card h3,
.directory-panel h3,
.global-index-card h3,
.home-bottom-card h3 {
  margin: 10px 0 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.52rem;
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.featured-country p,
.market-card p,
.global-index-card p,
.home-bottom-card p {
  margin: 0;
  color: var(--text-soft);
}

.featured-country-figure {
  flex: 0 0 auto;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2.4rem;
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: var(--ink);
}

.featured-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.featured-meta-card {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(19, 39, 54, 0.08);
}

.featured-meta-card span {
  display: block;
  color: var(--ink-muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-meta-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.state-bar-list {
  display: grid;
  gap: 12px;
}

.state-bar-row {
  display: grid;
  gap: 8px;
}

.state-bar-copy {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.state-bar-copy strong {
  font-size: 0.94rem;
}

.state-bar-copy span {
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.state-bar-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(19, 39, 54, 0.08);
  overflow: hidden;
}

.state-bar-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), #5ad18d);
}

.label-pill,
.panel-note {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(19, 39, 54, 0.08);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.label-pill-soft,
.panel-note-soft {
  background: rgba(255, 191, 84, 0.18);
}

.market-stack {
  display: grid;
  gap: 18px;
}

.market-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(19, 39, 54, 0.1);
  box-shadow: 0 18px 32px rgba(19, 39, 54, 0.07);
}

.market-card-top,
.directory-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.market-card-top strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.market-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-directory-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  padding: 26px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 15% 20%, rgba(31, 164, 99, 0.14), transparent 28%),
    linear-gradient(145deg, #143249 0%, #102838 52%, #17374c 100%);
  box-shadow: 0 24px 48px rgba(19, 39, 54, 0.12);
}

.home-directory-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.home-directory-copy .kicker {
  background: rgba(255, 191, 84, 0.14);
  border-color: rgba(255, 191, 84, 0.22);
  color: #f5d785;
}

.home-directory-copy .kicker::before {
  background: #54d68b;
  box-shadow: 0 0 0 5px rgba(84, 214, 139, 0.16);
}

.home-directory-copy h2 {
  margin: 0;
  color: #fff7eb;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.home-directory-copy > p {
  margin: 0;
  color: rgba(245, 239, 229, 0.78);
}

.home-step-list {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.home-step-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-step-item strong {
  display: block;
  margin-bottom: 4px;
  color: #fff7eb;
  font-size: 0.96rem;
}

.home-step-item p {
  margin: 0;
  color: rgba(245, 239, 229, 0.74);
  font-size: 0.92rem;
}

.home-step-item .icon-badge {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.home-step-item .icon-badge svg {
  stroke: #fff3dc;
}

.home-directory-panels {
  display: grid;
  gap: 18px;
}

.directory-panel {
  padding: 22px;
  border-radius: 24px;
  background: rgba(253, 248, 240, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.directory-panel-head h3 {
  margin-top: 10px;
  font-size: 1.32rem;
}

.panel-note {
  flex: 0 0 auto;
  background: rgba(31, 164, 99, 0.14);
}

.compact-directory-list .directory-row {
  background: rgba(255, 255, 255, 0.82);
}

.global-index-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) repeat(2, minmax(0, 0.78fr));
  gap: 18px;
  align-items: start;
}

.global-index-card,
.home-bottom-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(19, 39, 54, 0.1);
  box-shadow: 0 16px 30px rgba(19, 39, 54, 0.06);
}

.dense-chip-cloud .directory-chip {
  font-size: 0.8rem;
}

.home-bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
}

.principle-list {
  display: grid;
  gap: 14px;
}

.principle-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(19, 39, 54, 0.04);
  border: 1px solid rgba(19, 39, 54, 0.08);
}

.principle-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.98rem;
}

.principle-item p {
  font-size: 0.92rem;
}

.faq-stack-compact {
  gap: 12px;
}

.faq-stack-compact .faq-panel {
  padding: 18px;
  border-width: 1px;
  box-shadow: none;
}

.faq-stack-compact h4 {
  margin: 0 0 6px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.04rem;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.faq-stack-compact p {
  margin: 0;
}

@media (max-width: 1080px) {
  .home-hero-v2,
  .launch-grid,
  .home-directory-band,
  .global-index-grid,
  .home-bottom-grid {
    grid-template-columns: 1fr;
  }

  .launch-grid {
    gap: 20px;
  }

  .global-index-grid {
    gap: 18px;
  }
}

@media (max-width: 780px) {
  .home-stat-strip,
  .featured-meta-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-panel-top,
  .featured-country-top,
  .market-card-top,
  .directory-panel-head,
  .state-bar-copy,
  .country-score-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .home-hero-panel,
  .featured-country,
  .market-card,
  .directory-panel,
  .global-index-card,
  .home-bottom-card {
    padding: 20px;
    border-radius: 22px;
  }

  .home-directory-band {
    padding: 20px;
  }

  .country-score-row span {
    text-align: left;
  }

  .map-results-panel {
    position: static;
  }

  .station-spotlight-top,
  .station-spotlight-head,
  .station-feed-header,
  .station-feed-row {
    display: grid;
  }

  .station-feed-price {
    text-align: left;
    min-width: 0;
  }
}

@media (max-width: 1080px) {
  .hero-split,
  .two-column,
  .split-65,
  .map-experience-grid,
  .home-hero-grid,
  .separation-grid {
    grid-template-columns: 1fr;
  }

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

  .country-grid,
  .state-directory-grid,
  .home-stat-band,
  .preview-mini-grid,
  .home-proof-grid,
  .showcase-grid,
  .feature-grid,
  .faq-grid,
  .suburb-grid,
  .note-grid,
  .metric-grid,
  .band-grid,
  .visual-grid,
  .query-grid,
  .update-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .map-results-panel {
    position: static;
  }
}

@media (max-width: 780px) {
  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .display {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .feature-grid,
  .faq-grid,
  .suburb-grid,
  .city-grid,
  .country-grid,
  .state-directory-grid,
  .home-stat-band,
  .preview-mini-grid,
  .home-proof-grid,
  .showcase-grid,
  .hero-metrics,
  .stat-strip,
  .metric-grid,
  .note-grid,
  .band-grid,
  .brand-grid,
  .visual-grid,
  .query-grid,
  .update-grid {
    grid-template-columns: 1fr;
  }

  .table-header {
    display: none;
  }

  .table-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    align-items: flex-start;
  }

  .table-row > :first-child {
    grid-column: 1 / -1;
  }

  .table-row .live-tag {
    grid-column: 1 / -1;
  }

  .table-card.table-wide .table-row {
    grid-template-columns: 1fr 1fr;
  }

  .feature-live-map {
    height: 410px;
  }

  .map-ui-layer {
    inset: 10px 10px auto 10px;
  }

  .map-badge-row {
    max-width: 100%;
  }

  .map-control-stack {
    position: static;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
  }

  .map-control-button,
  .map-control-button-wide {
    width: auto;
    min-width: 0;
    height: 40px;
    font-size: 0.92rem;
  }

  .map-browse-hint {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 0;
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding-block: 12px;
    min-height: auto;
  }

  .brand {
    min-width: 0;
  }

  .brand-copy span {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    width: 100%;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 6px 0 4px;
  }

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

  .nav a {
    width: 100%;
    justify-content: flex-start;
    padding: 13px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(19, 39, 54, 0.08);
  }
}
