/* ============================================================
   Kinetic Space marketing site (KineticFusion flagship + Kinetic suite)
   Cyan theme, self-contained (no external fonts/icons).
   Retune the palette in :root.
   ============================================================ */

:root {
  /* Palette */
  --cyan: #06b6d4;
  --cyan-bright: #22d3ee;
  --cyan-deep: #0891b2;
  --cyan-soft: #e0f7fb;

  --navy: #0b1220;
  --navy-2: #0f1a2e;
  --navy-3: #132239;

  --ink: #0d1b2a;
  --body: #3f5162;
  --muted: #6b7d8f;

  --bg: #ffffff;
  --bg-alt: #f4f9fb;
  --line: #e3edf2;

  /* Effects */
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(13, 27, 42, 0.06);
  --shadow: 0 18px 45px rgba(8, 47, 73, 0.12);
  --shadow-cyan: 0 18px 40px rgba(6, 182, 212, 0.35);
  --grad: linear-gradient(120deg, var(--cyan) 0%, var(--cyan-bright) 100%);

  --maxw: 1160px;
  --font: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial,
          system-ui, sans-serif;
}

/* --------------------------- Base --------------------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; margin: 0 0 .5em; font-weight: 800; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); letter-spacing: -0.02em; }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
a { color: var(--cyan-deep); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--cyan); }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--cyan-deep);
  margin: 0 0 .6rem;
}

/* --------------------------- Buttons --------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .95rem;
  padding: .72rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-lg { padding: .95rem 1.9rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-cyan);
}
.btn-primary:hover { transform: translateY(-2px); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan-deep); transform: translateY(-2px); }
.section-dark .btn-ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.section-dark .btn-ghost:hover { border-color: var(--cyan-bright); color: var(--cyan-bright); }

/* --------------------------- Header / Nav --------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand { display: inline-flex; align-items: center; gap: .55rem; font-weight: 800; }
.brand-name { color: var(--ink); font-size: 1.25rem; letter-spacing: -.02em; }
.brand-accent { color: var(--cyan); }
.brand-mark { filter: drop-shadow(0 3px 8px rgba(6,182,212,.4)); }

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav > a { color: var(--body); font-weight: 600; font-size: .95rem; }
.nav > a:hover { color: var(--cyan-deep); }
.btn-nav { color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 2.5px; border-radius: 2px;
  background: var(--ink);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* --------------------------- Sections --------------------------- */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-dark {
  background: radial-gradient(1200px 600px at 80% -10%, rgba(34,211,238,.14), transparent 60%),
              radial-gradient(900px 500px at 0% 110%, rgba(6,182,212,.12), transparent 55%),
              var(--navy);
  color: #c6d4e2;
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark .section-sub { color: #9fb2c4; }
.section-alt { background: var(--bg-alt); }

.section-head { max-width: 720px; margin: 0 auto clamp(2.2rem, 4vw, 3.4rem); text-align: center; }
.section-sub { color: var(--muted); font-size: 1.08rem; margin: 0; }

/* --------------------------- Grids --------------------------- */
.grid { display: grid; gap: 1.4rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-pains { grid-template-columns: repeat(4, 1fr); }
.grid-features { gap: 1.4rem; }

/* --------------------------- Icon badge --------------------------- */
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  color: var(--cyan-deep);
  background: linear-gradient(135deg, rgba(6,182,212,.14), rgba(34,211,238,.18));
  border: 1px solid rgba(6,182,212,.22);
  margin-bottom: 1rem;
}
.icon-badge svg { width: 26px; height: 26px; }
.icon-badge.sm { width: 38px; height: 38px; border-radius: 10px; margin: 0; }
.icon-badge.sm svg { width: 19px; height: 19px; }
.section-dark .icon-badge {
  color: var(--cyan-bright);
  background: rgba(34,211,238,.12);
  border-color: rgba(34,211,238,.28);
}

/* --------------------------- Hero --------------------------- */
.hero {
  position: relative;
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem);
  background: var(--navy);
  color: #c6d4e2;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 78% 10%, rgba(34,211,238,.22), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(6,182,212,.18), transparent 55%),
    linear-gradient(180deg, #0b1220 0%, #0d1830 100%);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(1000px 600px at 60% 30%, #000, transparent 75%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 3rem;
}
.hero-copy h1 { color: #fff; margin-bottom: 1.2rem; }
.hero .eyebrow { color: var(--cyan-bright); }
.lead { font-size: 1.18rem; color: #b7c6d6; max-width: 34ch; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }

.hero-stats {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 2.2rem; flex-wrap: wrap;
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong {
  font-size: 1.9rem; font-weight: 800; color: #fff;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stats span { font-size: .85rem; color: #93a6b8; }

.hero-visual { display: flex; justify-content: center; }

/* --------------------------- Placeholders --------------------------- */
.placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px dashed rgba(6,182,212,.45);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, rgba(6,182,212,.05) 0 12px, transparent 12px 24px),
    rgba(6,182,212,.04);
  color: var(--cyan-deep);
  min-height: 160px;
  padding: 1.5rem;
  width: 100%;
}
.placeholder::after {
  content: attr(data-label);
  font-size: .82rem;
  font-weight: 600;
  color: var(--cyan-deep);
  opacity: .85;
  max-width: 26ch;
}
.section-dark .placeholder,
.hero .placeholder {
  border-color: rgba(34,211,238,.5);
  color: var(--cyan-bright);
  background:
    repeating-linear-gradient(45deg, rgba(34,211,238,.07) 0 12px, transparent 12px 24px),
    rgba(34,211,238,.05);
}
.section-dark .placeholder::after,
.hero .placeholder::after { color: var(--cyan-bright); }

.placeholder-glyph { width: 60%; max-width: 260px; color: var(--cyan-bright); opacity: .8; }
.placeholder-hero { aspect-ratio: 4 / 3; }
.placeholder-hero::after { position: absolute; bottom: 14px; }
.placeholder-wide { aspect-ratio: 16 / 6; margin-top: 2.5rem; }
.placeholder-shot { aspect-ratio: 7 / 5; box-shadow: var(--shadow); }
.placeholder-logo { min-height: 84px; border-radius: var(--radius-sm); }
.placeholder-avatar {
  min-height: 46px; width: 46px; height: 46px; border-radius: 50%; padding: 0; flex: 0 0 auto;
}
.placeholder-avatar::after { content: ""; }

/* --------------------------- Cards (pains / pillars / features) --------------------------- */
.pain, .pillar, .feature, .lcard {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pain:hover, .pillar:hover, .feature:hover, .lcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(6,182,212,.4);
}
.pain h3, .pillar h3, .feature h3, .lcard h3 { margin-bottom: .4rem; }
.pain p, .pillar p, .feature p, .lcard p { margin: 0; color: var(--muted); font-size: .96rem; }
.pain h3 { color: var(--ink); }

.section-dark .pillar {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.08);
  box-shadow: none;
}
.section-dark .pillar p { color: #9fb2c4; }
.section-dark .pillar:hover { border-color: rgba(34,211,238,.4); }
.pillar em { color: var(--cyan-bright); font-style: normal; font-weight: 700; }

/* --------------------------- Licensing --------------------------- */
.section-feature {
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(6,182,212,.08), transparent 55%),
    var(--bg-alt);
}
.lcard { position: relative; padding-top: 2.6rem; }
.lcard-num {
  position: absolute;
  top: -18px; left: 1.6rem;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--grad);
  color: #fff; font-weight: 800; font-size: 1.15rem;
  box-shadow: var(--shadow-cyan);
}
.licensing-highlights {
  list-style: none; padding: 0; margin: 3rem auto 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem;
  max-width: 820px;
}
.licensing-highlights li {
  display: flex; align-items: center; gap: .6rem;
  font-weight: 600; color: var(--ink);
}
.tick {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(6,182,212,.14); color: var(--cyan-deep);
  font-size: .8rem; font-weight: 800;
}

/* --------------------------- Split sections --------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3.2rem;
}
.split-copy p { color: inherit; }
.check-list { list-style: none; padding: 0; margin: 1.4rem 0 2rem; }
.check-list li { position: relative; padding-left: 1.9rem; margin-bottom: .7rem; }
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: .5em;
  width: 12px; height: 7px;
  border-left: 2.5px solid var(--cyan); border-bottom: 2.5px solid var(--cyan);
  transform: rotate(-45deg);
}
.section-dark .check-list li::before { border-color: var(--cyan-bright); }

/* --------------------------- Dashboard carousel --------------------------- */
.carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.carousel-viewport {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #0a1424;
  border: 1px solid rgba(34, 211, 238, 0.18);
}
.carousel-track { position: absolute; inset: 0; }
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.carousel-slide.is-active { opacity: 1; pointer-events: auto; }
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #0a1424;
}
.carousel-slide .placeholder {
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  border: 0;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  background: rgba(6, 20, 36, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}
.carousel-arrow:hover { background: var(--cyan-deep); transform: translateY(-50%) scale(1.06); }
.carousel-arrow.prev { left: 12px; }
.carousel-arrow.next { right: 12px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.1rem;
  min-height: 10px;
}
.carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease;
}
.carousel-dot.is-active { background: var(--cyan-bright); width: 24px; }

.feature-row {
  list-style: none;
  padding: 0;
  margin: 2rem auto 0;
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 1.8rem;
}
.feature-row li {
  position: relative;
  padding-left: 1.7rem;
  color: #c6d4e2;
  font-size: 0.95rem;
}
.feature-row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 7px;
  border-left: 2.5px solid var(--cyan-bright);
  border-bottom: 2.5px solid var(--cyan-bright);
  transform: rotate(-45deg);
}
.dashboard-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.2rem;
}

/* --------------------------- Partners --------------------------- */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
}

/* --------------------------- Testimonials --------------------------- */
.quote {
  margin: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
}
.quote blockquote { margin: 0 0 1.3rem; font-size: 1.05rem; color: var(--ink); line-height: 1.6; }
.quote figcaption { display: flex; align-items: center; gap: .8rem; }
.quote-who { font-size: .9rem; color: var(--muted); line-height: 1.35; }
.quote-who strong { color: var(--ink); }

/* --------------------------- Upcoming products / suite --------------------------- */
.suite-grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.product {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(6,182,212,.4);
}
.product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.product-top .icon-badge { margin-bottom: 0; }
.product h3 { font-size: 1.45rem; margin-bottom: .3rem; }
.product-tag { color: var(--cyan-deep); font-weight: 700; font-size: .95rem; margin-bottom: .8rem; }
.product p { color: var(--muted); }
.product-link {
  display: inline-block;
  margin-top: .4rem;
  font-weight: 700;
  color: var(--cyan-deep);
}
.product-link:hover { color: var(--cyan); }

.badge {
  display: inline-flex;
  align-items: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .32rem .7rem;
  border-radius: 999px;
  white-space: nowrap;
}
.badge-soon {
  color: var(--cyan-deep);
  background: rgba(6,182,212,.12);
  border: 1px solid rgba(6,182,212,.28);
}
.badge-live {
  color: #067a5b;
  background: rgba(16,185,129,.14);
  border: 1px solid rgba(16,185,129,.3);
}

/* --------------------------- CTA band --------------------------- */
.cta-band {
  background: var(--grad);
  color: #fff;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  padding-top: clamp(2.6rem, 5vw, 3.6rem);
  padding-bottom: clamp(2.6rem, 5vw, 3.6rem);
}
.cta-inner h2 { color: #fff; margin-bottom: .3rem; }
.cta-inner p { color: rgba(255,255,255,.9); margin: 0; }
.cta-band .btn-primary { background: #fff; color: var(--cyan-deep); box-shadow: 0 14px 30px rgba(4,30,45,.25); }
.cta-band .btn-primary:hover { color: var(--cyan-deep); }

/* --------------------------- Contact --------------------------- */
.contact-details { list-style: none; padding: 0; margin: 1.6rem 0 0; }
.contact-details li { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; color: var(--body); }
.contact-form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: .4rem; }
.field input, .field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  padding: .72rem .9rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  transition: border-color .18s ease, box-shadow .18s ease;
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(6,182,212,.15);
  background: #fff;
}
.form-note { text-align: center; font-size: .82rem; color: var(--muted); margin: .9rem 0 0; }

/* --------------------------- Footer --------------------------- */
.site-footer { background: var(--navy-2); color: #9fb2c4; padding-top: 3.5rem; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-brand .brand-name { color: #fff; }
.footer-brand p { margin-top: 1rem; max-width: 34ch; font-size: .95rem; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.footer-cols h4 { color: #fff; font-size: .95rem; margin-bottom: .9rem; }
.footer-cols a { display: block; color: #9fb2c4; font-size: .92rem; margin-bottom: .55rem; }
.footer-cols a:hover { color: var(--cyan-bright); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.4rem 24px;
  font-size: .85rem;
}
.footer-legal a { color: #9fb2c4; }
.footer-legal a:hover { color: var(--cyan-bright); }

/* --------------------------- Reveal animation --------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* --------------------------- Responsive --------------------------- */
@media (max-width: 960px) {
  .grid-pains { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .placeholder-hero { max-width: 480px; margin: 0 auto; }
  .lead { max-width: none; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split.reverse .split-visual { order: -1; }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: .5rem 24px 1.2rem;
    box-shadow: var(--shadow);
    transform: translateY(-140%);
    transition: transform .3s ease;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav > a { padding: .85rem 0; border-bottom: 1px solid var(--line); }
  .btn-nav { margin-top: .8rem; border-bottom: 0 !important; }
  .nav-toggle { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-features { grid-template-columns: 1fr; }
  .suite-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 460px) {
  .grid-pains { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1.4rem; }
}

/* --------------------------- Motion preference --------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .pain, .pillar, .feature, .lcard { transition: none; }
}
