:root {
  color-scheme: light;
  --nw-purple: #5B2DA8;
  --nw-purple-dark: #421F7E;
  --nw-violet: #8B5CF6;
  --nw-lavender: #C4B5FD;
  --nw-lavender-soft: #EDE9FE;
  --nw-heading: #111827;
  --nw-text: #4B5563;
  --nw-muted: #6B7280;
  --nw-subtle: #94A3B8;
  --nw-white: #FFFFFF;
  --nw-background: #FFFFFF;
  --nw-surface: #F8FAFC;
  --nw-surface-purple: #F8F5FF;
  --nw-border: #E5E7EB;
  --nw-border-purple: #DDD6FE;
  --nw-footer: #0F172A;
  --nw-footer-secondary: #172033;
  --nw-whatsapp: #25D366;
  --nw-success: #15803D;
  --nw-warning: #B45309;
  --shadow: 0 16px 50px rgba(17, 24, 39, 0.06);
  --shadow-purple: 0 24px 60px rgba(91, 45, 168, 0.13);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--nw-background);
  color: var(--nw-text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

body.menu-open { overflow: hidden; }

img,
picture,
svg,
video,
iframe {
  max-width: 100%;
}

img { height: auto; }

a { color: inherit; }

button,
input,
select,
textarea { font: inherit; }

p,
li,
dd,
td,
th,
a,
span,
strong {
  overflow-wrap: break-word;
}

:focus-visible {
  outline: 3px solid rgba(139, 92, 246, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--nw-purple);
  color: var(--nw-white);
  font-weight: 600;
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(1240px, calc(100% - 36px));
  margin-inline: auto;
}

.wide-container {
  width: min(1360px, calc(100% - 36px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: 64px;
}

.section::after {
  position: absolute;
  right: max(18px, calc((100vw - 1240px) / 2));
  bottom: 22px;
  width: 118px;
  height: 34px;
  content: "";
  border: 2px solid rgba(91, 45, 168, 0.08);
  border-color: transparent transparent rgba(91, 45, 168, 0.1) transparent;
  border-radius: 50%;
  pointer-events: none;
}

.site-header::after,
.site-footer::after,
.hero::after,
.final-cta::after {
  display: none;
}

.compact { padding-block: 48px; }

.surface { background: var(--nw-surface); }

.surface-purple { background: var(--nw-surface-purple); }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  color: var(--nw-heading);
  font-family: "Poppins", "Inter", Arial, sans-serif;
}

h1 {
  max-width: 11ch;
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 5.7vw, 5.25rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.page-hero h1 {
  max-width: 13ch;
  font-size: clamp(2.5rem, 4.8vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

p { max-width: 65ch; }

.lead {
  max-width: 55ch;
  color: var(--nw-muted);
  font-size: clamp(1.125rem, 1.5vw, 1.3rem);
  line-height: 1.7;
}

.eyebrow,
.badge {
  color: var(--nw-purple);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge {
  display: inline-flex;
  width: fit-content;
  margin: 8px 0 24px;
  padding: 8px 14px;
  border: 1px solid var(--nw-border-purple);
  border-radius: 999px;
  background: var(--nw-surface-purple);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 30px;
  border: 1px solid var(--nw-purple);
  border-radius: 999px;
  background: var(--nw-purple);
  color: var(--nw-white);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(91, 45, 168, 0.18);
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease), color 180ms var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--nw-purple-dark);
  background: linear-gradient(135deg, var(--nw-purple-dark), var(--nw-violet));
  color: var(--nw-white);
  box-shadow: 0 12px 30px rgba(91, 45, 168, 0.24);
}

.button:active { transform: translateY(0); }

.button-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.95rem;
}

.site-header .button,
.site-header .button:hover,
.site-header .button:focus-visible {
  color: var(--nw-white);
  text-shadow: none;
}

.button-secondary {
  border-color: var(--nw-border-purple);
  background: var(--nw-white);
  color: var(--nw-purple);
}

.button-secondary:hover {
  border-color: var(--nw-purple);
  background: var(--nw-surface-purple);
  color: var(--nw-purple-dark);
}

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

.button-light {
  border-color: var(--nw-white);
  background: var(--nw-white);
  color: var(--nw-purple);
}

.button-light:hover,
.button-light:focus-visible {
  border-color: var(--nw-white);
  background: linear-gradient(135deg, var(--nw-white), var(--nw-lavender-soft));
  color: var(--nw-purple-dark);
  box-shadow: 0 14px 34px rgba(255, 255, 255, 0.22);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 72px;
  background: var(--nw-white);
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.06);
  transition: box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 35px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1240px, calc(100% - 36px));
  min-height: 72px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: 176px;
  height: auto;
}

.site-nav {
  position: fixed;
  inset: 72px 0 auto 0;
  display: grid;
  gap: 4px;
  max-height: calc(100svh - 72px);
  padding: 18px;
  border-top: 1px solid var(--nw-border);
  background: var(--nw-white);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateY(-130%);
  transition: transform 240ms var(--ease);
}

.site-nav.is-open { transform: translateY(0); }

.site-nav a:not(.button) {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  color: var(--nw-muted);
  font-weight: 600;
  text-decoration: none;
}

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

.menu-toggle {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--nw-surface-purple);
  color: var(--nw-purple);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(115deg, rgba(91, 45, 168, 0.08), transparent 24%, rgba(196, 181, 253, 0.16) 64%, transparent),
    radial-gradient(circle at 85% 15%, rgba(139, 92, 246, 0.18), transparent 28%),
    linear-gradient(180deg, var(--nw-white), var(--nw-surface));
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 84px 0 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 12% 35%, rgba(91, 45, 168, 0.18), transparent 26%),
    radial-gradient(circle at 88% 28%, rgba(196, 181, 253, 0.36), transparent 26%),
    linear-gradient(120deg, transparent 0%, rgba(139, 92, 246, 0.08) 42%, transparent 68%);
  background-size: 140% 140%;
  animation: gradientDrift 12s ease-in-out infinite alternate;
}

@keyframes gradientDrift {
  from { transform: translate3d(-2%, -1%, 0) scale(1); }
  to { transform: translate3d(2%, 1%, 0) scale(1.03); }
}

.hero-grid,
.page-hero-grid {
  display: grid;
  gap: 48px;
}

.hero-copy .button,
.final-cta .button { width: 100%; }

.ecosystem-visual {
  position: relative;
  min-height: 430px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 45%, rgba(91, 45, 168, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(248, 245, 255, 0.9), rgba(255, 255, 255, 0.98));
  overflow: hidden;
}

.ecosystem-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(91, 45, 168, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 45, 168, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--nw-violet);
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0.52;
}

.node {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--nw-border-purple);
  border-radius: 999px;
  background: var(--nw-white);
  color: var(--nw-heading);
  font-weight: 600;
  box-shadow: var(--shadow);
}

.node-center {
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  padding: 30px;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #5B2DA8 0%, #8B5CF6 55%, #C4B5FD 100%);
  animation: floatIcon 7s ease-in-out infinite;
}

.node-a { top: 35%; left: 7%; }
.node-b { top: 36%; right: 6%; }
.node-c { bottom: 10%; left: 18%; }
.node-d { bottom: 10%; right: 16%; }
.node-e { top: 9%; right: 20%; }

@keyframes floatIcon {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-6px); }
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.split-heading {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.split-heading p:last-child {
  color: var(--nw-muted);
  font-size: 1.05rem;
}

.cards,
.pricing-grid,
.solution-grid,
.proof-list,
.contact-grid,
.footer-grid,
.info-grid {
  display: grid;
  gap: 16px;
}

.card,
.price-card,
.info-card,
.contact-option {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--nw-border);
  border-radius: 20px;
  background: var(--nw-white);
  box-shadow: var(--shadow);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.featured,
.info-card.featured {
  border-color: var(--nw-border-purple);
  background: var(--nw-surface-purple);
}

.icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--nw-surface-purple);
  color: var(--nw-purple);
  font-weight: 600;
}

.price-card h3,
.contact-option h3 { color: var(--nw-purple); }

.price-card strong {
  display: block;
  color: var(--nw-heading);
  font-size: 1.2rem;
}

.service-price-card strong {
  display: inline-flex;
  margin: 4px 0 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--nw-surface-purple);
  color: var(--nw-purple);
  font-weight: 700;
}

.service-price-card p {
  margin-bottom: 0;
}

.finance-band {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(14, 165, 233, 0.16), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(196, 181, 253, 0.3), transparent 30%),
    linear-gradient(135deg, #140A2A 0%, #421F7E 48%, #7C3AED 100%);
  color: var(--nw-white);
}

.finance-band::before {
  position: absolute;
  inset: 8% -14% auto auto;
  width: 54vw;
  height: 54vw;
  max-width: 720px;
  max-height: 720px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.09), transparent 64%);
  pointer-events: none;
}

.finance-band h2,
.finance-band p,
.finance-band .eyebrow { color: var(--nw-white); }

.finance-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.finance-copy {
  position: relative;
  z-index: 1;
}

.finance-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  margin-top: 26px;
}

.finance-cta .button {
  min-width: 210px;
}

.finance-cta span {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.45;
}

.finance-panel {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  box-shadow: 0 32px 90px rgba(15, 23, 42, 0.32);
  backdrop-filter: blur(16px);
}

.wave-mark {
  position: absolute;
  right: -24px;
  top: -38px;
  color: rgba(255, 255, 255, 0.08);
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: clamp(6rem, 13vw, 12rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
}

.finance-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.finance-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease);
}

.finance-item > div {
  min-width: 0;
}

.finance-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.16);
}

.finance-item small {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nw-white), var(--nw-lavender-soft));
  color: var(--nw-purple-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.finance-item strong,
.finance-item span {
  display: block;
  color: var(--nw-white);
}

.finance-item strong {
  margin-bottom: 5px;
  line-height: 1.25;
}

.finance-item span {
  color: var(--nw-lavender-soft);
  line-height: 1.45;
}

.finance-item::after {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--nw-white);
  content: "→";
  font-weight: 800;
}

.price-card .button { margin-top: 12px; }

.disclaimer {
  margin: 24px 0 0;
  color: var(--nw-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.jurisdiction-strip {
  display: block;
  width: 100%;
  margin-top: 32px;
  border-radius: 24px;
  background: var(--nw-footer);
}

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

.journey li {
  position: relative;
  padding: 18px 20px;
  border: 1px solid var(--nw-border-purple);
  border-radius: 999px;
  background: var(--nw-white);
  color: var(--nw-heading);
  font-weight: 600;
  box-shadow: var(--shadow);
}

.proof-grid { display: grid; gap: 24px; }

.proof-list p {
  max-width: none;
  margin: 0;
  padding: 22px;
  border-left: 4px solid var(--nw-purple);
  border-radius: 20px;
  background: var(--nw-surface);
}

.proof-list strong {
  display: block;
  color: var(--nw-heading);
}

.proof-list span {
  display: block;
  color: var(--nw-muted);
}

.faq-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(139, 92, 246, 0.1), transparent 28%),
    linear-gradient(180deg, var(--nw-white), #FBFAFF);
}

.faq-section::before {
  position: absolute;
  inset: 56px auto auto -120px;
  width: 360px;
  height: 180px;
  content: "";
  border: 2px solid rgba(91, 45, 168, 0.08);
  border-color: rgba(91, 45, 168, 0.12) transparent transparent transparent;
  border-radius: 50%;
  transform: rotate(-10deg);
  pointer-events: none;
}

.faq-grid {
  display: grid;
  gap: 42px;
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1.5px solid rgba(15, 23, 42, 0.9);
}

.faq-item {
  overflow: hidden;
  border-bottom: 1.5px solid rgba(15, 23, 42, 0.9);
  background: transparent;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 92px;
  padding: 24px 0;
  color: var(--nw-heading);
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
  transition: color 180ms var(--ease);
}

.faq-item summary:hover,
.faq-item summary:focus-visible {
  color: var(--nw-purple);
}

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

.faq-item summary::after {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--nw-footer);
  color: var(--nw-white);
  content: "+";
  font-weight: 800;
  transition: transform 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease);
}

.faq-item[open] summary::after {
  content: "-";
  transform: rotate(180deg);
  background: var(--nw-purple);
  color: var(--nw-white);
}

.faq-item[open] {
  background: linear-gradient(180deg, rgba(248, 245, 255, 0.62), transparent);
}

.faq-item p {
  max-width: 78ch;
  margin: 0;
  padding: 0 72px 28px 0;
  color: var(--nw-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.final-cta { padding-top: 0; }

.cta-panel {
  overflow: hidden;
  padding: 40px 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 15%, rgba(196, 181, 253, 0.28), transparent 28%),
    linear-gradient(135deg, #5B2DA8 0%, #8B5CF6 55%, #C4B5FD 100%);
  color: var(--nw-white);
}

.cta-panel h2,
.cta-panel p { color: var(--nw-white); }

.page-hero {
  background: linear-gradient(180deg, var(--nw-white), var(--nw-surface));
}

.breadcrumbs {
  margin-bottom: 24px;
  color: var(--nw-muted);
  font-size: 0.875rem;
}

.breadcrumbs a {
  color: var(--nw-purple);
  font-weight: 600;
  text-decoration: none;
}

.list-card ul,
.prep-list {
  padding-left: 1.2rem;
  margin: 0;
}

.list-card li,
.prep-list li { margin-bottom: 8px; }

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

.logo-text-row span {
  padding: 8px 12px;
  border: 1px solid var(--nw-border);
  border-radius: 999px;
  background: var(--nw-surface);
  color: var(--nw-heading);
  font-weight: 600;
}

.statement {
  padding: 32px;
  border-radius: 24px;
  background: var(--nw-footer);
  color: var(--nw-white);
}

.statement h2,
.statement p { color: var(--nw-white); }

.partner-showcase {
  padding-top: 40px;
  background:
    radial-gradient(circle at 12% 14%, rgba(139, 92, 246, 0.14), transparent 30%),
    radial-gradient(circle at 90% 18%, rgba(14, 165, 233, 0.1), transparent 30%),
    linear-gradient(180deg, var(--nw-white), var(--nw-surface-purple));
}

.jurisdiction-layout {
  display: grid;
  gap: 28px;
  align-items: stretch;
}

.jurisdiction-copy {
  display: grid;
  align-content: center;
}

.supporting-note {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid var(--nw-border-purple);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--nw-heading);
  font-weight: 600;
  box-shadow: var(--shadow);
}

.partner-strip-card {
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--nw-border-purple);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 10%, rgba(196, 181, 253, 0.28), transparent 30%),
    linear-gradient(135deg, var(--nw-white), var(--nw-surface-purple));
  box-shadow: var(--shadow-purple);
}

.partner-strip-card img {
  display: block;
  width: 100%;
  border-radius: 20px;
  background: var(--nw-footer);
}

.jurisdiction-board {
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(107, 64, 205, 0.15);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 10%, rgba(139, 92, 246, 0.16), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(248, 245, 255, 0.92));
  box-shadow: var(--shadow-purple);
}

.jurisdiction-board-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 18px;
}

.jurisdiction-board-head span {
  color: var(--nw-purple);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.jurisdiction-board-head strong {
  color: var(--nw-heading);
  font-size: 0.98rem;
}

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

.jurisdiction-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(221, 214, 254, 0.9);
  border-radius: 20px;
  background: var(--nw-white);
  box-shadow: 0 12px 36px rgba(17, 24, 39, 0.045);
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.jurisdiction-card:hover {
  transform: translateY(-3px);
  border-color: rgba(91, 45, 168, 0.34);
  box-shadow: 0 20px 54px rgba(91, 45, 168, 0.12);
}

.jurisdiction-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--nw-purple), var(--nw-violet));
  color: var(--nw-white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.jurisdiction-card p {
  margin: 0 0 2px;
  color: var(--nw-purple);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.jurisdiction-card h3 {
  margin: 0 0 4px;
  font-size: 1.04rem;
  line-height: 1.2;
}

.jurisdiction-card span {
  display: block;
  color: var(--nw-muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.setup-overview {
  background:
    radial-gradient(circle at 12% 12%, rgba(139, 92, 246, 0.1), transparent 30%),
    linear-gradient(180deg, var(--nw-white), var(--nw-surface-purple));
}

.route-highlight-grid,
.setup-note-grid {
  display: grid;
  gap: 16px;
}

.route-highlight,
.setup-note-grid article {
  padding: 22px;
  border: 1px solid rgba(221, 214, 254, 0.86);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.route-highlight span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nw-purple), var(--nw-violet));
  color: var(--nw-white);
  font-weight: 900;
}

.route-highlight h3 {
  font-size: 1.22rem;
}

.setup-note-grid {
  margin-top: 28px;
}

.setup-note-grid strong,
.setup-note-grid span {
  display: block;
}

.setup-note-grid strong {
  margin-bottom: 8px;
  color: var(--nw-heading);
  font-family: "Poppins", "Inter", Arial, sans-serif;
}

.setup-note-grid span {
  color: var(--nw-muted);
}

.mainland-panel {
  display: grid;
  gap: 24px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 32px;
  background:
    radial-gradient(circle at 86% 12%, rgba(196, 181, 253, 0.28), transparent 30%),
    linear-gradient(135deg, #160B2E, #421F7E 52%, #7C3AED);
  color: var(--nw-white);
  box-shadow: var(--shadow-purple);
}

.mainland-panel h3,
.mainland-panel p,
.mainland-panel span,
.mainland-panel strong {
  color: var(--nw-white);
}

.mainland-panel strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-family: "Poppins", "Inter", Arial, sans-serif;
  line-height: 1;
}

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

.mainland-panel li {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
}

.visual-story {
  background:
    radial-gradient(circle at 15% 20%, rgba(91, 45, 168, 0.12), transparent 26%),
    radial-gradient(circle at 90% 30%, rgba(14, 165, 233, 0.1), transparent 30%),
    var(--nw-white);
}

.feature-grid {
  display: grid;
  gap: 18px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(221, 214, 254, 0.75);
  border-radius: 28px;
  background: var(--nw-white);
  box-shadow: var(--shadow);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}

.feature-card::before {
  position: absolute;
  inset: auto -20% -38% 30%;
  height: 220px;
  content: "";
  border-radius: 999px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent 66%);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(91, 45, 168, 0.28);
  box-shadow: var(--shadow-purple);
}

.feature-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--nw-purple), var(--nw-violet));
  color: var(--nw-white);
  font-weight: 900;
}

.feature-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.12;
}

.feature-card p:not(.eyebrow) {
  max-width: none;
  margin-bottom: 0;
  color: var(--nw-muted);
}

.feature-founder {
  background:
    radial-gradient(circle at 86% 10%, rgba(196, 181, 253, 0.32), transparent 32%),
    var(--nw-white);
}

.feature-connected {
  background:
    radial-gradient(circle at 84% 12%, rgba(14, 165, 233, 0.16), transparent 30%),
    linear-gradient(180deg, var(--nw-white), #F0F9FF);
}

.setup-tabs {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px;
  border: 1px solid var(--nw-border);
  border-radius: 24px;
  background: var(--nw-white);
  box-shadow: var(--shadow);
}

.setup-tabs button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--nw-muted);
  font-weight: 600;
  cursor: pointer;
}

.setup-tabs button.is-active {
  background: var(--nw-purple);
  color: var(--nw-white);
}

.setup-panel { display: none; }
.setup-panel.is-active { display: block; }

.sector-grid {
  align-items: stretch;
}

.sector-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 0;
}

.sector-image {
  position: relative;
  height: clamp(180px, 18vw, 240px);
  margin: 0;
  overflow: hidden;
  background: var(--nw-surface-purple);
}

.sector-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sector-image span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--nw-white);
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.sector-body {
  padding: 26px;
}

.sector-kicker {
  margin-bottom: 8px;
  color: var(--nw-purple);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sector-licence {
  padding-top: 12px;
  border-top: 1px solid var(--nw-border);
}

.text-link,
.sector-card a {
  color: var(--nw-purple);
  font-weight: 600;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.setup-finance-band {
  margin-top: 32px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 32px;
}

.containerless {
  width: 100%;
  margin-inline: 0;
}

.ecosystem-layers {
  background: linear-gradient(180deg, var(--nw-white), var(--nw-surface));
}

.ecosystem-flow {
  padding-block: 96px;
}

.notice {
  padding: 16px;
  border: 1px solid var(--nw-border-purple);
  border-radius: 18px;
  background: var(--nw-surface-purple);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 64px 0 26px;
  background:
    radial-gradient(circle at 84% 8%, rgba(139, 92, 246, 0.2), transparent 28%),
    radial-gradient(circle at 12% 14%, rgba(14, 165, 233, 0.08), transparent 28%),
    linear-gradient(180deg, var(--nw-footer), #0A1020);
  color: #CBD5E1;
}

.footer-grid {
  align-items: start;
  gap: 28px;
}

.footer-grid > div,
.footer-grid > nav {
  min-width: 0;
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.site-footer h2 {
  margin-bottom: 16px;
  color: var(--nw-white);
  font-size: 1rem;
  letter-spacing: 0;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-bottom: 9px;
  color: #CBD5E1;
  text-decoration: none;
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

.site-footer p,
.site-footer a,
.legal {
  overflow-wrap: anywhere;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--nw-white);
  transform: translateX(3px);
}

.site-footer p { margin-bottom: 8px; }

.site-footer img {
  width: 190px;
  margin-bottom: 18px;
}

.legal {
  width: min(1240px, calc(100% - 36px));
  max-width: none;
  margin: 32px auto 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #CBD5E1;
  font-size: 0.875rem;
  line-height: 1.7;
}

.legal a {
  display: inline;
  color: var(--nw-white);
  font-weight: 600;
  transform: none;
}

.legal a:hover,
.legal a:focus-visible { transform: none; }

.insights-archive-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(139, 92, 246, 0.18), transparent 30%),
    linear-gradient(180deg, var(--nw-white), var(--nw-surface-purple));
}

.insights-archive-hero h1 {
  max-width: 11ch;
}

.featured-insight {
  display: grid;
  gap: 28px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--nw-border-purple);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 8%, rgba(196, 181, 253, 0.32), transparent 32%),
    var(--nw-white);
  box-shadow: var(--shadow-purple);
}

.featured-insight img,
.insight-card img,
.article-hero-image img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.featured-insight img,
.article-hero-image img {
  border-radius: 24px;
  aspect-ratio: 16 / 9;
}

.insight-controls {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.insight-controls label {
  display: grid;
  gap: 8px;
  color: var(--nw-heading);
  font-weight: 700;
}

.insight-controls input {
  min-height: 54px;
  width: 100%;
  padding: 0 18px;
  border: 1px solid var(--nw-border-purple);
  border-radius: 18px;
  background: var(--nw-white);
  color: var(--nw-heading);
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-filters button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--nw-border-purple);
  border-radius: 999px;
  background: var(--nw-white);
  color: var(--nw-purple);
  cursor: pointer;
  font-weight: 700;
}

.category-filters button[aria-pressed="true"] {
  background: var(--nw-purple);
  color: var(--nw-white);
}

.insight-grid {
  display: grid;
  gap: 22px;
}

.insight-card {
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--nw-border);
  border-radius: 24px;
  background: var(--nw-white);
  box-shadow: var(--shadow);
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.insight-card[hidden] { display: none; }

.insight-card img {
  aspect-ratio: 16 / 10;
  border-radius: 18px;
}

.insight-card h2,
.insight-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.25rem, 1rem + 0.8vw, 1.7rem);
  line-height: 1.18;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--nw-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.article-meta span {
  min-width: 0;
}

.empty-results {
  padding: 24px;
  border: 1px solid var(--nw-border-purple);
  border-radius: 18px;
  background: var(--nw-surface-purple);
  color: var(--nw-heading);
  font-weight: 700;
}

.article-hero {
  background:
    radial-gradient(circle at 85% 18%, rgba(139, 92, 246, 0.16), transparent 28%),
    linear-gradient(180deg, var(--nw-white), var(--nw-surface));
}

.article-hero.section {
  padding-block: 48px;
}

.article-hero-grid {
  display: grid;
  gap: 28px;
}

.article-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
}

.article-hero-image {
  overflow: hidden;
  justify-self: center;
  width: 100%;
  max-width: 640px;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--nw-border-purple);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-purple);
}

.article-hero-image img {
  max-height: 360px;
  object-position: center;
}

.article-layout {
  display: grid;
  gap: 32px;
  padding-block: 56px;
}

.article-body {
  width: 100%;
  max-width: 760px;
  min-width: 0;
  font-size: clamp(1rem, 0.96rem + 0.15vw, 1.075rem);
  line-height: 1.8;
}

.article-body p,
.article-body li,
.article-body a,
.article-body td,
.article-body th {
  overflow-wrap: anywhere;
}

.article-body > section,
.article-body > aside,
.article-body > nav,
.article-body > figure,
.share-shell,
.related-insights {
  margin-top: 34px;
}

.article-body h2 {
  scroll-margin-top: 110px;
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 1.2rem + 1.8vw, 2.4rem);
  letter-spacing: -0.025em;
}

.insight-takeaways,
.article-cta,
.article-disclaimer {
  padding: 24px;
  border: 1px solid var(--nw-border-purple);
  border-radius: 24px;
  background: var(--nw-surface-purple);
}

.article-cta {
  display: grid;
  gap: 14px;
  background:
    radial-gradient(circle at 90% 16%, rgba(196, 181, 253, 0.36), transparent 30%),
    var(--nw-white);
  box-shadow: var(--shadow);
}

.article-cta p {
  margin: 0;
  color: var(--nw-heading);
  font-family: "Poppins", "Inter", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.article-toc {
  padding: 18px;
  border: 1px solid var(--nw-border);
  border-radius: 20px;
  background: var(--nw-white);
  box-shadow: var(--shadow);
}

.article-toc button {
  min-height: 44px;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--nw-heading);
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}

.article-toc ol {
  margin: 10px 0 0;
  padding-left: 1.15rem;
}

.article-toc a {
  color: var(--nw-muted);
  text-decoration: none;
}

.article-toc a[aria-current] {
  color: var(--nw-purple);
  font-weight: 800;
}

.article-sidebar {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.sidebar-promo {
  padding: 24px;
  border: 1px solid var(--nw-border-purple);
  border-radius: 24px;
  background: var(--nw-white);
  box-shadow: var(--shadow);
}

.sidebar-promo h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.sidebar-promo p {
  font-size: 0.96rem;
  line-height: 1.65;
}

.sidebar-promo .button {
  width: 100%;
}

.referral-card {
  background:
    radial-gradient(circle at 90% 8%, rgba(196, 181, 253, 0.35), transparent 32%),
    linear-gradient(145deg, var(--nw-white), var(--nw-surface-purple));
}

.consult-card {
  background:
    radial-gradient(circle at 12% 12%, rgba(91, 45, 168, 0.12), transparent 34%),
    var(--nw-white);
}

.table-wrap {
  overflow-x: auto;
  max-width: 100%;
  margin-block: 22px;
  border: 1px solid var(--nw-border);
  border-radius: 20px;
  background: var(--nw-white);
}

.table-wrap table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.table-wrap caption {
  padding: 16px 18px 0;
  color: var(--nw-heading);
  font-weight: 800;
  text-align: left;
}

.table-wrap th,
.table-wrap td {
  padding: 14px 18px;
  border-top: 1px solid var(--nw-border);
  text-align: left;
  vertical-align: top;
  overflow-wrap: break-word;
}

.table-wrap th {
  color: var(--nw-heading);
}

.insight-checklist {
  display: grid;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.insight-checklist li {
  padding: 14px 16px;
  border: 1px solid var(--nw-border);
  border-radius: 16px;
  background: var(--nw-white);
}

.insight-diagram {
  margin-inline: 0;
}

.insight-diagram img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.sources ul {
  padding-left: 1.2rem;
}

.sources a {
  color: var(--nw-purple);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.share-shell {
  position: relative;
  display: inline-grid;
  gap: 10px;
  max-width: 100%;
}

.share-menu {
  position: absolute;
  top: calc(100% + 10px);
  z-index: 4;
  display: grid;
  min-width: 230px;
  max-width: min(320px, calc(100vw - 36px));
  padding: 10px;
  border: 1px solid var(--nw-border-purple);
  border-radius: 18px;
  background: var(--nw-white);
  box-shadow: var(--shadow-purple);
}

.share-menu[hidden] { display: none; }

.share-menu a,
.share-menu button {
  min-height: 42px;
  padding: 10px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--nw-heading);
  cursor: pointer;
  text-align: left;
  text-decoration: none;
}

.share-menu a:hover,
.share-menu a:focus-visible,
.share-menu button:hover,
.share-menu button:focus-visible {
  background: var(--nw-surface-purple);
  color: var(--nw-purple);
}

.share-status {
  min-height: 22px;
  margin: 0;
  color: var(--nw-purple);
  font-weight: 700;
}

.referral-marquee {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(91, 45, 168, 0.12);
  background:
    radial-gradient(circle at 12% 50%, rgba(139, 92, 246, 0.18), transparent 26%),
    radial-gradient(circle at 86% 50%, rgba(196, 181, 253, 0.34), transparent 30%),
    linear-gradient(90deg, #FFFFFF, #F8F5FF 48%, #FFFFFF);
}

.referral-marquee::before,
.referral-marquee::after {
  position: absolute;
  top: 0;
  z-index: 2;
  width: min(16vw, 180px);
  height: 100%;
  content: "";
  pointer-events: none;
}

.referral-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--nw-white), rgba(255, 255, 255, 0));
}

.referral-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--nw-white), rgba(255, 255, 255, 0));
}

.referral-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 100%;
  gap: 24px;
  padding: 14px 0;
  color: var(--nw-heading);
  text-decoration: none;
  animation: referral-scroll 28s linear infinite;
}

.referral-track:hover,
.referral-track:focus-visible {
  animation-play-state: paused;
}

.referral-track span,
.referral-track strong {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.referral-track span {
  color: var(--nw-purple);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.referral-track strong {
  font-size: clamp(0.98rem, 1.4vw, 1.15rem);
  font-weight: 800;
}

.referral-track strong::after,
.referral-track span::after {
  display: inline-block;
  width: 48px;
  height: 14px;
  margin-left: 24px;
  content: "";
  border: 2px solid rgba(91, 45, 168, 0.18);
  border-color: transparent transparent rgba(91, 45, 168, 0.28) transparent;
  border-radius: 50%;
}

.referral-popup {
  position: fixed;
  right: max(24px, env(safe-area-inset-right));
  bottom: calc(max(18px, env(safe-area-inset-bottom)) + 76px);
  z-index: 58;
  width: min(360px, calc(100vw - 36px));
  max-height: min(520px, calc(100svh - 112px));
  padding: 24px;
  border: 1px solid rgba(221, 214, 254, 0.95);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 8%, rgba(196, 181, 253, 0.32), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 245, 255, 0.98));
  box-shadow: 0 28px 72px rgba(17, 24, 39, 0.18);
  transform: translateY(12px);
  opacity: 0;
  overflow-y: auto;
  transition: opacity 240ms var(--ease), transform 240ms var(--ease);
}

.referral-popup.is-visible {
  transform: translateY(0);
  opacity: 1;
}

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

.referral-popup h2 {
  max-width: 12ch;
  margin-bottom: 10px;
  font-size: 1.45rem;
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.referral-popup p {
  margin-bottom: 18px;
  font-size: 0.96rem;
  line-height: 1.65;
}

.referral-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--nw-border-purple);
  border-radius: 50%;
  background: var(--nw-white);
  color: var(--nw-heading);
  cursor: pointer;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
}

.referral-close:hover,
.referral-close:focus-visible {
  transform: rotate(90deg);
  border-color: var(--nw-purple);
  color: var(--nw-purple);
}

@keyframes referral-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.whatsapp {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--nw-whatsapp);
  color: var(--nw-white);
  box-shadow: 0 14px 38px rgba(37, 211, 102, 0.35);
  text-decoration: none;
}

.whatsapp svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp span {
  position: absolute;
  right: 68px;
  width: max-content;
  max-width: 170px;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--nw-footer);
  color: var(--nw-white);
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms var(--ease), transform 550ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) {
  .card:hover,
  .price-card:hover,
  .info-card:hover,
  .contact-option:hover {
    transform: translateY(-6px);
    border-color: rgba(91, 45, 168, 0.3);
    box-shadow: var(--shadow-purple);
  }

  .whatsapp:hover span {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (min-width: 768px) {
  .container { width: min(1240px, calc(100% - 48px)); }
  .section { padding-block: 80px; }
  .compact { padding-block: 64px; }
  .hero-grid,
  .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
    align-items: center;
  }
  .hero-copy .button,
  .final-cta .button { width: auto; }
  .cards.four,
  .pricing-grid,
  .solution-grid,
  .info-grid,
  .contact-grid,
  .insight-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards.five { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .route-highlight-grid,
  .setup-note-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mainland-panel { grid-template-columns: 0.8fr 1.2fr; align-items: center; }
  .journey { grid-template-columns: repeat(7, minmax(0, 1fr)); }
  .journey li {
    display: grid;
    min-height: 92px;
    place-items: center;
    text-align: center;
  }
  .split-heading,
  .proof-grid,
  .faq-grid,
  .footer-grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); }
  .setup-tabs { grid-template-columns: repeat(3, 1fr); }
  .jurisdiction-layout,
  .finance-grid { grid-template-columns: 0.9fr 1.1fr; align-items: center; }
  .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .featured-insight,
  .article-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr); }
}

@media (min-width: 1120px) {
  .site-header { min-height: 84px; }
  .nav-shell { min-height: 84px; }
  .brand img { width: 208px; }
  .menu-toggle { display: none; }
  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0;
    border: 0;
    box-shadow: none;
    transform: none;
    overflow: visible;
  }
  .site-nav a:not(.button)::after {
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 2px;
    content: "";
    background: var(--nw-purple);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms var(--ease);
  }
  .site-nav a:hover::after,
  .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
  .hero { min-height: calc(100svh - 84px); }
  .hero-grid { grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1fr); }
  .cards.five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .pricing-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .insight-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .article-layout {
    grid-template-columns: minmax(0, 760px) minmax(260px, 1fr);
    align-items: start;
  }
  .article-sidebar {
    position: sticky;
    top: 112px;
  }
  .footer-grid { grid-template-columns: 1.3fr 0.7fr 0.8fr 0.9fr; }
  .whatsapp { width: 60px; height: 60px; }
}

@media (min-width: 992px) and (max-width: 1119px) {
  .site-header { min-height: 76px; }
  .nav-shell { min-height: 76px; }
  .site-nav { inset-block-start: 76px; }
}

@media (min-width: 1200px) {
  .section { padding-block: 112px; }
  .compact { padding-block: 80px; }
}

@media (max-width: 520px) {
  h1 {
    max-width: none;
    font-size: clamp(2rem, 10.5vw, 2.65rem);
  }
  .ecosystem-visual { min-height: 520px; }
  .node-center { width: 124px; height: 124px; }
  .node {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
    width: max-content;
    max-width: calc(100% - 36px);
  }
  .node-a { top: 24px; }
  .node-b { top: 116px; }
  .node-e { top: 208px; }
  .node-c { bottom: 116px; }
  .node-d { bottom: 24px; }
  .connectors { opacity: 0.25; }
  .jurisdiction-grid { grid-template-columns: 1fr; }
  .jurisdiction-card { min-height: auto; }
  .finance-item {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .finance-item::after { display: none; }
  .finance-cta .button { width: 100%; }
  .hero-actions .button { width: 100%; }
  .referral-track {
    gap: 18px;
    padding-block: 12px;
    animation-duration: 36s;
  }
  .referral-track strong::after,
  .referral-track span::after {
    width: 36px;
    margin-left: 18px;
  }
  .referral-popup {
    right: 18px;
    bottom: calc(max(18px, env(safe-area-inset-bottom)) + 72px);
    padding: 22px;
  }
  .featured-insight,
  .insight-card,
  .insight-takeaways,
  .article-cta,
  .article-disclaimer,
  .sidebar-promo {
    border-radius: 18px;
  }
  .article-hero.section {
    padding-block: 36px;
  }
  .article-hero h1 {
    max-width: none;
    font-size: clamp(2rem, 9vw, 2.8rem);
  }
  .article-hero-image {
    max-width: 100%;
    padding: 8px;
    border-radius: 20px;
  }
  .article-hero-image img {
    max-height: 220px;
    border-radius: 14px;
  }
  .article-layout {
    width: min(100% - 28px, 1240px);
    padding-block: 34px;
    gap: 26px;
  }
  .article-body {
    max-width: none;
  }
  .table-wrap table {
    min-width: 560px;
  }
  .article-sidebar {
    order: 2;
  }
  .share-menu {
    position: static;
    width: min(280px, calc(100vw - 36px));
  }
  .share-shell,
  .share-shell .button {
    width: 100%;
  }
  .faq-item summary {
    min-height: 76px;
    padding: 20px 0;
    font-size: 1.05rem;
  }
  .faq-item summary::after {
    width: 34px;
    height: 34px;
  }
  .faq-item p { padding-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero::before {
    animation: none !important;
  }
  .referral-track {
    animation: none !important;
  }
}
