/* tokens.css */

:root {
  
  --novek-purple: #6533d7;   
  --novek-blue:   #00003f;   
  --novek-black:  #0d1729;   
  --novek-grey:   #464a58;   
  --novek-white:  #cfcfdd;   
  --purple-hover: #7d44ec;
  --surface:      #fbfbfc;   
  --dark-track:   #171820;   

  
  --rating:   #facc15;
  --whatsapp: #25d366;

  
  --purple-5:  rgba(101, 51, 215, 0.05);
  --purple-10: rgba(101, 51, 215, 0.10);
  --purple-20: rgba(101, 51, 215, 0.20);
  --purple-30: rgba(101, 51, 215, 0.30);
  --purple-50: rgba(101, 51, 215, 0.50);
  --grey-5:    rgba(70, 74, 88, 0.05);
  --grey-10:   rgba(70, 74, 88, 0.10);
  --grey-20:   rgba(70, 74, 88, 0.20);
  --grey-30:   rgba(70, 74, 88, 0.30);
  --grey-50:   rgba(70, 74, 88, 0.50);
  --white-5:   rgba(255, 255, 255, 0.05);
  --white-10:  rgba(255, 255, 255, 0.10);
  --white-20:  rgba(255, 255, 255, 0.20);
  --white-30:  rgba(255, 255, 255, 0.30);
  --white-50:  rgba(255, 255, 255, 0.50);

  
  --grad-signature: linear-gradient(90deg, #6533d7, #00003f);

  
  --font-display: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  
  --t-hero: clamp(2.75rem, 7.6vw, 7rem);
  --t-4xl:  clamp(2.125rem, 4vw, 3.625rem);
  --t-2xl:  clamp(1.375rem, 1.9vw, 1.875rem);
  --t-lg:   clamp(1.125rem, 1.45vw, 1.375rem);
  --t-base: 1rem;
  --t-sm:   0.875rem;
  --t-xs:   0.75rem;

  
  --r-8: 8px;
  --r-12: 12px;
  --r-16: 16px;
  --r-24: 24px;
  --r-pill: 999px;

  
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --d-pop: 200ms;
  --d-interactive: 200ms;
  --d-scale-in: 250ms;
  --d-lift: 250ms;
  --d-slide: 300ms;
  --d-fade: 300ms;
  --d-enter: 500ms;
  --d-tab: 600ms;

  
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --maxw: 1240px;
  --section-y: clamp(5.5rem, 11vh, 9.5rem);
}

[data-theme="light"] {
  --bg: var(--surface);
  --bg-card: #ffffff;
  --bg-sunken: #fafafc;
  --fg: var(--novek-black);
  --fg-muted: var(--novek-grey);
  --fg-faint: rgba(70, 74, 88, 0.88);
  --line: var(--grey-10);
  --line-strong: var(--grey-20);
  --badge-bg: var(--purple-10);
  --badge-fg: var(--novek-purple);
  --badge-line: var(--purple-20);
  --accent: var(--novek-purple);
  --dot: rgba(101, 51, 215, 0.16);
  --shadow-1: 0 1px 2px rgba(13, 23, 41, 0.04);
  --shadow-2: 0 4px 16px rgba(13, 23, 41, 0.06);
  --shadow-3: 0 18px 40px -18px rgba(13, 23, 41, 0.18);
}

[data-theme="dark"] {
  --bg: var(--novek-black);
  --bg-card: var(--white-5);
  --bg-sunken: var(--dark-track);
  --fg: #ffffff;
  --fg-muted: var(--novek-white);
  --fg-faint: rgba(207, 207, 221, 0.74);
  --line: var(--white-10);
  --line-strong: var(--white-20);
  --badge-bg: var(--white-10);
  --badge-fg: #ffffff;
  --badge-line: var(--white-20);
  --accent: #9a72f0;
  --dot: rgba(255, 255, 255, 0.10);
  --shadow-1: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-2: 0 4px 16px rgba(0, 0, 0, 0.35);
  --shadow-3: 0 18px 40px -18px rgba(0, 0, 0, 0.65);
}

/* base.css */

@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("assets/fonts/geist-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("assets/fonts/geist-mono-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-display);
  font-size: var(--t-base);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color 600ms var(--ease), color 600ms var(--ease);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

::selection {
  background: var(--novek-purple);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--novek-purple);
  outline-offset: 1px;
  border-radius: 4px;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-sunken);
}
::-webkit-scrollbar-thumb {
  background: var(--purple-hover);
  border-radius: var(--r-pill);
  border: 3px solid var(--bg-sunken);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.032em;
  text-wrap: balance;
}

.t-hero {
  font-size: var(--t-hero);
  line-height: 0.98;
  letter-spacing: -0.042em;
}

.t-4xl {
  font-size: var(--t-4xl);
  line-height: 1.02;
  letter-spacing: -0.042em;
}

.t-2xl {
  font-size: var(--t-2xl);
  line-height: 1.15;
  letter-spacing: -0.028em;
  font-weight: 700;
}

p {
  margin: 0;
  max-width: 62ch;
  line-height: 1.6;
}

.lede {
  font-size: var(--t-lg);
  color: var(--fg-muted);
  letter-spacing: -0.016em;
  line-height: 1.5;
  max-width: 34rem;
}

.muted {
  color: var(--fg-muted);
}

.accent {
  color: var(--accent);
}

.label {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

.mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border-radius: var(--r-12);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: background-color var(--d-interactive) var(--ease),
    color var(--d-interactive) var(--ease),
    border-color var(--d-interactive) var(--ease),
    box-shadow var(--d-interactive) var(--ease),
    transform var(--d-interactive) var(--ease);
}

.btn:active {
  transform: scale(0.98);
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--d-interactive) var(--ease);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn--primary {
  background: var(--novek-purple);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 10px 30px -12px rgba(101, 51, 215, 0.55);
}

.btn--primary:hover {
  background: var(--purple-hover);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 16px 36px -12px rgba(101, 51, 215, 0.7);
}

.btn--ghost {
  border: 1px solid var(--line-strong);
  color: var(--fg);
  padding: 11px 23px;
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--purple-5);
}

.btn--solid {
  background: var(--fg);
  color: var(--bg);
}

.btn--solid:hover {
  opacity: 0.86;
}

.btn--lg {
  padding: 16px 30px;
  font-size: 1rem;
  border-radius: var(--r-16);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 6px 14px 6px 12px;
  border-radius: var(--r-pill);
  background: var(--badge-bg);
  border: 1px solid var(--badge-line);
  color: var(--badge-fg);
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.9;
}

.card {
  position: relative;
  padding: 28px;
  border-radius: var(--r-16);
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  transition: transform var(--d-lift) var(--ease),
    box-shadow var(--d-lift) var(--ease), border-color var(--d-lift) var(--ease);
}

.card--lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3);
  border-color: var(--line-strong);
}

.card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: var(--t-sm);
  color: var(--fg-muted);
  line-height: 1.55;
}

.icap {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--purple-10);
  color: var(--accent);
  margin-bottom: 18px;
}

[data-theme="dark"] .icap {
  background: var(--white-10);
  color: #fff;
}

.icap svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: var(--t-sm);
  color: var(--fg-muted);
  line-height: 1.45;
}

.check svg {
  flex: none;
  width: 15px;
  height: 15px;
  margin-top: 3px;
  stroke: var(--accent);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* layout.css */

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding-block: var(--section-y);
  background: var(--bg);
  color: var(--fg);
  transition: background-color 600ms var(--ease), color 600ms var(--ease);
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section--dots::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--dot) 1px, transparent 1px);
  background-size: 18px 18px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 62%);
  mask-image: linear-gradient(180deg, #000 0%, transparent 62%);
  pointer-events: none;
}

.section__head {
  display: grid;
  gap: 0;
  margin-bottom: clamp(2.75rem, 4.4vw, 4rem);
}

.section__head h2 {
  margin-bottom: 20px;
}

.section__index {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.section__head--split {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  column-gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
}

.section__head--split .section__index {
  grid-column: 1 / -1;
}

.section__head--split h2 {
  margin-bottom: 0;
}

.section__head--split .lede {
  padding-bottom: 6px;
}

.section__index .rule {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: 68px;
  display: flex;
  align-items: center;
  color: var(--fg);
  transition: color 600ms var(--ease), background-color 400ms var(--ease),
    border-color 600ms var(--ease), backdrop-filter 400ms var(--ease);
  border-bottom: 1px solid transparent;
}

.header--stuck {
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
}

.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: -0.044em;
}

.brand img {
  width: 26px;
  height: 26px;
}

.brand span em {
  font-style: normal;
  font-weight: 300;
  color: var(--fg-muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--fg-muted);
  transition: color var(--d-interactive) var(--ease);
}

.nav a:hover,
.nav a[aria-current="true"] {
  color: var(--fg);
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__cta .btn {
  padding: 9px 18px;
  border-radius: var(--r-pill);
}

.scrollbar {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 61;
  height: 2px;
  width: 100%;
  transform: scaleX(var(--p, 0));
  transform-origin: 0 50%;
  background: var(--grad-signature);
  will-change: transform;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  padding-block: 128px 0;
  overflow: hidden;
}

.hero__aurora {
  position: absolute;
  inset: 40% -14% -30% -14%;
  pointer-events: none;
  background: radial-gradient(40% 46% at 30% 92%, rgba(101, 51, 215, 0.2), transparent 70%);
  filter: blur(18px);
}

.hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(70% 55% at 30% 26%, #000, transparent 74%);
  mask-image: radial-gradient(70% 55% at 30% 26%, #000, transparent 74%);
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

.hero__inner {
  display: grid;
  gap: clamp(2rem, 3vw, 2.75rem);
}

.hero__copy {
  display: grid;
  justify-items: start;
  max-width: 1000px;
}

.hero__copy > .badge {
  margin-bottom: 24px;
}

.hero h1 {
  max-width: 14ch;
  margin-bottom: 24px;
}

.hero .lede {
  margin-bottom: 40px;
  max-width: 46rem;
}

.hero h1 .thin {
  font-style: normal;
  font-weight: 300;
  color: var(--novek-white);
  letter-spacing: -0.038em;
}

.hero .lede {
  max-width: 54ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
}

.linkcta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: -0.01em;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--line-strong);
  transition: color var(--d-interactive) var(--ease),
    border-color var(--d-interactive) var(--ease);
}

.linkcta svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--d-interactive) var(--ease);
}

.linkcta:hover {
  color: var(--fg);
  border-color: currentColor;
}

.linkcta:hover svg {
  transform: translateX(3px);
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--t-sm);
  color: var(--fg-faint);
}

.trustbar {
  padding-block: 40px;
}

.statbar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.statbar__item {
  display: grid;
  gap: 2px;
}

.statbar__n {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.statbar__k {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

.panel {
  position: relative;
  border-radius: 22px 22px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 0;
  background: linear-gradient(180deg, #1a2338, #141b2c);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.16) inset,
    0 -40px 120px -40px rgba(101, 51, 215, 0.5),
    0 60px 120px -40px rgba(0, 0, 0, 0.95);
  color: #fff;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  min-height: 520px;
  overflow: hidden;
  padding: 24px 30px 0;
}

.panel__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
}

.panel__table th {
  padding: 0 0 12px;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid var(--white-10);
}

.panel__table td {
  padding: 17px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--white-10);
}

.panel__table td:first-child {
  font-weight: 600;
  letter-spacing: -0.015em;
}

.panel__table .num {
  text-align: right;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.82);
}

.panel__table tbody tr:last-child td {
  border-bottom: 0;
}

.panel__strap {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.panel__strap i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b69bff;
  box-shadow: 0 0 0 3px rgba(182, 155, 255, 0.16);
}

.panel__kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 18px 0 20px;
  border-bottom: 1px solid var(--white-10);
}

.panel__kpi {
  display: grid;
  gap: 6px;
  padding-inline: 24px;
  border-left: 1px solid var(--white-10);
}

.panel__kpi:first-child {
  border-left: 0;
  padding-left: 0;
}

.panel__kpi span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.panel__kpi b {
  font-size: clamp(1.5rem, 2.3vw, 2.125rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.panel__kpi em {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  color: #b69bff;
}

.panel__kpi--roi b {
  color: #b69bff;
}

.panel__title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: -0.015em;
}

.panel__title i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.16);
}

.panel__pill {
  padding: 4px 10px;
  border-radius: var(--r-pill);
  border: 1px solid var(--white-10);
  background: var(--white-5);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.68);
}

.panel__chart {
  position: relative;
  margin-top: 20px;
  align-self: stretch;
}

.panel__chart svg {
  width: 100%;
  height: 152px;
  display: block;
}

.panel__axis {
  position: absolute;
  inset: auto 0 8px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
}

.panel__rows {
  display: grid;
}

.panel__row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: baseline;
  gap: 14px;
  padding: 13px 2px;
  border-top: 1px solid var(--white-10);
}

.panel__row span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.panel__row b {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.panel__row em {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 11px;
  color: var(--whatsapp);
}

.panel__foot {
  margin-top: 14px;
  padding: 13px 16px;
  border-radius: var(--r-12);
  background: var(--grad-signature);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel__foot span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.panel__foot b {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.scrollcue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  translate: -50% 0;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--fg-faint);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scrollcue i {
  display: block;
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, currentColor, transparent);
}

.grid {
  display: grid;
  gap: 20px;
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid--bento {
  grid-template-columns: repeat(3, 1fr);
}

.feature {
  grid-column: span 2;
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: var(--r-16);
  border: 1px solid transparent;
  background: var(--grad-signature);
  color: #fff;
  display: grid;
  align-content: space-between;
  gap: 26px;
  min-height: 236px;
}

.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 16px 16px;
  -webkit-mask-image: linear-gradient(145deg, #000, transparent 62%);
  mask-image: linear-gradient(145deg, #000, transparent 62%);
}

.feature > * {
  position: relative;
}

.feature h3 {
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  max-width: 15ch;
}

.feature p {
  font-size: var(--t-sm);
  color: rgba(255, 255, 255, 0.78);
  max-width: 46ch;
  margin-top: 10px;
}

.feature__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature__foot span {
  padding: 6px 12px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plainlist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

.plainlist article {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.plainlist article:not(:nth-child(3n)) {
  border-right: 1px solid var(--line);
  padding-right: 40px;
}

.plainlist article:not(:nth-child(3n + 1)) {
  padding-left: 40px;
}

.plainlist h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 16px 0 8px;
}

.plainlist p {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

.plainlist .icap {
  margin-bottom: 0;
}

.funnelband {
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

.funnelband .funnel__row {
  grid-template-columns: 104px minmax(0, 1fr) 132px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}

.funnelband .funnel__row span {
  color: var(--fg-faint);
  font-size: 11px;
}

.funnelband .funnel__row i {
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--novek-purple), rgba(101, 51, 215, 0.34));
  border: 0;
}

.funnelband .funnel__row b {
  font-size: clamp(1.375rem, 2vw, 1.875rem);
  letter-spacing: -0.04em;
}

.funnel {
  display: grid;
  gap: 10px;
}

.funnel__row {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 68px;
  align-items: center;
  gap: 14px;
}

.funnel__row span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

.funnel__row i {
  display: block;
  height: 26px;
  width: var(--w);
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.funnel__row b {
  text-align: right;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}

.feature .label {
  color: rgba(255, 255, 255, 0.66);
}

.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.frentes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.frente {
  padding: 32px;
  border-radius: var(--r-24);
  border: 1px solid var(--line);
  background: var(--bg-card);
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 100%;
}

.frente__n {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  color: var(--accent);
}

.frente h3 {
  font-size: 1.75rem;
  letter-spacing: -0.035em;
  margin-top: 4px;
}

.frente p {
  font-size: 0.875rem;
  max-width: 42ch;
}

.frente .check {
  font-size: 0.875rem;
}

.frente ul {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.metric {
  padding: 34px 30px;
  border-radius: var(--r-24);
  border: 1px solid var(--line);
  background: var(--bg-card);
  display: grid;
  gap: 12px;
  align-content: start;
  overflow: hidden;
  position: relative;
}

.metric__n {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: clamp(3.5rem, 7vw, 5.75rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.92;
  font-variant-numeric: tabular-nums;
}

.metric__delta {
  font-family: var(--font-mono);
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0;
}

.metric p {
  font-size: var(--t-sm);
  color: var(--fg-muted);
}

.cycle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cycle__step {
  position: relative;
  padding: 26px 24px;
  border-radius: var(--r-16);
  border: 1px solid var(--line);
  background: var(--bg-card);
  display: grid;
  gap: 8px;
  align-content: start;
}

.cycle__step::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 50%;
  width: 8px;
  height: 8px;
  translate: 0 -50%;
  border-right: 1.5px solid var(--line-strong);
  border-top: 1.5px solid var(--line-strong);
  rotate: 45deg;
}

.cycle__step:last-child::after {
  display: none;
}

.cycle__n {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.loopbar {
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: var(--r-12);
  border: 1px dashed var(--line-strong);
  background: var(--bg-sunken);
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-faint);
  display: flex;
  align-items: center;
  gap: 12px;
}

.rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 34px;
}

.rail::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: var(--line-strong);
}

.rail__step {
  display: grid;
  gap: 10px;
  align-content: start;
}

.rail__dot {
  position: absolute;
  top: 0;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  background: var(--bg);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
}

.rail__step {
  position: relative;
  padding-top: 48px;
}

.weeks {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--r-16);
  overflow: hidden;
}

.weeks div {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.weeks div:last-child {
  border-right: 0;
}

.weeks b {
  display: block;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.plan {
  position: relative;
  padding: 32px 30px;
  border-radius: var(--r-24);
  border: 1px solid var(--line);
  background: var(--bg-card);
  display: grid;
  gap: 20px;
  align-content: start;
}

.plan--popular {
  background: var(--novek-black);
  border-color: var(--novek-black);
  color: #fff;
  padding: 40px 30px;
  margin-block: -12px;
  box-shadow: 0 34px 70px -34px rgba(13, 23, 41, 0.55);
}

.plan--popular .label {
  color: rgba(255, 255, 255, 0.62);
}

.plan--popular ul {
  border-top-color: var(--white-20);
}

.plan--popular .check {
  color: rgba(255, 255, 255, 0.82);
}

.plan--popular .check svg {
  stroke: #a78bfa;
}

.plan--popular .plan__price {
  font-size: clamp(2.625rem, 4vw, 3.5rem);
}

.plan--popular .plan__price small {
  color: rgba(255, 255, 255, 0.6);
}

.plan__tag {
  position: absolute;
  top: -12px;
  left: 30px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--novek-purple);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: clamp(2.25rem, 3.4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.plan__price small {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--fg-faint);
  letter-spacing: -0.01em;
}

.plan ul {
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  display: grid;
  gap: 12px;
}

.plan .btn {
  justify-content: center;
  width: 100%;
}

.plan__guard {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  justify-content: center;
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.quote {
  padding: 30px;
  border-radius: var(--r-24);
  border: 1px solid var(--line);
  background: var(--bg-card);
  display: grid;
  gap: 20px;
  align-content: start;
}

.stars {
  display: flex;
  gap: 3px;
  color: var(--rating);
}

.stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.quote blockquote {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.5;
  letter-spacing: -0.017em;
}

.who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.who i {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-signature);
  color: #fff;
  font-style: normal;
  font-size: var(--t-xs);
  font-weight: 700;
}

.who b {
  display: block;
  font-size: var(--t-sm);
  font-weight: 700;
}

.who span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

.purpleband {
  position: relative;
  background: var(--grad-signature);
  color: #fff;
  overflow: hidden;
}

.purpleband::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 20px 20px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 70%);
  mask-image: linear-gradient(180deg, #000, transparent 70%);
}

.purpleband .wrap {
  position: relative;
}

.purpleband .card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  box-shadow: none;
}

.purpleband .card p {
  color: rgba(255, 255, 255, 0.74);
}

.purpleband .icap {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.purpleband .label,
.purpleband .lede {
  color: rgba(255, 255, 255, 0.76);
}

.purpleband .badge {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.chip {
  padding: 7px 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--bg-card);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
}

.purpleband .chip {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
}

.finale {
  position: relative;
  min-height: 96svh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  padding-block: 120px;
}

.finale__glow {
  position: absolute;
  inset: auto -10% -40% -10%;
  height: 120%;
  pointer-events: none;
  background: radial-gradient(50% 50% at 50% 62%, rgba(101, 51, 215, 0.55), transparent 68%),
    radial-gradient(60% 40% at 50% 100%, rgba(125, 68, 236, 0.4), transparent 70%);
}

.finale .wrap {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 26px;
}

.finale h2 {
  max-width: 15ch;
}

.finale .lede {
  max-width: 46ch;
  text-align: center;
}

.finale__mark {
  width: 56px;
  height: 56px;
  opacity: 0.95;
}

.finale__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  margin-top: 8px;
}

.footer {
  padding-block: 56px;
  border-top: 1px solid var(--line);
  background: var(--bg);
  color: var(--fg);
}

.footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  align-items: center;
  justify-content: space-between;
}

.footer .label {
  letter-spacing: 0.1em;
}

.footer__clients {
  width: 100%;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__clients-label {
  opacity: .5;
}

.footer__quotes-grid {
  gap: 14px;
}

.footer__quote {
  padding: 22px;
  gap: 14px;
}

.footer__quote blockquote {
  font-size: .875rem;
}

.footer__quote .who {
  padding-top: 14px;
}

.footer__quote .who i {
  width: 28px;
  height: 28px;
  font-size: .6rem;
}

.footer__quote .stars svg {
  width: 11px;
  height: 11px;
}

.footer__bottom {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  align-items: center;
  justify-content: space-between;
}

.dock {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 55;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 7px 7px 7px 14px;
  border-radius: var(--r-pill);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-3);
  color: var(--fg);
  opacity: 0;
  translate: 0 20px;
  pointer-events: none;
  transition: opacity var(--d-fade) var(--ease), translate var(--d-fade) var(--ease),
    background-color 600ms var(--ease), border-color 600ms var(--ease),
    color 600ms var(--ease);
}

.dock--on {
  opacity: 1;
  translate: 0 0;
  pointer-events: auto;
}

.dock--hide {
  opacity: 0;
  translate: 0 20px;
  pointer-events: none;
}

.dock__ring {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: none;
}

.dock__ring svg {
  position: absolute;
  inset: 0;
  rotate: -90deg;
  overflow: visible;
}

.dock__ring circle {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.dock__ring .track {
  stroke: var(--line-strong);
}

.dock__ring .prog {
  stroke: var(--novek-purple);
  stroke-dasharray: 113;
  stroke-dashoffset: calc(113 - 113 * var(--p, 0));
  transition: stroke-dashoffset 120ms linear;
}

.dock__pct {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.dock__txt {
  display: grid;
  gap: 1px;
  padding-right: 4px;
}

.dock__txt b {
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.dock__txt span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-faint);
  white-space: nowrap;
}

.dock .btn {
  padding: 9px 16px;
  border-radius: var(--r-pill);
}

@media (max-width: 1000px) {
  .hero {
    min-height: auto;
    padding-block: 128px 0;
  }
  .panel {
    min-height: 0;
    padding-inline: 20px;
  }
  .panel__kpis {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
  }
  .panel__kpi:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }
  .panel__chart svg {
    min-height: 170px;
  }
  .plainlist {
    grid-template-columns: repeat(2, 1fr);
  }
  .plainlist article:not(:nth-child(3n)) {
    border-right: 0;
    padding-right: 0;
  }
  .plainlist article:not(:nth-child(3n + 1)) {
    padding-left: 0;
  }
  .plainlist article:nth-child(odd) {
    border-right: 1px solid var(--line);
    padding-right: 32px;
  }
  .plainlist article:nth-child(even) {
    padding-left: 32px;
  }
  .scrollcue {
    display: none;
  }
}

@media (max-width: 1080px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .cycle,
  .rail,
  .weeks {
    grid-template-columns: repeat(2, 1fr);
  }
  .rail::before {
    display: none;
  }
  .cycle__step::after {
    display: none;
  }
  .metrics,
  .quotes,
  .plans {
    grid-template-columns: 1fr;
  }
  .plans {
    max-width: 520px;
    margin-inline: auto;
  }
}

@media (max-width: 1080px) {
  .grid--bento {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .nav {
    display: none;
  }
  .split,
  .frentes,
  .grid--2,
  .grid--3,
  .grid--bento,
  .plainlist,
  .section__head--split {
    grid-template-columns: 1fr;
  }
  .section__head--split h2 {
    margin-bottom: 20px;
  }
  .feature {
    grid-column: span 1;
  }
  .plainlist article:nth-child(odd),
  .plainlist article:nth-child(even) {
    border-right: 0;
    padding-inline: 0;
  }
  .funnelband .funnel__row {
    grid-template-columns: 78px minmax(0, 1fr) 92px;
    gap: 14px;
  }
  .statbar {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 18px;
  }
  .weeks {
    grid-template-columns: 1fr;
  }
  .weeks div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .weeks div:last-child {
    border-bottom: 0;
  }
  .dock__txt {
    display: none;
  }
  .header__cta .btn--ghost {
    display: none;
  }
  .scrollcue {
    display: none;
  }
}

@media (max-width: 560px) {
  .cycle,
  .rail {
    grid-template-columns: 1fr;
  }
  .card,
  .frente,
  .metric,
  .plan,
  .quote {
    padding: 24px 22px;
  }
}

/* motion.css */

@keyframes nv-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

@keyframes nv-fade-down {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: none; }
}

@keyframes nv-fade-left {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: none; }
}

@keyframes nv-fade-right {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: none; }
}

@keyframes nv-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes nv-pop {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}

@keyframes nv-scale-in {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: none; }
}

@keyframes nv-pulse-soft {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.55; }
}

@keyframes nv-shimmer {
  from { transform: translateX(-140%); }
  to   { transform: translateX(140%); }
}

@keyframes nv-logo-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

@keyframes nv-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes nv-cue {
  0%   { transform: scaleY(0); transform-origin: 50% 0; opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: 50% 0; opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: 50% 100%; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: 50% 100%; opacity: 0; }
}

html.js .nv-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--d-enter) var(--ease),
    transform var(--d-enter) var(--ease);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}

html.js .nv-reveal--left {
  transform: translateX(-22px);
}
html.js .nv-reveal--right {
  transform: translateX(22px);
}
html.js .nv-reveal--pop {
  transform: translateY(10px) scale(0.98);
}
html.js .nv-reveal--fade {
  transform: none;
  transition-duration: var(--d-fade);
}

html.js .nv-reveal.is-in {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.nv-lines {
  display: grid;
  gap: 0;
}

.nv-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
  margin-bottom: -0.06em;
}

html.js .nv-line > span {
  display: block;
  transform: translateY(105%);
  transition: transform 760ms var(--ease);
  transition-delay: var(--delay, 0ms);
}

html.js .is-in .nv-line > span,
html.js .nv-lines.is-in .nv-line > span {
  transform: none;
}

.nv-lift {
  transition: transform var(--d-lift) var(--ease),
    box-shadow var(--d-lift) var(--ease);
}

.nv-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -18px rgba(13, 23, 41, 0.3);
}

.nv-hover-pop {
  transition: transform var(--d-pop) var(--ease);
}
.nv-hover-pop:hover {
  transform: scale(1.1);
}
.nv-hover-pop:active {
  transform: scale(0.95);
}

.nv-pulse-soft {
  animation: nv-pulse-soft 1.6s var(--ease) infinite;
}

.nv-logo-bob {
  animation: nv-logo-bob 3s var(--ease) infinite;
}

.nv-cue i {
  animation: nv-cue 2.4s var(--ease) infinite;
}

.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 56px;
  animation: nv-marquee 40s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 38%, rgba(255, 255, 255, 0.16) 50%, transparent 62%);
  animation: nv-shimmer 3s linear infinite;
  pointer-events: none;
}

.count {
  font-variant-numeric: tabular-nums;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .nv-reveal,
  .nv-reveal.is-in {
    opacity: 1;
    transform: none;
  }

  .nv-line > span {
    transform: none;
  }

  .shimmer::after,
  .marquee__track {
    animation: none;
  }
}
