/* ============================================================
   KINETOR · landing
   Paleta: Ink #0F1419 · Cloud #F4F6F8 · Blue #0071E3 · Orange #FF7A00
   Zamena palete = promeni --blue i --orange, sve ostalo prati.
   ============================================================ */

/* Self-hosted fontovi: nijedan zahtev ne ide trećoj strani (GDPR konzistentnost). */

@font-face {
  font-family: "Schibsted Grotesk";
  src: url("fonts/schibsted-grotesk-var-latin.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/inter-var-latin.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("fonts/ibm-plex-mono-400-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("fonts/ibm-plex-mono-500-latin.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0f1419;
  --ink-2: #161d26;
  --steel: #5b6470;
  --cloud: #f4f6f8;
  --white: #ffffff;
  --line: #e2e6eb;
  --line-dark: #26303c;
  --blue: #0071e3;
  --blue-deep: #005bb8;
  --orange: #ff7a00;
  --orange-ink: #b04e00; /* za sitan tekst na svetloj pozadini, WCAG AA; čist orange ostaje za grafiku i tamne podloge */
  --green: #2fd3a0;
  --font-display: "Schibsted Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* scrollbar uvek rezerviše prostor: bez horizontalnog "seckanja" kad se sadržaj menja */
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cloud);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.container-narrow { max-width: 820px; }

.mono {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.5rem, 5.2vw, 4.1rem); }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.25rem; letter-spacing: -0.015em; line-height: 1.25; }

/* tipografska higijena: bez siročića (jedna reč sama u redu) */
h1, h2, h3 { text-wrap: balance; }
p, li, summary { text-wrap: pretty; }

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

::selection { background: var(--orange); color: var(--white); }

/* ---------- dugmad ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  padding: 13px 26px;
  border-radius: 7px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-1px); }

.btn-ghost {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-1px); }

.btn-lg { padding: 16px 34px; font-size: 17px; }

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 246, 248, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
}
.logo-dot { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 500;
}
.nav-links a:not(.btn) { color: var(--steel); transition: color 0.15s; }
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-cta { padding: 10px 20px; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- hero ---------- */

.hero { padding: 88px 0 72px; position: relative; }

/* diskretna inženjerska mreža iza heroja, bledi ka dnu */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(15, 20, 25, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 20, 25, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(90% 100% at 65% 0%, black 30%, transparent 78%);
  mask-image: radial-gradient(90% 100% at 65% 0%, black 30%, transparent 78%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
/* min-width:0 skida default grid ponašanje (kolona širine = min-content sadržaja),
   tako da hero-visual drži fiksnu širinu i ne pomera se dok se hero-copy tekst ispisuje/menja */
.hero-grid > * { min-width: 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--steel);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.tick {
  width: 22px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}

.lede {
  font-size: 18.5px;
  color: var(--steel);
  max-width: 34em;
  margin: 24px 0 34px;
}

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-note {
  margin-top: 26px;
  color: var(--steel);
  letter-spacing: 0.05em;
}

/* ---------- dark panel (hero + demo) ---------- */

.hero-visual { position: relative; }

/* meki ambijentalni glow iza panela: plava gore desno, orange dole levo */
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -10% -6%;
  z-index: -1;
  background:
    radial-gradient(42% 48% at 72% 18%, rgba(0, 113, 227, 0.16), transparent 70%),
    radial-gradient(36% 42% at 22% 88%, rgba(255, 122, 0, 0.11), transparent 70%);
  filter: blur(28px);
  pointer-events: none;
}

.panel {
  background: linear-gradient(180deg, #151d28 0%, #0f1419 60%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 32px 80px -32px rgba(15, 20, 25, 0.55),
    0 12px 28px -18px rgba(15, 20, 25, 0.4);
}

.panel-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line-dark);
}

.panel-title { color: #8fa0b3; }

.panel-live {
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 7px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  border: 1px solid rgba(47, 211, 160, 0.25);
  background: rgba(47, 211, 160, 0.07);
  padding: 4px 11px;
  border-radius: 999px;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: 0.25; } }

/* SVG šema */

.flow { display: block; width: 100%; height: auto; padding: 10px 8px 0; }

.flow-path {
  fill: none;
  stroke: #2a3542;
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
}

.node rect {
  fill: #151c25;
  stroke: #2a3542;
  stroke-width: 1;
}
.node text {
  font-family: var(--font-mono);
  font-size: 11px;
  fill: #8fa0b3;
  text-anchor: middle;
  dominant-baseline: middle;
}

.node-core rect {
  stroke: var(--blue);
  stroke-width: 1.5;
  fill: #10192a;
  filter: drop-shadow(0 0 12px rgba(0, 113, 227, 0.4));
}
.node-core .core-name {
  fill: var(--white);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.node-core .core-sub { fill: #5b6470; font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; }

.pulse { fill: var(--orange); filter: drop-shadow(0 0 4px rgba(255, 122, 0, 0.8)); }

/* log — fiksna visina (nikad ne raste), track klizi naviše red po red */

.log-head {
  display: flex;
  justify-content: space-between;
  padding: 12px 18px 0;
  color: #55606d;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 10px;
  border-top: 1px solid var(--line-dark);
  margin-top: 6px;
}

.log {
  --lines: 6;
  --line-step: 26px;
  height: calc(var(--line-step) * var(--lines) - 8px + 30px); /* border-box: redovi + padding */
  padding: 12px 18px 18px;
  overflow: hidden;
  font-size: 12px;
}

.log-track { will-change: transform; }

.log-line {
  display: flex;
  gap: 14px;
  align-items: baseline;
  white-space: nowrap;
  overflow: hidden;
  height: 18px;
  line-height: 18px;
  margin-bottom: 8px;
  opacity: 0;
  animation: logIn 0.45s ease forwards;
}
.log-line.is-static { animation: none; opacity: 1; }
@keyframes logIn { to { opacity: 1; } }

.log-time { color: #55606d; }
.log-event { color: var(--orange); min-width: 130px; }
.log-event.ev-blue { color: #57a9ff; }
.log-detail { color: #aeb9c5; flex: 1; overflow: hidden; text-overflow: ellipsis; }
.log-ok { color: var(--green); }

.log-demo { --lines: 12; font-size: 12.5px; }

/* ---------- marquee ---------- */

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  padding: 13px 0;
}

.marquee-track {
  display: inline-block;
  white-space: nowrap;
  color: var(--steel);
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }

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

/* ---------- sekcije ---------- */

.section, .cta-band { scroll-margin-top: 84px; }

.section { padding: 104px 0; }
.section-alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--orange-ink);
  border-top: 2px solid var(--ink);
  display: inline-block;
  padding-top: 10px;
  margin-bottom: 26px;
}

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head p { color: var(--steel); margin-top: 18px; font-size: 17.5px; }

/* ---------- kalkulator ---------- */

.calc {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
}

.calc-rows { padding: 12px 36px 28px; }

.calc-row {
  display: grid;
  grid-template-columns: 220px 1fr 190px;
  align-items: center;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.calc-row:last-child { border-bottom: 0; }

.calc-desc strong { font-family: var(--font-display); font-size: 16.5px; display: block; letter-spacing: -0.01em; }
.calc-desc span { color: var(--steel); font-size: 14px; }

.calc-nums { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; }
.calc-val { color: var(--steel); }
.calc-val b { color: var(--ink); font-weight: 500; }
.calc-cost { color: var(--ink); font-weight: 500; }
.calc-cost.accent { color: var(--orange-ink); }

.calc-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 18px;
  margin: 6px 0;
  background: var(--cloud);
  border-radius: 8px;
  color: var(--steel);
}
.calc-subtotal b { color: var(--ink); font-weight: 500; }

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: var(--line);
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1px var(--line), 0 2px 6px rgba(15, 20, 25, 0.2);
  transition: transform 0.12s ease;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1px var(--line);
}

.calc-total {
  background: var(--ink);
  color: var(--white);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.calc-total-label {
  color: #8fa0b3;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.calc-total-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--orange);
}
.calc-total-per { font-size: 0.4em; color: #8fa0b3; font-weight: 600; letter-spacing: 0; }

.calc-total-year { color: #aeb9c5; font-size: 14px; }

.calc-micro { color: #8fa0b3; font-size: 13.5px; margin: 10px 0 18px; }

.calc-total .btn { align-self: flex-start; }

/* ---------- koraci ---------- */

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

.step { border-top: 1px solid var(--line); padding-top: 26px; position: relative; }
.step::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 56px;
  height: 2px;
  background: var(--blue);
}

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -0.04em;
  color: var(--line);
  display: block;
  line-height: 1;
  margin-bottom: 18px;
  transition: color 0.25s ease;
}
.step:hover .step-num { color: var(--orange); }

.step h3 { margin-bottom: 12px; }
.step p { color: var(--steel); font-size: 15.5px; }

/* ---------- kartice ---------- */

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px 32px 28px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-3px); border-color: var(--ink); }

.card-tag {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange-ink);
  font-size: 11px;
}

.card h3 { margin: 12px 0 10px; }
.card p { color: var(--steel); font-size: 15.5px; }

.card-outcome {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--ink) !important;
  font-weight: 500;
  font-size: 15px !important;
}
.card-outcome .mono { color: var(--blue); margin-right: 6px; }

/* ---------- stubovi ---------- */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 72px;
}

.pillar-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blue);
  font-size: 11px;
  display: block;
  margin-bottom: 14px;
}
.pillar h3 { margin-bottom: 12px; }
.pillar p { color: var(--steel); font-size: 15.5px; }

/* what you get */

.get {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 40px 44px;
  background: var(--cloud);
}
.get-title { margin-bottom: 22px; }

.get-list { list-style: none; columns: 2; column-gap: 48px; }
.get-list li {
  position: relative;
  padding: 0 0 14px 26px;
  color: var(--steel);
  font-size: 15.5px;
  break-inside: avoid;
}
.get-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  background: var(--blue);
}

/* ---------- demo ---------- */

.panel-demo { max-width: 860px; }

.demo-caption { margin-top: 18px; color: var(--steel); letter-spacing: 0.04em; }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--ink);
  color: var(--white);
  padding: 96px 0;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}

.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p { color: #aeb9c5; font-size: 17px; max-width: 32em; }

.cta-side { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.cta-note { color: #8fa0b3; }
.cta-mail { color: #aeb9c5; font-size: 14px; }
.cta-mail a { color: var(--white); border-bottom: 1px solid var(--orange); padding-bottom: 1px; }
.cta-mail a:hover { color: var(--orange); }

/* ---------- FAQ ---------- */

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17.5px;
  letter-spacing: -0.01em;
  padding: 22px 40px 22px 0;
  position: relative;
  transition: color 0.15s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--blue); }

.faq-x {
  position: absolute;
  right: 4px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
}
.faq-x::before, .faq-x::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform 0.2s ease;
}
.faq-x::before { left: 0; top: 6px; width: 14px; height: 2px; }
.faq-x::after { left: 6px; top: 0; width: 2px; height: 14px; }
details[open] .faq-x::after { transform: rotate(90deg); }

.faq-list details p {
  color: var(--steel);
  padding: 0 40px 24px 0;
  font-size: 15.5px;
  max-width: 42em;
}

/* ---------- footer ---------- */

.footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 48px;
}

.footer-brand .mono { color: var(--steel); margin-top: 8px; letter-spacing: 0.05em; }

.footer-nav { display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.footer-nav a { color: var(--steel); }
.footer-nav a:hover { color: var(--ink); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; font-size: 15px; }
.footer-contact a:not(.btn) { color: var(--steel); }
.footer-contact a:not(.btn):hover { color: var(--ink); }

.footer-legal {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--steel);
}

/* ---------- reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .calc { grid-template-columns: 1fr; }
  .calc-total { padding: 36px 32px; }
  .steps, .pillars { grid-template-columns: 1fr; gap: 32px; }
  .cta-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .section { padding: 72px 0; }
  .hero { padding: 56px 0 48px; }

  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 12px 28px 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav-cta { margin-top: 16px; text-align: center; }
  .nav.menu-open .nav-burger span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav.menu-open .nav-burger span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .calc-rows { padding: 4px 20px 20px; }
  .calc-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 0;
  }
  .calc-nums { flex-direction: row; justify-content: space-between; align-items: center; }
  .calc-subtotal { flex-direction: column; align-items: flex-start; gap: 6px; }

  .cards { grid-template-columns: 1fr; }
  .get { padding: 28px 24px; }
  .get-list { columns: 1; }
  .footer-legal { flex-direction: column; gap: 8px; }
}

/* ---------- GSAP sloj ----------
   .gsap-on na <html> znači da GSAP preuzima reveal-e i hero.
   Bez JS-a ili uz reduced-motion, klasa ne postoji i važe CSS fallback pravila. */

.gsap-on .reveal { transition: none; }

/* hero elementi: početno stanje postavlja GSAP pre painta (autoAlpha),
   ovde samo maska za reč-po-reč naslov */
.gsap-on .hw {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.gsap-on .hw > span { display: inline-block; will-change: transform; }

/* nav senka posle skrola */
.nav.scrolled { box-shadow: 0 6px 24px -12px rgba(15, 20, 25, 0.18); }

/* nav underline (samo precizni pointer) */
@media (hover: hover) and (pointer: fine) {
  .nav-links a:not(.btn) {
    background: linear-gradient(currentColor, currentColor) no-repeat 0 100% / 0 1px;
    transition: color 0.15s, background-size 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    padding-bottom: 2px;
  }
  .nav-links a:not(.btn):hover { background-size: 100% 1px; }

  /* light sweep preko primarnog dugmeta */
  .btn-primary { position: relative; overflow: hidden; }
  .btn-primary::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    left: -60%;
    width: 40%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-18deg);
    transition: left 0.55s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
  }
  .btn-primary:hover::after { left: 120%; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .live-dot { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .pulse { display: none; }
}
