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

:root {
  --ink: #06101f;
  --ink-deep: #040d18;
  --ink-mid: #0a1830;
  --ink-soft: #0f2040;
  --ink-card: #132445;
  --blue: #1a56db;
  --blue-hover: #2563eb;
  --blue-bright: #3b82f6;
  --sky: #38bdf8;
  --sky-soft: rgba(56, 189, 248, 0.12);
  --sky-line: rgba(56, 189, 248, 0.22);
  --white: #eef4ff;
  --display-white: #f2f7ff;
  --display-blue-a: #2a7bff;
  --display-blue-b: #27b7ff;
  --white-80: rgba(238, 244, 255, 0.8);
  --white-70: rgba(238, 244, 255, 0.7);
  --white-55: rgba(238, 244, 255, 0.55);
  --white-35: rgba(238, 244, 255, 0.35);
  --white-18: rgba(238, 244, 255, 0.18);
  --white-10: rgba(238, 244, 255, 0.1);
  --white-06: rgba(238, 244, 255, 0.06);
  --border: rgba(238, 244, 255, 0.08);
  --border-up: rgba(238, 244, 255, 0.14);
  --green: #22c55e;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --max: 1280px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body.premium-home {
  margin: 0;
  min-height: 100%;
  background: var(--ink);
  color: var(--white);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.premium-home a {
  color: inherit;
  text-decoration: none;
}

body.premium-home img,
body.premium-home svg {
  display: block;
}

body.premium-home :focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 4px;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.82);
  }
}

@keyframes float-card {
  0%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-12px);
  }
  70% {
    transform: translateY(-5px);
  }
}

@keyframes shimmer-line {
  0%, 100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.8;
  }
}

.nav-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6, 16, 31, 0.8);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.nav-shell.scrolled {
  background: rgba(6, 16, 31, 0.96);
  border-bottom-color: var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.nav-inner {
  max-width: var(--max);
  height: 72px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.nav-logo-img {
  width: auto;
  height: 44px;
  image-rendering: -webkit-optimize-contrast;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex: 1 1 auto;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--white-55);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.nav-cta,
.btn-primary,
.route-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border-radius: var(--radius-sm);
  border: 0;
  background: var(--blue);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 22px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.18s ease, box-shadow 0.2s ease;
}

.nav-cta {
  min-height: 38px;
  padding: 9px 18px;
  font-size: 13.5px;
}

.nav-cta:hover,
.btn-primary:hover,
.route-card-cta:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(26, 86, 219, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-up);
  color: var(--white-70);
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn-secondary:hover {
  color: var(--white);
  border-color: var(--white-18);
  background: var(--white-06);
}

.lang-wrap {
  position: relative;
}

.lang-btn {
  min-height: 38px;
  border: 1px solid var(--border-up);
  border-radius: var(--radius-sm);
  background: var(--white-06);
  color: var(--white-55);
  padding: 8px 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 12.5px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-btn:hover {
  color: var(--white);
  background: var(--white-10);
}

.lang-drop {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 164px;
  padding: 6px;
  border: 1px solid var(--border-up);
  border-radius: var(--radius-md);
  background: #0a1830;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.48);
}

.lang-drop.open {
  display: block;
}

.lang-opt {
  display: block;
  padding: 9px 10px;
  border-radius: 7px;
  color: var(--white-55);
  font-size: 13px;
}

.lang-opt:hover,
.lang-opt.on {
  color: var(--sky);
  background: rgba(56, 189, 248, 0.08);
}

.ham {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-up);
  border-radius: var(--radius-sm);
  background: var(--white-06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.ham span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--white-70);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.ham.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ham.open span:nth-child(2) {
  opacity: 0;
}

.ham.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mob-nav {
  display: none;
  position: fixed;
  inset: 72px 0 0;
  z-index: 999;
  padding: 30px 24px;
  background: rgba(4, 13, 24, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.mob-nav.open {
  display: flex;
  flex-direction: column;
}

.mob-nav a {
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  color: var(--white-80);
  font-size: 17px;
}

.mob-nav .mm-cta {
  margin-top: 18px;
  padding: 14px 20px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--blue);
  color: #fff;
  text-align: center;
}

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
  background: var(--ink-deep);
}

.hero::after {
  content: "";
  position: absolute;
  right: -11vw;
  top: 22%;
  width: min(52vw, 740px);
  aspect-ratio: 1.18;
  pointer-events: none;
  background:
    linear-gradient(132deg, rgba(57, 130, 255, 0.22), rgba(5, 14, 27, 0.02) 60%),
    linear-gradient(42deg, transparent 0 21%, rgba(255, 255, 255, 0.055) 21% 33%, transparent 33% 100%);
  clip-path: polygon(50% 0, 100% 24%, 82% 78%, 50% 100%, 18% 78%, 0 24%);
  opacity: 0.32;
  filter: blur(0.1px);
  display: none;
}

.hero-bg,
.hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(3, 11, 22, 0.98) 0%, rgba(4, 13, 25, 0.98) 45%, rgba(8, 26, 55, 0.78) 100%),
    radial-gradient(ellipse 900px 700px at 75% 45%, rgba(26, 86, 219, 0.2) 0%, transparent 65%),
    radial-gradient(ellipse 520px 520px at 15% 75%, rgba(56, 189, 248, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 420px 420px at 92% 92%, rgba(26, 86, 219, 0.1) 0%, transparent 58%);
}

.hero-dots {
  background-image: radial-gradient(circle, rgba(238, 244, 255, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-gem-watermark {
  position: absolute;
  z-index: 1;
  right: max(-6vw, calc((100vw - var(--max)) / 2 - 330px));
  top: 50%;
  width: min(600px, 50vw);
  height: auto;
  transform: translateY(-50%);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 104px 40px 86px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr);
  gap: 76px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
  max-width: 100%;
  animation: fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 6px 16px;
  border: 1px solid var(--sky-line);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.09);
  color: var(--sky);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  max-width: 100%;
}

.hero-badge span:last-child {
  min-width: 0;
  flex: 1 1 auto;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky);
  animation: pulse-dot 2s ease infinite;
}

.brand-line {
  margin: 0 0 12px;
  color: transparent;
  background: linear-gradient(110deg, var(--blue-bright) 0%, var(--sky) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 32px;
  font-style: italic;
  line-height: 1.15;
}

.hero-display {
  max-width: 760px;
  margin: 0 0 22px;
  color: var(--display-white);
  font-family: "Syne", "DM Sans", system-ui, sans-serif;
  font-size: clamp(64px, 6.55vw, 108px);
  font-weight: 800;
  line-height: 0.91;
  letter-spacing: 0;
  text-wrap: balance;
  -webkit-text-fill-color: var(--display-white);
  text-shadow: 0 0 1px rgba(242, 247, 255, 0.14);
}

.hero-display span {
  color: transparent;
  background: linear-gradient(100deg, var(--display-blue-a) 0%, #288fff 44%, var(--display-blue-b) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1,
h2,
h3 {
  color: var(--white);
}

.premium-home h1 {
  max-width: 620px;
  margin: 0 0 18px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0;
  color: var(--white);
}

.positioning-stmt {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 620px;
  margin: 0 0 26px;
  padding: 17px 20px 17px 22px;
  border: 1px solid rgba(43, 124, 255, 0.28);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgba(27, 79, 216, 0.15), rgba(8, 24, 48, 0.42)),
    rgba(27, 79, 216, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 20px 54px rgba(0, 0, 0, 0.16);
  color: var(--white-80);
  font-size: 14.5px;
  line-height: 1.58;
}

.positioning-stmt::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 21px;
  margin-top: 2px;
  clip-path: polygon(50% 0, 86% 16%, 78% 66%, 50% 100%, 22% 66%, 14% 16%);
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.95), rgba(26, 86, 219, 0.88));
  box-shadow: 0 0 22px rgba(56, 189, 248, 0.28);
}

.positioning-text {
  min-width: 0;
}

.positioning-stmt strong {
  color: var(--white);
  font-weight: 600;
}

.hero-sub {
  max-width: 570px;
  margin: 0 0 32px;
  color: var(--white-55);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.72;
}

.hero-sub strong {
  color: var(--white-80);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.trust-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 20px;
  max-width: 650px;
  margin: 0 0 30px;
  color: rgba(238, 244, 255, 0.36);
  font-size: 12.5px;
}

.trust-micro span {
  position: relative;
  padding-left: 10px;
}

.trust-micro span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  max-width: 650px;
}

.trust-pill {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--white-55);
  font-size: 13px;
}

.trust-check {
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 50%;
  background: rgba(26, 86, 219, 0.16);
  flex: 0 0 auto;
}

.trust-check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 6px;
  height: 9px;
  border: solid var(--sky);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.hero-visual {
  position: relative;
  isolation: isolate;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 540px;
  animation: fade-up 1s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.floating-route-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 408px;
  min-height: 456px;
  padding: 0;
  border: 1px solid rgba(72, 138, 255, 0.28);
  border-top-color: rgba(56, 189, 248, 0.55);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(18, 37, 66, 0.88), rgba(8, 21, 39, 0.86)),
    radial-gradient(ellipse 330px 220px at 87% 0%, rgba(42, 120, 255, 0.2), transparent 62%);
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: visible;
  animation: float-card 7.5s ease-in-out infinite;
  margin-right: 38px;
}

.floating-route-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-bright), var(--sky), transparent);
}

.hv-main {
  position: relative;
  z-index: 1;
  padding: 36px 32px 34px;
}

.hv-card-mark {
  position: absolute;
  z-index: 0;
  top: -8px;
  right: -8px;
  width: 110px;
  height: 110px;
  object-fit: contain;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}

.hv-tag {
  position: relative;
  margin-bottom: 18px;
  padding-left: 12px;
  color: rgba(56, 189, 248, 0.88);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hv-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sky);
}

.hv-headline {
  margin: 0 0 8px;
  color: var(--white);
  font-family: "Syne", "DM Sans", system-ui, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.14;
}

.hv-sub {
  max-width: 320px;
  margin: 0 0 28px;
  color: rgba(238, 244, 255, 0.42);
  font-size: 13.5px;
  line-height: 1.65;
}

.hv-items {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.hv-item {
  min-height: 54px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 10px 13px;
  border: 1px solid rgba(238, 244, 255, 0.08);
  border-radius: 10px;
  background: rgba(238, 244, 255, 0.055);
}

.hv-item-badge {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(72, 138, 255, 0.32);
  border-radius: 8px;
  background: rgba(26, 86, 219, 0.24);
  color: var(--sky);
  font-size: 11px;
  font-weight: 700;
}

.hv-item strong {
  color: rgba(238, 244, 255, 0.7);
  font-size: 13.5px;
  font-weight: 600;
}

.hv-item em {
  justify-self: end;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.09);
  color: var(--sky);
  padding: 5px 10px;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  white-space: nowrap;
}

.hv-cta {
  min-height: 50px;
  border-radius: 8px;
  font-size: 14px;
  justify-content: space-between;
}

.hv-float {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(238, 244, 255, 0.09);
  border-radius: 12px;
  background: rgba(24, 42, 74, 0.9);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hv-float-1 {
  top: -26px;
  right: -18px;
  width: 96px;
  min-height: 90px;
  padding: 18px 15px;
}

.hv-float-1 strong {
  display: block;
  color: var(--sky);
  font-family: "Syne", "DM Sans", system-ui, sans-serif;
  font-size: 19px;
  line-height: 1;
}

.hv-float-1 span {
  display: block;
  margin-top: 8px;
  color: rgba(238, 244, 255, 0.42);
  font-size: 11px;
  line-height: 1.35;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.1);
}

.route-card-top,
.route-step,
.stats-inner,
.what-inner,
.split-inner,
.final-inner {
  display: flex;
}

.route-card-top {
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.route-card-kicker {
  color: var(--sky);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-card-pill {
  border: 1px solid var(--sky-line);
  border-radius: 999px;
  background: var(--sky-soft);
  color: var(--sky);
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.route-card-heading {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  font-family: "DM Serif Display", Georgia, serif;
  color: var(--white);
  font-size: 30px;
  line-height: 1.16;
}

.route-card-copy {
  position: relative;
  z-index: 1;
  margin: 0 0 24px;
  color: var(--white-55);
  font-size: 14px;
  line-height: 1.65;
}

.route-steps {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.route-step {
  align-items: center;
  gap: 12px;
  padding: 12px 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white-06);
}

.route-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(26, 86, 219, 0.18);
  border: 1px solid rgba(26, 86, 219, 0.28);
  color: var(--sky);
  font-family: "Syne", "DM Sans", system-ui, sans-serif;
  font-size: 14px;
  flex: 0 0 auto;
}

.route-step strong {
  display: block;
  color: var(--white-80);
  font-size: 13.5px;
  font-weight: 500;
}

.route-step small {
  display: block;
  color: var(--white-35);
  font-size: 12px;
  line-height: 1.45;
}

.route-card-cta {
  position: relative;
  z-index: 1;
  width: 100%;
}

.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--ink-mid);
}

.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 58px 40px 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-cell {
  padding: 0 22px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-cell:last-child {
  border-right: 0;
}

.stat-value {
  margin-bottom: 7px;
  color: var(--white);
  font-family: "Syne", "DM Sans", system-ui, sans-serif;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.stat-value .hi {
  color: var(--sky);
  font-size: 22px;
}

.stat-name {
  color: var(--white-35);
  font-size: 13.5px;
}

.free-strip {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px 52px;
}

.free-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.65fr) auto;
  align-items: center;
  gap: 30px;
  min-height: 142px;
  padding: 32px 36px;
  border: 1px solid rgba(238, 244, 255, 0.09);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(19, 36, 69, 0.72), rgba(8, 20, 39, 0.86)),
    radial-gradient(ellipse 360px 150px at 8% 25%, rgba(56, 189, 248, 0.05), transparent 62%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 22px 72px rgba(0, 0, 0, 0.18);
}

.free-head {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.free-icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.09);
  color: var(--green);
  font-family: "Syne", "DM Sans", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.free-head strong {
  display: block;
  color: var(--white);
  font-size: 21px;
  line-height: 1.25;
}

.free-head p,
.free-copy {
  margin: 0;
  color: var(--white-35);
  line-height: 1.65;
}

.free-head p {
  margin-top: 5px;
  font-size: 14px;
}

.free-copy {
  position: relative;
  padding-left: 30px;
  border-left: 1px solid var(--border);
  color: var(--white-55);
  font-size: 17px;
  font-weight: 300;
}

.free-copy strong {
  color: var(--white-80);
}

.free-panel a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--sky);
  font-weight: 700;
  white-space: nowrap;
}

.free-panel a span {
  font-weight: 500;
}

.section,
.who-section,
.what-section,
.faq-section,
.final-cta {
  padding: 104px 0;
}

.what-section,
.who-section,
.faq-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--ink-mid);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}

.tag {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--sky);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.premium-home h2 {
  max-width: 790px;
  margin: 0 0 16px;
  font-family: "Syne", "DM Sans", system-ui, sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.premium-home h3 {
  margin: 0 0 9px;
  font-family: "Syne", "DM Sans", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: 0;
}

.section-lead {
  max-width: 620px;
  margin: 0 0 56px;
  color: var(--white-70);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.78;
}

.provider-examples {
  max-width: 620px;
  margin: -34px 0 0;
  color: var(--white-55);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.72;
}

.what-inner,
.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.disclosure-card,
.route-note {
  border: 1px solid var(--border-up);
  border-radius: var(--radius-xl);
  background: var(--ink-soft);
  padding: 34px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.disclosure-card p,
.route-note p {
  margin: 0 0 14px;
  color: var(--white-70);
  font-size: 14px;
  line-height: 1.72;
}

.disclosure-card p:last-of-type,
.route-note p:last-child {
  margin-bottom: 0;
}

.disclosure-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--sky);
  font-size: 14px;
  font-weight: 500;
}

.how-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.how-steps::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 9%;
  right: 9%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 86, 219, 0.45), rgba(56, 189, 248, 0.45), transparent);
  animation: shimmer-line 3s ease infinite;
}

.how-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-num {
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(26, 86, 219, 0.4);
  border-radius: 50%;
  background: var(--ink);
  color: var(--sky);
  font-family: "Syne", "DM Sans", system-ui, sans-serif;
  font-size: 18px;
}

.how-step p,
.svc-card p,
.who-card p,
.why-list p,
.faq p,
.final-cta p,
.footer p {
  color: var(--white-55);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.7;
}

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

.svc-card {
  min-height: 230px;
  padding: 34px 30px;
  background: var(--ink-mid);
  transition: background 0.25s ease, transform 0.25s ease;
}

.svc-card:hover {
  background: var(--ink-soft);
}

.svc-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--sky);
  font-size: 13px;
  font-weight: 500;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.who-card {
  min-height: 198px;
  padding: 30px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--ink-soft);
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.who-card:hover {
  border-color: rgba(56, 189, 248, 0.28);
  background: var(--ink-mid);
  transform: translateY(-4px);
}

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

.why-list article {
  padding: 23px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--ink-mid);
}

.link-section {
  border-top: 1px solid var(--border);
}

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

.link-grid a {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white-06);
  color: var(--white-70);
  font-size: 13.5px;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.link-grid a:hover {
  color: var(--white);
  border-color: var(--sky-line);
  background: rgba(56, 189, 248, 0.08);
}

.provider-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--ink-mid);
}

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

.faq {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--ink-soft);
  padding: 22px 24px;
}

.faq summary {
  cursor: pointer;
  list-style: none;
}

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

.faq h3 {
  font-size: 18px;
}

.faq p {
  margin: 10px 0 0;
}

.final-cta {
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 680px 320px at 50% 0%, rgba(26, 86, 219, 0.18), transparent 65%),
    linear-gradient(180deg, rgba(15, 32, 64, 0.5), transparent);
  pointer-events: none;
}

.final-inner {
  position: relative;
  z-index: 1;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.final-inner h2,
.final-inner p {
  margin-left: auto;
  margin-right: auto;
}

.final-inner p {
  max-width: 560px;
  margin-top: 0;
  margin-bottom: 30px;
  color: var(--white-70);
  font-size: 16px;
}

.footer {
  border-top: 1px solid var(--border);
  background: var(--ink-deep);
  padding: 70px 0;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.3fr repeat(4, minmax(0, 1fr));
  gap: 38px;
}

.footer-logo {
  width: auto;
  height: 42px;
  margin-bottom: 20px;
}

.footer h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin: 0 0 10px;
  color: var(--white-55);
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--sky);
}

@media (max-width: 1120px) {
  .nav-links {
    display: none;
  }

  .ham {
    display: inline-flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 110px;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .floating-route-card {
    max-width: 520px;
    margin-right: 0;
  }

  .who-grid,
  .link-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 860px) {
  .nav-inner,
  .hero-inner,
  .section-inner,
  .stats-inner,
  .free-strip,
  .footer-grid {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-display {
    font-size: clamp(54px, 14vw, 74px);
  }

  .premium-home h1 {
    font-size: 18px;
  }

  .premium-home h2 {
    font-size: 38px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .free-panel {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 26px;
  }

  .free-copy {
    padding-left: 0;
    border-left: 0;
    font-size: 15.5px;
  }

  .hero-trust,
  .stats-inner,
  .what-inner,
  .split-inner,
  .how-steps,
  .services-grid,
  .who-grid,
  .faq-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .how-steps::before {
    display: none;
  }

  .stat-cell {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .stat-cell:last-child {
    border-bottom: 0;
  }

  .section,
  .who-section,
  .what-section,
  .faq-section,
  .final-cta {
    padding: 78px 0;
  }
}

@media (max-width: 560px) {
  .nav-inner {
    height: 68px;
  }

  .nav-logo-img {
    height: 38px;
  }

  .nav-cta,
  .lang-wrap {
    display: none;
  }

  .mob-nav {
    top: 68px;
  }

  .hero {
    padding-top: 68px;
  }

  .hero-inner {
    padding-top: 72px;
    padding-bottom: 64px;
  }

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

  .hero-badge {
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    font-size: 10px;
    letter-spacing: 0.07em;
    line-height: 1.45;
    padding: 7px 12px;
  }

  .hero-badge span:last-child {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .badge-dot {
    margin-top: 5px;
  }

  .hero-display {
    max-width: 100%;
    font-size: clamp(32px, 9.1vw, 38px);
    line-height: 0.96;
    margin-bottom: 18px;
  }

  .premium-home h1 {
    max-width: 100%;
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .positioning-stmt,
  .hero-sub {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .positioning-stmt {
    display: block;
    padding: 18px 18px 18px 54px;
    font-size: 15px;
    line-height: 1.58;
  }

  .positioning-stmt::before {
    position: absolute;
    left: 22px;
    top: 22px;
    margin-top: 0;
  }

  .positioning-text {
    display: block;
  }

  .positioning-stmt strong {
    display: block;
    margin-bottom: 8px;
  }

  .positioning-text > span {
    display: block;
    color: var(--white-70);
  }

  .premium-home h2 {
    font-size: 32px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .floating-route-card {
    min-height: 430px;
    margin-right: 0;
  }

  .hv-main {
    padding: 30px 22px 30px;
  }

  .hv-headline {
    font-size: 23px;
  }

  .hv-item {
    grid-template-columns: 34px 1fr;
  }

  .hv-item em {
    grid-column: 2;
    justify-self: start;
  }

  .hv-float-1 {
    display: none;
  }

  .free-strip {
    padding-bottom: 38px;
  }

  .free-panel {
    padding: 24px 22px;
  }

  .free-head {
    align-items: flex-start;
  }

  .free-head strong {
    font-size: 18px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
