@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/inter-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/inter-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/inter-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/inter-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Official KairosX brand: gold on deep navy (matches the regulatory deck) */
  --navy: #0a1a35;
  --navy-deep: #081530;
  --gold: #c8a96b;
  --gold-soft: #d8bd86;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --surface-soft: rgba(255, 255, 255, 0.025);
  --text: #f4f1ea;
  --muted: #a9b2c4;
  --faint: #6f7a92;
  --line: rgba(200, 169, 107, 0.12);
  --line-cool: rgba(180, 196, 224, 0.08);
  --silver: #cdd3df;
  --radius: 10px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);

  /* Aliases so legacy rules keep resolving against the new palette */
  --blue: var(--gold);
  --charcoal: var(--navy);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

#home,
#bhutan,
#luxembourg {
  scroll-margin-top: 120px;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0;
  color: var(--text);
  background-color: var(--navy);
  background-image:
    radial-gradient(1100px 620px at 82% -8%, rgba(200, 169, 107, 0.09), transparent 60%),
    radial-gradient(900px 520px at 8% 102%, rgba(120, 150, 210, 0.07), transparent 60%),
    linear-gradient(180deg, var(--navy-deep), var(--navy) 28%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  padding-bottom: 40px;
}

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

/* Signature gold bar - the single recurring brand mark, above hero/page headings */
.gold-bar,
.hero-copy::before,
.page-hero::before {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  margin-bottom: 30px;
}

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -64px;
  z-index: 30;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  border-radius: 4px;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line-cool);
  background:
    radial-gradient(circle at center top, rgba(255, 255, 255, 0.035), transparent 52%),
    color-mix(in srgb, var(--navy) 88%, transparent);
  backdrop-filter: blur(20px);
}

.header-inner,
.hero,
.page-hero,
.section-block,
.split-section,
.business-list,
.contact-section,
.site-footer {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

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

.brand {
  width: 240px;
  height: 62px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  transform: translateY(-1px);
}

.brand img,
.footer-brand img {
  width: 240px;
  height: auto;
  /* Lift the silver brand wordmark so it reads clearly on the navy background */
  filter: brightness(1.55) contrast(1.05);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 380;
  letter-spacing: 0.045em;
  white-space: nowrap;
}

.site-nav a,
.footer-links a,
.footer-bottom a,
.text-link {
  transition: color 160ms ease;
}

.site-nav a {
  position: relative;
  padding-bottom: 3px;
}

.site-nav .client-login {
  margin-left: 4px;
  min-height: 34px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(180, 196, 224, 0.13);
  border-radius: 4px;
  color: var(--silver);
  letter-spacing: 0.04em;
}

.site-nav .client-login:hover {
  border-color: rgba(180, 196, 224, 0.28);
  color: var(--text);
}

.site-nav a:hover,
.footer-links a:hover,
.footer-bottom a:hover,
.text-link:hover {
  color: var(--text);
}

.site-nav a[aria-current="page"] {
  color: var(--text);
}

.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 9px;
  height: 1px;
  border-radius: 1px;
  background: var(--gold);
}

.section-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero {
  min-height: auto;
  padding: 56px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
  align-items: center;
  gap: 64px;
}

.brand-line {
  margin: 0 0 26px;
  color: var(--silver);
  font-size: 18px;
  font-weight: 500;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(40px, 5.4vw, 66px);
  line-height: 1.02;
  font-weight: 560;
  letter-spacing: -0.02em;
}

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

.hero-text,
.page-hero p {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.page-hero p + p {
  margin-top: 16px;
}

.page-hero .page-kicker {
  margin-top: 18px;
  color: var(--gold);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.4px;
}

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

.button {
  min-height: 42px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: color-mix(in srgb, var(--gold) 68%, var(--navy));
}

.button-primary:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
}

.button-secondary {
  border-color: rgba(180, 196, 224, 0.095);
  color: var(--silver);
  background: transparent;
}

.button-secondary:hover {
  border-color: rgba(200, 169, 107, 0.42);
  color: var(--text);
}

.hero-visual {
  min-height: 460px;
  position: relative;
  border: 1px solid rgba(180, 196, 224, 0.075);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(200, 169, 107, 0.035), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(8, 21, 48, 0.46));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.visual-mark {
  position: absolute;
  inset: -82px -92px auto auto;
  width: 430px;
  opacity: 0.065;
  filter: saturate(0.8);
}

.visual-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.visual-title {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.node-map {
  position: relative;
  min-height: 220px;
  margin: 38px 0;
}

.node-map::before,
.node-map::after {
  content: none;
}

.node-map::after {
  transform: rotate(90deg);
}

.node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--blue) 5%, transparent);
}

.node-one {
  left: 16%;
  top: 28%;
}

.node-two {
  right: 18%;
  top: 22%;
}

.node-three {
  left: 46%;
  top: 48%;
}

.node-four {
  right: 23%;
  bottom: 24%;
}

.visual-list,
.wide-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.visual-list li {
  min-height: 46px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(180, 196, 224, 0.028);
  color: var(--text);
  font-size: 18px;
}

.visual-list li:first-child {
  border-top: 0;
}

.page-hero {
  padding: 72px 0 56px;
}

.section-block,
.split-section,
.business-list,
.contact-section {
  padding: 68px 0;
}

.ruled {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

main > .ruled:last-child {
  border-bottom: 0;
}

.surface-band {
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  margin-bottom: 68px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-heading h2,
.split-section h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(28px, 3.3vw, 40px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.section-heading p:last-child,
.content-stack p,
.info-card p,
.route-card p,
.business-row p,
.statement-list p,
.contact-copy p,
.wide-card li,
.legal {
  color: var(--muted);
}

.section-heading p:last-child,
.content-stack p,
.contact-copy p {
  font-size: 18px;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.info-card,
.route-card,
.statement-list article,
.business-row,
.wide-card {
  border: 1px solid var(--line-cool);
  border-radius: var(--radius);
  background: var(--surface);
}

.info-card,
.route-card,
.business-row,
.status-card {
  transition: border-color 200ms ease, background-color 200ms ease, transform 200ms ease;
}

.info-card:hover,
.route-card:hover,
.business-row:hover,
.status-card:hover {
  border-color: var(--line);
  background: var(--surface-strong);
  transform: translateY(-2px);
}

.info-card,
.route-card,
.statement-list article,
.wide-card {
  padding: 24px;
}

.info-card {
  min-height: 220px;
}

.info-card.feature {
  background:
    linear-gradient(160deg, rgba(200, 169, 107, 0.16), rgba(200, 169, 107, 0.02) 52%),
    var(--surface-strong);
  border-color: rgba(200, 169, 107, 0.42);
}

.info-card span,
.route-card span,
.business-row span,
.statement-list span,
.status-card span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.info-card h3,
.route-card h3,
.statement-list h3,
.wide-card h3,
.status-card h3 {
  margin: 22px 0 12px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
}

.info-card p,
.route-card p,
.statement-list p,
.status-card p,
.wide-card li {
  margin: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.text-link::after {
  content: "\2192";
  transition: transform 160ms ease;
}

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

.text-link:hover::after {
  transform: translateX(4px);
}

.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
}

.content-stack {
  display: grid;
  gap: 20px;
}

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

.statement-list article {
  display: grid;
  grid-template-columns: 132px 0.8fr 1.2fr;
  gap: 22px;
  align-items: start;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.route-card {
  min-height: 190px;
}

.route-card span {
  margin-bottom: 28px;
  color: var(--text);
}

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

.business-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  padding: 28px;
}

.business-row h2 {
  margin: 12px 0 0;
  font-size: 28px;
  line-height: 1.16;
  font-weight: 600;
}

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

.fact-sheet {
  max-width: 920px;
  padding: 36px 40px 40px;
  border: 1px solid rgba(200, 169, 107, 0.42);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(200, 169, 107, 0.16), rgba(200, 169, 107, 0.02) 52%),
    var(--surface-strong);
}

.fact-sheet-head h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.fact-sheet-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.fact-rows {
  margin: 26px 0 0;
  display: grid;
}

.fact-row,
.timeline-item {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 28px;
}

.fact-row {
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.fact-row dt,
.timeline-item .when {
  margin: 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.fact-row dd,
.timeline-item .what {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
}

.timeline {
  margin: 30px 0 0;
  padding: 26px 0 4px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
}

.timeline-item .what {
  color: var(--muted);
}

@media (max-width: 640px) {
  .fact-row,
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.status-card {
  min-height: 360px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.status-card.feature {
  background:
    linear-gradient(160deg, rgba(200, 169, 107, 0.16), rgba(200, 169, 107, 0.02) 52%),
    var(--surface-strong);
  border-color: rgba(200, 169, 107, 0.42);
}

.legal-centre-page .section-heading p {
  margin: 16px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.legal-centre-page .section-heading p + p {
  margin-top: 8px;
}

.legal-centre-page .page-hero {
  padding-bottom: 40px;
}

.legal-centre-page .page-hero p {
  max-width: 880px;
}

.legal-centre-page .section-block {
  padding: 50px 0;
}

.group-notice-panel {
  max-width: 1060px;
  padding: 24px 28px;
  border: 1px solid rgba(180, 196, 224, 0.06);
  border-radius: var(--radius);
  background: rgba(9, 23, 52, 0.62);
}

.group-notice-panel h2 {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 1px;
}

.group-notice-panel p {
  max-width: 920px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.group-notice-panel p + p {
  margin-top: 12px;
}

.legal-documents-section {
  border-top: 1px solid rgba(200, 169, 107, 0.095);
}

.legal-entity-block {
  max-width: 1060px;
  padding: 28px;
  border: 1px solid rgba(180, 196, 224, 0.065);
  border-radius: var(--radius);
  background: rgba(9, 23, 52, 0.72);
}

.legal-entity-header {
  display: grid;
  gap: 18px;
  max-width: 780px;
}

.legal-entity-header h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.16;
  font-weight: 600;
}

.legal-entity-header p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.regulatory-reference {
  font-size: 14px !important;
  color: var(--faint) !important;
}

.regulatory-reference a,
.document-link {
  color: var(--silver);
  text-decoration: underline;
  text-decoration-color: rgba(200, 169, 107, 0.36);
  text-underline-offset: 4px;
}

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

.legal-document-card {
  min-height: 138px;
  padding: 20px;
  border: 1px solid rgba(180, 196, 224, 0.055);
  border-radius: var(--radius);
  background: rgba(5, 14, 34, 0.42);
}

.legal-document-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.legal-document-card h4 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 23px;
  line-height: 1.2;
  font-weight: 600;
}

.legal-document-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.document-link {
  font-size: 14px;
  font-weight: 600;
}

.document-link::after {
  content: " ->";
}

.legal-bottom-notice {
  max-width: 900px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(180, 196, 224, 0.06);
}

.legal-bottom-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.legal-bottom-notice p + p {
  margin-top: 10px;
}

.legal-document-page .page-hero {
  padding: 26px 0 14px;
}

.legal-document-page .page-hero h1 {
  font-size: clamp(30px, 3.7vw, 46px);
  line-height: 1.03;
}

.legal-document-page main {
  position: relative;
  isolation: isolate;
}

.legal-document-page main::before {
  content: "";
  position: absolute;
  top: 18px;
  right: max(18px, calc((100vw - 1200px) / 2));
  z-index: -1;
  width: min(760px, 64vw);
  aspect-ratio: 1;
  background: url("./assets/kairosx_symbol_transparent.png") center / contain no-repeat;
  opacity: 0.039;
  pointer-events: none;
  transform: translateX(255px);
}

.legal-document-page .page-hero p {
  max-width: 780px;
}

.legal-document-view {
  padding-top: 20px;
}

.document-header-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 24px;
}

.document-header-row h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.18;
  font-weight: 600;
}

.document-header-row .section-label {
  margin-bottom: 14px;
}

.document-header-row p:not(.section-label) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.document-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.document-back {
  color: var(--silver);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(200, 169, 107, 0.32);
  text-underline-offset: 4px;
}

.document-meta-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.62fr 0.88fr 0.64fr 0.46fr;
  gap: 0;
  margin: 0 0 26px;
  padding: 18px 0;
  border-top: 1px solid rgba(180, 196, 224, 0.06);
  border-bottom: 1px solid rgba(180, 196, 224, 0.06);
}

.document-meta-row div {
  padding: 0 20px;
  border-right: 1px solid rgba(180, 196, 224, 0.045);
}

.document-meta-row div:first-child {
  padding-left: 0;
}

.document-meta-row div:last-child {
  padding-right: 0;
  border-right: 0;
}

.document-meta-row dt {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.document-meta-row dd {
  margin: 0;
  color: var(--silver);
  font-size: 14px;
  line-height: 1.45;
}

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

.document-download-cell dd {
  display: flex;
  align-items: center;
}

.document-pdf-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  opacity: 0.84;
  overflow: hidden;
  line-height: 1;
}

.document-pdf-icon:hover {
  opacity: 1;
}

.document-pdf-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.pdf-embed {
  display: block;
  width: 100%;
  min-height: 840px;
  height: min(92vh, 1160px);
  border: 1px solid rgba(180, 196, 224, 0.075);
  border-radius: var(--radius);
  background: rgba(5, 14, 34, 0.48);
}

.pdf-fallback {
  margin: 0;
  padding: 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.pdf-fallback a {
  color: var(--silver);
  text-decoration: underline;
  text-decoration-color: rgba(200, 169, 107, 0.36);
  text-underline-offset: 4px;
}

.document-pager {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(180, 196, 224, 0.055);
}

.document-pager a,
.document-pager span {
  color: var(--silver);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
}

.document-pager a {
  text-decoration: underline;
  text-decoration-color: rgba(200, 169, 107, 0.32);
  text-underline-offset: 4px;
}

.document-pager span {
  color: var(--faint);
}

.document-pager a:nth-child(2),
.document-pager span:nth-child(2) {
  text-align: center;
}

.document-pager a:last-child,
.document-pager span:last-child {
  text-align: right;
}

.status-meta {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 80px;
  border-top: 1px solid rgba(200, 169, 107, 0.11);
}

.contact-page main {
  position: relative;
  isolation: isolate;
}

.contact-page main::before {
  content: "";
  position: absolute;
  top: -26px;
  right: max(24px, calc((100vw - 1200px) / 2));
  z-index: -1;
  width: min(560px, 50vw);
  aspect-ratio: 1;
  background: url("./assets/kairosx_symbol_transparent.png") center / contain no-repeat;
  opacity: 0.04;
  pointer-events: none;
  transform: translateX(76px);
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: 42px;
  border: 1px solid rgba(180, 196, 224, 0.055);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(8, 21, 48, 0.16)),
    rgba(9, 23, 52, 0.78);
}

.response-note {
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid rgba(200, 169, 107, 0.09);
  display: grid;
  gap: 10px;
}

.response-note h3 {
  margin: 0 0 4px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
}

.response-note p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.contact-form label {
  display: grid;
  gap: 11px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 15px;
  border: 1px solid rgba(180, 196, 224, 0.14);
  border-radius: 4px;
  background: rgba(5, 14, 34, 0.72);
  color: var(--text);
  outline: none;
}

.contact-form textarea {
  min-height: 148px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(200, 169, 107, 0.55);
  box-shadow: 0 0 0 2px rgba(200, 169, 107, 0.1);
}

.contact-form .button {
  min-height: 40px;
  justify-self: start;
  padding: 0 20px;
  letter-spacing: 0.075em;
  font-weight: 600;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 10px 0;
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  gap: 8px 72px;
  border-top: 1px solid rgba(200, 169, 107, 0.125);
}

.footer-brand {
  max-width: 560px;
}

.footer-brand img {
  display: block;
  margin-bottom: 11px;
}

.footer-brand p {
  max-width: 520px;
  margin: 0;
  color: var(--silver);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.footer-links {
  display: grid;
  gap: 7px;
  justify-items: end;
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 4px;
  border-top: 1px solid var(--line-cool);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px 24px;
  color: var(--muted);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1040px) {
  .hero,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 44px;
  }

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

  .jurisdiction-grid,
  .card-grid.three {
    grid-template-columns: 1fr;
  }

  .statement-list article,
  .business-row {
    grid-template-columns: 1fr;
  }

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

  .document-meta-row div:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .header-inner,
  .hero,
  .page-hero,
  .section-block,
  .split-section,
  .business-list,
  .contact-section,
  .site-footer {
    width: calc(100% - 28px);
  }

  .header-inner {
    min-height: 74px;
    padding: 10px 0;
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .brand,
  .brand img,
  .footer-brand img {
    width: 168px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    padding: 40px 0 44px;
  }

  .page-hero {
    padding: 44px 0 32px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .hero-text,
  .page-hero p {
    font-size: 18px;
  }

  .section-heading h2,
  .split-section h2,
  .contact-copy h2 {
    font-size: 30px;
  }

  .section-block,
  .split-section,
  .business-list,
  .contact-section {
    padding: 44px 0;
  }

  .surface-band {
    width: calc(100% - 28px);
    padding: 26px;
    margin-bottom: 44px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .visual-content {
    padding: 24px;
  }

  .card-grid.four,
  .route-grid {
    grid-template-columns: 1fr;
  }

  .legal-entity-block {
    padding: 24px;
  }

  .legal-document-list {
    grid-template-columns: 1fr;
  }

  .document-header-row {
    align-items: start;
    flex-direction: column;
  }

  .document-actions {
    justify-content: flex-start;
  }

  .document-meta-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .document-meta-row div,
  .document-meta-row div:first-child,
  .document-meta-row div:last-child {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(180, 196, 224, 0.045);
  }

  .document-meta-row div:first-child {
    padding-top: 0;
  }

  .document-meta-row div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

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

  .footer-links {
    justify-items: start;
  }

  .contact-page main::before {
    width: 82vw;
    top: 80px;
    right: -28vw;
    opacity: 0.035;
    transform: none;
  }

  .contact-form {
    padding: 28px;
  }
}

.about-page main {
  position: relative;
  isolation: isolate;
}

.about-page main::before {
  content: "";
  position: absolute;
  top: 6px;
  right: max(24px, calc((100vw - 1200px) / 2));
  z-index: -1;
  width: min(720px, 62vw);
  aspect-ratio: 1;
  background: url("./assets/kairosx_symbol_transparent.png") center / contain no-repeat;
  opacity: 0.024;
  pointer-events: none;
  transform: translateX(220px);
}

.about-page .about-intro {
  padding: 62px 0 96px;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(360px, 0.95fr);
  gap: 78px;
  align-items: start;
}

.about-page .about-intro::before {
  content: none;
}

.about-intro-lead::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: var(--gold);
}

.about-intro-lead h1 {
  max-width: 540px;
  font-size: clamp(29px, 3.38vw, 44px);
  line-height: 1.02;
  font-weight: 500;
}

.about-intro-copy {
  display: grid;
  gap: 0;
  padding-top: 30px;
  padding-left: 48px;
  border-left: 1px solid rgba(180, 196, 224, 0.045);
}

.about-intro-copy article {
  max-width: 620px;
  padding: 0 0 26px;
  margin: 0 0 26px;
  border-bottom: 1px solid rgba(180, 196, 224, 0.045);
}

.about-intro-copy article:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.about-intro-copy span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.about-intro-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.about-page .section-block[aria-labelledby="whyTitle"] {
  padding-top: 76px;
  padding-bottom: 70px;
  border-top-color: rgba(180, 196, 224, 0.055);
  border-bottom-color: rgba(180, 196, 224, 0.055);
}

.about-page .section-block[aria-labelledby="buildTitle"] {
  padding-top: 96px;
}

.about-page .why-row article {
  border-right-color: rgba(180, 196, 224, 0.03);
}

.about-page .why-row span {
  color: rgba(200, 169, 107, 0.07);
}

.about-page .why-row p {
  line-height: 1.72;
}

.about-card-grid {
  gap: 20px;
}

.about-service-card {
  min-height: 218px;
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-color: rgba(180, 196, 224, 0.035);
  background: rgba(9, 23, 52, 0.72);
}

.about-service-card:hover {
  border-color: rgba(200, 169, 107, 0.08);
  background: rgba(9, 23, 52, 0.76);
  transform: none;
}

.card-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.42;
}

.about-service-card h3 {
  margin: 28px 0 0;
  min-height: 54px;
  display: flex;
  align-items: flex-end;
  font-size: 26px;
  line-height: 1.12;
}

.about-service-card p {
  margin-top: 14px;
  color: var(--silver);
  font-size: 18px;
  line-height: 1.52;
  font-weight: 500;
}

.why-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
}

.why-row article {
  min-height: 266px;
  padding: 34px 34px 38px;
  border-right: 1px solid rgba(180, 196, 224, 0.035);
}

.why-row article::before {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: var(--gold);
}

.why-row article:last-child {
  border-right: 0;
}

.why-row span {
  display: block;
  margin-bottom: 26px;
  color: rgba(200, 169, 107, 0.09);
  font-size: clamp(50px, 5vw, 70px);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.why-row h3 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(25px, 2.4vw, 32px);
  line-height: 1.18;
  font-weight: 600;
}

.why-row p {
  margin: 0;
  color: var(--silver);
  font-size: 18px;
  line-height: 1.6;
}

.focus-section {
  padding-top: 86px;
  padding-bottom: 92px;
}

.focus-section .section-heading::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: var(--gold);
}

.focus-section .section-heading {
  max-width: 900px;
  margin-bottom: 44px;
}

.focus-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(180, 196, 224, 0.045);
  border-bottom: 1px solid rgba(180, 196, 224, 0.045);
}

.focus-columns article {
  min-height: 252px;
  padding: 36px 34px 38px;
  border-right: 1px solid rgba(180, 196, 224, 0.04);
}

.focus-columns article:last-child {
  border-right: 0;
}

.focus-columns h3 {
  margin: 0 0 24px;
  color: var(--text);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.18;
  font-weight: 560;
}

.focus-columns p {
  margin: 0;
  max-width: 265px;
  color: var(--silver);
  font-size: 18px;
  line-height: 1.56;
}

.focus-link {
  display: inline-block;
  margin-top: 34px;
  color: var(--silver);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.82;
}

@media (max-width: 1040px) {
  .why-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-row article:nth-child(2n) {
    border-right: 0;
  }

  .why-row article:nth-child(n + 3) {
    border-top: 1px solid rgba(180, 196, 224, 0.035);
  }

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

  .focus-columns article:nth-child(2n) {
    border-right: 0;
  }

  .focus-columns article:nth-child(n + 3) {
    border-top: 1px solid rgba(180, 196, 224, 0.04);
  }
}

@media (max-width: 760px) {
  .about-page main::before {
    width: 82vw;
    top: 80px;
    right: -34vw;
    opacity: 0.038;
    transform: none;
  }

  .about-page .about-intro {
    padding: 38px 0 34px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-intro-lead::before {
    margin-bottom: 22px;
  }

  .about-intro-lead h1 {
    font-size: 36px;
  }

  .about-intro-copy {
    padding: 28px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(180, 196, 224, 0.055);
  }

  .about-intro-copy p {
    font-size: 18px;
  }

  .pdf-embed {
    min-height: 520px;
    height: 72vh;
  }

  .why-row {
    grid-template-columns: 1fr;
  }

  .about-service-card {
    min-height: 210px;
    padding: 24px;
  }

  .about-service-card h3 {
    margin-top: 28px;
    min-height: 60px;
    font-size: 28px;
  }

  .about-service-card p {
    font-size: 18px;
  }

  .why-row article,
  .why-row article:nth-child(2n),
  .why-row article:nth-child(n + 3) {
    min-height: auto;
    padding: 32px 0;
    border-right: 0;
    border-top: 1px solid rgba(180, 196, 224, 0.035);
  }

  .why-row article:first-child {
    border-top: 0;
  }

  .focus-section {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .focus-section .section-heading {
    margin-bottom: 30px;
  }

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

  .focus-columns article,
  .focus-columns article:nth-child(2n),
  .focus-columns article:nth-child(n + 3) {
    min-height: auto;
    padding: 28px 0;
    border-right: 0;
    border-top: 1px solid rgba(180, 196, 224, 0.04);
  }

  .focus-columns article:first-child {
    border-top: 0;
  }
}

body.home-page .gold-bar,
body.home-page .hero-copy::before,
body.home-page .page-hero::before {
  width: 40px;
  margin-bottom: 28px;
}

body.home-page .hero {
  padding: 40px 0 46px;
  gap: 52px;
}

body.home-page .hero h1 {
  max-width: 760px;
  line-height: 0.995;
  font-weight: 480;
}

body.home-page .hero h1 span {
  display: block;
}

body.home-page .hero h1 .hero-line-soft {
  font-weight: 450;
  opacity: 0.96;
}

body.home-page .hero-text {
  margin-top: 32px;
  max-width: 710px;
  line-height: 1.62;
}

body.home-page .hero-actions {
  margin-top: 46px;
}

body.home-page .hero-visual {
  min-height: 380px;
}

body.home-page .visual-content {
  padding: 48px;
}

body.home-page .node-map {
  min-height: 170px;
  margin: 32px 0;
}

body.home-page .section-block,
body.home-page .split-section {
  padding: 52px 0;
}

body.home-page .section-block.ruled {
  border-top-color: rgba(180, 196, 224, 0.055);
  border-bottom-color: rgba(180, 196, 224, 0.055);
}

body.home-page .section-block[aria-labelledby="whyTitle"] {
  padding-top: 56px;
  padding-bottom: 72px;
}

body.home-page .focus-section {
  padding-top: 86px;
  padding-bottom: 104px;
}

body.home-page .focus-section .section-heading {
  margin-bottom: 44px;
}

body.home-page .section-heading {
  margin-bottom: 22px;
}

body.home-page .section-heading p:last-child {
  max-width: 620px;
  line-height: 1.58;
}

@media (max-width: 760px) {
  body.home-page .hero {
    padding: 32px 0 34px;
    gap: 32px;
  }

  body.home-page .hero-visual {
    min-height: 330px;
  }

  body.home-page .visual-content {
    padding: 24px;
  }

  body.home-page .node-map {
    min-height: 140px;
    margin: 20px 0;
  }

  body.home-page .section-block,
  body.home-page .split-section {
    padding: 34px 0;
  }

  body.home-page .focus-section {
    padding-top: 58px;
    padding-bottom: 68px;
  }

  body.home-page .focus-section .section-heading {
    margin-bottom: 30px;
  }

  main {
    padding-bottom: 24px;
  }

}

.jurisdictions-page main {
  position: relative;
  isolation: isolate;
}

.jurisdictions-page main::before {
  content: "";
  position: absolute;
  top: 24px;
  right: max(24px, calc((100vw - 1200px) / 2));
  z-index: -1;
  width: min(560px, 50vw);
  aspect-ratio: 1;
  background: url("./assets/kairosx_symbol_transparent.png") center / contain no-repeat;
  opacity: 0.048;
  pointer-events: none;
  transform: translateX(80px);
}

.jurisdiction-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 18px;
  align-items: stretch;
}

.jurisdiction-spotlight.single {
  grid-template-columns: 1fr;
}

.jurisdiction-card,
.expansion-process li {
  border: 1px solid var(--line-cool);
  border-radius: var(--radius);
  background: var(--surface);
}

.jurisdiction-card {
  padding: 60px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 64px;
  align-items: start;
  border-color: rgba(180, 196, 224, 0.06);
  background:
    linear-gradient(155deg, rgba(200, 169, 107, 0.1), rgba(200, 169, 107, 0.015) 44%),
    var(--surface);
}

.jurisdiction-main {
  display: grid;
  gap: 48px;
  align-content: start;
}

.jurisdiction-card h2 {
  margin: 0 0 22px;
  font-size: clamp(42px, 4.2vw, 54px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.jurisdiction-summary p {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  line-height: 1.48;
  font-weight: 600;
}

.jurisdiction-summary p + p {
  margin-top: 4px;
  color: var(--silver);
  font-size: 17px;
}

.market-overview {
  padding-left: 54px;
  border-left: 1px solid rgba(200, 169, 107, 0.095);
}

.market-overview h3,
.jurisdiction-activities h3 {
  margin: 0 0 24px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
}

.overview-facts {
  display: grid;
  gap: 26px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(200, 169, 107, 0.095);
}

.overview-facts strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
}

.overview-facts p {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.48;
  font-weight: 600;
}

.licence-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.licence-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #56b878;
  box-shadow: 0 0 0 4px rgba(86, 184, 120, 0.08);
}

.jurisdiction-activities {
  padding-top: 30px;
  border-top: 1px solid rgba(200, 169, 107, 0.095);
}

.jurisdiction-activities ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jurisdiction-activities li {
  position: relative;
  padding-left: 22px;
  color: var(--silver);
  font-size: 18px;
  line-height: 1.5;
}

.jurisdiction-activities li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.regulatory-progress {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  max-width: 820px;
}

.regulatory-progress.compact {
  max-width: none;
}

.regulatory-progress li {
  position: relative;
  min-height: auto;
  padding: 0 0 38px 40px;
  border-left: 1px solid rgba(200, 169, 107, 0.095);
  border-top: 0;
}

.regulatory-progress.compact li {
  padding-bottom: 38px;
}

.regulatory-progress li:last-child {
  padding-bottom: 0;
}

.regulatory-progress li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 169, 107, 0.06);
}

.regulatory-progress li::after {
  content: none;
}

.regulatory-progress em {
  display: block;
  margin-bottom: 8px;
  color: var(--faint);
  font-size: 13px;
  line-height: 1.2;
  font-style: normal;
  font-weight: 700;
}

.regulatory-progress span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
}

.regulatory-progress.compact span {
  margin-bottom: 8px;
}

.regulatory-progress strong {
  display: block;
  color: var(--text);
  font-size: 21px;
  line-height: 1.24;
  font-weight: 600;
}

.regulatory-progress.compact strong {
  font-size: 19px;
}

.expansion-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.expansion-process li {
  position: relative;
  min-height: 190px;
  padding: 30px 30px 28px 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.expansion-process li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 42px;
  right: 28px;
  width: 52px;
  height: 1px;
  background: var(--line);
}

.expansion-process span {
  display: block;
  margin-bottom: 30px;
  color: var(--gold);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.expansion-process h3 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 25px;
  line-height: 1.2;
  font-weight: 600;
}

.expansion-process p {
  margin: 0;
  color: var(--silver);
  font-size: 17px;
  line-height: 1.5;
}

@media (max-width: 1040px) {
  .jurisdiction-spotlight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jurisdiction-spotlight.single {
    grid-template-columns: 1fr;
  }

  .jurisdiction-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .market-overview {
    padding: 40px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(200, 169, 107, 0.095);
  }

  .expansion-process {
    grid-template-columns: 1fr;
  }

  .expansion-process li {
    min-height: auto;
    padding: 0 0 30px 40px;
    border-left: 1px solid var(--line);
  }

  .expansion-process li::before {
    content: "";
    position: absolute;
    top: 5px;
    left: -6px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--gold);
  }

  .expansion-process li:not(:last-child)::after {
    content: none;
  }
}

@media (max-width: 760px) {
  .jurisdictions-page main::before {
    width: 82vw;
    top: 80px;
    right: -28vw;
    opacity: 0.05;
    transform: none;
  }

  .jurisdiction-spotlight,
  .regulatory-progress,
  .overview-facts,
  .expansion-process {
    grid-template-columns: 1fr;
  }

  .jurisdiction-card {
    padding: 24px;
  }

  .jurisdiction-card h2 {
    font-size: 40px;
  }

  .overview-facts p {
    font-size: 17px;
  }

  .regulatory-progress li {
    min-height: auto;
    padding: 0 0 28px 34px;
  }

  .regulatory-progress li:last-child {
    padding-bottom: 0;
  }
}
