/* ============================================================
   ALEOOP — Homepage (Signal Dark + lime)
   Stage 4a HTML prototype · source of truth for Figma + Webflow
   Palette: audit 03 Direction 1 · lime = money + CTA only
   ============================================================ */

:root{
  /* Signal Dark palette */
  --bg:#0E1020;
  --surface:#161A33;
  --card:#1C2142;
  --card-2:#22284d;
  --primary:#2d33f4;
  --primary-deep:#3c44a9;
  --lime:#b0de5e;
  --lime-deep:#9ccc44;
  --ink:#F4F6FF;
  --muted:#A9B0D0;
  --border:#2A2F52;
  /* Light interstitial (Proof only) */
  --paper:#F5F5F2;
  --paper-ink:#14162B;
  --paper-muted:#5b5d6e;
  --paper-border:#E4E3DC;
  /* data-viz (not chrome) */
  --mint:#86D7B6;
  --magenta:#D81E5B;
  --teal:#569EB4;

  --maxw:1200px;
  --pad:clamp(1.25rem,5vw,2.5rem);
  --rail:3.4rem; /* chapter hanging-indent = node(2.5rem) + gap */
  --laser:0px;   /* GSAP-driven: how far the laser head has travelled down the spine */

  --f-sans:"DM Sans",system-ui,-apple-system,sans-serif;
  --f-mono:"IBM Plex Mono",ui-monospace,monospace;
  --f-serif:"DM Serif Display",Georgia,serif;

  /* fluid type scale, ratio >=1.25 */
  --t-display:clamp(2.6rem,1.4rem + 5.2vw,4.75rem);
  --t-h2:clamp(1.6rem,1.2rem + 1.35vw,2.4rem);
  --t-h3:clamp(1.25rem,1rem + 1vw,1.6rem);
  --t-bodyl:clamp(1.05rem,1rem + 0.35vw,1.25rem);
  --t-body:1rem;
  --t-label:0.78rem;

  --ease:cubic-bezier(.16,1,.3,1); /* ease-out-expo-ish */
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--f-sans);
  font-size:var(--t-body);
  line-height:1.65; /* light-on-dark breathing room */
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
/* faint signal texture on the dark canvas */
body::before{
  content:"";position:fixed;inset:0;z-index:0;pointer-events:none;
  background:
    radial-gradient(60rem 40rem at 78% -8%, rgba(45,51,244,.16), transparent 60%),
    radial-gradient(48rem 40rem at 4% 32%, rgba(176,222,94,.05), transparent 55%);
}
h1,h2,h3,p{margin:0}
a{color:inherit;text-decoration:none}
img,svg{display:block;max-width:100%}
button{font:inherit;cursor:pointer}
::selection{background:var(--lime);color:var(--bg)}

.wrap{max-width:var(--maxw);margin-inline:auto;padding-inline:var(--pad);position:relative;z-index:1}
section{position:relative;z-index:1}

/* skip link */
.skip{position:absolute;left:-999px;top:0;background:var(--lime);color:var(--bg);padding:.6rem 1rem;border-radius:0 0 8px 0;z-index:200}
.skip:focus{left:0}

/* focus visibility */
a:focus-visible,button:focus-visible,summary:focus-visible{
  outline:2px solid var(--lime);outline-offset:3px;border-radius:6px;
}

/* ---------- shared type helpers ---------- */
.eyebrow{
  font-family:var(--f-mono);font-size:var(--t-label);font-weight:500;
  letter-spacing:.14em;text-transform:uppercase;color:var(--muted);
  display:inline-flex;align-items:center;gap:.6rem;
}
h2{font-size:var(--t-h2);font-weight:700;line-height:1.08;letter-spacing:-.02em;max-width:20ch}
.lead{font-size:var(--t-bodyl);color:var(--muted);max-width:62ch;line-height:1.6}
.money{font-family:var(--f-mono);font-weight:600;font-variant-numeric:tabular-nums;
  color:var(--lime);text-shadow:0 0 24px rgba(176,222,94,.35)}

/* ---------- buttons (lime = the only accent) ---------- */
.btn{
  display:inline-flex;align-items:center;gap:.55rem;
  background:var(--lime);color:var(--bg);font-weight:600;
  padding:.85rem 1.4rem;border:none;border-radius:10px;
  transition:transform .25s var(--ease),background .25s var(--ease),box-shadow .25s var(--ease);
  box-shadow:0 0 0 rgba(176,222,94,0);
}
.btn:hover{background:var(--lime-deep);transform:translateY(-2px);box-shadow:0 12px 30px -10px rgba(176,222,94,.5)}
.btn .arw{transition:transform .25s var(--ease)}
.btn:hover .arw{transform:translateX(4px)}
.btn.lg{padding:1.05rem 1.8rem;font-size:1.05rem}

/* ============================================================
   NAV
   ============================================================ */
.nav{position:fixed;inset:0 0 auto 0;z-index:100;transition:background .3s var(--ease),border-color .3s var(--ease),backdrop-filter .3s}
.nav.solid{background:rgba(14,16,32,.82);backdrop-filter:blur(12px);border-bottom:1px solid var(--border)}
.nav-inner{max-width:var(--maxw);margin-inline:auto;padding:1.05rem var(--pad);display:flex;align-items:center;justify-content:space-between}
.logo{display:inline-flex;align-items:center}
.logo img{height:34px;width:auto;display:block}
.nav .btn{padding:.6rem 1.1rem}

/* ============================================================
   HERO
   ============================================================ */
.hero{min-height:92vh;display:flex;align-items:center;padding:7rem 0 3rem}
.hero-fold{width:100%;position:relative;z-index:1;display:grid;
  grid-template-columns:minmax(0,2fr) minmax(0,3fr);gap:clamp(2rem,5vw,4rem);align-items:center}
.hero h1{
  font-size:clamp(2.3rem,1.2rem + 4vw,3.7rem);font-weight:700;line-height:1.05;letter-spacing:-.03em;
  margin:0;max-width:14ch;
}
.hero h1 .glow{color:var(--lime)}
.hero-scroll{position:absolute;bottom:-1.5rem;left:0;right:0;display:flex;justify-content:center;align-items:center;gap:.6rem;
  font-family:var(--f-mono);font-size:.76rem;letter-spacing:.14em;text-transform:uppercase;color:var(--muted)}
.hero-scroll i{font-style:normal;animation:bob 1.8s ease-in-out infinite}
@keyframes bob{0%,100%{transform:translateY(0)}50%{transform:translateY(5px)}}
.hero-scroll:hover{color:var(--lime)}

/* hero signal-flow visual — scattered sources converge to one $ */
.hero-viz{position:relative;z-index:1}
.hero-viz svg{width:100%;height:auto;overflow:visible}
/* ---- HERO infinity signal field (replaces the static 1.87MB laptop) ---- */
.inf-field{position:relative;z-index:1;width:100%;aspect-ratio:1/.82;max-width:none;display:grid;place-items:center}
/* svg + $ share one grid cell → both centred by place-items, so GSAP's scale composes without losing centring */
.inf-svg{grid-area:1/1;width:70%;max-width:360px;height:auto;overflow:visible}
.inf-stroke{fill:none;stroke:var(--primary);stroke-width:2.4;stroke-linecap:round;stroke-linejoin:round;
  filter:drop-shadow(0 0 10px rgba(45,51,244,.5));opacity:0}  /* only shown during the GSAP trace; resting state is the clean fill */
.inf-fill{fill:var(--ink)}
.gsap .inf-fill{opacity:0}                 /* under GSAP: revealed after the trace; static fallback shows it */
.inf-dollar{grid-area:1/1;z-index:2;opacity:0;pointer-events:none;
  font-family:var(--f-mono);font-weight:600;font-size:clamp(2.2rem,4.5vw,3.4rem);color:var(--lime);
  text-shadow:0 0 26px rgba(176,222,94,.6)}
.src-bubble{position:absolute;left:calc(var(--x)*1%);top:calc(var(--y)*1%);transform:translate(-50%,-50%);
  font-family:var(--f-mono);font-size:.74rem;color:var(--muted);white-space:nowrap;
  background:rgba(28,33,66,.78);border:1px solid var(--border);border-radius:999px;padding:.38rem .78rem;
  box-shadow:0 10px 26px -14px rgba(0,0,0,.8)}
.src-bubble::before{content:"";display:inline-block;width:6px;height:6px;border-radius:50%;vertical-align:1px;
  background:var(--lime);margin-right:.5rem;box-shadow:0 0 8px var(--lime)}
/* signal aura behind the loop — lime (the signal) over indigo (structure), slow pulse.
   scoped to .hero so it does NOT leak into the Works diagram, which reuses .hero-viz */
.hero .hero-viz::before{content:"";position:absolute;z-index:0;inset:-8% -10%;pointer-events:none;
  background:
    radial-gradient(38% 34% at 56% 38%, rgba(176,222,94,.22), transparent 70%),
    radial-gradient(58% 52% at 44% 56%, rgba(45,51,244,.30), transparent 72%);
  animation:heroAura 11s ease-in-out infinite}
/* screen-light spill + pedestal glow that grounds the laptop */
.hero .hero-viz::after{content:"";position:absolute;z-index:0;left:50%;bottom:1%;transform:translateX(-50%);
  width:74%;height:16%;pointer-events:none;
  background:radial-gradient(closest-side, rgba(176,222,94,.16), transparent 72%)}
@keyframes heroAura{0%,100%{opacity:.72;transform:scale(1)}50%{opacity:1;transform:scale(1.04)}}
.hv-line{fill:none;stroke:var(--border);stroke-width:1.5}
.hv-pulse{fill:none;stroke:var(--lime);stroke-width:2;stroke-linecap:round;
  stroke-dasharray:4 340;filter:drop-shadow(0 0 6px var(--lime));
  animation:hvflow 2.8s linear infinite}
@keyframes hvflow{from{stroke-dashoffset:344}to{stroke-dashoffset:0}}
.hv-chip{fill:var(--card);stroke:var(--border);stroke-width:1}
.hv-lbl{fill:var(--muted);font-family:var(--f-mono);font-size:11px;letter-spacing:.04em;text-anchor:middle}
.hv-glow{fill:var(--lime);opacity:.16;transform-box:fill-box;transform-origin:center;
  animation:hvpulse 2.8s var(--ease) infinite}
@keyframes hvpulse{0%,100%{opacity:.1;transform:scale(1)}50%{opacity:.26;transform:scale(1.1)}}
.hv-hub{fill:var(--card-2);stroke:var(--lime);stroke-width:1.5;
  filter:drop-shadow(0 0 16px rgba(176,222,94,.5))}
.hv-val{fill:var(--lime);font-family:var(--f-mono);font-size:15px;font-weight:600;text-anchor:middle}
.hv-cap{fill:var(--muted);font-family:var(--f-mono);font-size:9.5px;letter-spacing:.14em;text-anchor:middle}

/* INTRO — the former hero body, now its own section */
.intro-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(2rem,5vw,4.5rem);align-items:center}
.intro .eyebrow{margin-bottom:1.4rem}
.hero-sub{font-size:var(--t-bodyl);color:var(--muted);max-width:52ch;line-height:1.6}
.tagline{font-family:var(--f-serif);font-style:italic;font-size:clamp(1.35rem,1.1rem + 1vw,1.8rem);
  color:var(--ink);margin:1.6rem 0 2rem;line-height:1.25;max-width:24ch}
.tagline .lm{color:var(--lime)}
.hero-cta{display:flex;align-items:center;gap:1.3rem;flex-wrap:wrap}
.hero-cta .micro{font-family:var(--f-mono);font-size:.8rem;color:var(--muted)}

/* hero query console */
.console{
  background:linear-gradient(180deg,var(--card),var(--surface));
  border:1px solid var(--border);border-radius:18px;padding:1.5rem;
  box-shadow:0 40px 90px -50px rgba(0,0,0,.9),0 0 0 1px rgba(45,51,244,.15) inset;
  position:relative;overflow:hidden;
}
.console::after{content:"";position:absolute;inset:0;border-radius:18px;
  background:radial-gradient(30rem 12rem at 80% -10%,rgba(45,51,244,.25),transparent 60%);pointer-events:none}
.console-bar{display:flex;align-items:center;gap:.5rem;margin-bottom:1.1rem}
.console-bar .dot{width:10px;height:10px;border-radius:50%;background:var(--border)}
.console-bar .lbl{margin-left:auto;font-family:var(--f-mono);font-size:.72rem;color:var(--muted);letter-spacing:.08em}
.q-ask{font-family:var(--f-mono);font-size:.76rem;color:var(--muted);margin-bottom:.5rem}
.q-stage{position:relative;min-height:3.4em}
.q-item{position:absolute;inset:0;font-size:1.15rem;font-weight:600;line-height:1.3;color:var(--ink);
  opacity:0;transform:translateY(8px);transition:opacity .5s var(--ease),transform .5s var(--ease)}
.q-item.on{opacity:1;transform:none}
.q-item .cursor{display:inline-block;width:.55ch;height:1.1em;background:var(--lime);margin-left:2px;
  vertical-align:-2px;animation:blink 1.1s steps(1) infinite;box-shadow:0 0 10px var(--lime)}
@keyframes blink{50%{opacity:0}}
.console-ans{margin-top:1.2rem;border-top:1px solid var(--border);padding-top:1.1rem;display:flex;align-items:center;gap:.9rem}
.console-ans .tag{font-family:var(--f-mono);font-size:.7rem;color:var(--muted);letter-spacing:.1em;text-transform:uppercase}
.console-ans .val{margin-left:auto}

/* ============================================================
   SECTION SHELL
   ============================================================ */
.sec{padding:clamp(4.5rem,9vh,7.5rem) 0}
.sec.air{padding-block:clamp(6rem,13vh,10rem)}
.sec.knit{padding-top:clamp(2rem,4vh,3.25rem)}
.sec-head{margin-bottom:clamp(2.2rem,4vw,3.4rem);max-width:56ch}
.sec-head h2{margin:0}

/* numbered chapter system + continuous narrative spine
   the wire runs unbroken down the left of the content column (problem→faq);
   each numbered node is a station that masks the wire behind it */
.chapter{display:inline-flex;align-items:center;gap:calc(var(--rail) - 2.5rem);margin-bottom:1.4rem;position:relative;z-index:2}
.chapter .ch-num{font-family:var(--f-mono);font-size:.95rem;font-weight:600;color:var(--lime);
  letter-spacing:.02em;line-height:1;flex:none;width:2.5rem;height:2.5rem;
  display:inline-flex;align-items:center;justify-content:center;
  background:var(--bg);border:1px solid rgba(176,222,94,.45);border-radius:50%;
  box-shadow:0 0 18px rgba(176,222,94,.28);position:relative;z-index:2}
.chapter .ch-label{font-family:var(--f-mono);font-size:.78rem;font-weight:500;letter-spacing:.14em;
  text-transform:uppercase;color:var(--muted)}

/* the spine: one continuous wire, centered on the node column (contentLeft + 1.25rem).
   sits behind .wrap (z:1) so each node's opaque fill masks it into a station */
.spine::before{content:"";position:absolute;top:0;bottom:0;z-index:0;pointer-events:none;
  left:calc(1.25rem + max(var(--pad), 50% - var(--maxw)/2 + var(--pad)));
  width:2px;margin-left:-1px;background:rgba(176,222,94,.24);
  box-shadow:0 0 10px rgba(176,222,94,.14)}
.spine-start::before{background:linear-gradient(180deg,transparent,rgba(176,222,94,.24) 5.5rem)}
.spine-end::before{background:linear-gradient(0deg,transparent,rgba(176,222,94,.24) 5.5rem);box-shadow:none}
/* hanging number: content column indents to the eyebrow; only the number hangs left onto the wire */
.spine .wrap{padding-left:calc(var(--pad) + var(--rail))}
.spine .chapter{margin-left:calc(-1 * var(--rail))}

/* the laser: a bright fill that travels down over the dim base as you scroll.
   height is driven by the global --laser minus this section's offset (--seg-start),
   so the segments flow into one continuous beam; colored per section (recolours on the light interstitial) */
.spine::after{content:"";position:absolute;z-index:0;pointer-events:none;top:0;
  left:calc(1.25rem + max(var(--pad), 50% - var(--maxw)/2 + var(--pad)));
  width:2px;margin-left:-1px;
  height:clamp(0px, calc(var(--laser,0px) - var(--seg-start,0px)), 100%);
  background:var(--lime);
  box-shadow:0 0 12px 1.5px rgba(176,222,94,.85),0 0 5px rgba(176,222,94,1)}
.proof.spine::after{background:var(--primary);
  box-shadow:0 0 12px 1.5px rgba(45,51,244,.75),0 0 5px rgba(45,51,244,.9)}

/* under GSAP the nodes start unlit and ignite as the laser reaches them */
.gsap .chapter .ch-num{color:var(--muted);border-color:var(--border);box-shadow:none;
  transition:color .45s var(--ease),border-color .45s var(--ease),box-shadow .45s var(--ease),transform .4s var(--ease)}
.gsap .chapter.lit .ch-num{color:var(--lime);border-color:rgba(176,222,94,.6);
  box-shadow:0 0 22px rgba(176,222,94,.5);transform:scale(1.07)}
.gsap .proof .chapter .ch-num{color:var(--paper-muted);border-color:var(--paper-border);box-shadow:none}
.gsap .proof .chapter.lit .ch-num{color:var(--primary);border-color:rgba(45,51,244,.55);
  box-shadow:0 0 22px rgba(45,51,244,.4)}

/* ============================================================
   PROBLEM
   ============================================================ */
.problem{background:linear-gradient(180deg,var(--bg) 0%,var(--surface) 14%,var(--surface) 86%,var(--bg) 100%)}
/* staggered editorial list — deliberately NOT the 3-up card grid used by How It Works */
.prob-list{position:relative;z-index:1;max-width:62rem;margin-top:.5rem;display:flex;flex-direction:column}
.prob-item{display:grid;grid-template-columns:auto 1fr;gap:.4rem 1.8rem;align-items:start;
  padding:2.1rem 0;border-top:1px solid var(--border)}
.prob-item:last-child{border-bottom:1px solid var(--border)}
.prob-item:nth-child(2){margin-left:clamp(0px,6vw,5rem);--dx:38px}
.prob-item:nth-child(3){margin-left:clamp(0px,12vw,10rem);--dx:54px}
.prob-num{font-family:var(--f-mono);font-size:clamp(2.1rem,1.4rem + 2vw,3.1rem);font-weight:600;
  line-height:.85;color:var(--ink);opacity:.16;font-variant-numeric:tabular-nums;grid-row:span 2}
.prob-item h3{font-size:var(--t-h3);font-weight:600;line-height:1.2;margin:0 0 .55rem;letter-spacing:-.01em;max-width:26ch}
.prob-item p{color:var(--muted);font-size:1rem;line-height:1.6;max-width:54ch}

/* ============================================================
   WORKS WITH + connective diagram
   ============================================================ */
.works .wrap{display:grid;grid-template-columns:1fr 1.25fr;gap:clamp(2rem,5vw,4rem);align-items:center}
.works-body p{color:var(--muted);margin-top:1.2rem;font-size:var(--t-bodyl);line-height:1.6}
.works-body .punch{color:var(--ink);font-weight:500}
.works-viz{width:100%}
.works-viz .hv-lbl{font-size:10.5px}

/* ============================================================
   SPOTTED SIGNALS ⭐ (centerpiece)
   ============================================================ */
.signals{background:linear-gradient(180deg,var(--bg),var(--surface) 14%,var(--surface) 86%,var(--bg))}
.panel{background:linear-gradient(180deg,var(--card),var(--surface));border:1px solid var(--border);
  border-radius:20px;overflow:hidden;box-shadow:0 50px 110px -60px rgba(0,0,0,.9)}
.panel-top{display:flex;align-items:center;gap:.7rem;padding:1.1rem 1.5rem;border-bottom:1px solid var(--border);
  font-family:var(--f-mono);font-size:.76rem;color:var(--muted);letter-spacing:.06em}
.panel-top .live{width:8px;height:8px;border-radius:50%;background:var(--lime);box-shadow:0 0 10px var(--lime);
  animation:pulse 2s var(--ease) infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.4}}
.panel-top .cols{margin-left:auto;display:flex;gap:2.5rem}
.panel-top .cols span{min-width:5rem;text-align:right}
.sig-row{display:grid;grid-template-columns:1fr auto auto auto;gap:1.5rem;align-items:center;
  padding:1.4rem 1.5rem;border-bottom:1px solid var(--border);transition:background .3s var(--ease)}
.sig-row:last-child{border-bottom:none}
.sig-row:hover{background:rgba(45,51,244,.08)}
.sig-rank{position:absolute}
.sig-name{font-weight:500;font-size:1.02rem;line-height:1.35;max-width:42ch}
.sig-name .n{font-family:var(--f-mono);color:var(--muted);font-size:.8rem;margin-right:.7rem}
.sig-val{font-family:var(--f-mono);font-weight:600;font-size:clamp(1.2rem,1rem + .9vw,1.7rem);
  color:var(--lime);text-shadow:0 0 24px rgba(176,222,94,.4);text-align:right;min-width:6.5rem;font-variant-numeric:tabular-nums}
.sig-val .risk{display:block;font-size:.66rem;color:var(--magenta);letter-spacing:.06em;text-shadow:none;font-weight:500}
.sig-deals{font-family:var(--f-mono);font-size:.86rem;color:var(--muted);text-align:right;min-width:5.5rem}
.sig-trend{font-family:var(--f-mono);font-size:.8rem;text-align:right;min-width:9rem;white-space:nowrap}
.sig-trend .up{color:var(--magenta)}
.sig-trend .steady{color:var(--mint)}
.panel-note{padding:.9rem 1.5rem;font-family:var(--f-mono);font-size:.72rem;color:var(--muted);
  background:var(--bg);border-top:1px solid var(--border)}
.signals-intro{margin-top:1rem}

/* ============================================================
   PROOF — LIGHT interstitial (rhythm break)
   ============================================================ */
.proof{background:var(--paper);color:var(--paper-ink)}
.proof .eyebrow{color:var(--paper-muted)}
.proof .chapter .ch-num{color:var(--primary);background:var(--paper);
  border-color:rgba(45,51,244,.4);box-shadow:0 0 0 1px rgba(45,51,244,.08)}
.proof .chapter .ch-label{color:var(--paper-muted)}
.proof.spine::before{background:rgba(45,51,244,.28);box-shadow:none}
.proof h2{color:var(--paper-ink);max-width:24ch}
.proof-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:clamp(1.5rem,4vw,3rem);align-items:start;margin-top:2rem}
.proof-col{display:flex;flex-direction:column;gap:clamp(1.4rem,3vw,2.2rem)}
.proof-story p{color:#3a3c4d;font-size:var(--t-bodyl);line-height:1.65;margin-bottom:1.1rem;max-width:56ch}
.proof-stat{background:#fff;border:1px solid var(--paper-border);border-radius:18px;padding:2rem}
.proof-big{font-family:var(--f-mono);font-weight:600;font-size:clamp(2.6rem,1.8rem + 3vw,4rem);
  color:var(--primary);letter-spacing:-.02em;line-height:1;font-variant-numeric:tabular-nums}
.proof-stat .cap{color:var(--paper-muted);margin-top:.8rem;line-height:1.55}
.logos{display:flex;gap:2.4rem;align-items:center;margin-top:1.6rem;flex-wrap:wrap}
/* real customer logos — one mono ink on the light Proof strip; colour + subtle lift on hover, consistent across all four */
.logos .clogo{width:auto;filter:brightness(0);opacity:.5;transition:opacity .25s var(--ease),filter .25s var(--ease),transform .25s var(--ease)}
.logos .clogo:hover{filter:none;opacity:1;transform:translateY(-2px)}
/* Soundstripe ships as an icon-only mark → lock it up with its name to match the other wordmarks */
.logos .clogo-lockup{display:inline-flex;align-items:center;gap:.5rem;opacity:.5;transition:opacity .25s var(--ease),transform .25s var(--ease)}
.logos .clogo-lockup:hover{opacity:1;transform:translateY(-2px)}
.logos .clogo-lockup img{filter:grayscale(1);transition:filter .25s var(--ease)}
.logos .clogo-lockup:hover img{filter:none}
.logos .clogo-lockup .nm{font-weight:700;font-size:1.1rem;color:var(--paper-ink);letter-spacing:-.02em}
/* Inventory Ally ships as [pink icon + white wordmark] in one PNG; crop to just the icon square, name is HTML text so it never goes white-on-white */
.logos .ia-ico{display:inline-block;height:24px;width:24px;overflow:hidden;line-height:0}
.logos .ia-ico img{height:24px;width:auto;max-width:none;display:block}
.wordmark{font-weight:700;font-size:1.3rem;color:var(--paper-ink);letter-spacing:-.02em;opacity:.85}
.wordmark span{color:var(--primary)}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list{border-top:1px solid var(--border);margin-top:1.5rem}
.faq{border-bottom:1px solid var(--border)}
.faq summary{list-style:none;display:flex;align-items:flex-start;gap:1.2rem;padding:1.5rem 0;
  font-size:clamp(1.05rem,1rem + .5vw,1.3rem);font-weight:600;letter-spacing:-.01em;color:var(--ink)}
.faq summary::-webkit-details-marker{display:none}
.faq summary .pm{margin-left:auto;flex:none;width:26px;height:26px;position:relative;transition:transform .3s var(--ease)}
.faq summary .pm::before,.faq summary .pm::after{content:"";position:absolute;background:var(--lime);border-radius:2px}
.faq summary .pm::before{top:12px;left:3px;right:3px;height:2px}
.faq summary .pm::after{left:12px;top:3px;bottom:3px;width:2px;transition:transform .3s var(--ease)}
.faq[open] summary .pm::after{transform:scaleY(0)}
.faq-a{color:var(--muted);line-height:1.65;padding:0 3rem 1.6rem 0;max-width:72ch;font-size:1.02rem}
.faq summary .qn{color:var(--lime);font-family:var(--f-mono);font-size:.85rem;flex:none;padding-top:.2rem}

/* ============================================================
   FINAL CTA — indigo drenched
   ============================================================ */
.close{background:linear-gradient(160deg,var(--primary),var(--primary-deep));border-radius:0}
.close .wrap{padding-top:clamp(4.5rem,9vh,7rem);padding-bottom:clamp(4.5rem,9vh,7rem)}
/* left-aligned copy + infinity bookend on the right; content indented so the arriving line sits in the gutter */
.close-grid{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr);gap:clamp(2rem,5vw,4.5rem);
  align-items:center}
.close .eyebrow{color:rgba(244,246,255,.75)}
.close h2{color:#fff;margin:1rem 0 1.4rem;max-width:24ch;font-size:var(--t-h2)}
.close p{color:rgba(244,246,255,.85);max-width:46ch;margin:0 0 2rem;font-size:var(--t-bodyl)}
.close .micro{font-family:var(--f-mono);font-size:.82rem;color:rgba(244,246,255,.7);margin-top:1.2rem}
/* product shot closes the page (the laptop that used to sit in the hero) */
.close-viz{display:flex;justify-content:center;align-items:center}
.close-shot{width:104%;max-width:none;height:auto;filter:drop-shadow(0 34px 74px rgba(0,0,0,.5))}
/* the continuous spine TERMINATES at the Book-a-demo button (JS sets --ccap), not past it */
.close.spine::before{bottom:auto;height:var(--ccap,80%)}
.close.spine::after{height:clamp(0px,calc(var(--laser,0px) - var(--seg-start,0px)),var(--ccap,80%))}
/* terminal node that closes the line at the button; ignites (with the button) when the laser arrives */
.spine-tip{position:absolute;z-index:2;pointer-events:none;top:var(--ccap,80%);
  left:calc(1.25rem + max(var(--pad), 50% - var(--maxw)/2 + var(--pad)));
  width:12px;height:12px;margin-left:-1px;transform:translate(-50%,-50%);border-radius:50%;
  background:var(--lime);opacity:.3;transition:opacity .4s var(--ease),box-shadow .4s var(--ease),transform .4s var(--ease)}
.spine-tip.lit{opacity:1;box-shadow:0 0 22px 5px rgba(176,222,94,.7);transform:translate(-50%,-50%) scale(1.15)}
/* CTA button: white by default, turns lime when the line's laser arrives */
#bookBtn{background:#fff;color:var(--bg);
  transition:background .45s var(--ease),color .45s var(--ease),box-shadow .5s var(--ease),transform .3s var(--ease)}
#bookBtn:hover{background:#fff;transform:translateY(-2px)}
#bookBtn.lit{background:var(--lime);box-shadow:0 0 0 4px rgba(176,222,94,.22),0 16px 44px -10px rgba(176,222,94,.75)}
#bookBtn.lit:hover{background:var(--lime-deep)}
@media(max-width:820px){
  .close-grid{grid-template-columns:1fr}
  .close-viz{order:-1;margin-bottom:.5rem}.close-shot{width:100%;max-width:420px}
  .spine-tip{display:none}
}

/* ============================================================
   FOOTER
   ============================================================ */
footer{background:var(--bg);border-top:1px solid var(--border);padding:3rem 0 3.5rem}
.foot-inner{display:flex;justify-content:space-between;align-items:center;gap:1.5rem;flex-wrap:wrap}
.foot-links{display:flex;gap:1.8rem;font-size:.92rem;color:var(--muted);flex-wrap:wrap}
.foot-links a:hover{color:var(--ink)}
.foot-legal{font-family:var(--f-mono);font-size:.76rem;color:var(--muted)}

/* ============================================================
   REVEAL animation
   ============================================================ */
/* on-scroll entrance vocabulary — mapped to content ROLE, not one uniform fade.
   every variant gates on .js; .reveal.in (last + most specific) resolves them all,
   so the CSS-transition path (no-GSAP / reduced-motion) can't get stuck scaled/shifted */
.js .reveal{opacity:0;transform:translateY(14px);transition:opacity .7s var(--ease),transform .7s var(--ease)}
.js .reveal.q{transform:none}                          /* quiet: supporting content resolves in place */
.js .reveal.sf{transform:translateY(10px) scale(.985)} /* surface: signature panels resolve like a screen */
.js .reveal.sx{transform:translateX(var(--dx,28px))}   /* directional: follows the Problem staircase */
.js .reveal.in{opacity:1;transform:none}
.reveal.d1{transition-delay:.08s}.reveal.d2{transition-delay:.16s}.reveal.d3{transition-delay:.24s}

/* AI insight bubble — Signals section (Auxia agent "what this means") */
.insight{margin-top:1.6rem;max-width:64ch;background:linear-gradient(180deg,var(--card),var(--surface));
  border:1px solid var(--border);border-radius:16px;padding:1.3rem 1.5rem;display:flex;gap:1.1rem;align-items:flex-start;
  box-shadow:0 30px 70px -50px rgba(0,0,0,.9)}
.insight-tag{font-family:var(--f-mono);font-size:.7rem;color:var(--lime);letter-spacing:.1em;text-transform:uppercase;
  white-space:nowrap;padding-top:.2rem;display:inline-flex;align-items:center;gap:.4rem}
.insight-tag::before{content:"";width:8px;height:8px;border-radius:50%;background:var(--lime);box-shadow:0 0 10px var(--lime)}
.insight p{color:var(--ink);font-size:1.04rem;line-height:1.55;margin:0}
.insight b{color:var(--lime);font-family:var(--f-mono);font-weight:600}
@media(max-width:600px){.insight{flex-direction:column;gap:.6rem}}

/* ============================================================
   AUXIA-LEVEL MOTION ADDITIONS
   ============================================================ */
/* scroll progress bar */
.scroll-progress{position:fixed;top:0;left:0;height:3px;width:100%;z-index:150;
  background:linear-gradient(90deg,var(--lime),var(--primary));
  transform:scaleX(0);transform-origin:0 50%;box-shadow:0 0 12px rgba(176,222,94,.6)}

/* nav stays fixed at all times; only its background solidifies on scroll */
.nav{transition:background .3s var(--ease),border-color .3s var(--ease)}

/* hero ambient glow that drifts */
.hero{overflow:clip}
.hero-glow{position:absolute;width:52rem;height:52rem;top:-18rem;right:-14rem;z-index:0;pointer-events:none;
  background:radial-gradient(circle,rgba(45,51,244,.34),transparent 62%);filter:blur(8px)}

/* PROBLEM — signal-chaos fragments */
.problem{overflow:clip}
.chaos{position:absolute;inset:0;z-index:0;pointer-events:none}
.frag{position:absolute;font-family:var(--f-mono);font-size:.72rem;color:var(--muted);
  background:var(--card);border:1px solid var(--border);border-radius:8px;padding:.4rem .6rem;
  white-space:nowrap;opacity:.5;box-shadow:0 8px 24px -12px rgba(0,0,0,.7)}
.frag .k{color:var(--lime);margin-right:.4rem}
.problem .wrap{position:relative;z-index:1}

/* SPOTTED SIGNALS — sticky stage + rows rank in */
.signals-stage{position:relative}
@media(min-width:901px){
  .signals .panel{position:sticky;top:14vh}
  .signals-stage{min-height:118vh}
}
.js.gsap .sig-row{opacity:0}
.sig-scan{position:absolute;left:0;right:0;height:2px;top:0;z-index:3;pointer-events:none;
  background:linear-gradient(90deg,transparent,var(--lime),transparent);opacity:0;box-shadow:0 0 16px var(--lime)}

/* FINAL CTA — living infinity glow */
.close{overflow:clip}
.close-orb{position:absolute;width:40rem;height:40rem;left:50%;top:50%;transform:translate(-50%,-50%);
  z-index:0;pointer-events:none;background:radial-gradient(circle,rgba(176,222,94,.16),transparent 60%)}
.close .wrap{position:relative;z-index:1}

/* section-enter parallax helper */
.par{will-change:transform}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:900px){
  :root{--rail:3rem}
  .intro-grid,.works .wrap,.proof-grid,.hero-fold{grid-template-columns:1fr}
  .hero-fold{gap:2.5rem}
  .hero-viz{max-width:400px;margin-top:.5rem}
  .hero{min-height:auto;padding:9rem 0 4rem}
  .prob-item{margin-left:0!important;grid-template-columns:1fr;gap:.2rem}
  .prob-num{grid-row:auto}
  .js .reveal.sx{transform:translateY(14px)}  /* flattened Problem layout on mobile → rise, don't slide off-screen right */
  .hero{padding-top:7rem}
  .panel-top .cols{display:none}
  .sig-row{grid-template-columns:1fr auto;gap:.6rem 1.2rem}
  .sig-deals{grid-column:1;text-align:left}
  .sig-trend{grid-column:2;text-align:right}
  .sig-name{grid-column:1/-1}
}
@media(max-width:520px){
  .hero-cta{gap:.9rem}
  .panel-top .cols{display:none}
  .foot-inner{flex-direction:column;align-items:flex-start}
}

/* reduced motion: show final states, kill transforms/animation */
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;
    transition-duration:.001ms!important;scroll-behavior:auto!important}
  .reveal{opacity:1;transform:none}
  .q-item{position:relative;opacity:1;transform:none}
  .q-item:not(:first-child){display:none}
  .js.gsap .sig-row{opacity:1}
  .signals .panel{position:static}
  .signals-stage{min-height:0}
  .scroll-progress{display:none}
  .hv-pulse{display:none}
  .hv-glow{opacity:.22}
}

/* ============================================================
   D5 — vs a ChatGPT/Claude prompt (Meghan #18)
   ============================================================ */
.versus{margin-top:clamp(1.8rem,4vw,2.8rem);border:1px solid var(--border);border-radius:16px;overflow:hidden;
  background:linear-gradient(180deg,var(--card),var(--surface))}
.vs-head{display:grid;grid-template-columns:1fr 1.05fr;font-family:var(--f-mono);font-size:.72rem;
  letter-spacing:.12em;text-transform:uppercase}
.vs-head span{padding:.95rem 1.4rem}
.vs-a{color:var(--muted)}
.vs-b{color:var(--ink);background:rgba(45,51,244,.16);border-left:1px solid var(--border)}
.vs-rows{list-style:none;margin:0;padding:0}
.vs-row{display:grid;grid-template-columns:1fr 1.05fr;border-top:1px solid var(--border)}
.vs-x,.vs-y{padding:1.05rem 1.4rem;font-size:.94rem;line-height:1.55}
.vs-x{color:var(--muted)}
.vs-y{color:var(--ink);background:rgba(45,51,244,.06);border-left:1px solid var(--border);
  display:flex;gap:.6rem;align-items:baseline}
.vs-y::before{content:"\2192";color:var(--primary);font-weight:600;flex:none}
@media(max-width:640px){
  .vs-head{display:none}
  .vs-row{grid-template-columns:1fr}
  /* header is hidden on mobile, so label each stacked cell so you know which side is which */
  .vs-x::before{content:"A ChatGPT or Claude prompt";display:block;font-family:var(--f-mono);
    font-size:.62rem;letter-spacing:.1em;text-transform:uppercase;color:var(--muted);margin-bottom:.45rem}
  .vs-y{display:block;border-left:none;border-top:1px solid var(--border)}
  .vs-y::before{content:"Aleoop";display:block;font-family:var(--f-mono);font-weight:600;
    font-size:.62rem;letter-spacing:.1em;text-transform:uppercase;color:var(--primary);margin-bottom:.45rem}
}

/* ============================================================
   Loop cards — Discover / Prioritize / Validate (§4, re-added per client checklist 22 Jul)
   ============================================================ */
.loop{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem;margin-top:clamp(1.8rem,4vw,2.8rem)}
.loop-card{border:1px solid var(--border);border-radius:16px;padding:1.7rem 1.6rem;background:var(--card)}
.loop-step{display:block;font-family:var(--f-mono);font-size:.72rem;letter-spacing:.14em;
  text-transform:uppercase;color:var(--lime);margin-bottom:.9rem}
.loop-card h3{font-size:1.12rem;line-height:1.3;margin-bottom:.7rem}
.loop-card p{color:var(--muted);font-size:.95rem;line-height:1.6}
@media(max-width:820px){.loop{grid-template-columns:1fr}}

/* ============================================================
   D3 — Proof layout rework (logos to their own labeled strip)
   ============================================================ */
.proof-kicker{margin-bottom:.7rem}
.proof-second{max-width:56ch}
.proof-second p{color:#3a3c4d;font-size:var(--t-bodyl);line-height:1.65}
/* logos now a card sitting directly under the $60K box (right column of the 2×2) */
.proof-logos{background:#fff;border:1px solid var(--paper-border);border-radius:18px;padding:1.5rem 1.8rem}
/* 2×2 grid inside the box so the four logos sit evenly (not 2-1-1 from flex-wrap) */
.proof-logos .logos{display:grid;grid-template-columns:1fr 1fr;gap:1.3rem 1rem;align-items:center;margin-top:1rem}

/* §7 (client checklist 22 Jul) — logos section: copy on the left, partner logos on the right (2×2) */
.proof-split{display:grid;grid-template-columns:1.1fr .9fr;gap:clamp(2rem,6vw,5rem);align-items:center;margin-top:clamp(1rem,3vw,2rem)}
.proof-logos-r .logos{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.8rem,4vw,3rem) clamp(2rem,5vw,3.5rem);align-items:center;justify-items:center;margin:0}
.proof-logos-r .clogo,.proof-logos-r .clogo-lockup{transform:scale(1.25);transform-origin:center}
@media(max-width:820px){.proof-split{grid-template-columns:1fr;gap:2.2rem}.proof-logos-r .logos{max-width:380px}}

/* ============================================================
   PRODUCT TOUR — guided scrollytelling (Product Usage.docx)
   ============================================================ */
.tour{margin-top:clamp(1.5rem,4vw,2.5rem)}
.tour-steps{list-style:none;margin:0;padding:0}
.tour-intro{margin-bottom:clamp(1.4rem,3vw,2.2rem)}
.tour-intro .lead{margin-top:1rem}
.tour-step{padding:1.6rem 0}
.tour-k{font-family:var(--f-mono);font-size:.74rem;letter-spacing:.14em;text-transform:uppercase;color:var(--muted)}
.tour-step h3{font-size:var(--t-h3);font-weight:600;line-height:1.18;letter-spacing:-.01em;margin:.6rem 0 .7rem;max-width:20ch}
.tour-step p{color:var(--muted);font-size:var(--t-bodyl);line-height:1.6;max-width:46ch}
.tour-inline{width:100%;border:1px solid var(--border);border-radius:12px;margin-top:1.3rem;display:block}
/* browser-chrome frame around the light product screens */
.tour-viz{display:none}
.tour-frame{margin:0;border:1px solid var(--border);border-radius:16px;overflow:hidden;
  background:var(--card-2);box-shadow:0 40px 80px -50px rgba(45,51,244,.7),0 0 0 1px rgba(176,222,94,.04)}
.tf-bar{display:flex;gap:.45rem;padding:.7rem .9rem;background:var(--surface);border-bottom:1px solid var(--border)}
.tf-bar i{width:10px;height:10px;border-radius:50%;background:var(--border)}
.tour-shots{position:relative;aspect-ratio:16/10;background:var(--surface);overflow:hidden;cursor:zoom-in}
.tour-screen{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:top left;
  opacity:0;transition:opacity .6s var(--ease),transform .3s cubic-bezier(.22,1,.36,1)}
.tour-screen.on{opacity:1}
/* hover to magnify a screen in place — lets the user read fine detail; the frame/shots overflow clips the zoom to the window (desktop/fine-pointer only) */
.tour-shots.tz .tour-screen.on{transform:scale(1.7);will-change:transform}
@media(hover:none),(pointer:coarse){.tour-shots{cursor:default}.tour-shots.tz .tour-screen.on{transform:none}}
@media(prefers-reduced-motion:reduce){.tour-screen{transition:opacity .3s var(--ease)}.tour-shots.tz .tour-screen.on{transition:none}}
@media(min-width:901px){
  .js .tour{display:grid;grid-template-columns:.92fr 1.08fr;gap:clamp(2.5rem,6vw,5rem);align-items:start}
  .js .tour-viz{display:block;position:sticky;top:13vh;align-self:start}
  .js .tour-inline{display:none}
  .js .tour-step{min-height:70vh;display:flex;flex-direction:column;justify-content:center;
    opacity:.38;transition:opacity .45s var(--ease)}
  .js .tour-step.active{opacity:1}
}
@media(prefers-reduced-motion:reduce){
  .tour-viz{display:none!important}
  .tour-inline{display:block!important}
  .js .tour-step{min-height:0!important;opacity:1!important}
}

/* ============================================================
   NAVIGATION — added 2026-08-26, the site's first real nav.

   ⚠️ This is the ONE deliberate reopening of the closed homepage, and it is
   additive: nav only, no copy, no section, no change to the visual language.
   It lives here rather than in page.css because the homepage loads only this
   file, and a nav that exists on the subpages but not on the page most search
   traffic lands on is worse than no nav at all.

   The markup is GENERATED from tools/nav/nav.json by tools/nav/build-nav.mjs.
   Never hand-edit the block between <!-- NAV:START --> and <!-- NAV:END -->.

   Links are DM Sans, not the mono Label step: mono in this system means
   counted, labelled or measured, and a nav item is none of those.
   ============================================================ */

.nav-inner{gap:clamp(1rem,3vw,2rem)}
.nav-menu{flex:1 1 auto;display:flex;align-items:center;gap:1rem;min-width:0}
.nav-list{list-style:none;margin:0 auto;padding:0;display:flex;align-items:center;gap:clamp(1.1rem,2.4vw,2rem)}
.nav-item{position:relative}

.nav-list a,.nav-group{
  font-family:inherit;font-size:.92rem;font-weight:500;letter-spacing:-.005em;
  color:var(--muted);background:none;border:0;padding:.35rem 0;cursor:pointer;
  display:inline-flex;align-items:center;gap:.35rem;
  border-bottom:1px solid transparent;
  transition:color .2s var(--ease),border-color .2s var(--ease);
}
.nav-list a:hover,.nav-group:hover,.nav-group[aria-expanded="true"]{color:var(--ink)}
/* the current page: the nav's answer to "where am I". Indigo, never lime —
   lime is money and the CTA, and a nav item is neither. */
.nav-list a[aria-current="page"]{color:var(--ink);border-bottom-color:var(--primary)}

.nav-caret{width:.4rem;height:.4rem;border-right:1.5px solid currentColor;border-bottom:1.5px solid currentColor;
  transform:rotate(45deg) translate(-1px,-1px);transition:transform .25s var(--ease)}
.nav-group[aria-expanded="true"] .nav-caret{transform:rotate(-135deg) translate(-1px,-1px)}

/* ---------- dropdown ----------
   Not exercised yet: no group has two live children, so nothing renders this
   today. It goes live with Wave 3 (Integrations) or the second Wave-2 page. */
.nav-sub{
  list-style:none;margin:0;padding:.5rem;position:absolute;top:calc(100% + .7rem);left:50%;
  transform:translateX(-50%) translateY(-6px);min-width:12.5rem;
  background:var(--surface);border:1px solid var(--border);border-radius:16px;
  box-shadow:0 30px 70px -40px rgba(0,0,0,.9);
  opacity:0;visibility:hidden;transition:opacity .22s var(--ease),transform .22s var(--ease),visibility .22s;
}
.nav-has-menu [aria-expanded="true"] + .nav-sub{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}
.nav-sub a{display:block;width:100%;padding:.55rem .7rem;border-radius:6px;border-bottom:0}
.nav-sub a:hover{background:var(--card-2)}
/* hover opens it on pointer devices; the button still carries the real state for
   keyboard and touch, which is what aria-expanded is for */
@media (hover:hover) and (pointer:fine){
  .nav-has-menu:hover .nav-sub{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}
}

/* ---------- mobile sheet ---------- */
.nav-toggle{display:none;background:none;border:0;padding:.6rem;cursor:pointer;color:var(--ink)}
.nav-bars,.nav-bars::before,.nav-bars::after{display:block;width:20px;height:1.5px;background:currentColor;
  transition:transform .25s var(--ease),opacity .2s var(--ease)}
.nav-bars::before,.nav-bars::after{content:"";position:relative}
.nav-bars::before{top:-6px}
.nav-bars::after{top:4.5px}
.nav-toggle[aria-expanded="true"] .nav-bars{background:transparent}
.nav-toggle[aria-expanded="true"] .nav-bars::before{transform:translateY(6px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] .nav-bars::after{transform:translateY(-4.5px) rotate(-45deg)}

@media (max-width:820px){
  .nav-toggle{display:block;order:3}
  /* the sheet HANGS from the fixed bar instead of pushing the page down: it is
     positioned against .nav, so opening it animates opacity and transform only —
     never max-height, which would animate layout on every frame */
  .nav-menu{
    position:absolute;top:100%;left:0;right:0;
    flex-direction:column;align-items:stretch;gap:0;
    background:rgba(14,16,32,.97);backdrop-filter:blur(14px);
    border-bottom:1px solid var(--border);
    padding:.4rem var(--pad) 1.15rem;max-height:80vh;overflow-y:auto;
    opacity:0;visibility:hidden;transform:translateY(-8px);
    transition:opacity .26s var(--ease),transform .26s var(--ease),visibility .26s;
  }
  .nav.open .nav-menu{opacity:1;visibility:visible;transform:none}
  .nav.open{background:rgba(14,16,32,.97);backdrop-filter:blur(14px)}
  .nav-list{margin:0;flex-direction:column;align-items:stretch;gap:0}
  .nav-item{border-top:1px solid var(--border)}
  .nav-list a,.nav-group{width:100%;padding:.95rem .1rem;font-size:1rem;border-bottom:0;justify-content:space-between}
  .nav-list a[aria-current="page"]{border-bottom:0;color:var(--ink)}
  /* the panel becomes an inline disclosure, not a floating menu */
  .nav-sub{position:static;transform:none;opacity:1;visibility:visible;min-width:0;
    background:none;border:0;box-shadow:none;padding:0 0 .5rem .1rem;display:none}
  .nav-has-menu [aria-expanded="true"] + .nav-sub{display:block;transform:none}
  @media (hover:hover) and (pointer:fine){ .nav-has-menu:hover .nav-sub{display:none} }
  .nav-sub a{padding:.6rem .1rem;color:var(--muted)}
  .nav-cta{margin-top:1.1rem;width:100%;justify-content:center}
}

@media (prefers-reduced-motion:reduce){
  .nav-menu,.nav-sub,.nav-caret,.nav-bars,.nav-bars::before,.nav-bars::after{transition:none}
}
