/* ============================================================
   VoxPlan — style.css
   Direction: Black & White Editorial — Raw typographic impact
   Fonts: Plus Jakarta Sans + Noto Sans TC
   ============================================================ */

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

/* === TOKENS === */
:root {
  --ink:        oklch(10% 0.008 265);
  --ink-muted:  oklch(42% 0.008 265);
  --ink-faint:  oklch(68% 0.006 265);
  --paper:      oklch(98% 0.004 265);
  --paper-2:    oklch(95% 0.005 265);
  --paper-3:    oklch(91% 0.006 265);
  --rule:       oklch(84% 0.006 265);

  /* Inverse (dark sections) */
  --dark:       oklch(9% 0.010 265);
  --dark-2:     oklch(14% 0.010 265);
  --dark-rule:  oklch(22% 0.010 265);
  --on-dark:    oklch(94% 0.005 265);
  --on-dark-m:  oklch(56% 0.010 265);

  --font: 'Plus Jakarta Sans', 'Noto Sans TC', -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io:  cubic-bezier(0.65, 0, 0.35, 1);
  --container: 1120px;
}

/* === BASE === */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

/* === SKIP LINK === */
.skip-link {
  position: absolute; top: -100%; left: 16px; z-index: 9999;
  background: var(--ink); color: var(--paper);
  padding: 10px 20px; border-radius: 4px;
  font-size: .875rem; font-weight: 600; text-decoration: none;
  transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 16px; }

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

/* === LABEL TAG === */
.label-tag {
  display: inline-block;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  border: 1px solid var(--rule);
  padding: 5px 12px;
  border-radius: 100px;
}
.label-tag--light {
  color: var(--on-dark-m);
  border-color: var(--dark-rule);
}

/* ════════════════════════════════════
   NAV
   ════════════════════════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  background: color-mix(in oklch, var(--paper) 92%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease-out);
}
.nav.scrolled { border-bottom-color: var(--rule); }

.nav__inner {
  max-width: var(--container);
  width: 100%; margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.nav__logo-text {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--ink);
}
.nav__logo-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink);
  animation: blink 2.8s var(--ease-io) infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .3; transform: scale(.6); }
}

.nav__links {
  display: flex; list-style: none; gap: 2px;
}
.nav__link {
  font-size: .875rem; font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  padding: 8px 16px; min-height: 44px;
  display: flex; align-items: center;
  border-radius: 100px;
  transition: color .15s, background .15s;
}
.nav__link:hover { color: var(--ink); background: var(--paper-2); }

.nav__actions { display: flex; align-items: center; gap: 10px; }

.nav__cta {
  font-size: .875rem; font-weight: 700;
  color: var(--paper); background: var(--ink);
  text-decoration: none;
  padding: 10px 22px; min-height: 44px;
  display: flex; align-items: center;
  border-radius: 100px;
  transition: opacity .15s, transform .15s var(--ease-out);
  letter-spacing: -.01em;
}
.nav__cta:hover { opacity: .8; transform: translateY(-1px); }

.nav__burger {
  display: none;
  flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer;
  padding: 10px; min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
  border-radius: 8px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .2s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

/* ════════════════════════════════════
   HERO
   ════════════════════════════════════ */
.hero {
  min-height: 100svh;
  padding: 120px 40px 0;
  background: var(--paper);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Oversized BG text */
.hero__bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(180px, 26vw, 340px);
  font-weight: 800;
  letter-spacing: -.06em;
  color: var(--paper-3);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  white-space: nowrap;
}

.hero__layout {
  max-width: var(--container);
  width: 100%; margin: 0 auto;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left */
.hero__tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .75rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 32px;
}
.hero__tag-pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ink);
  animation: blink 2.4s var(--ease-io) infinite;
}

.hero__headline {
  display: flex;
  flex-direction: column;
  font-size: clamp(3.5rem, 6.5vw, 7rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: .96;
  margin-bottom: 32px;
}

.hero__hl-row { display: block; color: var(--ink); }
.hero__hl-row--stroke {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}

.hero__wave-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.hero__wave {
  display: flex; align-items: center; gap: 3px;
  height: 32px;
}
.hero__wave span {
  display: block;
  width: 2.5px; height: 32px;
  background: var(--ink);
  border-radius: 100px;
  transform: scaleY(var(--h, .3));
  animation: wavePulse 1.8s var(--ease-io) infinite;
  animation-delay: calc(var(--h, 0) * 150ms + var(--i, 0) * 60ms);
}
@keyframes wavePulse {
  0%,100% { transform: scaleY(var(--h, .3)); opacity: .35; }
  50%      { transform: scaleY(1);           opacity: 1;   }
}
.hero__wave-label {
  font-size: .625rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap;
}

.hero__sub {
  font-size: 1rem; line-height: 1.8;
  color: var(--ink-muted);
  max-width: 38ch;
  margin-bottom: 44px;
}

.hero__btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* Download buttons (hero) */
.btn-dl {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
  font-weight: 700; font-size: .9375rem;
  padding: 12px 22px; min-height: 50px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  transition: transform .15s var(--ease-out), opacity .15s;
  letter-spacing: -.01em;
}
.btn-dl--fill {
  background: var(--ink); color: var(--paper);
}
.btn-dl--fill:hover { opacity: .82; transform: translateY(-2px); }
.btn-dl--outline {
  background: transparent; color: var(--ink);
  border-color: var(--rule);
}
.btn-dl--outline:hover { background: var(--paper-2); transform: translateY(-2px); }
.btn-dl__soon {
  font-size: .6563rem; font-weight: 500;
  opacity: .5; letter-spacing: .03em;
  background: oklch(0 0 0 / .08);
  padding: 2px 8px; border-radius: 100px;
}

/* Right: Phone */
.hero__right {
  display: flex; justify-content: center; align-items: center;
}
.hero__phone-wrap {
  position: relative;
  display: inline-flex;
  animation: floatPhone 5s var(--ease-io) infinite alternate;
}
@keyframes floatPhone {
  from { transform: translateY(0) rotate(2deg); }
  to   { transform: translateY(-14px) rotate(3.5deg); }
}
.hero__phone {
  width: 260px; height: 530px;
  background: var(--dark);
  border-radius: 40px;
  padding: 12px;
  border: 1px solid var(--dark-rule);
  box-shadow:
    0 48px 80px oklch(0% 0 0 / .45),
    0 8px 24px oklch(0% 0 0 / .2);
}
.phone-notch {
  width: 88px; height: 22px;
  background: var(--dark-2);
  border-radius: 0 0 16px 16px;
  margin: 0 auto 8px;
}
.phone-screen {
  background: oklch(6% 0.008 265);
  border-radius: 28px;
  height: calc(100% - 42px);
  overflow: hidden;
}

/* App UI */
.app {
  padding: 14px 12px;
  display: flex; flex-direction: column; gap: 9px;
  height: 100%;
}
.app__bar {
  display: flex; justify-content: space-between; align-items: center;
}
.app__date { font-size: .5938rem; color: oklch(94% .005 265 / .35); font-weight: 500; }
.app__mic-icon { color: var(--on-dark); opacity: .6; display: flex; }

.app__voice {
  background: oklch(100% 0 0 / .05);
  border: 1px solid oklch(100% 0 0 / .1);
  border-radius: 9px;
  padding: 8px 10px;
  display: flex; align-items: center; gap: 8px;
}
.app__mini-bars {
  display: flex; align-items: center; gap: 2px;
  flex-shrink: 0;
}
.app__mini-bars span {
  display: block; width: 2px; height: 12px; border-radius: 2px;
  background: var(--on-dark);
  transform: scaleY(var(--h, .3));
  animation: wavePulse 1.8s var(--ease-io) infinite;
  animation-delay: calc(var(--h, 0) * 160ms);
}
.app__transcript { font-size: .5938rem; color: oklch(94% .005 265 / .5); font-style: italic; }

.app__section {
  font-size: .5rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: oklch(94% .005 265 / .22);
  padding-left: 2px;
}
.app__events { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.app__event {
  display: flex; align-items: center; gap: 8px;
  background: oklch(100% 0 0 / .03);
  border: 1px solid oklch(100% 0 0 / .05);
  border-radius: 8px;
  padding: 8px 10px;
}
.app__event--active {
  background: oklch(100% 0 0 / .07);
  border-color: oklch(100% 0 0 / .15);
}
.app__event-stripe { width: 2px; height: 24px; background: var(--on-dark); border-radius: 2px; flex-shrink: 0; }
.app__event-stripe--dim { background: oklch(94% 0 0 / .2); }
.app__event-body { flex: 1; min-width: 0; }
.app__event-name { font-size: .5938rem; font-weight: 600; color: var(--on-dark); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app__event-time { font-size: .5rem; color: oklch(94% .005 265 / .35); }
.app__ai { font-size: .4375rem; font-weight: 900; background: var(--on-dark); color: var(--dark); padding: 2px 5px; border-radius: 3px; letter-spacing: .05em; flex-shrink: 0; }

.app__tz {
  display: flex; align-items: center; justify-content: space-between;
  background: oklch(100% 0 0 / .04);
  border: 1px solid oklch(100% 0 0 / .08);
  border-radius: 7px;
  padding: 7px 10px;
}
.app__tz-col { display: flex; flex-direction: column; gap: 1px; }
.app__tz-city { font-size: .5rem; color: oklch(94% .005 265 / .32); }
.app__tz-time { font-size: .6875rem; font-weight: 700; color: var(--on-dark); font-variant-numeric: tabular-nums; }
.app__tz-sep { font-size: .625rem; color: var(--on-dark); opacity: .4; }

/* Floating labels */
.hero__float {
  position: absolute;
  font-size: .6875rem; font-weight: 700;
  letter-spacing: .04em;
  background: var(--ink); color: var(--paper);
  padding: 6px 14px; border-radius: 100px;
  white-space: nowrap;
}
.hero__float--1 { top: 22%; right: -32px; }
.hero__float--2 { bottom: 28%; left: -28px; }

/* Hero strip */
.hero__strip {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 0;
  margin-top: 48px;
  border-top: 1px solid var(--rule);
  font-size: .75rem; font-weight: 500;
  color: var(--ink-faint);
  letter-spacing: .04em;
  max-width: var(--container);
  width: 100%; margin-left: auto; margin-right: auto;
  position: relative; z-index: 1;
}
.hero__strip-div { opacity: .35; }

/* ════════════════════════════════════
   TICKER
   ════════════════════════════════════ */
.ticker {
  overflow: hidden;
  background: var(--ink);
  padding: 16px 0;
}
.ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0;
  animation: ticker 24s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker__track span {
  font-size: .75rem; font-weight: 600;
  color: var(--on-dark);
  white-space: nowrap;
  padding: 0 32px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .7;
}
.ticker__dot { color: var(--on-dark) !important; opacity: .3 !important; padding: 0 4px !important; letter-spacing: 0 !important; }

/* ════════════════════════════════════
   FEATURES
   ════════════════════════════════════ */
.features {
  background: var(--paper);
  padding: 120px 40px;
}
.features__container {
  max-width: var(--container);
  margin: 0 auto;
}
.features__intro { margin-bottom: 64px; }

/* Feature row */
.feat {
  display: grid;
  grid-template-columns: 140px 1fr 120px;
  gap: 0 48px;
  padding: 56px 0;
  align-items: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.feat.revealed { opacity: 1; transform: translateY(0); }

.feat--alt {
  background: var(--paper-2);
  border-radius: 20px;
  padding: 56px 48px;
  margin: 0 -48px;
}

.feat__num {
  font-size: clamp(4rem, 7vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: 1;
  color: var(--paper-3);
  align-self: flex-start;
  padding-top: 6px;
  transition: color .3s var(--ease-out);
  font-variant-numeric: tabular-nums;
}
.feat:hover .feat__num { color: var(--rule); }

.feat__title {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}
.feat__desc {
  font-size: .9375rem;
  color: var(--ink-muted);
  line-height: 1.8;
  max-width: 44ch;
}

.feat__visual { display: flex; justify-content: flex-end; }
.feat__icon-wrap {
  width: 72px; height: 72px;
  border: 1.5px solid var(--rule);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-faint);
  transition: border-color .3s, color .3s, transform .3s var(--ease-out);
}
.feat:hover .feat__icon-wrap {
  border-color: var(--ink);
  color: var(--ink);
  transform: rotate(-4deg) scale(1.08);
}
.feat__icon { width: 40px; height: 40px; }

.feat__divider {
  height: 1px;
  background: var(--rule);
}

/* ════════════════════════════════════
   OVERVIEW
   ════════════════════════════════════ */
.overview {
  background: var(--dark);
  padding: 120px 40px;
}
.overview__container {
  max-width: var(--container);
  margin: 0 auto;
}
.overview__header { margin-bottom: 64px; }
.overview__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--on-dark);
  margin-top: 20px;
  line-height: 1.05;
}

.overview__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--dark-rule);
}
.ov-item {
  display: flex; flex-direction: column; gap: 12px;
  padding: 36px 28px 36px 0;
  border-right: 1px solid var(--dark-rule);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.ov-item:nth-child(4n) { border-right: none; }
.ov-item.revealed { opacity: 1; transform: translateY(0); }

.ov-item__num {
  font-size: .75rem; font-weight: 700;
  letter-spacing: .06em; font-variant-numeric: tabular-nums;
  color: var(--on-dark-m);
}
.ov-item__name {
  font-size: 1rem; font-weight: 600;
  color: var(--on-dark);
  line-height: 1.35;
}

/* ════════════════════════════════════
   CTA
   ════════════════════════════════════ */
.cta {
  background: var(--paper);
  padding: 140px 40px;
  border-top: 1px solid var(--rule);
}
.cta__container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 80px;
  align-items: center;
}
.cta__headline {
  display: flex; flex-direction: column;
  font-size: clamp(3.5rem, 6.5vw, 7rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: .96;
  margin: 20px 0 24px;
}
.cta__headline span { display: block; color: var(--ink); }
.cta__headline--stroke {
  color: transparent !important;
  -webkit-text-stroke: 2px var(--ink);
}
.cta__sub { font-size: .9375rem; color: var(--ink-muted); line-height: 1.7; }

.cta__actions { display: flex; flex-direction: column; gap: 14px; }

/* Store buttons (CTA) */
.btn-store {
  display: flex; align-items: center; gap: 16px;
  text-decoration: none;
  padding: 18px 28px;
  border-radius: 14px;
  border: 1.5px solid transparent;
  transition: transform .15s var(--ease-out), opacity .15s;
  min-width: 220px;
}
.btn-store--black {
  background: var(--ink); color: var(--paper);
}
.btn-store--black:hover { opacity: .82; transform: translateY(-2px); }
.btn-store--outline {
  background: transparent; color: var(--ink);
  border-color: var(--rule);
}
.btn-store--outline:hover { background: var(--paper-2); transform: translateY(-2px); }

.btn-store__sub { font-size: .6875rem; opacity: .55; font-weight: 500; }
.btn-store__main { font-size: 1.0625rem; font-weight: 700; letter-spacing: -.02em; margin-top: 2px; }

/* ════════════════════════════════════
   FOOTER
   ════════════════════════════════════ */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--dark-rule);
  padding: 48px 40px 36px;
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.footer__brand { display: flex; flex-direction: column; gap: 4px; }
.footer__logo {
  font-size: 1.125rem; font-weight: 800;
  letter-spacing: -.04em; color: var(--on-dark);
}
.footer__tagline { font-size: .8125rem; color: var(--on-dark-m); }

.footer__nav {
  display: flex; gap: 28px;
  justify-content: center;
}
.footer__nav a {
  font-size: .875rem; font-weight: 500;
  color: var(--on-dark-m);
  text-decoration: none;
  transition: color .15s;
}
.footer__nav a:hover { color: var(--on-dark); }

.footer__copy {
  font-size: .8125rem;
  color: oklch(50% .008 265);
  text-align: right;
}

/* ════════════════════════════════════
   RESPONSIVE — Tablet ≤900px
   ════════════════════════════════════ */
@media (max-width: 900px) {
  .hero { padding: 110px 28px 0; }

  .hero__layout {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero__right { order: -1; }
  .hero__tag, .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__headline { align-items: center; }
  .hero__wave-row, .hero__btns { justify-content: center; }
  .hero__bg-text { font-size: clamp(120px, 22vw, 200px); }

  .feat--alt { margin: 0; padding: 48px 0; background: transparent; border-radius: 0; }
  .feat, .feat--alt { grid-template-columns: 100px 1fr; gap: 0 28px; padding: 44px 0; }
  .feat__visual { display: none; }
  .feat__num { font-size: 3rem; }

  .overview__grid { grid-template-columns: repeat(2, 1fr); }
  .ov-item:nth-child(4n) { border-right: 1px solid var(--dark-rule); }
  .ov-item:nth-child(2n) { border-right: none; }
  .ov-item:nth-child(n+3) { border-top: 1px solid var(--dark-rule); padding-top: 36px; }

  .cta__container { grid-template-columns: 1fr; gap: 40px; }
  .cta__actions { flex-direction: row; flex-wrap: wrap; }

  .footer__inner { grid-template-columns: 1fr; gap: 20px; }
  .footer__nav { justify-content: flex-start; }
  .footer__copy { text-align: left; }
}

/* ════════════════════════════════════
   RESPONSIVE — Mobile ≤540px
   ════════════════════════════════════ */
@media (max-width: 540px) {
  .nav { padding: 0 20px; }
  .nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px; inset-inline: 0;
    background: color-mix(in oklch, var(--paper) 98%, transparent);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--rule);
    padding: 10px 16px 20px;
    z-index: 99;
    gap: 2px;
  }
  .nav__links.open { display: flex; }
  .nav__link { font-size: 1rem; min-height: 48px; border-radius: 8px; color: var(--ink); }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }

  .hero { padding: 100px 20px 0; }
  .hero__bg-text { font-size: 120px; }
  .hero__strip { padding: 16px 0; font-size: .6875rem; gap: 14px; flex-wrap: wrap; }

  .features { padding: 80px 20px; }
  .feat, .feat--alt { grid-template-columns: 1fr; gap: 16px; padding: 36px 0; }
  .feat__num { font-size: 2.5rem; }

  .overview { padding: 80px 20px; }
  .overview__grid { grid-template-columns: 1fr; }
  .ov-item { border-right: none !important; padding-right: 0; }
  .ov-item:not(:first-child) { border-top: 1px solid var(--dark-rule); padding-top: 28px; }
  .ov-item { padding-bottom: 28px; }

  .cta { padding: 80px 20px; }
  .cta__actions { flex-direction: column; }
  .btn-store { justify-content: center; }

  .footer { padding: 40px 20px 28px; }

  .hero__float { display: none; }
}

/* ════════════════════════════════════
   REDUCED MOTION
   ════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .hero__wave span,
  .app__mini-bars span,
  .hero__bg-text,
  .hero__phone-wrap,
  .hero__tag-pulse,
  .nav__logo-dot,
  .ticker__track { animation: none !important; }

  .hero__wave span { transform: scaleY(.5); opacity: .5; }
  .app__mini-bars span { transform: scaleY(.5); opacity: .5; }

  .feat, .ov-item { opacity: 1; transform: none; transition: none; }

  html { scroll-behavior: auto; }
}
