/* =============================================================================
   LismOS — lismos.com
   Hand-written. No framework, no build step, no runtime dependency, no 3rd-party request.
   Swiss: white base, black text, one colour — Swiss red. Golden-ratio proportions.
   ============================================================================= */

:root {
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "Helvetica Neue", Helvetica, Arial, sans-serif;

  --bg:        #ffffff;
  --bg-soft:   #f5f5f6;
  --card:      #ffffff;
  --card-2:    #f3f3f4;
  --card-border: #e5e5e8;
  --ink:       #111114;
  --ink-2:     #57575c;
  --ink-3:     #8b8b91;
  --hairline:  #e7e7ea;
  --accent:    #e30613;     /* Swiss red — the only colour on the page */
  --accent-h:  #c20510;
  /* the "gradients" are shades of grey (dark → light, for text/marks on white) */
  --grad: linear-gradient(120deg, #141416 0%, #5a5a60 55%, #a0a0a6 100%);
  --shadow:  0 14px 38px rgba(17,17,20,.10);
  --shadow-lg: 0 24px 60px rgba(17,17,20,.12);
  --glow:    rgba(227,6,19,.22);

  /* golden-ratio modular type scale (φ = 1.618) */
  --phi: 1.618;
  --fs-body:    1.0625rem;
  --fs-lead:    clamp(1.05rem, 1rem + .3vw, 1.22rem);
  --fs-h3:      clamp(1.2rem, 1.1rem + .45vw, 1.5rem);
  --fs-h2:      clamp(1.95rem, 1.3rem + 2.9vw, 3.236rem);
  --fs-bigh:    clamp(2.2rem, 1.4rem + 3.6vw, 4.236rem);
  --fs-h1:      clamp(2.6rem, 1.3rem + 5.6vw, 5.6rem);

  --content: 1600px;
  --pad: clamp(1.4rem, 4vw, 4rem);
  --band-y: clamp(4.5rem, 9vw, 8.5rem);
  --nav-h: 58px;
  --r-card: 0;
  --r-pill: 0;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(.16, .84, .44, 1);  /* smooth decel for section reveals */
}

/* ============================== base ============================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth;
  scroll-snap-type: y proximity; scroll-padding-top: var(--nav-h); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
[id] { scroll-margin-top: calc(var(--nav-h) + 1.4rem); }
/* gentle section snap — proximity never traps you mid-section; aligns each band under the nav */
.masthead, main > section, .colophon { scroll-snap-align: start; scroll-snap-stop: normal; }
@media (prefers-reduced-motion: reduce) { html { scroll-snap-type: none; } }
/* touch / narrow viewports: snap feels grabby against tall sections — desktop-mouse only */
@media (pointer: coarse), (max-width: 48rem) { html { scroll-snap-type: none; } }

body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--sans); font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.5; letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
/* the golden-ratio dot field (drawn on canvas by lismos.js) sits behind everything */
.field { position: fixed; inset: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }

h1, h2, h3 { margin: 0; font-weight: 600; letter-spacing: -0.022em; line-height: 1.06; overflow-wrap: break-word; color: var(--ink); }
p { margin: 0; }
em { font-style: normal; color: var(--ink); }
strong { font-weight: 600; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }
.vh { position:absolute!important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }
.brk { display: none; }
@media (min-width: 48rem) { .brk { display: inline; } }


.wrap { width: 100%; max-width: var(--content); margin-inline: auto; padding-inline: var(--pad); position: relative; z-index: 2; }
.dim { color: var(--ink-2); }
.small { font-size: .95rem; }

/* ============================== icons (Lucide, inlined) ============================== */
.lucide-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { display: inline-block; width: 1em; height: 1em; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; vertical-align: -0.14em; }

/* ============================== nav ============================== */
.nav { position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  -webkit-backdrop-filter: saturate(160%) blur(20px); backdrop-filter: saturate(160%) blur(20px);
  border-bottom: 1px solid transparent; transition: border-color .3s var(--ease), background .3s var(--ease); }
.nav.scrolled { border-bottom-color: var(--hairline); background: color-mix(in srgb, var(--bg) 90%, transparent); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--nav-h); }
.nav-logo { color: var(--ink); font-weight: 600; font-size: 1.05rem; letter-spacing: -0.01em; display: inline-flex; align-items: center; gap: .5rem; }
.nav-logo:hover { text-decoration: none; }
.nav-logo .mark { width: 1.7rem; height: 1.7rem; display: block; flex: none; }
.nav-links { display: flex; align-items: center; gap: clamp(1.1rem, 2.4vw, 2.4rem); }
.nav-links a { color: var(--ink-2); font-size: .92rem; }
.nav-links a:hover { color: var(--ink); text-decoration: none; }
.nav-cta { color: #fff !important; background: var(--accent); padding: .46rem 1.05rem; font-weight: 500; }
.nav-cta:hover { background: var(--accent-h); text-decoration: none; }
@media (max-width: 44rem) { .nav-links a:not(.nav-cta) { display: none; } }

/* ============================== scene typography ============================== */
.eyebrow { font-weight: 600; font-size: clamp(.8rem, .76rem + .15vw, .9rem); letter-spacing: .12em; text-transform: uppercase; margin-bottom: .9rem; color: var(--accent); }
.band-head { max-width: none; margin-bottom: clamp(2.4rem, 4.5vw, 4rem); }
h2 { font-size: var(--fs-h2); max-width: 20ch; letter-spacing: -0.028em; }
.big-h { font-size: var(--fs-bigh); max-width: 16ch; letter-spacing: -0.03em; }
.intro { font-size: var(--fs-lead); line-height: 1.55; color: var(--ink-2); font-weight: 400; margin-top: 1.1rem; max-width: 44rem; }
.band-head .intro { max-width: 46rem; }
.wide-prose { max-width: 46rem; }
.on-dark { color: var(--ink-2); }

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

/* ============================== bands ============================== */
.band { padding-block: var(--band-y); position: relative; }
.band-soft { background: var(--bg-soft); }

/* ============================== hero ============================== */
.masthead { min-height: calc(100svh - var(--nav-h)); display: flex; align-items: center; padding-block: clamp(2.5rem, 5vw, 4.5rem); position: relative; }
.masthead > .wrap { width: 100%; }
.hero { display: block; }
@media (min-width: 60rem) { .hero { display: grid; grid-template-columns: 1.618fr 1fr; align-items: center; gap: clamp(2.4rem, 5vw, 5rem); } }
.hero-title { font-size: var(--fs-h1); letter-spacing: -0.035em; line-height: 1.02; max-width: 15ch; }
.hero-lede { max-width: 40rem; margin: 1.618rem 0 0; color: var(--ink-2); font-size: var(--fs-lead); line-height: 1.55; }
.cta-row { display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; align-items: center; margin-top: 2rem; }
/* mobile: hero stacks as a block — keep the panel off the CTA buttons */
@media (max-width: 59.999rem) { .hero-panel { margin-top: 2.75rem; } }

/* hero entrance */
.js .hero-copy > * { opacity: 0; animation: rise 1s var(--ease) forwards; }
.js .hero-copy > *:nth-child(1){ animation-delay:.04s } .js .hero-copy > *:nth-child(2){ animation-delay:.12s }
.js .hero-copy > *:nth-child(3){ animation-delay:.2s } .js .hero-copy > *:nth-child(4){ animation-delay:.28s }
.js .hero-copy > *:nth-child(5){ animation-delay:.36s }
.js .hero-panel { opacity: 0; animation: rise 1s var(--ease) .34s forwards; }
@keyframes rise { from { opacity:0; transform: translateY(18px); } to { opacity:1; transform:none; } }

/* hero "operating system" list — no container, flush */
.os-panel { padding: 0; }
.os-head { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); padding-bottom: 1.1rem; border-bottom: 1px solid var(--ink); }
.os-apps { list-style: none; margin: 0; padding: 0; }
.os-apps li { display: grid; grid-template-columns: 1.6rem 1fr; align-items: center; gap: 1.2rem; padding: 1.15rem 0; color: var(--ink); font-size: 1.0625rem; border-bottom: 1px solid var(--hairline); }
.os-apps li:last-child { border-bottom: 0; }
.os-i { width: 1.5rem; height: 1.5rem; flex: none; display: inline-flex; align-items: center; justify-content: center; color: var(--ink-2); }
.os-i .icon { width: 1.4rem; height: 1.4rem; stroke: currentColor; stroke-width: 1.75; }

/* ============================== buttons ============================== */
.btn-pill { background: var(--accent); color: #fff; font-size: 1.0625rem; font-weight: 500; padding: .85rem 1.6rem; border: 0; cursor: pointer;
  transition: background .2s var(--ease); }
.btn-pill:hover { background: var(--accent-h); text-decoration: none; }
.text-link { color: var(--accent); font-size: 1.0625rem; font-weight: 500; }
.text-link span { display: inline-flex; transition: transform .2s var(--ease); }
.text-link .icon { width: 1.1em; height: 1.1em; }
.text-link:hover { text-decoration: none; }
.text-link:hover span { transform: translateX(4px); }

/* ============================== HOW — asymmetric split + steplist ============================== */
.split { display: grid; gap: clamp(2.4rem, 5vw, 4.5rem); }
@media (min-width: 60rem) { .split { grid-template-columns: 1fr 1.618fr; align-items: start; }
  .split-head { position: sticky; top: calc(var(--nav-h) + 2.5rem); } }
.split-head .intro { max-width: 34rem; }
.steplist { list-style: none; margin: 0; padding: 0; }
.steplist li { display: grid; grid-template-columns: 2.4rem 1fr; gap: clamp(1rem, 2.2vw, 1.9rem); align-items: baseline;
  padding: clamp(1.1rem, 2vw, 1.55rem) 0; border-top: 1px solid var(--hairline); }
.steplist li:last-child { border-bottom: 1px solid var(--hairline); }
.st-n { font-family: var(--mono); font-size: 1.0625rem; line-height: 1.5; color: var(--ink-3); }
.st-b h3 { font-size: clamp(1.1rem, 1rem + .35vw, 1.3rem); margin-bottom: .35rem; }
.st-b p { color: var(--ink-2); font-size: 1.0625rem; line-height: 1.5; margin: 0; max-width: 42rem; }

/* ============================== feature scenes (grid-2) ============================== */
.grid-2 { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 56rem) { .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-2.flip .g-visual { order: -1; } }
.g-text h2 { max-width: 16ch; }
.pull { font-size: clamp(1.3rem, 1.1rem + 1vw, 1.9rem); font-weight: 500; line-height: 1.22; letter-spacing: -0.025em; color: var(--ink); margin-top: 1.6rem; max-width: 24ch; }
.panel { background: var(--card); border: 1px solid var(--card-border); padding: clamp(1.5rem, 2.6vw, 2.4rem); }
.flow-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: .2rem; }
.flow-steps li { display: grid; grid-template-columns: 2.6rem 1fr; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--hairline); }
.flow-steps li:last-child { border-bottom: 0; }
.fs-n { font-family: var(--mono); font-size: 1rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.fs-b { font-size: clamp(1.05rem, 1rem + .4vw, 1.3rem); color: var(--ink); letter-spacing: -0.015em; }

/* ============================== OWNED — mosaic ============================== */
.mosaic { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(1rem, 1.4vw, 1.4rem); grid-template-columns: 1fr; }
@media (min-width: 40rem)  { .mosaic { grid-template-columns: 1fr 1fr; } }
@media (min-width: 56rem)  { .mosaic { grid-template-columns: repeat(3, 1fr); } }
.mosaic li { background: var(--card); border: 1px solid var(--card-border);
  padding: clamp(1.7rem, 2.4vw, 2.4rem); display: flex; flex-direction: column; gap: .15rem;
  border-top: 2px solid var(--card-border);
  transition: border-color .3s var(--ease), transform .3s var(--ease); }
.mosaic li:hover { border-color: var(--accent); border-top-color: var(--accent); transform: translateY(-3px); }
.card-i { width: 1.7rem; height: 1.7rem; color: var(--accent); display: block; margin-bottom: 1.15rem; }
.mosaic h3 { font-size: var(--fs-h3); margin-bottom: .55rem; }
.mosaic p { color: var(--ink-2); font-size: 1.0625rem; line-height: 1.55; margin: 0; }
/* feature card spans full width only when alone on the last (odd) row at the 2-col breakpoint */
@media (min-width: 40rem) and (max-width: 55.999rem) { .mosaic-feature { grid-column: 1 / -1; } }


/* ============================== membrane (trust) ============================== */
.membrane { display: grid; grid-template-columns: 1fr; gap: 0; max-width: 60rem;
  margin: clamp(2.2rem,4.5vw,3.2rem) auto 0; border: 1px solid var(--card-border); background: var(--card); }
.membrane .side { padding: clamp(2rem, 3.4vw, 3rem) clamp(1.6rem, 3vw, 2.6rem); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.15rem; }
.membrane .side-h { font-size: 1.15rem; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; margin: 0; }
.side-tags { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; }
.side-tags li { font-family: var(--mono); font-size: .9rem; color: var(--ink); border: 1px solid var(--card-border); padding: .32rem .72rem; }
.side-engine .side-tags li { border-color: var(--ink); }
.membrane .side-cap { font-size: .9rem; color: var(--ink-3); margin: 0; }
/* the wall the intelligence never crosses */
.membrane .barrier { background: var(--accent); min-height: 3px; }
.membrane-cap { text-align: center; margin: 1.1rem 0 0; font-size: .72rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--accent); }
@media (min-width: 46rem) {
  .membrane { grid-template-columns: 1fr 3px 1fr; align-items: stretch; }
  .membrane .barrier { min-height: 0; }
}

/* ============================== access form ============================== */
.access { display: flex; flex-wrap: wrap; gap: .7rem; max-width: 34rem; margin: 2rem 0 0; }
.access-input { flex: 1 1 15rem; font: inherit; font-size: 1.0625rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--card-border); border-radius: 0; padding: .85rem 1.1rem; }
.access-input::placeholder { color: var(--ink-3); }
.access-input:focus-visible { outline: 2px solid var(--accent); outline-offset: 0; border-color: var(--accent); }
.access-btn { font: inherit; font-size: 1.0625rem; font-weight: 500; color: #fff; background: var(--accent); border: 0; border-radius: 0; padding: .85rem 1.6rem; cursor: pointer; white-space: nowrap;
  transition: background .2s var(--ease); }
.access-btn:hover { background: var(--accent-h); }
.access-note { flex-basis: 100%; font-size: .92rem; color: var(--accent); min-height: 1.1rem; margin: .3rem 0 0; }

/* ============================== colophon ============================== */
.colophon { padding-block: var(--band-y) clamp(2.5rem, 6vw, 4rem); position: relative; background: #0a0a0a; color: #fff; }
.colo-foot { margin-top: clamp(2.6rem, 6vw, 4rem); display: flex; flex-direction: column; align-items: flex-start; gap: 1.1rem; }
/* footer dark theme — light text on black */
.colophon .big-h { color: #fff; }
.colophon .intro { color: rgba(255,255,255,.72); }
.colophon .nav-logo { color: #fff; }
.colophon .foot-links a { color: rgba(255,255,255,.6); }
.colophon .foot-links a:hover { color: #fff; }
.colophon .sign.dim { color: rgba(255,255,255,.35); }
.colophon .access-input { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); color: #fff; }
.colophon .access-input::placeholder { color: rgba(255,255,255,.42); }
.foot-links { display: flex; flex-wrap: wrap; gap: .4rem 1.5rem; }
.foot-links a { color: var(--ink-2); font-size: .92rem; }
.foot-links a:hover { color: var(--ink); text-decoration: none; }
.sign { color: rgba(255,255,255,.5); font-size: .9rem; }

/* ============================== legal pages ============================== */
.legal { max-width: 46rem; }
.legal h1 { font-size: var(--fs-bigh); margin-bottom: 1.4rem; }
.legal h2 { font-size: var(--fs-h3); margin: 2.4rem 0 .6rem; }
.legal p, .legal dd { color: var(--ink-2); font-size: 1.0625rem; line-height: 1.65; margin: 0 0 1rem; }
.legal a { color: var(--accent); }
.legal dl { margin: 1.4rem 0; border-top: 1px solid var(--hairline); }
.legal dt { color: var(--ink-3); font-size: .85rem; letter-spacing: .02em; padding-top: 1rem; }
.legal dd { color: var(--ink); margin: .2rem 0 1rem; }
.legal .back { display: inline-block; margin-top: 2.4rem; }

/* ============================== reveal motion ============================== */
main { overflow-x: clip; }                       /* contain the horizontal slide — no scrollbar, sticky-safe */
/* content fades + slides in — same gentle direction for every section (consistent) */
.js .reveal .wrap { opacity: 0; transform: translate3d(-44px, 0, 0);
  transition: opacity .95s var(--ease-out), transform 1.05s var(--ease-out); }
.js .reveal.in .wrap { opacity: 1; transform: none; }
.js .colophon.reveal { opacity: 0; transform: translate3d(0, 26px, 0);
  transition: opacity .95s var(--ease-out), transform 1.05s var(--ease-out); }
.js .colophon.reveal.in { opacity: 1; transform: none; }
.js .reveal .steplist li, .js .reveal .mosaic li { opacity: 0; }
.js .reveal.in .steplist li, .js .reveal.in .mosaic li { animation: cardIn .7s var(--ease) forwards; }
.js .reveal.in :is(.steplist, .mosaic) li:nth-child(2) { animation-delay: .09s; }
.js .reveal.in :is(.steplist, .mosaic) li:nth-child(3) { animation-delay: .18s; }
.js .reveal.in :is(.steplist, .mosaic) li:nth-child(4) { animation-delay: .27s; }
@keyframes cardIn { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform:none; } }

/* ============================== MIGRATE panel ============================== */
.migrate-panel { display: grid; gap: 1rem; }
.mp-label { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; color: var(--ink-3); margin: 0; }
.url-bar { display: flex; align-items: center; gap: .6rem; background: var(--bg-soft); border: 1px solid var(--card-border); border-radius: 0; padding: .8rem .85rem; }
.url-i { width: 1.1rem; height: 1.1rem; color: var(--ink-3); }
.url-text { flex: 1; min-width: 0; font-family: var(--mono); font-size: .9rem; color: var(--ink-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.url-go { flex: none; font-size: .85rem; font-weight: 500; color: #fff; background: var(--accent); border-radius: 0; padding: .4rem .85rem; }
.mp-note { font-size: .95rem; color: var(--ink-2); margin: 0; }
.out-list, .ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.out-list li, .ticks li { display: flex; align-items: flex-start; gap: .65rem; }
.out-list li { color: var(--ink-2); font-size: 1.0625rem; }
.ticks { margin-top: 1.6rem; }
.ticks li { color: var(--ink); font-size: clamp(1.05rem, 1rem + .3vw, 1.18rem); }
.tick-i { width: 1.2rem; height: 1.2rem; color: var(--accent); flex: none; margin-top: .18rem; }

/* ============================== COLLECTIONS analytics panel ============================== */
.collection-panel { padding: clamp(1.4rem, 2.4vw, 2.1rem); }
.cp-verticals { display: flex; flex-wrap: wrap; gap: .4rem; padding-bottom: .9rem; margin-bottom: .9rem; border-bottom: 1px solid var(--hairline); }
.cp-levels { display: flex; gap: .4rem; margin-bottom: 1.2rem; }
.cp-tab { font: inherit; font-size: .82rem; color: var(--ink-2); background: transparent; border: 1px solid var(--card-border); border-radius: var(--r-pill); padding: .34rem .9rem; cursor: pointer; transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease); }
.cp-tab:hover { color: var(--ink); border-color: color-mix(in srgb, var(--accent) 45%, var(--card-border)); }
.cp-tab.on { color: #fff; background: var(--accent); border-color: transparent; }
.cp-vert { font-size: .78rem; }
.cp-summary { display: flex; align-items: baseline; gap: .7rem; padding-bottom: 1.1rem; }
.cp-big { font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.7rem); font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.cp-sub { font-size: .92rem; color: var(--ink-2); }
.cp-head { display: flex; justify-content: space-between; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3); padding-bottom: .9rem; border-bottom: 1px solid var(--hairline); }
.cp-rows { list-style: none; margin: 0; padding: 0; }
.cp-rows li { display: grid; grid-template-columns: 1fr 4.4rem 3.4rem auto; align-items: center; gap: .85rem; padding: .9rem 0; border-bottom: 1px solid var(--hairline); }
.cp-rows li:last-child { border-bottom: 0; }
.cp-name { color: var(--ink); font-size: 1rem; }
.cp-pct { font-family: var(--mono); font-size: .82rem; color: var(--ink-3); text-align: right; }
.cp-bar { height: 6px; border-radius: var(--r-pill); background: var(--card-2); overflow: hidden; }
.cp-bar i { display: block; height: 100%; width: var(--w); border-radius: var(--r-pill); background: var(--grad); transition: width .9s var(--ease); }
.cp-n { font-family: var(--mono); font-size: .9rem; color: var(--ink-2); text-align: right; min-width: 3.4rem; }

/* ============================== reduced motion ============================== */
@media (prefers-reduced-motion: reduce) {
  .membrane .barrier::after { animation: none; }
  .js .hero-copy > *, .js .hero-panel { opacity: 1; animation: none; }
  .js .reveal, .js .reveal .wrap, .js .colophon.reveal { opacity: 1; transform: none; transition: none; }
  .js .reveal.in .steplist li, .js .reveal.in .mosaic li { animation: none; opacity: 1; }
  .cp-bar i { transition: none; }
  .mosaic li:hover, .btn-pill:hover, .access-btn:hover, .text-link:hover span { transform: none; }
}
