:root {
  --primary: #4b65f0;
  --primary-hover: #3d56e0;
  --brand-end: #804de3;
  --brand-soft: #6878ff;
  --ink: #1e293b;
  --ink-soft: #334155;
  --navy: #0f172a;
  --surface: #eef2ff;
  --surface-deep: #e0e7ff;
  --white: #ffffff;
  --muted: #64748b;
  --line: rgba(148, 163, 184, 0.35);
  --mist: #e8ecf6;
  --ok: #066f1e;
  --whatsapp: #25d366;
  --gradient-brand: linear-gradient(135deg, #4b65f0 0%, #6d5aef 48%, #804de3 100%);
  --gradient-soft: linear-gradient(145deg, rgba(75, 101, 240, 0.14), rgba(128, 77, 227, 0.1));
  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.55);
  --blur: 18px;
  --shadow: 0 18px 50px rgba(44, 62, 80, 0.08);
  --shadow-lg: 0 28px 70px rgba(75, 101, 240, 0.18);
  --shadow-glow: 0 0 0 1px rgba(75, 101, 240, 0.12), 0 20px 50px rgba(75, 101, 240, 0.18);
  --radius: 22px;
  --radius-sm: 14px;
  --header: 76px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Outfit", "Manrope", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 180ms;
  --dur: 280ms;
  --dur-slow: 520ms;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 12px);
  overflow-x: clip;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(75, 101, 240, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 45% at 95% 5%, rgba(128, 77, 227, 0.16), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(75, 101, 240, 0.08), transparent 55%),
    linear-gradient(180deg, #f4f6ff 0%, var(--surface) 40%, #f8fafc 100%);
  background-attachment: fixed;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: clip;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 200;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 10px;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(1140px, calc(100vw - 32px));
  margin-inline: auto;
}

.grid {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.cols-2 {
  grid-template-columns: 1fr 1fr;
}

.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.section {
  padding: 88px 0;
  position: relative;
}

.section--tint {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(238, 242, 255, 0.65));
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(75, 101, 240, 0.22);
  background: rgba(255, 255, 255, 0.7);
  color: var(--primary);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(75, 101, 240, 0.08);
}

.section-kicker--light {
  border-color: rgba(199, 210, 254, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #c7d2fe;
  box-shadow: none;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 14px;
}

.section-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 14px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 14px 22px;
  transition:
    transform var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out),
    filter var(--dur-fast) ease,
    background var(--dur) ease,
    border-color var(--dur) ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  color: #fff;
  background: var(--gradient-brand);
  background-size: 160% 160%;
  box-shadow: 0 14px 32px rgba(75, 101, 240, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
  filter: brightness(1.06);
  box-shadow: 0 18px 40px rgba(128, 77, 227, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

html.js-motion .btn-primary {
  animation: btn-sheen 4.5s ease-in-out infinite;
}

.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.btn-ghost-light {
  color: #eef2ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(199, 210, 254, 0.32);
  backdrop-filter: blur(10px);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(199, 210, 254, 0.5);
}

.btn-dark {
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #1e1b4b);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
}

.header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background var(--dur) ease, border-color var(--dur) ease, box-shadow var(--dur) ease;
}

.header.is-scrolled {
  background: rgba(15, 23, 42, 0.92);
  border-bottom-color: rgba(148, 163, 184, 0.18);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.28);
}

.nav {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  height: 48px;
  width: auto;
  padding: 7px 9px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.55),
    0 10px 28px rgba(15, 23, 42, 0.35);
  object-fit: contain;
}

.header .brand-mark {
  /* El PNG es oscuro/teal: la placa blanca lo hace legible sobre el nav */
  background: #ffffff;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  color: #f8fafc;
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand-copy span {
  color: rgba(226, 232, 240, 0.62);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #f8fafc;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

.nav-links a {
  color: rgba(226, 232, 240, 0.82);
  font-weight: 700;
  font-size: 0.84rem;
  padding: 8px 9px;
  border-radius: 10px;
  white-space: nowrap;
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease;
}

.nav-cta-desktop {
  flex-shrink: 0;
  padding: 11px 16px;
  font-size: 0.88rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: rgba(226, 232, 240, 0.72);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 7px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.lang-btn:hover {
  color: #fff;
}

.lang-btn.is-active {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 8px 18px rgba(75, 101, 240, 0.28);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
  background: rgba(75, 101, 240, 0.28);
}

.nav-cta-mobile {
  display: none;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  overflow: hidden;
  color: #eef2ff;
  padding: 72px 0 110px;
  isolation: isolate;
  background:
    radial-gradient(ellipse 55% 45% at 15% 20%, rgba(75, 101, 240, 0.45), transparent 60%),
    radial-gradient(ellipse 50% 40% at 88% 10%, rgba(128, 77, 227, 0.42), transparent 55%),
    radial-gradient(ellipse 40% 35% at 70% 80%, rgba(99, 102, 241, 0.25), transparent 50%),
    linear-gradient(165deg, #070b1a 0%, #0f172a 28%, #1e1b4b 68%, #312e81 100%);
}

.hero-aurora,
.hero-grid,
.hero-orb {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.hero-aurora {
  z-index: 0;
  background:
    conic-gradient(from 210deg at 70% 40%, rgba(75, 101, 240, 0.18), transparent 40%, rgba(128, 77, 227, 0.2), transparent 75%);
  opacity: 0.85;
  filter: blur(40px);
}

html.js-motion .hero-aurora {
  animation: aurora-drift 18s ease-in-out infinite alternate;
}

.hero-grid {
  z-index: 1;
  background-image:
    linear-gradient(rgba(165, 180, 252, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(165, 180, 252, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  opacity: 0.55;
}

.hero-orb {
  z-index: 1;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.55;
}

.hero-orb--a {
  top: -60px;
  right: 8%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(128, 77, 227, 0.55), transparent 68%);
}

.hero-orb--b {
  bottom: 5%;
  left: -40px;
  background: radial-gradient(circle, rgba(75, 101, 240, 0.5), transparent 70%);
}

html.js-motion .hero-orb--a {
  animation: orb-float 9s ease-in-out infinite;
}

html.js-motion .hero-orb--b {
  animation: orb-float 11s ease-in-out infinite reverse;
}

.hero-layout {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: 40px;
}

.hero-copy {
  position: relative;
}

html.js-motion .hero-copy > * {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-in 0.7s var(--ease-out) forwards;
}

html.js-motion .hero-copy > *:nth-child(1) { animation-delay: 0.06s; }
html.js-motion .hero-copy > *:nth-child(2) { animation-delay: 0.16s; }
html.js-motion .hero-copy > *:nth-child(3) { animation-delay: 0.26s; }
html.js-motion .hero-copy > *:nth-child(4) { animation-delay: 0.36s; }
html.js-motion .hero-copy > *:nth-child(5) { animation-delay: 0.46s; }

.hero h1 {
  font-family: var(--display);
  color: #f8fafc;
  font-size: clamp(2.2rem, 5vw, 3.85rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 0 0 18px;
  text-wrap: balance;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, #e0e7ff 0%, #a5b4fc 40%, #c4b5fd 70%, #ddd6fe 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

html.js-motion .hero h1 em {
  animation: text-shimmer 6s ease-in-out infinite;
}

.hero-lead {
  color: rgba(226, 232, 240, 0.88);
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  max-width: 36rem;
  margin-bottom: 28px;
  line-height: 1.65;
}

.hero-cta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  border: 1px solid rgba(199, 210, 254, 0.28);
  background: rgba(255, 255, 255, 0.07);
  color: #c7d2fe;
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  transition: border-color var(--dur-fast) ease, background var(--dur-fast) ease, transform var(--dur-fast) ease;
}

.pill:hover {
  border-color: rgba(199, 210, 254, 0.5);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.hero-panel {
  position: relative;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(199, 210, 254, 0.28);
  border-radius: 28px;
  padding: 26px;
  backdrop-filter: blur(var(--blur)) saturate(1.25);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(1.25);
  box-shadow:
    0 30px 80px rgba(15, 23, 42, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.hero-spotlight {
  position: absolute;
  width: 280px;
  height: 280px;
  top: -80px;
  right: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(128, 77, 227, 0.55), rgba(75, 101, 240, 0.2) 45%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}

html.js-motion .hero-spotlight {
  animation: spotlight-pulse 5.5s ease-in-out infinite;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  background: radial-gradient(circle, rgba(165, 180, 252, 0.35), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

html.js-motion .hero-panel {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  animation: hero-panel-in 0.85s var(--ease-out) 0.28s forwards;
}

.hero-kpi {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.hero-kpi__item {
  padding: 10px 8px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(165, 180, 252, 0.16);
  text-align: center;
}

.hero-kpi__item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, #e0e7ff, #a5b4fc 45%, #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.hero-kpi__item span {
  display: block;
  margin-top: 2px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(199, 210, 254, 0.72);
}

.hero-panel h2 {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-list {
  position: relative;
  z-index: 1;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(232, 248, 251, 0.9);
  font-size: 0.93rem;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.28);
  border: 1px solid rgba(165, 180, 252, 0.12);
  transition:
    background var(--dur) ease,
    border-color var(--dur) ease,
    transform var(--dur) ease,
    box-shadow var(--dur) ease;
}

.hero-list li:hover,
.hero-list li.is-active {
  background: rgba(75, 101, 240, 0.28);
  border-color: rgba(165, 180, 252, 0.42);
  transform: translateX(4px);
  box-shadow: 0 0 0 1px rgba(75, 101, 240, 0.2), 0 12px 28px rgba(75, 101, 240, 0.18);
}

.hero-list li.is-active b {
  color: #e0e7ff;
  text-shadow: 0 0 12px rgba(165, 180, 252, 0.65);
}

.hero-list b {
  color: #a5b4fc;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  min-width: 1.6rem;
  transition: color var(--dur) ease, text-shadow var(--dur) ease;
}

.hero-cta::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 50%;
  width: 160px;
  height: 160px;
  transform: translate(-30%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 101, 240, 0.45), rgba(128, 77, 227, 0.18) 45%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

html.js-motion .hero-cta::before {
  animation: spotlight-pulse 4.8s ease-in-out infinite;
}

.hero-cta .btn {
  position: relative;
  z-index: 1;
}

.btn-magnetic {
  will-change: transform;
  transition:
    transform var(--dur-fast) var(--ease-out),
    box-shadow var(--dur) var(--ease-out),
    filter var(--dur-fast) ease;
}

/* ——— Stats (glass strip) ——— */
.stats {
  position: relative;
  z-index: 5;
  margin-top: -48px;
  background: transparent;
  border: 0;
  padding: 0 0 8px;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat {
  padding: 22px 20px;
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) ease;
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}

.stat span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

/* ——— Cards ——— */
.card {
  position: relative;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(44, 62, 80, 0.06);
  padding: 26px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  transition:
    transform var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out),
    border-color var(--dur) ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity var(--dur) ease;
}

.card::after {
  content: "";
  position: absolute;
  inset: auto -20% -40%;
  height: 70%;
  background: radial-gradient(circle, rgba(75, 101, 240, 0.16), transparent 65%);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) ease;
}

.card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 0 0 1px rgba(75, 101, 240, 0.18),
    0 22px 50px rgba(75, 101, 240, 0.2);
  border-color: rgba(165, 180, 252, 0.85);
}

.card:hover::before {
  opacity: 1;
}

.card:hover::after {
  opacity: 1;
}

.card h3,
.card b {
  display: block;
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--navy);
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.icon-dot {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--gradient-brand);
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 16px;
  box-shadow: 0 10px 22px rgba(75, 101, 240, 0.3);
}

.bento {
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 18px;
}

.bento .card:first-child {
  grid-row: span 2;
  background:
    var(--gradient-soft),
    rgba(255, 255, 255, 0.9);
  border-color: rgba(165, 180, 252, 0.55);
  padding: 32px;
}

.bento .card:first-child h3 {
  font-size: 1.35rem;
}

.bento .card:first-child p {
  font-size: 1rem;
  line-height: 1.65;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.checklist li {
  position: relative;
  padding: 12px 14px 12px 40px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(226, 232, 240, 0.8);
  color: var(--ink-soft);
  font-size: 0.9rem;
  box-shadow: 0 6px 16px rgba(44, 62, 80, 0.04);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gradient-brand);
  box-shadow: inset 0 0 0 3px #fff;
}

.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 50% 40% at 85% 15%, rgba(128, 77, 227, 0.4), transparent 55%),
    radial-gradient(ellipse 40% 35% at 10% 80%, rgba(75, 101, 240, 0.3), transparent 50%),
    linear-gradient(165deg, #070b1a, #1e1b4b 60%, #312e81);
  color: #eef2ff;
  padding: 64px 0 56px;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(165, 180, 252, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(165, 180, 252, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000, transparent);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(1.95rem, 4vw, 3.1rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  max-width: 18ch;
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 42rem;
  color: rgba(226, 232, 240, 0.86);
  font-size: 1.08rem;
}

.jump {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: var(--header);
  z-index: 40;
}

.jump-list {
  list-style: none;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px 0;
}

.jump-list a {
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-soft);
  background: #fff;
  transition: background var(--dur) ease, color var(--dur) ease, border-color var(--dur) ease, transform var(--dur-fast) ease;
}

.jump-list a.is-lead,
.jump-list a:hover {
  background: var(--gradient-brand);
  color: #fff;
  border-color: transparent;
  transform: translateY(-1px);
}

.module {
  margin-bottom: 18px;
}

.module header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.module h2 {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--navy);
}

.tag {
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 800;
  background: rgba(75, 101, 240, 0.12);
  color: var(--primary);
}

.featured {
  border-color: rgba(165, 180, 252, 0.65);
  box-shadow: 0 18px 44px rgba(75, 101, 240, 0.12);
  background:
    var(--gradient-soft),
    rgba(255, 255, 255, 0.92);
}

.quote {
  margin-top: 20px;
  padding: 16px 18px;
  border-left: 4px solid transparent;
  border-image: var(--gradient-brand) 1;
  background: rgba(75, 101, 240, 0.07);
  border-radius: 0 14px 14px 0;
  color: var(--ink-soft);
  font-weight: 600;
}

.compare {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.compare table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.compare th,
.compare td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  vertical-align: top;
}

.compare th {
  background: linear-gradient(135deg, rgba(75, 101, 240, 0.1), rgba(128, 77, 227, 0.08));
  color: var(--navy);
  font-weight: 800;
}

.contact {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 50% 45% at 15% 20%, rgba(75, 101, 240, 0.45), transparent 55%),
    radial-gradient(ellipse 45% 40% at 90% 80%, rgba(128, 77, 227, 0.4), transparent 55%),
    linear-gradient(155deg, #070b1a, #1e1b4b 55%, #4c1d95);
  color: #eaf7fa;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(165, 180, 252, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(165, 180, 252, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.6;
  pointer-events: none;
}

.contact > .container {
  position: relative;
  z-index: 1;
}

.contact-layout {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-panel .section-title {
  color: #fff;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 20px;
  color: rgba(232, 248, 251, 0.88);
}

.contact-list li {
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(199, 210, 254, 0.16);
}

.form {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.35);
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.field label {
  font-weight: 700;
  font-size: 0.88rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  transition: border-color var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: #a5b4fc;
  box-shadow: 0 0 0 4px rgba(75, 101, 240, 0.15);
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
}

.cta-band {
  text-align: center;
  padding: 40px 32px;
  background: var(--gradient-brand);
  background-size: 180% 180%;
  color: #fff;
  border: 0;
  box-shadow: var(--shadow-lg);
}

html.js-motion .cta-band {
  animation: btn-sheen 8s ease-in-out infinite;
}

.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 8px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
}

.cta-band .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
  animation: none;
}

footer {
  background: linear-gradient(180deg, #0b1224, #070b1a);
  color: rgba(226, 232, 240, 0.78);
  padding: 40px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-links a:hover {
  color: #fff;
}

.legal {
  padding: 40px 0 72px;
}

.legal article {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 40px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.legal h1 {
  font-family: var(--display);
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.legal .updated {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.legal h2 {
  font-size: 1.15rem;
  margin: 24px 0 10px;
  color: var(--navy);
}

.legal p,
.legal li {
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.legal ul {
  padding-left: 1.2rem;
  margin-bottom: 12px;
}

.legal a {
  color: var(--primary);
  font-weight: 700;
}

.error-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 48px 16px;
}

.error-page h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: -0.04em;
  margin: 8px 0 12px;
}

/* ——— Motion ——— */
html.js-motion [data-reveal] {
  opacity: 0;
  transform: translateY(22px) scale(0.96);
  filter: blur(4px);
}

html.js-motion [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
  transition:
    opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out),
    filter var(--dur-slow) var(--ease-out);
}

@keyframes hero-in {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-panel-in {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes orb-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(18px, -24px, 0);
  }
}

@keyframes aurora-drift {
  from {
    transform: rotate(0deg) scale(1);
  }
  to {
    transform: rotate(12deg) scale(1.08);
  }
}

@keyframes text-shimmer {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

@keyframes btn-sheen {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes spotlight-pulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@media (max-width: 960px) {
  .hero-layout,
  .contact-layout,
  .bento,
  .cols-3,
  .footer-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .cols-2 {
    grid-template-columns: 1fr;
  }

  .bento .card:first-child {
    grid-row: auto;
  }

  .stats {
    margin-top: -28px;
  }

  .hero {
    padding: 56px 0 72px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(var(--header) + 8px);
    flex-direction: column;
    align-items: stretch;
    background: rgba(15, 23, 42, 0.97);
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 16px;
    padding: 12px;
    gap: 4px;
    backdrop-filter: blur(16px);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-cta-desktop {
    display: none;
  }

  .nav-cta-mobile {
    display: block;
  }

  .lang-switch {
    margin-left: auto;
  }

  .nav {
    position: relative;
  }

  .brand-copy {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .card,
  .stat,
  .pill,
  .hero-list li,
  .jump-list a,
  .btn-magnetic,
  html.js-motion [data-reveal],
  html.js-motion [data-reveal].is-visible,
  html.js-motion .hero-copy > *,
  html.js-motion .hero-panel,
  html.js-motion .hero-orb--a,
  html.js-motion .hero-orb--b,
  html.js-motion .hero-aurora,
  html.js-motion .hero h1 em,
  html.js-motion .btn-primary,
  html.js-motion .cta-band,
  html.js-motion .hero-spotlight,
  html.js-motion .hero-cta::before {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    animation: none !important;
    filter: none !important;
  }
}
