/* ==========================================================================
   RELOCART · 2026 Premium Global Mobility Platform
   Bright glassmorphism · cinematic depth · luxury SaaS aesthetic
   ========================================================================== */

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

:root {
  /* PALETTE — bright, premium, sky-luxury */
  --bg-base: #f4f8ff;
  --bg-pearl: #fafcff;
  --bg-cloud: #e8f2ff;
  --bg-mist: #f0f6fe;

  --ink-1: #0b1530;          /* deep ink for hero titles */
  --ink-2: #1e2c4f;          /* body strong */
  --ink-3: #4a5878;          /* body */
  --ink-4: #7a87a3;          /* muted */
  --ink-5: #a8b3c8;          /* hint */

  --line: rgba(15, 30, 60, 0.06);
  --line-soft: rgba(15, 30, 60, 0.04);

  /* ACCENTS — electric blue · cyan · emerald · teal */
  --c-blue: #0066ff;
  --c-blue-2: #2563eb;
  --c-cyan: #06b6d4;
  --c-sky: #0ea5e9;
  --c-emerald: #10b981;
  --c-teal: #14b8a6;

  /* GRADIENTS */
  --grad-route: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #10b981 100%);
  --grad-soft: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 50%, #d1fae5 100%);
  --grad-pearl: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  --grad-aurora: radial-gradient(ellipse 80% 60% at 30% 20%, rgba(14,165,233,0.18), transparent 60%),
                 radial-gradient(ellipse 70% 50% at 80% 70%, rgba(16,185,129,0.15), transparent 60%),
                 radial-gradient(ellipse 60% 50% at 50% 100%, rgba(6,182,212,0.12), transparent 70%);

  /* GLASS */
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-strong: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.65);
  --glass-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.9) inset,
    0 -1px 0 0 rgba(15, 30, 60, 0.04) inset,
    0 24px 60px -20px rgba(15, 60, 130, 0.18),
    0 8px 24px -10px rgba(15, 60, 130, 0.10);
  --glass-shadow-lg:
    0 1px 0 0 rgba(255, 255, 255, 1) inset,
    0 -1px 0 0 rgba(15, 30, 60, 0.05) inset,
    0 40px 100px -30px rgba(15, 60, 130, 0.28),
    0 16px 40px -16px rgba(15, 60, 130, 0.14);

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Geist', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  background: var(--bg-base);
  overflow-x: hidden;
  letter-spacing: -0.01em;
  font-feature-settings: 'ss01', 'ss02', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: rgba(14,165,233,0.22); color: var(--ink-1); }

/* =================== ATMOSPHERE =================== */
.atmosphere {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden;
}
.atmo-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 20% 10%, #e0f2fe 0%, transparent 55%),
    radial-gradient(ellipse 80% 70% at 80% 30%, #ddeaff 0%, transparent 50%),
    radial-gradient(ellipse 100% 80% at 50% 80%, #e6f7f1 0%, transparent 60%),
    linear-gradient(180deg, #f4f8ff 0%, #fafcff 50%, #f0f6fe 100%);
}
.atmo-mesh {
  position: absolute; inset: -10%;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(14,165,233,0.08) 0%, transparent 30%),
    radial-gradient(circle at 75% 75%, rgba(16,185,129,0.07) 0%, transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(6,182,212,0.05) 0%, transparent 35%);
  filter: blur(60px);
  animation: meshDrift 30s ease-in-out infinite alternate;
}
@keyframes meshDrift {
  0%   { transform: translate(0,0) rotate(0deg); }
  50%  { transform: translate(2%, -2%) rotate(2deg); }
  100% { transform: translate(-2%, 2%) rotate(-2deg); }
}
.atmo-grain {
  position: absolute; inset: 0; opacity: 0.4; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0.5 0 0 0 0 0.6 0 0 0 0 0.8 0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.floating-particles {
  position: absolute; inset: 0;
}
.particle {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.6), rgba(14,165,233,0));
  filter: blur(1px);
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(100vh) translateX(0) scale(0.5); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-10vh) translateX(40px) scale(1.2); opacity: 0; }
}

/* =================== GLASS PRIMITIVE =================== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius);
}
.glass-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset, 0 4px 16px -6px rgba(15,60,130,0.15);
  font-size: 13px; font-weight: 500; color: var(--ink-2);
  letter-spacing: -0.005em;
}

/* =================== NAVIGATION =================== */
.nav {
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 36px); max-width: 1280px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px 12px 22px;
  border-radius: 999px;
  z-index: 100;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.nav.scrolled {
  background: rgba(255,255,255,0.78);
  box-shadow: var(--glass-shadow-lg);
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Fraunces', serif; font-weight: 600;
}
.nav-logo {
  width: 36px; height: 36px; object-fit: contain;
  background: white; border-radius: 10px; padding: 4px;
  box-shadow: 0 2px 10px rgba(15,60,130,0.1);
}
.nav-wordmark {
  font-size: 19px; letter-spacing: -0.02em; color: var(--ink-1);
}
.nav-links {
  display: flex; align-items: center; gap: 6px;
}
.nav-links a {
  padding: 8px 16px; font-size: 14px; font-weight: 500; color: var(--ink-3);
  border-radius: 999px;
  transition: all 0.25s ease;
}
.nav-links a:hover {
  color: var(--ink-1); background: rgba(15,30,60,0.04);
}
.nav-cta {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--ink-1); color: white;
  border-radius: 999px; font-size: 14px; font-weight: 500;
  box-shadow: 0 6px 20px -4px rgba(11,21,48,0.4), 0 1px 0 rgba(255,255,255,0.15) inset;
  transition: all 0.25s ease;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px -4px rgba(11,21,48,0.5), 0 1px 0 rgba(255,255,255,0.15) inset;
}
.nav-toggle { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink-1); border-radius: 2px; }

/* =================== BUTTONS =================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500; letter-spacing: -0.005em;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--ink-1) 0%, #1e3a8a 100%);
  color: white;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 8px 24px -4px rgba(11,21,48,0.45),
    0 0 0 1px rgba(255,255,255,0.1) inset;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(14,165,233,0.4) 100%);
  opacity: 0; transition: opacity 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 14px 32px -6px rgba(11,21,48,0.55),
    0 0 0 1px rgba(255,255,255,0.15) inset;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; }
.btn-ghost {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(15,30,60,0.08);
  color: var(--ink-1);
  box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset, 0 4px 14px -4px rgba(15,60,130,0.1);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.85);
  transform: translateY(-1px);
}
.btn-lg { padding: 16px 28px; font-size: 15px; }

/* =================== HERO =================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 36px 80px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(14,165,233,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 40%, black 30%, transparent 80%);
  opacity: 0.7;
}

/* GLOBE */
.globe-stage {
  position: absolute;
  right: -8%;
  top: 50%; transform: translateY(-50%);
  width: 72vw; max-width: 920px; aspect-ratio: 1;
  pointer-events: none;
  filter: drop-shadow(0 30px 80px rgba(15,60,130,0.18));
  animation: globeFloat 12s ease-in-out infinite alternate;
}
@keyframes globeFloat {
  0%   { transform: translateY(-50%) translateX(0); }
  100% { transform: translateY(calc(-50% - 16px)) translateX(-10px); }
}
.globe-svg { width: 100%; height: 100%; }
.globe-svg .globe-grid { animation: rotateSlow 80s linear infinite; transform-origin: 400px 400px; }
@keyframes rotateSlow { to { transform: rotate(360deg); } }

.arc {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: arcTravel 4s ease-in-out infinite;
}
.arc-1 { animation-delay: 0s; }
.arc-2 { animation-delay: 0.8s; }
.arc-3 { animation-delay: 1.6s; }
.arc-4 { animation-delay: 2.4s; }
.arc-5 { animation-delay: 3.2s; }
@keyframes arcTravel {
  0%   { stroke-dashoffset: 600; opacity: 0; }
  20%  { opacity: 1; }
  60%  { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -600; opacity: 0; }
}

.pulse-ring {
  transform-origin: center;
  animation: pulseRing 2.4s ease-out infinite;
}
@keyframes pulseRing {
  0%   { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}

/* Airplane motion paths */
.plane {
  offset-rotate: auto;
}
.plane-1 {
  offset-path: path('M 280 300 Q 400 100 540 290');
  animation: planeFly1 6s linear infinite;
}
.plane-2 {
  offset-path: path('M 320 460 Q 450 250 555 350');
  animation: planeFly2 7s linear infinite;
  animation-delay: 1.5s;
}
@keyframes planeFly1 {
  0%   { offset-distance: 0%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}
@keyframes planeFly2 {
  0%   { offset-distance: 0%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

/* FLOATING CARDS */
.floating-card {
  position: absolute;
  padding: 18px 20px;
  z-index: 3;
  animation: floatCard 6s ease-in-out infinite alternate;
  border-radius: var(--radius);
}
.fc-passport {
  top: 18%; right: 14%;
  width: 220px;
  animation-delay: 0s;
}
.fc-salary {
  top: 58%; right: 6%;
  width: 240px;
  animation-delay: 1.5s;
}
.fc-route {
  top: 42%; right: 38%;
  width: 200px;
  animation-delay: 3s;
}
@keyframes floatCard {
  0%   { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(0.5deg); }
}

.passport-header {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  color: var(--c-blue-2); margin-bottom: 12px;
}
.passport-emblem {
  width: 14px; height: 14px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fbbf24, #d97706);
  box-shadow: 0 0 8px rgba(251,191,36,0.5);
}
.passport-strip {
  height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--c-cyan), var(--c-emerald));
  margin-bottom: 14px;
}
.passport-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.passport-grid > div { display: flex; flex-direction: column; gap: 2px; }
.passport-grid span { font-size: 10px; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.06em; }
.passport-grid strong { font-size: 13px; color: var(--ink-1); font-weight: 600; }

.fc-label { font-size: 11px; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.fc-value {
  font-family: 'Fraunces', serif;
  font-size: 28px; font-weight: 600; color: var(--ink-1);
  letter-spacing: -0.02em; line-height: 1;
}
.fc-value span { font-size: 14px; color: var(--ink-4); font-family: 'Geist'; font-weight: 400; }
.fc-bar { height: 4px; background: rgba(15,30,60,0.06); border-radius: 2px; margin: 12px 0 8px; overflow: hidden; }
.fc-bar-fill { height: 100%; background: var(--grad-route); border-radius: 2px; }
.fc-foot { font-size: 11px; color: var(--ink-4); }

.route-row { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.route-row:last-child { margin-bottom: 0; }
.flag {
  width: 28px; height: 20px; border-radius: 4px; flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  background-size: cover; background-position: center;
}
.flag-in { background: linear-gradient(180deg, #ff9933 33%, #fff 33% 66%, #138808 66%); position: relative; }
.flag-in::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle, transparent 30%, transparent 32%); }
.flag-pt { background: linear-gradient(90deg, #006633 40%, #cc0000 40%); }
.flag-de { background: linear-gradient(180deg, #000 33%, #d00 33% 66%, #ffce00 66%); }
.flag-nl { background: linear-gradient(180deg, #ae1c28 33%, #fff 33% 66%, #21468b 66%); }
.flag-ie { background: linear-gradient(90deg, #009A44 33%, #fff 33% 66%, #FF7900 66%); }
.flag-ca { background: linear-gradient(90deg, #d52b1e 25%, #fff 25% 75%, #d52b1e 75%); position: relative; }

.route-info { flex: 1; }
.route-info strong { display: block; font-size: 13px; color: var(--ink-1); font-weight: 600; }
.route-info span { font-size: 10px; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.08em; }
.route-line {
  display: flex; align-items: center; gap: 6px;
  margin: 6px 4px; padding-left: 38px;
}
.route-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-cyan); }
.route-arrow { color: var(--c-emerald); font-size: 14px; flex: 1; text-align: center; opacity: 0.7; animation: arrowSlide 2s ease-in-out infinite; }
@keyframes arrowSlide {
  0%, 100% { transform: translateX(-4px); opacity: 0.5; }
  50% { transform: translateX(4px); opacity: 1; }
}

/* HERO CONTENT */
.hero-content {
  position: relative; z-index: 5;
  max-width: 640px;
}
.hero-eyebrow {
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
}
.dot-live {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-emerald);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0.05); }
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(56px, 8vw, 104px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink-1);
  margin-bottom: 28px;
  animation: fadeInUp 0.9s ease-out 0.1s both;
}
.title-script {
  font-style: italic; font-weight: 300;
  background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 50%, #10b981 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  padding-right: 0.2em;
}
.title-strong {
  font-weight: 600;
  color: var(--ink-1);
}
.title-grad {
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #10b981 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 17px; line-height: 1.6; color: var(--ink-3);
  max-width: 520px; margin-bottom: 18px;
  animation: fadeInUp 1s ease-out 0.2s both;
}
.hero-sub em { font-style: italic; color: var(--ink-1); font-weight: 500; }

.hero-trust {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--ink-4);
  margin-bottom: 32px;
  animation: fadeInUp 1s ease-out 0.3s both;
}
.trust-line { width: 32px; height: 1px; background: linear-gradient(90deg, var(--c-cyan), transparent); }

.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-stats {
  display: flex; align-items: center; gap: 24px;
  animation: fadeInUp 1s ease-out 0.5s both;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat strong {
  font-family: 'Fraunces', serif;
  font-size: 30px; font-weight: 500; color: var(--ink-1);
  letter-spacing: -0.03em;
}
.stat span { font-size: 12px; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-divider { width: 1px; height: 36px; background: var(--line); }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11px; color: var(--ink-4);
  text-transform: uppercase; letter-spacing: 0.12em;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--c-cyan), transparent);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, white, transparent);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =================== TRUST STRIP =================== */
.trust-strip {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}
.trust-inner {
  display: flex; align-items: center; gap: 32px;
  padding: 0 36px;
}
.trust-label {
  flex-shrink: 0;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-4); font-weight: 500;
}
.trust-marquee {
  flex: 1; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}
.marquee-track {
  display: flex; align-items: center; gap: 28px;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 400;
  color: var(--ink-2);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.marquee-track span.dot {
  color: var(--c-cyan); font-size: 10px;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* =================== SECTION HEADERS =================== */
.section-header {
  max-width: 720px; margin: 0 auto 64px;
}
.section-header.center { text-align: center; }
.section-tag {
  margin-bottom: 24px;
}
.section-tag .tag-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 500;
  color: var(--c-cyan);
  background: rgba(6,182,212,0.1);
  padding: 2px 6px; border-radius: 4px;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink-1);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px; line-height: 1.6; color: var(--ink-3);
}

/* =================== SMART MOBILITY WIDGET =================== */
.widget-section {
  position: relative;
  padding: 120px 36px;
}
.widget-shell {
  position: relative;
  max-width: 1200px; margin: 0 auto;
  padding: 56px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.7);
  box-shadow: var(--glass-shadow-lg);
  overflow: hidden;
}
.widget-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 0% 0%, rgba(6,182,212,0.18), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(16,185,129,0.18), transparent 50%);
}
.widget-step { position: relative; z-index: 1; }
.step-meta {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px; padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 600;
  color: white; background: var(--ink-1);
  padding: 4px 10px; border-radius: 4px;
  letter-spacing: 0.05em;
}
.step-title {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 500;
  color: var(--ink-1); letter-spacing: -0.02em;
}

.country-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}
.country-block label {
  display: block;
  font-size: 12px; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--ink-4);
  margin-bottom: 10px;
}
.country-select { position: relative; }
.select-trigger {
  display: flex; align-items: center; gap: 12px;
  width: 100%; padding: 16px 20px;
  background: white;
  border: 1.5px solid rgba(15,30,60,0.08);
  border-radius: 14px;
  font-size: 15px; color: var(--ink-1);
  transition: all 0.25s ease;
  text-align: left;
  box-shadow: 0 1px 0 rgba(255,255,255,1) inset, 0 2px 8px -2px rgba(15,60,130,0.06);
}
.select-trigger:hover {
  border-color: var(--c-cyan);
  box-shadow: 0 1px 0 rgba(255,255,255,1) inset, 0 4px 14px -2px rgba(6,182,212,0.18);
}
.select-trigger.active {
  border-color: var(--c-blue-2);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12), 0 4px 14px -2px rgba(37,99,235,0.18);
}
.select-flag {
  font-size: 20px; line-height: 1;
}
.select-text {
  flex: 1; color: var(--ink-3); font-weight: 500;
}
.select-trigger.has-value .select-text { color: var(--ink-1); }
.select-trigger svg { color: var(--ink-4); transition: transform 0.25s ease; }
.select-trigger.active svg { transform: rotate(180deg); color: var(--c-blue-2); }

.select-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  box-shadow: 0 20px 60px -10px rgba(15,60,130,0.25), 0 0 0 1px rgba(15,30,60,0.06);
  z-index: 50;
  max-height: 360px;
  display: none; flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}
.select-dropdown.open {
  display: flex;
  animation: dropdownIn 0.25s cubic-bezier(0.2, 0.9, 0.3, 1);
}
@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(-8px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.select-search {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-4);
}
.select-search input {
  flex: 1; border: none; outline: none; background: transparent;
  font: inherit; font-size: 14px; color: var(--ink-1);
}
.select-search input::placeholder { color: var(--ink-5); }
.select-list {
  flex: 1; overflow-y: auto;
  padding: 6px;
}
.select-list::-webkit-scrollbar { width: 6px; }
.select-list::-webkit-scrollbar-thumb { background: rgba(15,30,60,0.12); border-radius: 3px; }
.country-option {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px; color: var(--ink-2);
  cursor: pointer;
  transition: background 0.15s ease;
}
.country-option:hover {
  background: rgba(6,182,212,0.08);
  color: var(--ink-1);
}
.country-option .opt-flag { font-size: 18px; line-height: 1; }
.country-option .opt-name { flex: 1; font-weight: 500; }
.country-option .opt-code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--ink-4);
}

.route-bridge {
  display: flex; align-items: center; gap: 6px;
  padding-bottom: 16px;
}
.bridge-line {
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--c-cyan), var(--c-emerald));
  border-radius: 1px;
  position: relative;
}
.bridge-plane {
  font-size: 16px; color: var(--c-emerald);
  animation: planePulse 2s ease-in-out infinite;
}
@keyframes planePulse {
  0%, 100% { transform: translateX(0) scale(1); }
  50% { transform: translateX(2px) scale(1.1); }
}

.go-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--ink-1) 0%, #1e3a8a 50%, #0066ff 100%);
  color: white;
  border-radius: 14px;
  font-size: 15px; font-weight: 600; letter-spacing: -0.005em;
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 8px 20px -4px rgba(0,102,255,0.4);
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
  position: relative; overflow: hidden;
}
.go-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(14,165,233,0.5));
  opacity: 0; transition: opacity 0.3s ease;
}
.go-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 14px 30px -6px rgba(0,102,255,0.5);
}
.go-btn:hover::before { opacity: 1; }
.go-btn > * { position: relative; z-index: 1; }

.refine-row {
  display: flex; align-items: center; gap: 16px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
  flex-wrap: wrap;
}
.refine-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-4); font-weight: 500;
}
.chip-group { display: flex; gap: 10px; flex-wrap: wrap; flex: 1; }
.chip {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(15,30,60,0.06);
  border-radius: 999px;
  font-size: 13px;
  transition: all 0.25s ease;
}
.chip:hover { border-color: var(--c-cyan); background: white; }
.chip-label { color: var(--ink-4); font-weight: 500; }
.chip select {
  border: none; background: transparent; outline: none;
  font: inherit; font-size: 13px; color: var(--ink-1); font-weight: 600;
  cursor: pointer; padding-right: 14px;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2306b6d4' stroke-width='3'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: right center; background-size: 10px;
}

/* =================== RESULTS =================== */
.widget-results {
  display: none;
  margin-top: 36px; padding-top: 36px;
  border-top: 1px solid var(--line);
}
.widget-results.visible {
  display: block;
  animation: resultsIn 0.6s cubic-bezier(0.2, 0.9, 0.3, 1);
}
@keyframes resultsIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.results-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px; flex-wrap: wrap; gap: 20px;
}
.results-route {
  display: flex; align-items: center; gap: 14px;
}
.result-flag { font-size: 32px; line-height: 1; }
.result-place { display: flex; flex-direction: column; }
.result-place strong {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 500; color: var(--ink-1);
  letter-spacing: -0.02em; line-height: 1.1;
}
.result-place span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-4); }
.results-arc { width: 200px; height: 60px; }

.results-meta { display: flex; gap: 8px; }
.meta-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; padding: 4px 10px;
  background: rgba(16,185,129,0.1); color: var(--c-emerald);
  border-radius: 6px; font-weight: 500;
}
.meta-pill.alt { background: rgba(6,182,212,0.1); color: var(--c-cyan); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.res-card {
  padding: 20px 22px;
  background: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  position: relative;
  animation: cardIn 0.6s cubic-bezier(0.2, 0.9, 0.3, 1) both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.res-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-lg);
}
.res-card.wide { grid-column: span 3; }
@keyframes cardIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.res-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(6,182,212,0.12), rgba(16,185,129,0.12));
  display: flex; align-items: center; justify-content: center;
  color: var(--c-cyan); margin-bottom: 14px;
}
.res-icon svg { width: 20px; height: 20px; }
.res-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-4); font-weight: 500; margin-bottom: 6px;
}
.res-value {
  font-family: 'Fraunces', serif;
  font-size: 26px; font-weight: 500; color: var(--ink-1);
  letter-spacing: -0.02em; line-height: 1.1;
  margin-bottom: 4px;
}
.res-value small { font-size: 14px; color: var(--ink-4); font-family: 'Geist'; }
.res-foot { font-size: 12px; color: var(--ink-4); }
.res-bar {
  height: 4px; background: rgba(15,30,60,0.06);
  border-radius: 2px; margin-top: 10px; overflow: hidden;
}
.res-bar > div {
  height: 100%; background: var(--grad-route);
  border-radius: 2px;
  animation: barFill 1.2s cubic-bezier(0.2, 0.9, 0.3, 1) 0.3s both;
}
@keyframes barFill { from { width: 0; } }
.res-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.rt {
  font-size: 11px; padding: 3px 8px;
  background: rgba(6,182,212,0.1); color: var(--c-cyan);
  border-radius: 4px; font-weight: 500;
}
.rt.warn { background: rgba(251,146,60,0.12); color: #ea580c; }
.rt.good { background: rgba(16,185,129,0.12); color: var(--c-emerald); }

.res-avatars { display: flex; margin-top: 10px; }
.res-avatars span {
  width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid white; margin-left: -6px;
  background: linear-gradient(135deg, var(--c-cyan), var(--c-emerald));
}
.res-avatars span:first-child { margin-left: 0; }
.res-avatars span:nth-child(2) { background: linear-gradient(135deg, #fbbf24, #f97316); }
.res-avatars span:nth-child(3) { background: linear-gradient(135deg, #a855f7, #ec4899); }

.res-timeline {
  display: flex; align-items: center; margin-top: 12px;
}
.tl-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(15,30,60,0.12);
}
.tl-dot.active { background: var(--c-emerald); box-shadow: 0 0 0 3px rgba(16,185,129,0.18); }
.tl-line { flex: 1; height: 2px; background: rgba(15,30,60,0.08); margin: 0 4px; }

.doc-track {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
  margin: 16px 0;
}
.doc-step {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.7);
  border-radius: 12px;
  border: 1px solid rgba(15,30,60,0.05);
}
.doc-step span {
  width: 24px; height: 24px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(15,30,60,0.06); color: var(--ink-4);
  font-size: 12px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.doc-step.done span { background: var(--c-emerald); color: white; }
.doc-step.active span { background: var(--c-cyan); color: white; box-shadow: 0 0 0 4px rgba(6,182,212,0.18); }
.doc-step strong { display: block; font-size: 13px; color: var(--ink-1); font-weight: 600; }
.doc-step small { font-size: 11px; color: var(--ink-4); }

.results-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 32px; padding-top: 32px;
  border-top: 1px solid var(--line);
}

.results-disclaimer {
  margin-top: 22px; padding-top: 18px;
  border-top: 1px dashed var(--line);
  font-size: 12.5px; line-height: 1.55;
  color: var(--ink-4);
  font-style: italic;
  max-width: 880px;
}

/* =================== POSITIONING SHIFT =================== */
.shift-section {
  padding: 100px 36px;
  max-width: 1280px; margin: 0 auto;
}
.shift-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px; align-items: center;
  margin-bottom: 80px;
}
.shift-card {
  padding: 36px;
  border-radius: var(--radius-lg);
}
.shift-card-strong {
  background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(220,242,255,0.7));
  position: relative;
}
.shift-card-strong::before {
  content: ''; position: absolute; inset: 0;
  border-radius: inherit; padding: 1.5px;
  background: linear-gradient(135deg, var(--c-cyan), var(--c-emerald));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.shift-eyebrow {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-4); font-weight: 500; margin-bottom: 12px;
}
.shift-eyebrow.grad {
  background: var(--grad-route);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.shift-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 36px; font-weight: 500;
  color: var(--ink-1); letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.shift-list { list-style: none; }
.shift-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  font-size: 15px; color: var(--ink-3);
  border-bottom: 1px solid var(--line-soft);
}
.shift-list li:last-child { border-bottom: none; }
.shift-list li span {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--ink-5); margin-top: 8px; flex-shrink: 0;
}
.shift-list.strong li span { background: var(--c-emerald); }
.shift-list.strong li { color: var(--ink-2); font-weight: 500; }

.shift-arrow {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.shift-arrow span {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--c-emerald); font-weight: 600;
}

.differentiator {
  padding: 56px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.75);
}
.diff-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; padding: 4px 10px;
  background: rgba(11,21,48,0.06); color: var(--ink-3);
  border-radius: 4px; margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.differentiator h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 48px); font-weight: 500;
  color: var(--ink-1); letter-spacing: -0.03em;
  margin-bottom: 20px; line-height: 1.05;
}
.differentiator > p {
  font-size: 17px; color: var(--ink-3); line-height: 1.6;
  max-width: 720px; margin-bottom: 36px;
}
.differentiator > p strong { color: var(--ink-1); font-weight: 600; }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.diff-grid > div { display: flex; flex-direction: column; gap: 6px; }
.diff-grid strong {
  font-family: 'Fraunces', serif;
  font-size: 18px; color: var(--ink-1); font-weight: 600;
  letter-spacing: -0.01em;
}
.diff-grid p { font-size: 13px; color: var(--ink-4); line-height: 1.5; }

/* =================== ECOSYSTEM 8 STEPS =================== */
.ecosystem {
  padding: 120px 36px;
  position: relative;
}
.eco-pathway { position: relative; max-width: 1280px; margin: 0 auto; }
.eco-pathway-line { position: absolute; top: -40px; left: 0; right: 0; opacity: 0.6; }
.eco-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.eco-card {
  padding: 28px;
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius);
  position: relative;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
  cursor: default;
}
.eco-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--glass-shadow-lg);
}
.eco-card:hover .eco-icon {
  background: var(--grad-route);
  color: white;
  transform: scale(1.05);
}
.eco-num {
  position: absolute; top: 20px; right: 22px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--ink-5); font-weight: 500;
  letter-spacing: 0.05em;
}
.eco-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(6,182,212,0.12), rgba(16,185,129,0.12));
  display: flex; align-items: center; justify-content: center;
  color: var(--c-cyan);
  margin-bottom: 18px;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.eco-icon svg { width: 22px; height: 22px; }
.eco-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 500;
  color: var(--ink-1); letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.eco-tag {
  font-size: 13px; color: var(--c-cyan); font-weight: 500;
  margin-bottom: 16px;
}
.eco-card ul {
  list-style: none;
  margin-bottom: 18px;
}
.eco-card ul li {
  font-size: 13px; color: var(--ink-3); line-height: 1.5;
  padding: 4px 0;
}
.eco-check {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  color: var(--c-emerald);
  padding: 6px 12px;
  background: rgba(16,185,129,0.08);
  border-radius: 999px;
  letter-spacing: -0.005em;
}
.eco-card-final {
  background: linear-gradient(135deg, rgba(220,242,255,0.85), rgba(209,250,229,0.7));
  position: relative;
}
.eco-card-final::before {
  content: ''; position: absolute; inset: 0;
  border-radius: inherit; padding: 1.5px;
  background: linear-gradient(135deg, var(--c-cyan), var(--c-emerald));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}

/* =================== FIRST 90 DAYS =================== */
.ninety {
  padding: 120px 36px;
  max-width: 1280px; margin: 0 auto;
}
.ninety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.ninety-list {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 32px;
}
.ninety-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}
.ninety-item:hover { transform: translateX(6px); background: rgba(255,255,255,0.95); }
.n-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 600;
  color: white; background: var(--grad-route);
  padding: 6px 10px; border-radius: 6px;
  flex-shrink: 0;
}
.ninety-item strong { display: block; font-size: 15px; color: var(--ink-1); font-weight: 600; margin-bottom: 2px; }
.ninety-item span { font-size: 13px; color: var(--ink-4); }

.dashboard {
  padding: 36px;
  background: rgba(255,255,255,0.85);
  border-radius: var(--radius-lg);
}
.dash-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.dash-title { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--ink-2); }
.dash-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-emerald);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
}
.dash-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; padding: 4px 10px;
  background: rgba(6,182,212,0.1); color: var(--c-cyan);
  border-radius: 6px;
}
.dash-progress {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}
.dash-progress > span { font-size: 13px; color: var(--ink-4); flex-shrink: 0; }
.dash-bar {
  flex: 1; height: 6px; background: rgba(15,30,60,0.06);
  border-radius: 3px; overflow: hidden;
}
.dash-bar > div {
  height: 100%; background: var(--grad-route);
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(6,182,212,0.4);
}
.dash-progress strong {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 500; color: var(--ink-1);
  letter-spacing: -0.02em;
}
.dash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.dash-cell {
  padding: 14px;
  background: rgba(255,255,255,0.6);
  border-radius: 12px;
  border: 1px solid rgba(15,30,60,0.04);
  text-align: left;
}
.dc-icon { display: block; font-size: 20px; margin-bottom: 6px; }
.dash-cell strong { display: block; font-size: 12px; color: var(--ink-1); font-weight: 600; margin-bottom: 2px; }
.dash-cell small { font-size: 11px; }
.dash-cell small.ok { color: var(--c-emerald); font-weight: 500; }
.dash-cell small.warn { color: #ea580c; font-weight: 500; }
.dash-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 18px; border-top: 1px solid var(--line);
  font-size: 13px;
}
.dash-foot > span { color: var(--ink-4); }
.dash-foot strong { color: var(--ink-1); font-weight: 600; }

/* =================== COMMUNITY =================== */
.community {
  position: relative;
  padding: 120px 36px;
  overflow: hidden;
}
.community-bg {
  position: absolute; inset: 0;
  pointer-events: none; opacity: 0.5;
}
.community-bg svg { width: 100%; height: 100%; }
.conn-lines path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: lineDraw 6s ease-in-out infinite;
}
.conn-lines path:nth-child(2) { animation-delay: 1s; }
.conn-lines path:nth-child(3) { animation-delay: 2s; }
.conn-lines path:nth-child(4) { animation-delay: 3s; }
.conn-lines path:nth-child(5) { animation-delay: 4s; }
.conn-lines path:nth-child(6) { animation-delay: 5s; }
.conn-lines path:nth-child(7) { animation-delay: 6s; }
@keyframes lineDraw {
  0%   { stroke-dashoffset: 200; }
  50%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -200; }
}
.comm-nodes circle:not([fill="url(#nodeGlow)"]) {
  animation: nodeGlow 3s ease-in-out infinite alternate;
}
@keyframes nodeGlow {
  to { transform: scale(1.3); }
}
.community-content { position: relative; max-width: 1280px; margin: 0 auto; }
.comm-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.comm-card {
  padding: 28px;
  background: rgba(255,255,255,0.78);
  border-radius: var(--radius);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.comm-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--glass-shadow-lg);
}
.comm-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.25);
}
.comm-icon svg { width: 24px; height: 24px; }
.comm-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 500;
  color: var(--ink-1); letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.comm-card p { font-size: 13px; color: var(--ink-3); line-height: 1.5; margin-bottom: 14px; }
.comm-stat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; padding: 4px 10px;
  background: rgba(6,182,212,0.1); color: var(--c-cyan);
  border-radius: 6px; font-weight: 500;
}

/* =================== JOBS =================== */
.jobs {
  padding: 100px 36px;
  max-width: 1280px; margin: 0 auto;
}
.jobs-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 56px;
  background: rgba(255,255,255,0.75);
  border-radius: var(--radius-xl);
  align-items: center;
}
.jobs-actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px;
}
.job-feed {
  padding: 20px;
  background: rgba(255,255,255,0.6);
  border-radius: var(--radius);
}
.feed-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px; margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.feed-header strong { color: var(--ink-2); font-weight: 600; }
.feed-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.2s ease, padding 0.2s ease;
  border-radius: 8px;
}
.feed-row:hover { padding-left: 12px; padding-right: 12px; background: rgba(6,182,212,0.04); }
.feed-row:last-child { border-bottom: none; }
.feed-info { flex: 1; }
.feed-info strong { display: block; font-size: 14px; color: var(--ink-1); font-weight: 600; }
.feed-info span { font-size: 12px; color: var(--ink-4); }
.feed-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; padding: 2px 8px;
  background: rgba(16,185,129,0.12); color: var(--c-emerald);
  border-radius: 4px; font-weight: 600;
}

/* =================== EMPLOYERS =================== */
.employers {
  position: relative;
  padding: 120px 36px;
  overflow: hidden;
}
.employers-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(6,182,212,0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 70%, rgba(16,185,129,0.08), transparent 60%);
}
.employers-content {
  position: relative;
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px; align-items: center;
}
.emp-points { display: flex; flex-direction: column; gap: 10px; margin: 28px 0 36px; }
.emp-point {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--ink-2);
}
.emp-point span { color: var(--c-cyan); font-family: 'JetBrains Mono', monospace; font-weight: 600; }

.emp-dashboard {
  padding: 36px;
  background: rgba(255,255,255,0.85);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.emp-dashboard::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(6,182,212,0.15), transparent 70%);
  pointer-events: none;
}
.emp-dash-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px; padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.emp-dash-title { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--ink-2); }
.emp-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-cyan); box-shadow: 0 0 0 3px rgba(6,182,212,0.2);
  animation: dotPulse 2s ease-in-out infinite;
}
.emp-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; padding: 4px 10px;
  background: var(--ink-1); color: white;
  border-radius: 6px; letter-spacing: 0.05em;
}
.emp-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 32px;
}
.emp-stat { padding: 16px; background: rgba(255,255,255,0.6); border-radius: 12px; }
.emp-stat strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 28px; font-weight: 500; color: var(--ink-1);
  letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px;
}
.emp-stat span { font-size: 11px; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.05em; }

.emp-chart { margin-bottom: 28px; }
.emp-chart-row {
  display: grid;
  grid-template-columns: 100px 1fr 50px;
  align-items: center; gap: 14px;
  padding: 8px 0;
  font-size: 13px;
}
.emp-chart-row > span { color: var(--ink-3); font-weight: 500; }
.emp-chart-row > strong { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--ink-1); text-align: right; }
.emp-bar {
  height: 8px; background: rgba(15,30,60,0.06);
  border-radius: 4px; overflow: hidden;
}
.emp-bar > div {
  height: 100%; background: var(--grad-route);
  border-radius: 4px;
  animation: barFill 1.4s cubic-bezier(0.2,0.9,0.3,1);
  box-shadow: 0 0 8px rgba(6,182,212,0.3);
}
.emp-foot {
  padding-top: 18px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.emp-foot > span { font-size: 12px; color: var(--ink-4); text-transform: uppercase; letter-spacing: 0.08em; }
.emp-regions { display: flex; gap: 6px; flex-wrap: wrap; }
.reg-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; padding: 4px 10px;
  background: rgba(15,30,60,0.06); color: var(--ink-2);
  border-radius: 6px; font-weight: 500;
}

/* =====================================================================
   PRICING v2 — Cinematic Journey Cards
   Asymmetric, layered, route-connected, glassmorphism
   ===================================================================== */
.pricing-v2 {
  position: relative;
  padding: 140px 36px 120px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 80% 50% at 30% 10%, rgba(56,132,255,0.10), transparent 60%),
    radial-gradient(ellipse 70% 45% at 80% 90%, rgba(16,185,129,0.08), transparent 60%),
    linear-gradient(180deg, #f5faff 0%, #eaf3ff 50%, #f5faff 100%);
}

/* ---- ATMOSPHERE LAYER ---- */
.px-atmosphere {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  overflow: hidden;
}
.px-cloud {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .55;
  animation: pxCloudDrift 22s ease-in-out infinite;
}
.px-cloud-a {
  width: 540px; height: 540px;
  top: -180px; left: -120px;
  background: radial-gradient(circle, rgba(56,132,255,0.35), transparent 60%);
}
.px-cloud-b {
  width: 640px; height: 640px;
  bottom: -260px; right: -160px;
  background: radial-gradient(circle, rgba(6,182,212,0.30), transparent 60%);
  animation-delay: -8s;
}
.px-cloud-c {
  width: 380px; height: 380px;
  top: 35%; left: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.18), transparent 60%);
  animation-delay: -14s;
}
@keyframes pxCloudDrift {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(40px, -30px) scale(1.08); }
}
.px-routes {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.px-route {
  stroke-dashoffset: 0;
  animation: pxRouteFlow 18s linear infinite;
}
.px-route-2 { animation-duration: 22s; animation-direction: reverse; }
.px-route-3 { animation-duration: 26s; }
@keyframes pxRouteFlow {
  to { stroke-dashoffset: -240; }
}
.px-particles { position: absolute; inset: 0; }
.px-particles span {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,132,255,0.85), rgba(56,132,255,0));
  box-shadow: 0 0 12px rgba(56,132,255,0.55);
  animation: pxParticleFloat 12s ease-in-out infinite;
}
.px-particles span:nth-child(1)  { top: 12%; left: 8%;  animation-delay: 0s; }
.px-particles span:nth-child(2)  { top: 24%; left: 92%; animation-delay: -1s; background: radial-gradient(circle, rgba(16,185,129,0.85), transparent); box-shadow: 0 0 12px rgba(16,185,129,0.55); }
.px-particles span:nth-child(3)  { top: 38%; left: 18%; animation-delay: -2.4s; }
.px-particles span:nth-child(4)  { top: 48%; left: 78%; animation-delay: -3.7s; background: radial-gradient(circle, rgba(6,182,212,0.85), transparent); box-shadow: 0 0 12px rgba(6,182,212,0.55); }
.px-particles span:nth-child(5)  { top: 62%; left: 12%; animation-delay: -5s; }
.px-particles span:nth-child(6)  { top: 70%; left: 88%; animation-delay: -6.5s; }
.px-particles span:nth-child(7)  { top: 82%; left: 30%; animation-delay: -7.8s; background: radial-gradient(circle, rgba(16,185,129,0.85), transparent); box-shadow: 0 0 12px rgba(16,185,129,0.55); }
.px-particles span:nth-child(8)  { top: 18%; left: 52%; animation-delay: -8.6s; }
.px-particles span:nth-child(9)  { top: 88%; left: 64%; animation-delay: -9.4s; }
.px-particles span:nth-child(10) { top: 32%; left: 38%; animation-delay: -10.2s; background: radial-gradient(circle, rgba(6,182,212,0.85), transparent); box-shadow: 0 0 12px rgba(6,182,212,0.55); }
.px-particles span:nth-child(11) { top: 6%;  left: 70%; animation-delay: -10.8s; }
.px-particles span:nth-child(12) { top: 92%; left: 48%; animation-delay: -11.4s; }
@keyframes pxParticleFloat {
  0%,100% { transform: translate(0,0); opacity: .35; }
  25%     { transform: translate(20px, -16px); opacity: .9; }
  50%     { transform: translate(-12px, -28px); opacity: .55; }
  75%     { transform: translate(-22px, 10px); opacity: .85; }
}

/* ---- HEADER ---- */
.px-header {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto 56px;
  text-align: center;
}
.px-header .section-tag { margin: 0 auto 22px; }
.px-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(38px, 5.6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--ink-1);
  margin: 0;
}

/* ---- TRUST BANNER ---- */
.px-trust {
  position: relative; z-index: 2;
  max-width: 1180px; margin: 0 auto 64px;
  padding: 26px 32px;
  display: flex; align-items: center; gap: 32px;
  border-radius: 24px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow:
    0 30px 80px -30px rgba(56,132,255,0.30),
    0 8px 24px -8px rgba(20,40,80,0.10),
    inset 0 1px 0 rgba(255,255,255,0.8);
  animation: pxTrustFloat 7s ease-in-out infinite;
}
@keyframes pxTrustFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}
.px-trust-glow {
  position: absolute; inset: -2px;
  border-radius: 24px; pointer-events: none;
  background: linear-gradient(120deg,
    rgba(56,132,255,0.0) 0%,
    rgba(56,132,255,0.15) 30%,
    rgba(16,185,129,0.15) 60%,
    rgba(56,132,255,0.0) 90%);
  opacity: .6;
  animation: pxTrustShimmer 5s linear infinite;
  filter: blur(8px);
  z-index: -1;
}
@keyframes pxTrustShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.px-trust-left {
  display: flex; align-items: center; gap: 22px; flex: 1;
  min-width: 0;
}
.px-trust-shield { flex-shrink: 0; }
.px-trust-text {
  font-size: 16px; line-height: 1.5;
  color: var(--ink-1);
}
.px-trust-text strong { font-weight: 700; color: var(--ink-1); }
.px-trust-sub {
  display: block;
  margin-top: 6px;
  font-size: 13.5px; line-height: 1.5;
  color: var(--ink-3);
}
.px-trust-sub em { font-style: normal; color: var(--c-blue); font-weight: 600; }
.px-trust-cta { flex-shrink: 0; }

/* ---- HEADLINE STRIP ---- */
.px-headline {
  position: relative; z-index: 2;
  max-width: 1080px; margin: 0 auto 28px;
  text-align: center;
}
.px-headline-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink-1);
  margin: 0 0 14px;
}
.px-amount {
  background: linear-gradient(135deg, #3884ff 0%, #06b6d4 50%, #10b981 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}
.px-headline-sub {
  font-size: 16.5px; line-height: 1.6;
  color: var(--ink-3);
  max-width: 760px; margin: 0 auto;
}
.px-headline-sub em { font-style: italic; color: var(--c-blue); font-weight: 500; }

/* ---- SOCIAL PROOF STRIP ---- */
.px-social {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto 80px;
  padding: 24px 28px;
  display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap; justify-content: center;
  border-radius: 18px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.7);
}
.px-social-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
}
.px-social-routes {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.px-flag-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(56,132,255,0.18);
  font-size: 13.5px; font-weight: 500; color: var(--ink-1);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative;
}
.px-flag-chip::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 999px;
  background: linear-gradient(120deg, transparent 30%, rgba(56,132,255,0.4), transparent 70%);
  opacity: 0;
  transition: opacity .3s;
  z-index: -1;
  filter: blur(6px);
}
.px-flag-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(56,132,255,0.5);
  box-shadow: 0 12px 24px -8px rgba(56,132,255,0.35);
}
.px-flag-chip:hover::before { opacity: 1; }
.px-flag {
  width: 22px; height: 16px; border-radius: 3px;
  display: inline-block;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.flag-au {
  background:
    linear-gradient(180deg, #00247d 50%, #00247d 50%);
  position: relative;
}
.flag-au::after {
  content: '';
  position: absolute; left: 0; top: 0;
  width: 11px; height: 8px;
  background:
    linear-gradient(45deg, transparent 46%, #fff 46% 54%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, #fff 46% 54%, transparent 54%),
    #00247d;
}
.px-route-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3884ff, #06b6d4);
  box-shadow: 0 0 10px rgba(56,132,255,0.6);
  animation: pxDotPulse 2.4s ease-in-out infinite;
}
.px-route-dot:nth-child(4) { animation-delay: -0.4s; }
.px-route-dot:nth-child(6) { animation-delay: -0.8s; }
.px-route-dot:nth-child(8) { animation-delay: -1.2s; }
.px-route-dot:nth-child(10) { animation-delay: -1.6s; }
@keyframes pxDotPulse {
  0%,100% { opacity: .35; transform: scale(1); }
  50%     { opacity: 1;   transform: scale(1.4); }
}

/* ---- JOURNEY CARDS — asymmetric layout ---- */
.px-journeys {
  position: relative; z-index: 2;
  max-width: 1320px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.px-connectors {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.px-connectors path { animation: pxRouteFlow 24s linear infinite; }

.px-journey {
  position: relative; z-index: 1;
  padding: 38px 32px 32px;
  border-radius: 28px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow:
    0 40px 90px -36px rgba(20,40,80,0.28),
    0 12px 28px -10px rgba(56,132,255,0.16),
    inset 0 1px 0 rgba(255,255,255,0.9);
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  overflow: hidden;
}
.px-journey:hover {
  transform: translateY(-10px);
  box-shadow:
    0 60px 120px -40px rgba(20,40,80,0.35),
    0 18px 40px -10px rgba(56,132,255,0.28),
    inset 0 1px 0 rgba(255,255,255,1);
}
/* Asymmetric stagger — depth & life */
.px-j1 { transform: translateY(20px); }
.px-j1:hover { transform: translateY(10px); }
.px-j2 { transform: translateY(-10px); }
.px-j2:hover { transform: translateY(-20px); }
.px-j3 { transform: translateY(28px); }
.px-j3:hover { transform: translateY(18px); }

.px-j-glow {
  position: absolute; inset: -1px;
  border-radius: 28px; pointer-events: none;
  background: linear-gradient(180deg, rgba(56,132,255,0.10), transparent 50%);
  z-index: 0;
}
.px-j1 .px-j-glow { background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(56,132,255,0.18), transparent 60%); }
.px-j2 .px-j-glow { background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(6,182,212,0.20), transparent 60%); }
.px-j3 .px-j-glow { background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(16,185,129,0.18), transparent 60%); }

.px-featured {
  background: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(56,132,255,0.35);
  box-shadow:
    0 50px 120px -40px rgba(56,132,255,0.40),
    0 18px 40px -12px rgba(56,132,255,0.22),
    inset 0 1px 0 rgba(255,255,255,1);
}
.px-j-ribbon {
  position: absolute; top: 18px; right: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3884ff, #06b6d4);
  color: white;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 8px 18px -4px rgba(56,132,255,0.5);
  z-index: 3;
}

.px-j-icon {
  position: relative; z-index: 1;
  width: 84px; height: 84px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(220,238,255,0.9), rgba(255,255,255,0.5));
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow:
    0 18px 36px -12px rgba(56,132,255,0.35),
    inset 0 1px 0 rgba(255,255,255,0.9);
  margin-bottom: 22px;
  animation: pxIconFloat 6s ease-in-out infinite;
}
.px-j2 .px-j-icon { animation-delay: -2s; }
.px-j3 .px-j-icon { animation-delay: -4s; }
@keyframes pxIconFloat {
  0%,100% { transform: translateY(0) rotate(0); }
  50%     { transform: translateY(-6px) rotate(-1deg); }
}

.px-j-tag {
  position: relative; z-index: 1;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-blue);
  display: inline-block;
  margin-bottom: 12px;
}
.px-j-title {
  position: relative; z-index: 1;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 36px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink-1);
  margin: 0 0 16px;
}
.px-j-sub {
  position: relative; z-index: 1;
  font-size: 14.5px; line-height: 1.6;
  color: var(--ink-3);
  margin: 0 0 24px;
}
.px-j-sub em { font-style: italic; color: var(--ink-1); font-weight: 500; }

.px-j-features {
  position: relative; z-index: 1;
  list-style: none;
  padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.px-j-features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; line-height: 1.5;
  color: var(--ink-2);
}
.px-tick {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(16,185,129,0.18), rgba(6,182,212,0.12));
  border: 1px solid rgba(16,185,129,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
  position: relative;
}
.px-tick::after {
  content: '';
  width: 6px; height: 10px;
  border-right: 2px solid var(--c-emerald);
  border-bottom: 2px solid var(--c-emerald);
  transform: rotate(45deg) translate(-1px, -1px);
}

.px-j-cta {
  position: relative; z-index: 1;
  width: 100%;
  justify-content: center;
  margin-bottom: 22px;
}

.px-j-mini {
  position: relative; z-index: 1;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.px-j-mini-bar {
  width: 100%; height: 6px;
  border-radius: 999px;
  background: rgba(56,132,255,0.10);
  overflow: hidden;
  margin-bottom: 10px;
}
.px-j-mini-bar > span {
  display: block; height: 100%;
  background: linear-gradient(90deg, #3884ff, #06b6d4, #10b981);
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(56,132,255,0.4);
  animation: pxBarPulse 3s ease-in-out infinite;
}
@keyframes pxBarPulse {
  0%,100% { opacity: .85; }
  50%     { opacity: 1; }
}
.px-j-mini-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
}
.px-j-mini-meta strong {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 500;
}
.px-j-mini-meta span { color: var(--c-blue); font-weight: 600; }

.px-j-stops {
  display: flex; align-items: center; gap: 6px;
  flex-wrap: nowrap; overflow-x: auto;
  padding: 4px 0;
}
.px-stop {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(56,132,255,0.08);
  color: var(--ink-3);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}
.px-stop.done {
  background: rgba(16,185,129,0.14);
  color: var(--c-emerald);
}
.px-stop.active {
  background: linear-gradient(135deg, #3884ff, #06b6d4);
  color: white;
  box-shadow: 0 0 0 3px rgba(56,132,255,0.18);
}
.px-stop-line {
  flex: 0 0 14px;
  height: 1px;
  background: linear-gradient(90deg, rgba(56,132,255,0.3), rgba(56,132,255,0.1));
}

.px-j-pills {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.px-j-pills span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(16,185,129,0.10);
  color: var(--c-emerald);
  font-weight: 500;
}

/* ---- FOOTNOTE ---- */
.px-footnote {
  position: relative; z-index: 2;
  max-width: 900px; margin: 56px auto 0;
  text-align: center;
  font-size: 13px; color: var(--ink-4);
  font-style: italic;
}
.px-footnote a { color: var(--c-blue); text-decoration: none; }
.px-footnote a:hover { text-decoration: underline; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .px-journeys { grid-template-columns: 1fr 1fr; }
  .px-j3 { grid-column: 1 / -1; max-width: 560px; margin: 0 auto; transform: translateY(8px); }
  .px-j3:hover { transform: translateY(-2px); }
  .px-connectors { display: none; }
}
@media (max-width: 720px) {
  .pricing-v2 { padding: 90px 20px 80px; }
  .px-trust {
    flex-direction: column; align-items: stretch; text-align: center;
    padding: 22px;
    gap: 16px;
  }
  .px-trust-left { flex-direction: column; gap: 14px; }
  .px-trust-cta { width: 100%; justify-content: center; }
  .px-social { padding: 18px 16px; }
  .px-social-routes { gap: 8px; }
  .px-flag-chip { font-size: 12.5px; padding: 6px 10px; }
  .px-journeys { grid-template-columns: 1fr; gap: 22px; }
  .px-j1, .px-j2, .px-j3 { transform: none; }
  .px-j1:hover, .px-j2:hover, .px-j3:hover { transform: translateY(-6px); }
  .px-journey { padding: 30px 24px 26px; }
  .px-j-icon { width: 72px; height: 72px; margin-bottom: 18px; }
  .px-j-title { font-size: 26px; }
}


/* =================== FINAL CTA =================== */
.final-cta {
  position: relative;
  padding: 120px 36px;
  margin: 60px 36px;
  background: linear-gradient(135deg, #0b1530 0%, #1e3a8a 50%, #0066ff 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  color: white;
}
.cta-aurora {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(6,182,212,0.4), transparent 60%),
    radial-gradient(ellipse 70% 60% at 80% 70%, rgba(16,185,129,0.35), transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(14,165,233,0.4), transparent 70%);
  animation: auroraShift 12s ease-in-out infinite alternate;
}
@keyframes auroraShift {
  0%   { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.1) rotate(3deg); }
}
.cta-content {
  position: relative; max-width: 880px; margin: 0 auto; text-align: center;
}
.glass-pill.light {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
}
.glass-pill.light .tag-num {
  background: rgba(255,255,255,0.18); color: rgba(255,255,255,0.95);
}
.cta-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 500; line-height: 1.05;
  letter-spacing: -0.04em;
  color: white;
  margin: 24px 0 24px;
}
.cta-title .title-grad {
  background: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-sub {
  font-size: 18px; line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 600px; margin: 0 auto 40px;
}
.cta-sub em { font-style: italic; color: white; font-weight: 500; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.final-cta .btn-primary {
  background: white; color: var(--ink-1);
  box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 14px 36px -8px rgba(0,0,0,0.4);
}
.final-cta .btn-primary:hover { background: white; }
.final-cta .btn-ghost {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
}
.final-cta .btn-ghost:hover {
  background: rgba(255,255,255,0.16);
}

/* =================== FOOTER =================== */
.footer {
  padding: 80px 36px 36px;
  background: linear-gradient(180deg, var(--bg-base) 0%, #e8f0fc 100%);
  border-top: 1px solid var(--line);
}
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 60px;
}
.foot-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.foot-logo img {
  width: 40px; height: 40px;
  background: white; border-radius: 10px; padding: 4px;
}
.foot-logo strong {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 600;
  color: var(--ink-1); letter-spacing: -0.02em;
}
.foot-tagline {
  font-family: 'Fraunces', serif;
  font-size: 18px; font-style: italic;
  color: var(--ink-2); margin-bottom: 14px;
}
.foot-sub { font-size: 13px; color: var(--ink-4); line-height: 1.6; max-width: 360px; }

.foot-col h5 {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-1); font-weight: 600; margin-bottom: 18px;
}
.foot-col p, .foot-col a {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-3);
  padding: 6px 0;
  transition: color 0.2s ease;
}
.foot-col a:hover { color: var(--c-cyan); }
.foot-col span { width: 16px; flex-shrink: 0; }

.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: var(--ink-4);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1100px) {
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .res-card.wide { grid-column: span 2; }
  .doc-track { grid-template-columns: repeat(3, 1fr); }
  .eco-grid { grid-template-columns: repeat(2, 1fr); }
  .comm-cards { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .ninety-grid, .employers-content, .jobs-card { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .globe-stage { right: -20%; width: 100vw; opacity: 0.5; }
  .floating-card { display: none; }
  .shift-grid { grid-template-columns: 1fr; }
  .shift-arrow { transform: rotate(90deg); margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav { padding: 10px 14px; width: calc(100% - 24px); }
  .nav-links { display: none; }
  .nav-cta span { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 110px 20px 60px; min-height: auto; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .widget-section, .ecosystem, .ninety, .community, .jobs, .employers, .pricing { padding: 80px 20px; }
  .widget-shell { padding: 28px 20px; border-radius: var(--radius-lg); }
  .country-row { grid-template-columns: 1fr; gap: 14px; }
  .route-bridge { transform: rotate(90deg); margin: 4px auto; }
  .step-meta { flex-direction: column; align-items: flex-start; gap: 10px; }
  .results-grid { grid-template-columns: 1fr; }
  .res-card.wide { grid-column: span 1; }
  .doc-track { grid-template-columns: 1fr 1fr; }
  .eco-grid, .comm-cards { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .differentiator, .pricing-card, .jobs-card { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .final-cta { margin: 40px 16px; padding: 60px 24px; }
  .shift-section { padding: 60px 20px; }
  .differentiator { padding: 32px 20px; }
  .emp-stats { grid-template-columns: 1fr; }
  .emp-chart-row { grid-template-columns: 80px 1fr 40px; gap: 10px; font-size: 12px; }
  .results-route { flex-wrap: wrap; }
  .results-arc { display: none; }
  .marquee-track span { font-size: 16px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-header { flex-direction: column; align-items: flex-start; }
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.9, 0.3, 1), transform 0.9s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed; top: 70px; left: 12px; right: 12px;
  z-index: 99;
  padding: 20px;
  flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; animation: dropdownIn 0.3s ease; }
.mobile-nav a {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 15px; font-weight: 500;
  color: var(--ink-2);
  transition: background 0.2s ease;
}
.mobile-nav a:hover { background: rgba(6,182,212,0.08); }
