/* ============================================================
   NOVERZIO — base.css
   Tokens, reset, tipografia, nav, hero, botões, preloader,
   cursor custom, barra de progresso, botão WhatsApp flutuante
   ============================================================ */

:root {
  /* Marca */
  --bg: #030F27;
  --bg-2: #051531;
  --bg-3: #081D40;
  --navy-soft: #0B2148;
  --primary: #007AFF;
  --primary-2: #00A7FF;
  --primary-deep: #0053C7;
  --whatsapp: #25D366;

  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(0, 167, 255, 0.35);

  --text: #F4F8FF;
  --text-2: rgba(214, 228, 247, 0.68);
  --text-3: rgba(214, 228, 247, 0.42);

  --glow: rgba(0, 122, 255, 0.16);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 60px var(--glow);

  --grad: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  --grad-text: linear-gradient(120deg, #4EB6FF 0%, var(--primary-2) 45%, #7DD3FF 100%);

  --font-brand: "Michroma", sans-serif;
  --font-display: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 36px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --dur-fast: 0.22s;
  --dur: 0.45s;
  --dur-slow: 0.7s;
  --dur-reveal: 0.9s;

  --container: 1200px;
  --nav-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: auto; }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
::selection { background: rgba(0, 122, 255, 0.4); color: #fff; }

:focus-visible {
  outline: 2px solid var(--primary-2);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary-deep), var(--primary));
  border-radius: 99px;
  border: 2px solid var(--bg);
}

/* ---------- Tipografia ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

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

section { position: relative; }

.section-pad { padding: 120px 0; }

.section-head { max-width: 720px; margin-bottom: 64px; }

.section-head .kicker,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-2);
  border: 1px solid rgba(0, 167, 255, 0.28);
  background: rgba(0, 122, 255, 0.08);
  padding: 8px 18px;
  border-radius: 99px;
  margin-bottom: 22px;
}

.kicker::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 12px var(--primary-2);
}

.section-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  margin-bottom: 18px;
}

.section-head p { color: var(--text-2); font-size: 1.08rem; }

/* ---------- Reveal system ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity var(--dur-reveal) var(--ease-out-expo),
              transform var(--dur-reveal) var(--ease-out-expo);
  will-change: opacity, transform;
}
[data-reveal="left"]  { transform: translateX(-60px); }
[data-reveal="right"] { transform: translateX(60px); }
[data-reveal="scale"] { transform: scale(0.86); }
[data-reveal="flip"]  { transform: perspective(900px) rotateX(14deg) translateY(30px); }
[data-reveal].is-visible { opacity: 1; transform: none; }

[data-stagger] > * {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity var(--dur-slow) var(--ease-out-expo),
              transform var(--dur-slow) var(--ease-out-expo);
}
[data-stagger].is-visible > * { opacity: 1; transform: none; }
[data-stagger].is-visible > *:nth-child(1) { transition-delay: 0.05s; }
[data-stagger].is-visible > *:nth-child(2) { transition-delay: 0.12s; }
[data-stagger].is-visible > *:nth-child(3) { transition-delay: 0.19s; }
[data-stagger].is-visible > *:nth-child(4) { transition-delay: 0.26s; }
[data-stagger].is-visible > *:nth-child(5) { transition-delay: 0.33s; }
[data-stagger].is-visible > *:nth-child(6) { transition-delay: 0.40s; }
[data-stagger].is-visible > *:nth-child(7) { transition-delay: 0.47s; }
[data-stagger].is-visible > *:nth-child(8) { transition-delay: 0.54s; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 14px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition: transform var(--dur) var(--ease-out-expo),
              box-shadow var(--dur) var(--ease-out-expo),
              background var(--dur) ease, border-color var(--dur) ease;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 6px 24px rgba(0, 122, 255, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 44px rgba(0, 122, 255, 0.5);
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -110%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.65s ease;
}
.btn-primary:hover::after { left: 110%; }

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--primary-2);
  background: rgba(0, 122, 255, 0.1);
  box-shadow: 0 0 34px rgba(0, 122, 255, 0.18);
  transform: translateY(-2px);
}

.btn-wa {
  background: linear-gradient(135deg, #1FBE59, #25D366);
  color: #04240F;
  font-weight: 700;
  box-shadow: 0 6px 26px rgba(37, 211, 102, 0.32);
}
.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 46px rgba(37, 211, 102, 0.45);
}
.btn-wa::after {
  content: "";
  position: absolute;
  top: 0; left: -110%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.65s ease;
}
.btn-wa:hover::after { left: 110%; }

.btn-lg { padding: 18px 42px; font-size: 1.08rem; border-radius: 16px; }

.btn .bi { font-size: 1.15em; }


/* ---------- Barra de progresso do scroll ---------- */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 3px;
  z-index: 3000;
  pointer-events: none;
}
#scroll-progress span {
  display: block;
  height: 100%;
  background: var(--grad);
  transform-origin: left;
  transform: scaleX(0);
  box-shadow: 0 0 14px rgba(0, 167, 255, 0.8);
}

/* ---------- Cursor custom (luz suave que acompanha) ---------- */
#cursor-dot, #cursor-glow {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
}
body.cursor-on #cursor-dot, body.cursor-on #cursor-glow { opacity: 1; }

#cursor-dot {
  z-index: 3500;
  width: 6px; height: 6px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 167, 255, 0.9), 0 0 3px #fff;
}

#cursor-glow {
  z-index: 3499;
  width: 260px; height: 260px;
  background: radial-gradient(circle,
    rgba(0, 140, 255, 0.16) 0%,
    rgba(0, 122, 255, 0.07) 38%,
    transparent 68%);
  mix-blend-mode: screen;
  will-change: transform;
}
body.cursor-hover #cursor-dot { box-shadow: 0 0 16px var(--primary-2), 0 0 5px #fff; }

@media (hover: none), (pointer: coarse) {
  #cursor-dot, #cursor-glow { display: none; }
}

/* ---------- Navegação ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 2000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(3, 15, 39, 0.4);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: height var(--dur) var(--ease-out-expo), background var(--dur) ease,
              box-shadow var(--dur) ease;
}
.nav.scrolled {
  height: 62px;
  background: rgba(3, 15, 39, 0.88);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img { width: 40px; height: 40px; border-radius: 10px; }
.nav-logo .nl-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo .nl-name {
  font-family: var(--font-brand);
  font-size: 0.98rem;
  letter-spacing: 0.18em;
  color: #fff;
}
.nav-logo .nl-tag {
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  color: var(--primary-2);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-2);
  position: relative;
  padding: 6px 0;
  transition: color var(--dur-fast) ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--grad);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out-expo);
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta { flex-shrink: 0; }
.nav-cta .btn { padding: 11px 22px; font-size: 0.9rem; }

/* Hamburger */
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-burger span {
  display: block;
  width: 20px; height: 2px;
  background: #fff;
  border-radius: 99px;
  transition: transform 0.35s var(--ease-out-expo), opacity 0.25s ease;
}
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile fullscreen */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1900;
  background: rgba(3, 15, 39, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
body.menu-open #mobile-menu { opacity: 1; pointer-events: auto; }

#mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  font-weight: 700;
  color: var(--text-2);
  padding: 10px 0;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo),
              color 0.25s ease;
}
#mobile-menu a:hover { color: var(--primary-2); }
body.menu-open #mobile-menu a { opacity: 1; transform: none; }
body.menu-open #mobile-menu a:nth-child(1) { transition-delay: 0.08s; }
body.menu-open #mobile-menu a:nth-child(2) { transition-delay: 0.14s; }
body.menu-open #mobile-menu a:nth-child(3) { transition-delay: 0.2s; }
body.menu-open #mobile-menu a:nth-child(4) { transition-delay: 0.26s; }
body.menu-open #mobile-menu a:nth-child(5) { transition-delay: 0.32s; }
body.menu-open #mobile-menu a:nth-child(6) { transition-delay: 0.38s; }
body.menu-open #mobile-menu .btn { margin-top: 18px; opacity: 0; transform: translateY(26px); transition-delay: 0.44s; }
body.menu-open #mobile-menu .btn { opacity: 1; transform: none; }

/* ---------- HERO ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  overflow: clip;
}

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

.hero-bg .mesh {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse 55% 48% at 18% 30%, rgba(0, 122, 255, 0.20), transparent 70%),
    radial-gradient(ellipse 45% 55% at 85% 18%, rgba(0, 167, 255, 0.14), transparent 70%),
    radial-gradient(ellipse 50% 45% at 62% 88%, rgba(0, 83, 199, 0.16), transparent 70%);
  animation: meshShift 22s ease-in-out infinite alternate;
}
@keyframes meshShift {
  to { transform: translate3d(2%, 3%, 0) scale(1.06); filter: hue-rotate(-8deg); }
}

.hero-bg .beam {
  position: absolute;
  width: 2px;
  height: 46vmax;
  background: linear-gradient(180deg, transparent, rgba(0, 167, 255, 0.75), transparent);
  filter: blur(1px);
  opacity: 0.5;
  transform: rotate(38deg);
  animation: beamFloat 9s ease-in-out infinite alternate;
}
.hero-bg .beam.b1 { left: 12%; top: -8%; animation-delay: 0s; }
.hero-bg .beam.b2 { left: 78%; top: 4%; height: 34vmax; animation-delay: -3s; opacity: 0.35; }
.hero-bg .beam.b3 { left: 55%; top: 30%; height: 26vmax; animation-delay: -6s; opacity: 0.25; }
@keyframes beamFloat {
  to { transform: rotate(38deg) translateY(-7vmax); opacity: 0.75; }
}

.hero-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  animation: orbFloat 14s ease-in-out infinite alternate;
}
.hero-bg .orb.o1 { width: 380px; height: 380px; background: rgba(0, 122, 255, 0.22); left: -6%; bottom: -12%; }
.hero-bg .orb.o2 { width: 300px; height: 300px; background: rgba(0, 167, 255, 0.16); right: -4%; top: -6%; animation-delay: -6s; }
@keyframes orbFloat { to { transform: translate3d(50px, -40px, 0) scale(1.12); } }

.hero-bg .n-watermark {
  position: absolute;
  right: -8%;
  bottom: -14%;
  width: 46vmax;
  opacity: 0.05;
  transform: rotate(-6deg);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  position: relative;
}

.hero-copy .kicker { margin-bottom: 26px; }

.hero-copy h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.35rem);
  font-weight: 800;
  margin-bottom: 26px;
}

.hero-copy h1 .h1-line {
  display: block;
  overflow: hidden;
}
.hero-copy h1 .h1-word {
  display: inline-block;
  transform: translateY(110%);
}

.hero-sub {
  color: var(--text-2);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  max-width: 520px;
  margin-bottom: 38px;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-3);
  font-size: 0.9rem;
  max-width: 460px;
}
.hero-proof .stars { color: #FFC53D; letter-spacing: 2px; font-size: 0.82rem; }

/* Mockups hero */
.hero-visual {
  position: relative;
  min-height: 480px;
  perspective: 1400px;
}

.mock-laptop {
  position: relative;
  width: 108%;
  max-width: 640px;
  transform: rotateY(-8deg) rotateX(4deg);
  transform-style: preserve-3d;
  animation: laptopFloat 7s ease-in-out infinite alternate;
}
@keyframes laptopFloat { to { transform: rotateY(-5deg) rotateX(2deg) translateY(-16px); } }

.mock-laptop .ml-screen {
  border: 10px solid #0E1B33;
  border-bottom-width: 14px;
  border-radius: 18px 18px 0 0;
  background: #0E1B33;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55), 0 0 80px rgba(0, 122, 255, 0.15);
  overflow: hidden;
  position: relative;
}
/* altura garantida em qualquer navegador (fallback de aspect-ratio) */
.mock-laptop .ml-screen::before {
  content: "";
  display: block;
  padding-top: 62.5%; /* 16:10 */
}
.mock-laptop .ml-screen img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.mock-laptop .ml-screen img.active { opacity: 1; }

.mock-laptop .ml-base {
  height: 16px;
  background: linear-gradient(180deg, #16294D, #0A1730);
  border-radius: 0 0 22px 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}
.mock-laptop .ml-base::after {
  content: "";
  display: block;
  width: 110px; height: 5px;
  margin: 0 auto;
  background: #060F22;
  border-radius: 0 0 10px 10px;
}

.mock-phone {
  position: absolute;
  right: -3%;
  bottom: -7%;
  width: 176px;
  border: 8px solid #0E1B33;
  border-radius: 30px;
  background: #0E1B33;
  overflow: hidden;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 167, 255, 0.2);
  animation: phoneFloat 6s ease-in-out infinite alternate;
  z-index: 3;
}
@keyframes phoneFloat { to { transform: translateY(-20px) rotate(2.5deg); } }

/* altura garantida em qualquer navegador (fallback de aspect-ratio) */
.mock-phone::after {
  content: "";
  display: block;
  padding-top: 211%; /* 9:19 */
}

.mock-phone::before {
  content: "";
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 54px; height: 14px;
  background: #0E1B33;
  border-radius: 99px;
  z-index: 4;
}
.mock-phone img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.mock-phone img.active { opacity: 1; }

.hero-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(8, 24, 52, 0.82);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
  font-size: 0.86rem;
  font-weight: 600;
  z-index: 4;
  animation: chipFloat 5.5s ease-in-out infinite alternate;
}
.hero-chip .bi {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
}
.hero-chip small { display: block; color: var(--text-3); font-weight: 500; font-size: 0.72rem; }
.hero-chip.c1 { top: 4%; left: -6%; animation-delay: -1s; }
.hero-chip.c2 { bottom: 18%; left: -12%; animation-delay: -3s; }
.hero-chip.c3 { top: -6%; right: 6%; animation-delay: -2s; }
@keyframes chipFloat { to { transform: translateY(-14px); } }

.scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.scroll-hint .wheel {
  width: 24px; height: 38px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 99px;
  position: relative;
}
.scroll-hint .wheel::after {
  content: "";
  position: absolute;
  top: 7px; left: 50%;
  width: 3px; height: 8px;
  margin-left: -1.5px;
  border-radius: 99px;
  background: var(--primary-2);
  animation: wheelDrop 1.8s ease-in-out infinite;
}
@keyframes wheelDrop {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- WhatsApp flutuante ---------- */
#wa-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 2500;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1FBE59, #25D366);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.9rem;
  box-shadow: 0 10px 34px rgba(37, 211, 102, 0.45);
  transition: transform 0.35s var(--ease-out-back);
}
#wa-float:hover { transform: scale(1.1) rotate(6deg); }
#wa-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.45); opacity: 0; }
}
#wa-float .wa-tip {
  position: absolute;
  right: 74px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: #fff;
  color: #0A1B38;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out-expo);
  box-shadow: var(--shadow-md);
}
#wa-float:hover .wa-tip { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  [data-reveal], [data-stagger] > * { opacity: 1 !important; transform: none !important; }
  .hero-copy h1 .h1-word { transform: none !important; }
  #cursor-dot, #cursor-glow { display: none; }
}
