/* ============================================================
   Dominant System — Shared Styles
   Premium agency aesthetic · light gray + orange accent
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* ----- New blue-led color system ----- */
  --bg: #ffffff;          /* default background of (almost) every section */
  --surface: #f4f7fb;     /* subtle bluish surface for alternating sections + cards */
  --white: #ffffff;
  --ink: #0f172a;         /* primary text (very dark blue, not pure black) */
  --ink-60: #64748b;      /* secondary blue-gray text */
  --ink-40: #94a3b8;      /* tertiary text / faint labels */
  --accent: #2563eb;      /* strong blue — buttons, links, icons, accents */
  --accent-2: #1d4ed8;    /* darker blue for hover */
  --blue: #2563eb;
  --blue-2: #1d4ed8;
  --blue-soft: #dbeafe;   /* badge / pill / icon-circle backgrounds, soft hover */
  --blue-dark: #1e3a8a;   /* ONLY for the final CTA section + footer */
  --line: #e2e8f0;        /* subtle borders + separators */
  --soft-gray: #f4f7fb;   /* alias kept for legacy refs → maps to surface */
  --maxw: 1440px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-sheet: cubic-bezier(0.32, 0.72, 0, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius: 16px;
  --nav-h: 76px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 640px) { .container { padding-left: 32px; padding-right: 32px; } }
@media (min-width: 1024px) { .container { padding-left: 48px; padding-right: 48px; } }

.eyebrow-tracking { letter-spacing: 0.02em; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 10px 0;
  transition: padding 0.4s var(--ease);
}
@media (min-width: 640px) { .nav-wrap { padding: 14px 0; } }

.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-radius: 999px;
  padding: 7px 7px 7px 7px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: box-shadow 0.45s var(--ease), transform 0.45s var(--ease);
}
.nav-wrap.scrolled .nav-pill {
  box-shadow: 0 8px 30px rgba(0,0,0,0.10);
}

.nav-left { display: flex; align-items: center; gap: 26px; }

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--blue);
  border-radius: 999px;
  flex-shrink: 0;
  display: block;
  padding: 4px;
  box-sizing: border-box;
  object-fit: contain;
}
@media (min-width: 640px) { .logo-mark { width: 40px; height: 40px; } }
.logo-word { font-size: 15px; font-weight: 600; letter-spacing: -0.02em; }

.nav-links { display: none; align-items: center; gap: 24px; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 14px;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.nav-links a:hover { color: var(--ink-40); }

.nav-right { display: none; align-items: center; gap: 16px; }
@media (min-width: 1024px) { .nav-right { display: flex; } }

.nav-status { font-size: 13px; color: var(--ink-60); display: none; }
@media (min-width: 1280px) { .nav-status { display: block; } }

.nav-clock {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--ink-60);
  white-space: nowrap;
}
.nav-clock svg { width: 14px; height: 14px; }

/* ----- text-roll button ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.btn-roll {
  position: relative;
  overflow: hidden;
  height: 20px;
  display: flex;
  flex-direction: column;
}
.btn-roll span {
  display: block;
  height: 20px;
  line-height: 20px;
  transition: transform 0.5s var(--ease);
}
.btn:hover .btn-roll span { transform: translateY(-100%); }

.btn-arrow {
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  flex-shrink: 0;
  transition: transform 0.5s var(--ease), background 0.4s var(--ease);
}
.btn-arrow svg { width: 14px; height: 14px; transition: transform 0.5s var(--ease); }
.btn:hover .btn-arrow svg { transform: rotate(-45deg); }

/* primary nav cta */
.btn-dark {
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  padding: 7px 7px 7px 18px;
}
.btn-dark:hover { background: var(--blue-2); }
.btn-dark .btn-arrow { width: 24px; height: 24px; background: var(--white); color: var(--blue); }

/* orange cta */
.btn-orange {
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  padding: 8px 8px 8px 22px;
}
.btn-orange:hover { background: var(--accent-2); }
.btn-orange .btn-arrow { width: 32px; height: 32px; background: var(--white); color: var(--accent); }

/* ghost / outline */
.btn-ghost {
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  padding: 10px 22px;
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-soft); }

.btn-block { width: 100%; justify-content: center; }

/* mobile menu toggle */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--blue);
  color: var(--white);
  border-radius: 999px;
  flex-shrink: 0;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle svg { width: 20px; height: 20px; }

/* ============================================================
   MOBILE MENU (bottom sheet)
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.open { visibility: visible; pointer-events: auto; }
.mobile-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.open .mobile-backdrop { opacity: 1; }
.mobile-sheet {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  background: var(--white);
  border-radius: 20px;
  padding: 24px 22px 22px;
  transform: translateY(120%);
  transition: transform 0.5s var(--ease-sheet);
}
.mobile-menu.open .mobile-sheet { transform: translateY(0); }
.mobile-time {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--ink-60);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 12px; margin-bottom: 22px;
}
.mobile-time svg { width: 13px; height: 13px; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 2px; margin-bottom: 22px; }
.mobile-nav-links a {
  font-size: 28px; line-height: 1.15; font-weight: 500;
  letter-spacing: -0.02em; padding: 8px 0;
  color: var(--ink);
}
.mobile-nav-links a:active { color: var(--accent); }

/* ============================================================
   SECTIONS / TYPOGRAPHY
   ============================================================ */
.section { position: relative; }
.section-white { background: var(--bg); }
.section-soft { background: var(--surface); }
.section-dark { background: var(--surface); color: var(--ink); }

.badge-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.badge-num {
  width: 24px; height: 24px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 11px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 640px) { .badge-num { width: 28px; height: 28px; font-size: 12px; } }
.badge-pill {
  font-size: 12px; font-weight: 500;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 14px;
  color: var(--ink);
}
@media (min-width: 640px) { .badge-pill { font-size: 13px; padding: 6px 16px; } }
.section-dark .badge-num { background: var(--white); color: var(--ink); }
.section-dark .badge-pill { border-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.85); }

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-60);
  font-weight: 500;
  margin-bottom: 18px;
}

h1, h2, h3 { font-weight: 500; letter-spacing: -0.03em; line-height: 1.08; }

.h1 {
  font-size: clamp(2rem, 6vw, 4.2rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.035em;
}
.h2 {
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.025em;
}
.h2-lg {
  font-size: clamp(1.9rem, 6vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--ink-60);
  line-height: 1.6;
  font-weight: 400;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.45s var(--spring), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
  border-color: transparent;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) { .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; } }
.footer-brand .logo-word { color: var(--white); }
.footer-tagline { font-size: 14px; line-height: 1.6; margin: 18px 0 22px; max-width: 320px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.footer-social a:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45); font-weight: 600; margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; flex-direction: column; gap: 16px;
  padding-top: 28px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-legal a { transition: color 0.3s var(--ease); }
.footer-legal a:hover { color: var(--white); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  overflow: hidden;
}
.hero-mesh {
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(40% 50% at 18% 22%, rgba(37,99,235,0.16), transparent 60%),
    radial-gradient(45% 55% at 82% 30%, rgba(37,99,235,0.11), transparent 62%),
    radial-gradient(50% 60% at 60% 85%, rgba(255,255,255,0.88), transparent 65%),
    radial-gradient(40% 50% at 25% 80%, rgba(37,99,235,0.07), transparent 60%);
  filter: blur(8px);
  animation: meshDrift 26s ease-in-out infinite alternate;
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}
@keyframes meshDrift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(2%, 1.5%, 0) scale(1.06); }
  100% { transform: translate3d(-1.5%, -1%, 0) scale(1.03); }
}
@media (prefers-reduced-motion: reduce) { .hero-mesh { animation: none; } }

.hero-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  flex: 1;
  padding-top: calc(var(--nav-h) + 24px);
}
.hero-spacer { flex: 1; min-height: 32px; }
.hero-content { padding-bottom: 56px; }
@media (min-width: 640px) { .hero-content { padding-bottom: 64px; } }
@media (min-width: 1024px) { .hero-content { padding-bottom: 80px; } }
.hero-kicker {
  font-size: 13px; letter-spacing: 0.02em; color: var(--blue-2);
  font-weight: 600; margin-bottom: 22px;
  display: inline-flex; align-items: center; gap: 9px;
}
.hero-kicker::before {
  content: ''; width: 7px; height: 7px; border-radius: 999px;
  background: var(--blue); display: inline-block;
}
.hero h1 { max-width: 16ch; margin-bottom: 0; }
.hero-sub { max-width: 56ch; margin-top: 24px; }
.hero-ctas {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 32px; align-items: flex-start;
}
@media (min-width: 640px) { .hero-ctas { flex-direction: row; align-items: center; margin-top: 40px; gap: 16px; } }

.hero-metrics {
  display: grid; grid-template-columns: 1fr; gap: 0;
  margin-top: 44px;
  border-top: 1px solid var(--line);
}
@media (min-width: 640px) {
  .hero-metrics { grid-template-columns: repeat(3, 1fr); margin-top: 52px; }
}
.metric { padding: 20px 0; }
@media (min-width: 640px) {
  .metric { padding: 22px 28px 0 0; }
  .metric + .metric { border-left: 1px solid var(--line); padding-left: 28px; }
}
.metric-num {
  font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 600;
  letter-spacing: -0.03em; color: var(--ink); line-height: 1;
}
.metric-num .accent { color: var(--accent); }
.metric-label { font-size: 14px; color: var(--ink-60); margin-top: 8px; }

/* ----- hero two-column layout + live panel ----- */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  width: 100%;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr); gap: 56px; }
}
.hero-content .hero-metrics { margin-bottom: 0; }

.hero-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px 22px 20px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.10), 0 2px 6px rgba(15, 23, 42, 0.04);
  width: 100%;
  max-width: 480px;
  justify-self: stretch;
}
@media (min-width: 1024px) { .hero-panel { justify-self: end; } }

.panel-head {
  display: flex; align-items: center; gap: 13px;
  padding-bottom: 18px; margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.panel-ico {
  width: 42px; height: 42px; border-radius: 13px; flex-shrink: 0;
  background: linear-gradient(150deg, var(--blue), var(--blue-2));
  color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.32);
}
.panel-ico svg { width: 20px; height: 20px; }
.panel-head-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.panel-head-text strong { font-size: 15.5px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.panel-head-text span { font-size: 12.5px; color: var(--ink-60); }
.panel-flag {
  font-size: 12px; font-weight: 500; white-space: nowrap; flex-shrink: 0;
  background: var(--blue-soft); color: var(--blue-2);
  padding: 6px 12px; border-radius: 999px;
}

.panel-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  padding-bottom: 18px; margin-bottom: 4px;
}
.panel-stat { display: flex; flex-direction: column; gap: 6px; }
.panel-stat-label { font-size: 12.5px; color: var(--ink-60); line-height: 1.3; }
.panel-stat-num { font-size: 23px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }

.panel-testi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px 15px;
  margin-bottom: 12px;
}
.testi-row { display: flex; align-items: center; gap: 11px; margin-bottom: 11px; }
.testi-avatar {
  width: 34px; height: 34px; border-radius: 999px; flex-shrink: 0;
  background: linear-gradient(150deg, var(--blue), var(--blue-2));
  color: #fff; font-size: 14px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.testi-id { display: flex; flex-direction: column; gap: 1px; min-width: 0; flex: 1; }
.testi-id strong { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.testi-id span { font-size: 12px; color: var(--ink-60); }
.testi-id .stars { color: #f59e0b; }
.testi-badge {
  font-size: 11.5px; font-weight: 600; white-space: nowrap; flex-shrink: 0;
  padding: 5px 11px; border-radius: 999px;
}
.testi-badge.ok { background: #dcfce7; color: #15803d; }
.testi-badge.warn { background: #fef3c7; color: #b45309; }
.panel-testi p { font-size: 13.5px; line-height: 1.5; color: var(--ink-60); }

.panel-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; margin-top: 4px;
  background: var(--blue-soft); color: var(--blue-2);
  font-size: 14px; font-weight: 600;
  padding: 14px; border-radius: 13px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.panel-btn:hover { background: var(--blue); color: #fff; }

/* ============================================================
   SECTION PADDING
   ============================================================ */
.pad {
  padding-top: 64px; padding-bottom: 56px;
}
@media (min-width: 640px) { .pad { padding-top: 80px; padding-bottom: 72px; } }
@media (min-width: 1024px) { .pad { padding-top: 120px; padding-bottom: 110px; } }
.section-head { margin-bottom: 48px; }
.section-head h2 { max-width: 18ch; }
@media (min-width: 1024px) { .section-head { margin-bottom: 72px; } }
.badge-pill { white-space: nowrap; }

/* ============================================================
   BENEFITS GRID
   ============================================================ */
.grid-2 {
  display: grid; grid-template-columns: 1fr; gap: 18px;
}
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 22px; } }

.benefit {
  padding: 34px 30px 32px;
  position: relative;
  overflow: hidden;
}
.benefit-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.benefit:hover .benefit-bar { transform: scaleX(1); }
.benefit-ico {
  width: 48px; height: 48px; border-radius: 999px;
  background: var(--blue-soft); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.benefit-ico svg { width: 22px; height: 22px; }
.benefit h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 10px; }
.benefit p { font-size: 15px; color: var(--ink-60); line-height: 1.6; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-wrap { position: relative; }
.process-grid {
  display: grid; grid-template-columns: 1fr; gap: 18px;
  position: relative;
}
@media (min-width: 640px) { .process-grid { grid-template-columns: 1fr 1fr; gap: 22px; } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; } }
.progress-line {
  display: none;
}
@media (min-width: 1024px) {
  .progress-line {
    display: block; position: absolute;
    top: 26px; left: 12%; right: 12%; height: 2px;
    background: var(--line); z-index: 0; border-radius: 2px;
  }
  .progress-line::after {
    content: ''; position: absolute; inset: 0;
    background: var(--accent); transform: scaleX(0); transform-origin: left;
    border-radius: 2px;
    transition: transform 1.4s var(--ease);
  }
  .progress-line.filled::after { transform: scaleX(1); }
}
.step { position: relative; z-index: 1; padding: 30px 26px 28px; background: var(--white); }
.step-num {
  width: 52px; height: 52px; border-radius: 999px;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 600; letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.step:hover .step-num { background: var(--blue-2); }
.step-num, .step:hover .step-num { transition: background 0.4s var(--ease); }
.step h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 9px; }
.step p { font-size: 14px; color: var(--ink-60); line-height: 1.55; }

/* ============================================================
   SERVICES
   ============================================================ */
.service {
  padding: 34px 32px 30px;
  display: flex; flex-direction: column;
  min-height: 240px;
}
.service-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.service-extra {
  font-size: 11px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase;
  background: var(--blue-soft); color: var(--blue-2);
  padding: 5px 11px; border-radius: 999px; white-space: nowrap;
}
.service h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 11px; }
.service p { font-size: 15px; color: var(--ink-60); line-height: 1.55; margin-bottom: 24px; }
.service-cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 500; color: var(--blue-2);
}
.service-cta svg { width: 16px; height: 16px; transition: transform 0.4s var(--ease); }
.service:hover .service-cta svg { transform: translateX(4px); }

/* ============================================================
   WHY US (dark + accordion)
   ============================================================ */
.whyus-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
@media (min-width: 1024px) { .whyus-grid { grid-template-columns: 0.85fr 1.15fr; gap: 64px; } }
.whyus-intro p { font-size: 16px; line-height: 1.7; color: var(--ink-60); margin-top: 22px; max-width: 42ch; }
.acc { border-top: 1px solid var(--line); }
.acc details { border-bottom: 1px solid var(--line); }
.acc summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 0;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem); font-weight: 500; letter-spacing: -0.02em;
  color: var(--ink);
}
.acc summary::-webkit-details-marker { display: none; }
.acc-icon {
  width: 32px; height: 32px; border-radius: 999px; flex-shrink: 0;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.acc-icon svg { width: 15px; height: 15px; transition: transform 0.4s var(--ease); }
.acc details[open] .acc-icon { background: var(--blue); border-color: var(--blue); color: #fff; }
.acc details[open] .acc-icon svg { transform: rotate(45deg); }
.acc-body { height: 0; overflow: hidden; transition: height 0.45s var(--ease); }
.acc-body p { font-size: 15px; line-height: 1.65; color: var(--ink-60); padding-bottom: 26px; max-width: 60ch; }

/* ============================================================
   RESOURCES
   ============================================================ */
.grid-3 {
  display: grid; grid-template-columns: 1fr; gap: 22px;
}
@media (min-width: 640px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.resource { overflow: hidden; display: flex; flex-direction: column; }
.resource-img {
  aspect-ratio: 16/10; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--blue-soft), var(--surface));
}
.resource-img .ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-40);
}
.resource-img .ph svg { width: 40px; height: 40px; opacity: 0.5; }
.resource:hover .resource-img .ph svg { transform: scale(1.05); }
.resource-img .ph svg { transition: transform 0.5s var(--ease); }
.resource-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.tag {
  align-self: flex-start;
  font-size: 11px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--blue-2); background: var(--blue-soft);
  padding: 5px 11px; border-radius: 999px; margin-bottom: 16px;
}
.resource h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.25; margin-bottom: 10px; }
.resource p { font-size: 14px; color: var(--ink-60); line-height: 1.55; margin-bottom: 20px; }
.read-more {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--ink);
}
.read-more svg { width: 15px; height: 15px; transition: transform 0.4s var(--ease); }
.resource:hover .read-more svg { transform: translateX(4px); }
.resource:hover .read-more { color: var(--blue-2); }

/* ----- portfolio / work cards ----- */
.work { overflow: hidden; display: flex; flex-direction: column; }
.work-slot { background: linear-gradient(135deg, var(--blue-soft), var(--surface)); }
.work .read-more svg { transition: transform 0.4s var(--ease); }
.work:hover .read-more svg { transform: translateX(4px); }
.work:hover .read-more { color: var(--blue-2); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  position: relative; overflow: hidden;
  background: var(--blue-dark);
  color: var(--white);
}
.contact-glow {
  position: absolute; top: -10%; right: -5%; width: 50%; height: 70%;
  background: radial-gradient(circle, rgba(255,255,255,0.22), transparent 65%);
  filter: blur(40px); pointer-events: none;
}
.contact-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: 48px;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: start; } }
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px 28px 32px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
}
@media (min-width: 640px) { .form-card { padding: 38px 36px 40px; } }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field label {
  display: block; font-size: 13px; font-weight: 500;
  color: var(--ink-60); margin-bottom: 8px;
}
.field input, .field select {
  width: 100%; font-family: inherit; font-size: 15px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink); border-radius: 12px;
  padding: 13px 14px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input::placeholder { color: var(--ink-40); }
.field input:focus, .field select:focus {
  outline: none; border-color: var(--blue); background: var(--white);
  box-shadow: 0 0 0 3px var(--blue-soft);
}
/* validation states */
.field .error {
  display: none;
  align-items: center; gap: 6px;
  font-size: 12.5px; color: #dc2626; margin-top: 7px; line-height: 1.35;
}
.field .error svg { width: 14px; height: 14px; flex-shrink: 0; }
.field.invalid input, .field.invalid select { border-color: #dc2626; background: #fef2f2; }
.field.invalid .error { display: flex; }
.field.valid input, .field.valid select { border-color: #16a34a; }
.consent.invalid label { color: #dc2626; }
.consent.invalid input { outline: 2px solid #dc2626; outline-offset: 2px; }
.consent .error {
  display: none; width: 100%;
  font-size: 12.5px; color: #dc2626; margin-top: 4px;
}
.consent.invalid .error { display: block; }
.form-status {
  display: none; align-items: center; gap: 9px;
  font-size: 14px; border-radius: 12px; padding: 13px 16px; margin-bottom: 6px;
}
.form-status.show { display: flex; }
.form-status.ok { background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; }
.form-status.err { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.form-status svg { width: 17px; height: 17px; flex-shrink: 0; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.field select option { color: var(--ink); }
.consent { display: flex; align-items: flex-start; gap: 11px; margin: 22px 0; }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blue); flex-shrink: 0; }
.consent label { font-size: 13px; color: var(--ink-60); line-height: 1.5; }
.consent a { color: var(--blue-2); text-decoration: underline; }

/* Submit button sits inside the white form card — keep it solid blue */
.contact .btn-orange { background: var(--blue); color: var(--white); }
.contact .btn-orange:hover { background: var(--blue-2); }
.contact .btn-orange .btn-arrow { background: var(--white); color: var(--blue); }
.contact-copy h2 { color: var(--white); margin-bottom: 24px; }
.contact-copy p { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.72); margin-bottom: 18px; max-width: 46ch; }
.contact-points { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contact-point { display: flex; align-items: center; gap: 14px; }
.contact-point-ico {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: rgba(255,255,255,0.16); color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.contact-point-ico svg { width: 19px; height: 19px; }
.contact-point div strong { display: block; font-size: 15px; color: var(--white); font-weight: 600; }
.contact-point div span { font-size: 14px; color: rgba(255,255,255,0.6); }

/* ============================================================
   PRICING (precios.html)
   ============================================================ */
.pricing-grid {
  display: grid; grid-template-columns: 1fr; gap: 22px;
  align-items: stretch;
}
@media (min-width: 900px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.tier {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 20px; padding: 36px 32px 34px;
  display: flex; flex-direction: column;
  transition: transform 0.45s var(--spring), box-shadow 0.45s var(--ease);
}
.tier:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0,0,0,0.10); }
.tier-featured {
  background: var(--blue); color: var(--white); border-color: var(--blue);
  position: relative;
}
@media (min-width: 900px) { .tier-featured { transform: scale(1.03); } .tier-featured:hover { transform: scale(1.03) translateY(-6px); } }
.tier-flag {
  position: absolute; top: 22px; right: 24px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase;
  background: var(--white); color: var(--blue-2); padding: 5px 12px; border-radius: 999px;
}
.tier-name { font-size: 14px; font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; color: var(--ink-60); }
.tier-featured .tier-name { color: rgba(255,255,255,0.55); }
.tier-sub { font-size: 14px; color: var(--ink-60); margin-top: 4px; }
.tier-featured .tier-sub { color: rgba(255,255,255,0.6); }
.tier-price { margin: 24px 0 6px; display: flex; align-items: baseline; gap: 6px; }
.tier-price .amount { font-size: clamp(2.4rem, 4vw, 3rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.tier-price .per { font-size: 14px; color: var(--ink-60); }
.tier-featured .tier-price .per { color: rgba(255,255,255,0.55); }
.tier-note { font-size: 13px; color: var(--ink-40); margin-bottom: 28px; }
.tier-featured .tier-note { color: rgba(255,255,255,0.45); }
.tier ul.feats { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.tier ul.feats li { display: flex; align-items: flex-start; gap: 11px; font-size: 14px; color: var(--ink); line-height: 1.45; }
.tier-featured ul.feats li { color: rgba(255,255,255,0.85); }
.tier ul.feats li svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--accent); margin-top: 1px; }
.tier-featured ul.feats li svg { color: #fff; }
.tier-featured .btn-orange { background: #fff; color: var(--blue-2); }
.tier-featured .btn-orange:hover { background: #eef3ff; }
.tier-featured .btn-orange .btn-arrow { background: var(--blue); color: #fff; }
.tier .btn { margin-top: auto; }
.tier-divider { border: none; border-top: 1px solid var(--line); margin: 0 0 24px; }
.tier-featured .tier-divider { border-color: rgba(255,255,255,0.14); }

/* generic legal / content page */
.page-hero { padding-top: calc(var(--nav-h) + 60px); padding-bottom: 32px; }
.legal-body { max-width: 760px; }
.legal-body h2 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); margin: 40px 0 14px; font-weight: 600; }
.legal-body h3 { font-size: 1.15rem; margin: 26px 0 10px; font-weight: 600; }
.legal-body p { font-size: 16px; line-height: 1.7; color: var(--ink-60); margin-bottom: 14px; }
.legal-body ul.bullets { margin: 0 0 16px; padding-left: 0; }
.legal-body ul.bullets li {
  font-size: 16px; line-height: 1.7; color: var(--ink-60);
  padding-left: 22px; position: relative; margin-bottom: 8px;
}
.legal-body ul.bullets li::before {
  content: ''; position: absolute; left: 4px; top: 12px;
  width: 6px; height: 6px; border-radius: 999px; background: var(--accent);
}
.legal-body strong { color: var(--ink); font-weight: 600; }
.legal-meta { display: flex; flex-direction: column; gap: 2px; margin: 24px 0; padding: 24px; background: var(--soft-gray); border-radius: 14px; }
.legal-meta div { font-size: 15px; color: var(--ink-60); padding: 5px 0; }
.legal-meta div strong { color: var(--ink); margin-right: 8px; }
.legal-table { width: 100%; border-collapse: collapse; margin: 18px 0 24px; font-size: 14px; }
.legal-table th, .legal-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.legal-table th { font-weight: 600; color: var(--ink); background: var(--soft-gray); }
.legal-table td { color: var(--ink-60); }
.faq-wrap { max-width: 820px; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 0; font-size: 1.1rem; font-weight: 500; letter-spacing: -0.01em; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq .acc-icon { border-color: var(--line); }
.faq .acc-icon svg { color: var(--ink); }
.faq details[open] .acc-icon { background: var(--accent); border-color: var(--accent); }
.faq details[open] .acc-icon svg { color: #fff; }
.faq .acc-body p { color: var(--ink-60); font-size: 15px; line-height: 1.65; padding-bottom: 24px; max-width: 64ch; }

/* ============================================================
   UTIL
   ============================================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.mt-auto { margin-top: auto; }

/* ============================================================
   MOTION LAYER — premium microinteractions & scroll FX
   (transform/opacity only · honours prefers-reduced-motion)
   ============================================================ */

/* ---------- Reading progress bar ---------- */
.read-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  z-index: 300; pointer-events: none; background: transparent;
}
.read-progress span {
  display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  transform: scaleX(0); transform-origin: left;
  will-change: transform;
}

/* ---------- Custom cursor (desktop, fine pointer only) ---------- */
.has-custom-cursor,
.has-custom-cursor a,
.has-custom-cursor button,
.has-custom-cursor summary,
.has-custom-cursor input,
.has-custom-cursor select,
.has-custom-cursor textarea,
.has-custom-cursor label,
.has-custom-cursor [role="button"] {
  cursor: none;
}
.cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 350;
  width: 30px; height: 30px; margin: -15px 0 0 -15px;
  border: 1.5px solid rgba(37, 99, 235, 0.55); border-radius: 999px;
  pointer-events: none; opacity: 0;
  transition: opacity .3s ease, width .28s var(--spring), height .28s var(--spring),
              margin .28s var(--spring), background .28s ease, border-color .28s ease;
  will-change: transform;
}
.cursor-ring.is-visible { opacity: 1; }
.cursor-ring.is-big {
  width: 54px; height: 54px; margin: -27px 0 0 -27px;
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.30);
}
.cursor-ring.is-down {
  width: 22px; height: 22px; margin: -11px 0 0 -11px;
  background: rgba(37, 99, 235, 0.16);
}
/* precise dot that replaces the native pointer */
.cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 351;
  width: 6px; height: 6px; margin: -3px 0 0 -3px;
  background: var(--blue); border-radius: 999px;
  pointer-events: none; opacity: 0;
  transition: opacity .3s ease, width .2s var(--spring), height .2s var(--spring),
              margin .2s var(--spring), background .2s ease;
  will-change: transform;
}
.cursor-dot.is-visible { opacity: 1; }
.cursor-dot.is-hot {
  width: 8px; height: 8px; margin: -4px 0 0 -4px;
  background: var(--blue-2);
}
@media (hover: none), (pointer: coarse) { .cursor-ring, .cursor-dot { display: none !important; } }

/* ---------- Button shine sweep (filled CTAs) ---------- */
.btn-orange, .btn-dark { position: relative; overflow: hidden; }
.btn-orange::before, .btn-dark::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: -130%;
  width: 60%; z-index: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.40) 50%, transparent 100%);
  transform: skewX(-18deg);
  transition: left .65s var(--ease);
}
.btn-orange:hover::before, .btn-dark:hover::before { left: 140%; }
.btn-orange > *, .btn-dark > * { position: relative; z-index: 1; }

/* ---------- Nav links: blue underline grows L→R ---------- */
.nav-links > a { position: relative; }
.nav-links > a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -5px; height: 2px;
  background: var(--blue); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links > a:hover { color: var(--ink); }
.nav-links > a:hover::after { transform: scaleX(1); }

/* ---------- Legal dropdown (desktop) ---------- */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown-trigger {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: inherit; font-size: 14px; font-weight: 400; color: var(--ink);
  background: none; border: 0; padding: 0; cursor: inherit;
  transition: color .3s var(--ease);
}
.nav-dropdown-trigger .nav-caret {
  width: 14px; height: 14px;
  transition: transform .25s var(--ease);
}
.nav-dropdown:hover .nav-dropdown-trigger { color: var(--ink); }
.nav-dropdown:hover .nav-caret,
.nav-dropdown-trigger[aria-expanded="true"] .nav-caret { transform: rotate(180deg); }
/* invisible hover bridge so the menu doesn't close in the gap */
.nav-dropdown::after {
  content: ''; position: absolute; top: 100%; left: -10px; right: -10px; height: 16px;
}
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 232px; background: var(--white);
  border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.13);
  padding: 8px; display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown-menu.open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  font-size: 13.5px; color: var(--ink-60);
  padding: 9px 12px; border-radius: 9px; white-space: nowrap;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { background: var(--blue-soft); color: var(--blue-2); }

/* ---------- Legal collapsible (mobile sheet) ---------- */
.mobile-legal { display: flex; flex-direction: column; }
.mobile-legal-trigger {
  display: flex; align-items: center; gap: 8px; justify-content: flex-start;
  font-family: inherit; font-size: 28px; line-height: 1.15; font-weight: 500;
  letter-spacing: -0.02em; color: var(--ink);
  background: none; border: 0; padding: 8px 0; cursor: pointer; text-align: left;
}
.mobile-legal-trigger .nav-caret { width: 22px; height: 22px; transition: transform .25s var(--ease); }
.mobile-legal-trigger[aria-expanded="true"] .nav-caret { transform: rotate(180deg); }
.mobile-legal-menu { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s var(--ease); }
.mobile-legal-menu > div { overflow: hidden; }
.mobile-legal.open .mobile-legal-menu { grid-template-rows: 1fr; }
.mobile-nav-links .mobile-legal-menu a {
  font-size: 18px; font-weight: 500; color: var(--ink-60);
  padding: 7px 0 7px 16px;
}
.mobile-nav-links .mobile-legal-menu a:active { color: var(--accent); }

/* ---------- Cards: blue diffuse lift ---------- */
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(37, 99, 235, 0.16);
  border-color: var(--blue);
}
.tier:hover { box-shadow: 0 22px 50px rgba(37, 99, 235, 0.16); }

/* ---------- Icon circles: micro motion on hover ---------- */
.benefit-ico, .panel-ico, .contact-point-ico, .step-num {
  transition: transform .5s var(--spring), background .4s var(--ease);
}
.benefit:hover .benefit-ico { transform: rotate(-6deg) scale(1.08); }
.hero-panel:hover .panel-ico { transform: rotate(-6deg) scale(1.06); }
.step:hover .step-num { transform: translateY(-5px); }
.contact-point:hover .contact-point-ico { transform: translateY(-3px) scale(1.06); }

/* ---------- Pulsing availability dots ---------- */
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.45); }
  70%  { box-shadow: 0 0 0 7px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}
@keyframes pulseDotBlue {
  0%   { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.45); }
  70%  { box-shadow: 0 0 0 6px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}
.nav-status { position: relative; padding-left: 16px; }
.nav-status::before {
  content: ''; position: absolute; left: 0; top: 50%; margin-top: -4px;
  width: 8px; height: 8px; border-radius: 999px; background: #16a34a;
  animation: pulseDot 2.4s ease-out infinite;
}
.hero-kicker::before { animation: pulseDotBlue 2.6s ease-out infinite; }
.panel-flag { position: relative; padding-left: 25px; }
.panel-flag::before {
  content: ''; position: absolute; left: 12px; top: 50%; margin-top: -3px;
  width: 6px; height: 6px; border-radius: 999px; background: var(--blue);
  animation: pulseDotBlue 2.6s ease-out infinite;
}

/* ---------- Marquee ribbon ---------- */
.marquee {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 16px 0;
  position: relative;
}
.marquee::before, .marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--surface), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--surface), transparent); }
.marquee-track {
  display: flex; width: max-content;
  animation: marqueeMove 42s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; flex-shrink: 0; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 20px;
  padding: 0 20px;
  font-size: 15px; font-weight: 500; color: var(--ink-60);
  letter-spacing: 0.01em; white-space: nowrap;
}
.marquee-item::after {
  content: ''; width: 5px; height: 5px; border-radius: 999px;
  background: var(--blue); opacity: 0.55;
}
@keyframes marqueeMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Word-by-word title reveal ---------- */
.split-word {
  display: inline-block;
  opacity: 0; transform: translateY(0.5em);
  transition-property: opacity, transform;
  transition-duration: 0.6s, 0.6s;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  transition-delay: calc(var(--wi, 0) * 0.045s);
  will-change: transform, opacity;
}
.split.in .split-word { opacity: 1; transform: none; }

/* ---------- Reduced motion: stand down ---------- */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .nav-status::before, .hero-kicker::before, .panel-flag::before { animation: none; }
  .btn-orange::before, .btn-dark::before { display: none; }
  .cursor-ring, .cursor-dot { display: none !important; }
  .has-custom-cursor, .has-custom-cursor * { cursor: auto; }
  .read-progress span { transition: none; }
  .split-word { opacity: 1 !important; transform: none !important; transition: none !important; }
  .nav-dropdown-menu, .nav-caret, .mobile-legal-menu { transition: none; }
  .benefit:hover .benefit-ico,
  .hero-panel:hover .panel-ico,
  .step:hover .step-num,
  .contact-point:hover .contact-point-ico { transform: none; }
}
