/* =========================================================
   LOOMIX — marketing site
   Aesthetic: retro-futuristic "woven threads", dark, neon
   ========================================================= */

:root {
  --bg:        #06070d;
  --bg-soft:   #0b0d18;
  --ink:       #eef1ff;
  --muted:     #9aa3c4;
  --teal:      #3df0d0;
  --coral:     #ff6b4a;
  --violet:    #8b7dff;
  --line:      rgba(255,255,255,.09);
  --glass:     rgba(255,255,255,.045);
  --glass-2:   rgba(255,255,255,.07);
  --radius:    20px;
  --shadow:    0 30px 80px -30px rgba(0,0,0,.8);
  --glow-teal: 0 0 24px rgba(61,240,208,.35);
  --glow-coral:0 0 24px rgba(255,107,74,.32);
  --maxw:      1180px;
  --font-disp: 'Clash Display', sans-serif;
  --font-body: 'General Sans', sans-serif;

  /* semantic z-index scale */
  --z-bg:      0;
  --z-base:    2;
  --z-nav:     40;
  --z-float:   50;
  --z-menu:    60;
  --z-cursor:  1;

  --wa-green:  #25d366;
}

/* keyboard focus — visible on every interactive element */
:where(a, button, input, [tabindex]):focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 6px;
}

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

html { scroll-behavior: smooth; }

h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* ---------- Ambient background ---------- */
#weave {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: var(--z-bg); opacity: .55;
  pointer-events: none;
}
.aurora {
  position: fixed; inset: -20% -10% auto -10%;
  height: 120vh; z-index: var(--z-bg); pointer-events: none;
  background:
    radial-gradient(40% 50% at 18% 12%, rgba(61,240,208,.18), transparent 60%),
    radial-gradient(45% 55% at 85% 18%, rgba(255,107,74,.16), transparent 60%),
    radial-gradient(50% 60% at 60% 85%, rgba(139,125,255,.14), transparent 60%);
  filter: blur(20px);
  animation: drift 22s ease-in-out infinite alternate;
}
@keyframes drift {
  to { transform: translate3d(0,-4%,0) scale(1.05); }
}
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed; top: 0; left: 0; z-index: 1;
  width: 420px; height: 420px; border-radius: 50%;
  pointer-events: none; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(61,240,208,.10), transparent 65%);
  transition: opacity .4s; opacity: 0;
}

main, .footer { position: relative; z-index: var(--z-base); }
.nav { z-index: var(--z-nav); }

.kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body);
  font-size: .95rem; letter-spacing: 0;
  color: var(--teal); margin-bottom: 1.1rem; font-weight: 600;
}
.kicker::before {
  content: ''; width: 26px; height: 2px; border-radius: 2px;
  background: var(--teal); box-shadow: var(--glow-teal);
}
em { font-style: normal; color: var(--coral); }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1rem, 4vw, 3rem);
  transition: background .4s, backdrop-filter .4s, padding .4s;
}
.nav.scrolled {
  background: rgba(6,7,13,.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding-top: .8rem; padding-bottom: .8rem;
}
.brand { display: flex; align-items: center; gap: .55rem; text-decoration: none; color: var(--ink); }
.brand-mark { display: grid; place-items: center; }
.brand-name {
  font-family: var(--font-disp); font-weight: 700; font-size: 1.35rem;
  letter-spacing: -.01em;
}
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: .95rem; font-weight: 500;
  transition: color .25s; position: relative;
}
.nav-links a:not(.nav-cta):hover { color: var(--ink); }
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: -4px; height: 1.5px; width: 0;
  background: var(--teal); transition: width .3s;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  padding: .55rem 1.1rem; border-radius: 100px;
  background: linear-gradient(120deg, var(--teal), var(--coral));
  color: #06070d !important; font-weight: 600;
  box-shadow: 0 8px 30px -8px rgba(61,240,208,.5);
  transition: transform .25s, box-shadow .25s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -8px rgba(255,107,74,.55); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.5rem; border-radius: 100px; border: 1px solid transparent;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  text-decoration: none; cursor: pointer; transition: transform .25s, box-shadow .25s, background .25s;
}
.btn-primary {
  background: linear-gradient(120deg, var(--teal), var(--coral));
  color: #06070d;
  box-shadow: 0 14px 40px -12px rgba(61,240,208,.55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 50px -12px rgba(255,107,74,.6); }
.btn-primary .arrow { transition: transform .25s; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-ghost {
  background: var(--glass); color: var(--ink); border-color: var(--line);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: var(--glass-2); transform: translateY(-3px); }
.btn.full { width: 100%; justify-content: center; }

/* ---------- GLASS CARD ---------- */
.card-glass {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center;
  max-width: var(--maxw); margin: 0 auto;
  padding: 8rem clamp(1rem, 4vw, 2rem) 4rem;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .45rem .9rem; border-radius: 100px;
  border: 1px solid var(--line); background: var(--glass);
  font-size: .82rem; color: var(--muted); margin-bottom: 1.6rem;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 12px var(--teal); animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: .35; } }

.hero-title {
  font-family: var(--font-disp); font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.02;
  letter-spacing: -.02em; margin-bottom: 1.5rem;
}
.hero-title .line { display: block; text-wrap: balance; }
.hero-title em {
  color: var(--coral);
  text-shadow: var(--glow-coral);
  font-style: italic;
}
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 34rem; margin-bottom: 2.2rem; }
.hero-sub strong { color: var(--ink); font-weight: 600; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.hero-trust { display: flex; align-items: center; gap: 1rem; color: var(--muted); font-size: .9rem; flex-wrap: wrap; }
.hero-trust i { width: 4px; height: 4px; border-radius: 50%; background: var(--muted); opacity: .5; }

/* hero stage */
.hero-stage { position: relative; perspective: 1200px; min-height: 420px; }
.pos-card {
  padding: 1.2rem; width: min(380px, 100%);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 50% { transform: translateY(-14px); } }
.pos-head {
  display: flex; align-items: center; gap: .55rem; font-size: .8rem; color: var(--muted);
  padding-bottom: 1rem; border-bottom: 1px solid var(--line); margin-bottom: 1rem;
}
.pos-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--coral); }
.pos-live { margin-left: auto; color: var(--teal); font-weight: 600; }
.pos-item { display: flex; justify-content: space-between; padding: .55rem 0; font-size: .95rem; color: var(--muted); }
.pos-item b { color: var(--ink); }
.pos-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: .6rem; padding-top: 1rem; border-top: 1px dashed var(--line);
  font-family: var(--font-disp); font-size: 1.3rem;
}
.pos-total b { color: var(--teal); text-shadow: var(--glow-teal); font-variant-numeric: tabular-nums; }
.pos-pay {
  margin-top: 1.1rem; width: 100%; padding: .85rem; border: 0; border-radius: 12px; cursor: pointer;
  background: linear-gradient(120deg, var(--teal), var(--coral)); color: #06070d;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
}

.float-chip {
  position: absolute; display: flex; align-items: center; gap: .65rem;
  padding: .8rem 1rem; font-size: .85rem;
}
.float-chip b { display: block; font-size: .95rem; }
.float-chip small { color: var(--muted); }
.chip-emoji {
  width: 34px; height: 34px; flex: none; border-radius: 10px;
  display: grid; place-items: center;
}
.chip-emoji svg { width: 18px; height: 18px; }
.chip-emoji.wa { background: rgba(61,240,208,.12); color: var(--teal); }
.chip-emoji.up { background: rgba(255,107,74,.12); color: var(--coral); }
.chip-1 { top: -10px; right: 0; animation: floaty 5s ease-in-out infinite .4s; }
.chip-2 { bottom: 6px; left: -14px; animation: floaty 7s ease-in-out infinite .8s; }

/* ---------- MARQUEE ---------- */
.marquee {
  overflow: hidden; border-block: 1px solid var(--line);
  padding: 1rem 0; background: var(--bg-soft);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; align-items: center; gap: 2.5rem; width: max-content;
  animation: scroll 32s linear infinite;
  font-family: var(--font-disp); font-weight: 600; font-size: 1.15rem;
  letter-spacing: .04em; color: var(--ink);
}
.marquee-track i { color: var(--teal); font-style: normal; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- STATS ---------- */
.stats {
  max-width: var(--maxw); margin: 4rem auto; padding: 0 clamp(1rem,4vw,2rem);
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem;
}
.stat { text-align: center; }
.stat b {
  display: block; font-family: var(--font-disp); font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1;
  color: var(--teal); text-shadow: var(--glow-teal);
  font-variant-numeric: tabular-nums;
}
.stat span { color: var(--muted); font-size: .95rem; }

/* ---------- SECTIONS ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: 6rem clamp(1rem,4vw,2rem); }
.section-head { max-width: 38rem; margin-bottom: 3rem; }
.section-head h2 {
  font-family: var(--font-disp); font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.section-head p { color: var(--muted); font-size: 1.1rem; }

/* ---------- BENTO ---------- */
.bento { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.3rem; }
.bento-cell {
  padding: 1.8rem; transition: transform .35s, border-color .35s;
  position: relative; overflow: hidden;
}
.bento-cell:hover { transform: translateY(-6px); border-color: rgba(61,240,208,.4); }
.bento-cell.big { grid-row: span 2; }
.bento-cell.wide { grid-column: span 2; }
.bento-ico {
  width: 48px; height: 48px; margin-bottom: 1.2rem;
  display: grid; place-items: center; border-radius: 13px;
  background: rgba(61,240,208,.08); border: 1px solid rgba(61,240,208,.22);
  color: var(--teal);
}
.bento-ico svg { width: 24px; height: 24px; }
.icon { stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.bento-cell h3 { font-family: var(--font-disp); font-weight: 600; font-size: 1.35rem; margin-bottom: .6rem; }
.bento-cell p { color: var(--muted); }
.mini-bars { display: flex; align-items: flex-end; gap: 6px; height: 60px; margin-top: 1.5rem; }
.mini-bars i { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, var(--teal), transparent); animation: grow 2.4s ease-in-out infinite; }
.mini-bars i:nth-child(1){height:40%;animation-delay:0s}.mini-bars i:nth-child(2){height:70%;animation-delay:.2s}
.mini-bars i:nth-child(3){height:55%;animation-delay:.4s}.mini-bars i:nth-child(4){height:90%;animation-delay:.6s}
.mini-bars i:nth-child(5){height:65%;animation-delay:.8s}.mini-bars i:nth-child(6){height:80%;animation-delay:1s}
.mini-bars i:nth-child(7){height:50%;animation-delay:1.2s}
@keyframes grow { 50% { transform: scaleY(.7); transform-origin: bottom; } }
.spark { margin-top: 1.5rem; height: 60px; }
.spark svg { width: 100%; height: 100%; }

/* ---------- WHATSAPP ---------- */
.whatsapp { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.wa-copy h2 { font-family: var(--font-disp); font-weight: 600; font-size: clamp(2rem,4vw,3.2rem); line-height: 1.05; margin-bottom: 1rem; letter-spacing: -.02em; }
.wa-copy p { color: var(--muted); font-size: 1.1rem; margin-bottom: 1.5rem; }
.wa-list { list-style: none; margin-bottom: 2rem; display: grid; gap: .75rem; }
.wa-list li { display: flex; gap: .7rem; color: var(--ink); }
.wa-list span { color: var(--teal); font-weight: 700; }

.wa-phone { display: grid; place-items: center; }
.phone {
  width: 320px; max-width: 100%; border-radius: 38px; padding: 14px;
  background: linear-gradient(160deg, #14172a, #0a0c16);
  border: 1px solid var(--line);
  box-shadow: 0 40px 100px -30px rgba(0,0,0,.9), inset 0 0 0 1px rgba(255,255,255,.04);
  position: relative;
}
.phone-notch { width: 120px; height: 22px; background: #000; border-radius: 0 0 14px 14px; margin: -14px auto 8px; }
.wa-bar {
  display: flex; align-items: center; gap: .6rem; padding: .6rem .4rem 1rem;
  border-bottom: 1px solid var(--line);
}
.wa-back { color: var(--teal); font-size: 1.3rem; }
.wa-avatar { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--glass-2); }
.wa-meta b { display: block; font-size: .95rem; }
.wa-meta small { color: var(--teal); font-size: .75rem; }
.wa-chat {
  min-height: 320px; padding: 1rem .4rem; display: flex; flex-direction: column; gap: .6rem;
  background:
    radial-gradient(circle at 20% 10%, rgba(61,240,208,.05), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255,107,74,.05), transparent 40%);
}
.bubble {
  max-width: 78%; padding: .6rem .85rem; border-radius: 16px; font-size: .9rem; line-height: 1.45;
  opacity: 0; transform: translateY(10px); animation: pop .4s forwards;
}
.bubble.them { align-self: flex-start; background: var(--glass-2); border-bottom-left-radius: 5px; }
.bubble.me { align-self: flex-end; background: linear-gradient(120deg, rgba(61,240,208,.9), rgba(61,240,208,.65)); color: #06070d; border-bottom-right-radius: 5px; font-weight: 500; }
.bubble small { display: block; font-size: .65rem; opacity: .6; margin-top: 2px; }
@keyframes pop { to { opacity: 1; transform: translateY(0); } }
.wa-input {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: .6rem; padding: .65rem .9rem; border-radius: 100px;
  background: var(--glass); border: 1px solid var(--line); color: var(--muted); font-size: .85rem;
}
.wa-input b { color: var(--teal); }

/* ---------- STEPS ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.step { padding: 2rem 0; border-top: 2px solid var(--line); position: relative; }
.step::before { content: ''; position: absolute; top: -2px; left: 0; width: 50px; height: 2px; background: linear-gradient(90deg, var(--teal), var(--coral)); }
.step-no { font-family: var(--font-disp); font-size: 2.4rem; color: var(--muted); opacity: .4; display: block; margin-bottom: .6rem; }
.step h3 { font-family: var(--font-disp); font-weight: 600; font-size: 1.4rem; margin-bottom: .5rem; }
.step p { color: var(--muted); }

/* ---------- FINANCIAL ---------- */
.money { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.money-copy h2 { font-family: var(--font-disp); font-weight: 600; font-size: clamp(2rem,4vw,3.2rem); line-height: 1.05; margin-bottom: 1rem; letter-spacing: -.02em; }
.money-copy p { color: var(--muted); font-size: 1.1rem; margin-bottom: 1.5rem; }
.money-copy .wa-list { margin-bottom: 2rem; }

.money-demo { display: grid; gap: 1.2rem; }
.fin-card, .pnl-card { padding: 1.6rem; }
.fin-head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .85rem; color: var(--muted); font-weight: 600;
  padding-bottom: 1rem; margin-bottom: .5rem; border-bottom: 1px solid var(--line);
}
.fin-live { color: var(--teal); }
.fin-row { display: flex; justify-content: space-between; padding: .55rem 0; font-size: .95rem; color: var(--muted); }
.fin-row b { color: var(--ink); font-variant-numeric: tabular-nums; }
.fin-row.neg b { color: var(--coral); }
.fin-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: .5rem; padding-top: 1rem; border-top: 1px dashed var(--line);
  font-family: var(--font-disp); font-size: 1.3rem;
}
.fin-total b { color: var(--teal); text-shadow: var(--glow-teal); font-variant-numeric: tabular-nums; }

.pnl-bar {
  display: grid; grid-template-columns: 84px 1fr auto; align-items: center; gap: .9rem;
  padding: .55rem 0; font-size: .9rem; color: var(--muted);
}
.pnl-bar b { color: var(--ink); font-variant-numeric: tabular-nums; }
.pnl-bar i { height: 8px; border-radius: 6px; width: var(--w); display: block; }
.pnl-bar .rev { background: linear-gradient(90deg, var(--teal), rgba(61,240,208,.35)); }
.pnl-bar .exp { background: linear-gradient(90deg, var(--coral), rgba(255,107,74,.35)); }
.pnl-bar .pro { background: linear-gradient(90deg, var(--violet), rgba(139,125,255,.35)); }
.pnl-bar.profit b { color: var(--teal); }

/* ---------- QUOTE ---------- */
.quote { max-width: 52rem; margin: 0 auto; padding: 3rem; text-align: center; }
.quote blockquote {
  font-family: var(--font-disp); font-weight: 500; font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.35; letter-spacing: -.01em; margin-bottom: 1.8rem;
}
.quote figcaption { display: inline-flex; align-items: center; gap: .75rem; }
.q-avatar { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--glass-2); font-size: 1.4rem; }
.quote figcaption b { display: block; }
.quote figcaption small { color: var(--muted); }

/* ---------- FINAL CTA ---------- */
.cta-final { max-width: var(--maxw); margin: 0 auto; padding: 4rem clamp(1rem,4vw,2rem) 7rem; }
.cta-card { padding: clamp(2.5rem, 6vw, 5rem); text-align: center; position: relative; overflow: hidden; }
.cta-card::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(60% 80% at 50% 0%, rgba(61,240,208,.12), transparent 70%);
}
.cta-card h2 { font-family: var(--font-disp); font-weight: 600; font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1rem; letter-spacing: -.02em; }
.cta-card p { color: var(--muted); font-size: 1.1rem; max-width: 34rem; margin: 0 auto 2rem; }
.cta-form { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; max-width: 36rem; margin: 0 auto; }
.cta-form input {
  flex: 1; min-width: 180px; padding: .85rem 1.1rem; border-radius: 100px;
  background: var(--glass); border: 1px solid var(--line); color: var(--ink); font-family: var(--font-body); font-size: 1rem;
}
.cta-form input::placeholder { color: var(--muted); }
.cta-form input:focus { outline: none; border-color: var(--teal); }
.cta-note { display: block; margin-top: 1.2rem; color: var(--muted); font-size: .85rem; }

/* ---------- FOOTER ---------- */
.footer { max-width: var(--maxw); margin: 0 auto; padding: 3rem clamp(1rem,4vw,2rem); border-top: 1px solid var(--line); }
.foot-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2rem; }
.foot-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.foot-links a { color: var(--muted); text-decoration: none; transition: color .25s; }
.foot-links a:hover { color: var(--ink); }
.foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; color: var(--muted); font-size: .85rem; }

/* ---------- FLOATING WHATSAPP CONTACT ---------- */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 1.6rem); bottom: clamp(1rem, 3vw, 1.6rem);
  z-index: var(--z-float);
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .7rem; border-radius: 100px;
  background: var(--wa-green); color: #fff; text-decoration: none;
  box-shadow: 0 14px 34px -8px rgba(37,211,102,.6);
  transition: transform .25s, box-shadow .25s, padding .25s;
}
.wa-float svg { width: 30px; height: 30px; flex: none; }
.wa-float .wa-float-label {
  max-width: 0; overflow: hidden; white-space: nowrap; font-weight: 600;
  opacity: 0; transition: max-width .35s, opacity .25s, padding .25s;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -8px rgba(37,211,102,.7); }
.wa-float:hover .wa-float-label,
.wa-float:focus-visible .wa-float-label { max-width: 160px; opacity: 1; padding-right: .5rem; }
.wa-float::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; z-index: -1;
  background: var(--wa-green); animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: .5; } 70%,100% { transform: scale(1.6); opacity: 0; } }

/* inline whatsapp icon (footer link) */
.wa-inline { display: inline-flex; align-items: center; gap: .4rem; }
.wa-inline svg { width: 16px; height: 16px; color: var(--wa-green); }

/* ---------- REVEAL ANIMATION ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 7rem; }
  .hero-stage { order: -1; min-height: 360px; }
  .whatsapp, .money { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(2,1fr); }
  .bento-cell.big { grid-row: auto; }
  .bento-cell.wide { grid-column: span 2; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed; inset: 0 0 auto 0; top: 0; flex-direction: column; gap: 1.4rem;
    padding: 6rem 2rem 2.5rem; background: rgba(6,7,13,.96); backdrop-filter: blur(20px);
    transform: translateY(-120%); transition: transform .4s cubic-bezier(.2,.7,.2,1);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; z-index: var(--z-menu); }
  .stats { grid-template-columns: repeat(2,1fr); gap: 2rem; }
  .bento, .steps { grid-template-columns: 1fr; }
  .bento-cell.wide { grid-column: auto; }
  .foot-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  #weave, .aurora { display: none; }
}
