/* ============================================================
   ON — system designu „rdzeń / neon" (v2, 2026-08)
   Wspólny arkusz wszystkich stron opennx1.com.
   Tożsamość: ciemna głębia + neonowy cyjan rdzenia ON (#00E5FF,
   ten sam co AppColors.onCyan w aplikacji) + mono-etykiety konsoli.
   ============================================================ */

:root {
  --bg-deep: #0B0F1E;
  --bg-panel: #121829;
  --bg-panel-2: #1A1A2E;
  --neon: #00E5FF;
  --neon-glow: rgba(0, 229, 255, 0.45);
  --neon-dim: rgba(0, 229, 255, 0.12);
  --blue: #1976D2;
  --blue-soft: #64B5F6;
  --mars: #CC0000;
  --text: #F0F0F0;
  --text-dim: #8A8F98;
  --line: rgba(0, 229, 255, 0.12);
  --danger: #FF5252;
  --ok: #00E676;

  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container: 1280px;
  --container-narrow: 880px;
  --radius: 12px;
  --radius-sm: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: var(--neon); }
:focus-visible { outline: 2px solid var(--neon); outline-offset: 3px; }
::selection { background: rgba(0, 229, 255, 0.25); }

/* ---------- typografia ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--blue-soft); margin-bottom: 14px;
}
.eyebrow--live { color: var(--neon); display: inline-flex; align-items: center; gap: 10px; }
.eyebrow--live::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--neon); box-shadow: 0 0 10px var(--neon);
  animation: pulse-dot 2.6s ease-in-out infinite;
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.neon { color: var(--neon); text-shadow: 0 0 11px rgba(0, 229, 255, 0.35); }
.mono { font-family: var(--font-mono); }

.section { padding: 96px 48px; }
.section-inner { max-width: var(--container); margin: 0 auto; }
.section-inner--narrow { max-width: var(--container-narrow); margin: 0 auto; }
.section-head { margin-bottom: 48px; max-width: 760px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.2vw, 42px); font-weight: 700; }
.section-head p { color: var(--text-dim); margin-top: 14px; font-size: 16.5px; }

/* ---------- nawigacja ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 48px;
  background: rgba(11, 15, 30, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  font-family: var(--font-display); font-weight: 700; font-size: 26px;
  color: var(--neon); text-decoration: none; letter-spacing: 0.04em;
  text-shadow: 0 0 18px var(--neon-glow);
}
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a:not(.btn) {
  color: var(--text-dim); text-decoration: none; font-size: 14.5px;
  transition: color 0.2s;
}
.nav-links a:not(.btn):hover { color: var(--neon); }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 8px 12px;
  color: var(--neon); font-family: var(--font-mono); font-size: 13px;
  cursor: pointer;
}
.eu-tag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  color: var(--blue-soft); border: 1px solid rgba(100, 181, 246, 0.35);
  padding: 6px 12px; border-radius: 4px; white-space: nowrap;
}

/* ---------- przyciski ---------- */
.btn {
  display: inline-block; font-family: var(--font-mono); font-size: 14px;
  letter-spacing: 0.05em; font-weight: 500; text-decoration: none;
  border-radius: var(--radius-sm); cursor: pointer; border: none;
  transition: box-shadow 0.25s, transform 0.25s, background 0.25s;
  text-align: center;
}
.btn--primary {
  color: var(--bg-deep); background: var(--neon);
  padding: 15px 30px;
  box-shadow: 0 0 26px var(--neon-glow);
}
.btn--primary:hover { box-shadow: 0 0 44px var(--neon-glow); transform: translateY(-2px); }
.btn--ghost {
  color: var(--neon); background: transparent;
  border: 1px solid rgba(0, 229, 255, 0.4);
  padding: 14px 28px;
}
.btn--ghost:hover { background: var(--neon-dim); }
.btn--big { padding: 18px 40px; font-size: 15.5px; }
.btn-note { font-size: 13px; color: var(--text-dim); margin-top: 12px; }

/* ---------- hero ---------- */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center; gap: 40px;
  max-width: var(--container); margin: 0 auto;
  padding: 150px 48px 70px;
}
.hero h1 {
  font-size: clamp(38px, 4.5vw, 60px); line-height: 1.08; font-weight: 700;
  margin: 22px 0 26px;
}
.hero-lead { font-size: 18px; max-width: 48ch; margin-bottom: 12px; }
.hero-sub { font-size: 15px; color: var(--text-dim); max-width: 54ch; margin-bottom: 36px; }
.hero-visual { position: relative; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero-visual canvas { width: min(540px, 42vw); aspect-ratio: 1; display: block; cursor: crosshair; }
.core-label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  color: var(--text-dim); white-space: nowrap;
}
.core-label b { color: var(--neon); font-weight: 500; }
.hero-stats { display: flex; margin-top: 48px; border-top: 1px solid var(--line); }
.hero-stat { padding: 20px 30px 0 0; margin-right: 30px; }
.hero-stat + .hero-stat { border-left: 1px solid var(--line); padding-left: 30px; }
.hero-stat b {
  display: block; font-family: var(--font-mono); font-weight: 500;
  font-size: 25px; color: var(--neon); white-space: nowrap;
}
.hero-stat span { font-size: 12.5px; color: var(--text-dim); white-space: nowrap; }

/* ---------- panel konsoli (funkcje / listy statusowe) ---------- */
.panel {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-panel) 0%, var(--bg-deep) 100%);
  overflow: hidden;
}
.panel-bar {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 13px 24px; border-bottom: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.14em;
  color: var(--text-dim); text-transform: uppercase;
}
.panel-bar b { color: var(--neon); font-weight: 500; }
.row {
  display: grid; grid-template-columns: 26px 220px 1fr auto;
  gap: 18px; align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(0, 229, 255, 0.06);
  transition: background 0.2s;
}
.row:last-child { border-bottom: none; }
.row:hover { background: rgba(0, 229, 255, 0.045); }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--neon); box-shadow: 0 0 9px var(--neon-glow);
  justify-self: center; flex: none;
  animation: pulse-dot 3s ease-in-out infinite;
}
.dot--soon { background: var(--text-dim); box-shadow: none; animation: none; }
.dot--off { background: var(--mars); box-shadow: 0 0 9px rgba(204, 0, 0, 0.5); animation: none; }
.row-name { font-family: var(--font-display); font-weight: 500; font-size: 16.5px; }
.row-desc { font-size: 14px; color: var(--text-dim); }
.status {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em;
  color: var(--neon); white-space: nowrap;
}
.status--soon { color: var(--text-dim); }

/* ---------- porównanie bez/z ON ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare-col {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-panel); padding: 30px 28px;
}
.compare-col h3 { font-size: 20px; margin-bottom: 6px; }
.compare-col .compare-tag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  display: block; margin-bottom: 18px;
}
.compare-col ul { list-style: none; }
.compare-col li {
  position: relative; padding: 8px 0 8px 26px; font-size: 14.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.compare-col li:last-child { border-bottom: none; }
.compare-col li::before {
  content: ''; position: absolute; left: 4px; top: 15px;
  width: 7px; height: 7px; border-radius: 50%;
}
.compare--off { border-color: rgba(204, 0, 0, 0.25); }
.compare--off h3, .compare--off .compare-tag { color: var(--text-dim); }
.compare--off li { color: var(--text-dim); }
.compare--off li::before { background: rgba(204, 0, 0, 0.55); }
.compare--on { border-color: rgba(0, 229, 255, 0.35); box-shadow: 0 0 40px rgba(0, 229, 255, 0.07); }
.compare--on .compare-tag { color: var(--neon); }
.compare--on li::before { background: var(--neon); box-shadow: 0 0 7px var(--neon-glow); }
.compare-intro { color: var(--text-dim); font-size: 14px; margin-bottom: 14px; }
.quote {
  margin: 56px auto 0; max-width: 640px; text-align: center;
  font-family: var(--font-display); font-size: clamp(19px, 2.2vw, 25px);
  font-weight: 500; line-height: 1.45; color: var(--text);
}
.quote::before { content: '„'; color: var(--neon); }
.quote::after { content: '"'; color: var(--neon); }

/* ---------- stany rdzenia (wersje ON) ---------- */
.states { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.state-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-panel); padding: 34px 28px; text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.state-card:hover { border-color: rgba(0, 229, 255, 0.4); }
.state-card--featured {
  border-color: rgba(0, 229, 255, 0.45);
  box-shadow: 0 0 44px rgba(0, 229, 255, 0.08);
}
.state-core { width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%; }
.state-core--calm {
  background: radial-gradient(circle, rgba(255,255,255,0.85) 0%, rgba(0,229,255,0.5) 22%, rgba(0,229,255,0.08) 62%, transparent 72%);
}
.state-core--strategic {
  background: radial-gradient(circle, #fff 0%, rgba(0,229,255,0.85) 20%, rgba(0,229,255,0.18) 60%, transparent 72%);
  animation: core-breathe 2.4s ease-in-out infinite;
}
.state-core--overdrive {
  background: radial-gradient(circle, #fff 0%, rgba(0,229,255,0.95) 24%, rgba(0,229,255,0.28) 58%, transparent 72%);
  animation: core-breathe 1.1s ease-in-out infinite;
  opacity: 0.55;
}
@keyframes core-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}
.state-card h4 { font-size: 19px; margin-bottom: 6px; }
.state-card p { font-size: 14px; color: var(--text-dim); }
.state-status {
  display: inline-block; margin-top: 16px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  color: var(--neon);
}
.state-status--soon { color: var(--text-dim); }

/* ---------- chipy integracji ---------- */
.chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.chip {
  display: flex; flex-direction: column; gap: 4px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg-panel); padding: 18px 20px;
  transition: border-color 0.2s, background 0.2s;
}
.chip:hover { border-color: rgba(0, 229, 255, 0.35); background: rgba(0, 229, 255, 0.03); }
.chip-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.chip-name { font-family: var(--font-display); font-weight: 500; font-size: 16px; }
.chip p { font-size: 13px; color: var(--text-dim); }
.chip--soon { opacity: 0.6; }
.note-line {
  margin-top: 28px; text-align: center;
  font-size: 14px; color: var(--text-dim);
}
.note-line a { color: var(--neon); }

/* ---------- bezpieczeństwo ---------- */
.sec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.sec-panel {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-panel); overflow: hidden;
}
.sec-panel-head {
  padding: 16px 24px; border-bottom: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--neon);
}
.sec-panel ul { list-style: none; padding: 8px 0; }
.sec-panel li { padding: 14px 24px; border-bottom: 1px solid rgba(255, 255, 255, 0.04); }
.sec-panel li:last-child { border-bottom: none; }
.sec-panel strong { display: block; font-size: 15px; margin-bottom: 3px; }
.sec-panel p { font-size: 13.5px; color: var(--text-dim); }
.badges { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 40px; }
.badge {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.1em;
  color: var(--blue-soft); border: 1px solid rgba(100, 181, 246, 0.3);
  border-radius: 4px; padding: 8px 16px;
}

/* ---------- założyciele ---------- */
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.founder {
  display: grid; grid-template-columns: 120px 1fr; gap: 24px; align-items: start;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-panel); padding: 28px;
}
.founder img {
  width: 120px; height: 120px; object-fit: cover; border-radius: 50%;
  border: 2px solid rgba(0, 229, 255, 0.35);
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.12);
}
.founder h3 { font-size: 20px; }
.founder-role {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em;
  color: var(--neon); display: block; margin: 4px 0 14px;
  text-transform: uppercase;
}
.founder-nums { display: flex; gap: 24px; margin-bottom: 12px; }
.founder-nums b {
  font-family: var(--font-mono); font-size: 20px; color: var(--neon);
  display: block; font-weight: 500;
}
.founder-nums span { font-size: 12px; color: var(--text-dim); }
.founder p { font-size: 14px; color: var(--text-dim); }

/* ---------- cennik ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-panel); padding: 32px 28px;
  position: relative;
}
.plan--featured {
  border-color: rgba(0, 229, 255, 0.5);
  box-shadow: 0 0 50px rgba(0, 229, 255, 0.09);
}
.plan-flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em;
  background: var(--neon); color: var(--bg-deep);
  padding: 4px 14px; border-radius: 4px; white-space: nowrap;
}
.plan-name {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.18em;
  color: var(--text);
}
.plan-tag { font-size: 12.5px; color: var(--text-dim); display: block; margin: 2px 0 20px; }
.plan-price { font-family: var(--font-mono); margin-bottom: 22px; }
.plan-price b { font-size: 40px; font-weight: 500; color: var(--neon); }
.plan-price span { font-size: 13px; color: var(--text-dim); }
.plan ul { list-style: none; flex: 1; margin-bottom: 26px; }
.plan li {
  padding: 8px 0 8px 24px; position: relative; font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.plan li:last-child { border-bottom: none; }
.plan li::before {
  content: '＋'; position: absolute; left: 0; top: 8px;
  color: var(--neon); font-family: var(--font-mono); font-size: 12px;
}
.guarantee {
  display: inline-block; margin-top: 20px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em;
  color: var(--neon); border: 1px dashed rgba(0, 229, 255, 0.4);
  border-radius: var(--radius-sm); padding: 10px 18px;
}
.beta-flag {
  display: inline-block; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.2em; color: var(--bg-deep); background: var(--neon);
  border-radius: 4px; padding: 4px 12px; margin-bottom: 16px;
}
.partner-box {
  margin-top: 40px; border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(135deg, var(--bg-panel) 0%, var(--bg-panel-2) 100%);
  padding: 32px; display: flex; flex-wrap: wrap; gap: 32px;
  align-items: center; justify-content: space-between;
}
.partner-box h3 { font-size: 20px; margin-bottom: 6px; }
.partner-box p { color: var(--text-dim); font-size: 14.5px; }
.partner-box p strong { color: var(--neon); }
.partner-nums { display: flex; gap: 36px; }
.partner-nums b {
  display: block; font-family: var(--font-mono); font-size: 30px;
  font-weight: 500; color: var(--neon);
}
.partner-nums span { font-size: 12.5px; color: var(--text-dim); }

/* ---------- finalne CTA ---------- */
.final-cta { text-align: center; padding: 110px 48px; position: relative; }
.final-cta h2 { font-size: clamp(30px, 3.4vw, 46px); max-width: 700px; margin: 0 auto 14px; }
.final-cta > p { color: var(--text-dim); margin-bottom: 36px; }
.store-links { display: flex; gap: 16px; justify-content: center; margin-top: 44px; }
.store-links img { height: 48px; }

/* ---------- stopka ---------- */
.footer { border-top: 1px solid var(--line); padding: 56px 48px 32px; }
.footer-main {
  max-width: var(--container); margin: 0 auto 36px;
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px;
}
.footer-brand h3 {
  font-size: 24px; color: var(--neon); text-shadow: 0 0 14px var(--neon-glow);
}
.footer-brand p { color: var(--text-dim); font-size: 14px; margin-top: 6px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--text-dim); text-decoration: none; font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--neon); }
.footer-bottom {
  max-width: var(--container); margin: 0 auto; padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.04em;
  color: var(--text-dim); display: flex; flex-wrap: wrap; gap: 8px 24px;
  justify-content: space-between;
}

/* ---------- strony-dokumenty (regulamin, polityki) ---------- */
.doc { max-width: var(--container-narrow); margin: 0 auto; padding: 150px 48px 90px; }
.doc h1 { font-size: clamp(30px, 3.4vw, 42px); margin-bottom: 10px; }
.doc-meta {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  color: var(--text-dim); margin-bottom: 40px;
}
.doc h2 { font-size: 24px; margin: 44px 0 14px; color: var(--neon); }
.doc h3 { font-size: 18px; margin: 28px 0 10px; }
.doc p, .doc li { color: var(--text); font-size: 15px; }
.doc p { margin-bottom: 12px; }
.doc ul, .doc ol { margin: 0 0 14px 24px; }
.doc a { color: var(--neon); }
.doc table { border-collapse: collapse; width: 100%; margin: 16px 0; }
.doc th, .doc td {
  border: 1px solid var(--line); padding: 10px 14px; font-size: 14px;
  text-align: left;
}
.doc th { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--neon); }

/* ---------- formularze ---------- */
.form-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-panel); padding: 36px;
}
label { display: block; font-size: 13.5px; color: var(--text-dim); margin-bottom: 6px; }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%; background: var(--bg-deep); color: var(--text);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 16px; font-family: var(--font-body); font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.12);
}
input::placeholder, textarea::placeholder { color: rgba(138, 143, 152, 0.6); }
.form-row { margin-bottom: 20px; }
.form-msg { font-size: 14px; padding: 12px 16px; border-radius: var(--radius-sm); margin: 14px 0; }
.form-msg--error { color: var(--danger); border: 1px solid rgba(255, 82, 82, 0.35); background: rgba(255, 82, 82, 0.06); }
.form-msg--ok { color: var(--ok); border: 1px solid rgba(0, 230, 118, 0.35); background: rgba(0, 230, 118, 0.06); }

/* ---------- responsywność ---------- */
@media (max-width: 1024px) {
  .chips { grid-template-columns: repeat(2, 1fr); }
  .plans, .states { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .sec-grid, .founders, .compare { grid-template-columns: 1fr; }
}
@media (max-width: 920px) {
  .nav { padding: 14px 20px; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: rgba(11, 15, 30, 0.98); border-bottom: 1px solid var(--line);
    padding: 16px 20px 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { padding: 10px 0; font-size: 16px; }
  .nav-toggle { display: block; }
  .section { padding: 64px 20px; }
  .hero { grid-template-columns: 1fr; padding: 120px 20px 50px; gap: 20px; }
  .hero-visual { order: -1; }
  .hero-visual canvas { width: min(300px, 74vw); }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { padding-right: 20px; margin-right: 20px; }
  .row { grid-template-columns: 20px 1fr auto; }
  .row-desc { display: none; }
  .founder { grid-template-columns: 84px 1fr; gap: 16px; }
  .founder img { width: 84px; height: 84px; }
  .doc { padding: 120px 20px 60px; }
  .footer { padding: 44px 20px 24px; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .final-cta { padding: 80px 20px; }
  .store-links { flex-wrap: wrap; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
