:root {
  --bg: #0a0d14;
  --bg-2: #0f1320;
  --card: #131825;
  --card-2: #182036;
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.14);
  --text: rgba(255, 255, 255, 0.94);
  --text-dim: rgba(255, 255, 255, 0.62);
  --text-mute: rgba(255, 255, 255, 0.42);
  --primary: #288ED7;
  --primary-2: #5BB0F0;
  --accent: #FF4D8D;
  --accent-2: #FFB454;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --grad-1: linear-gradient(135deg, #5BB0F0 0%, #FF4D8D 60%, #FFB454 100%);
  --grad-2: radial-gradient(60% 50% at 50% 0%, rgba(40, 142, 215, 0.35), transparent 70%);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 24px 60px -28px rgba(0,0,0,0.6);
  --maxw: 1180px;
  --pad: clamp(20px, 4vw, 40px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============ Nav ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--pad);
  background: rgba(10, 13, 20, 0.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -0.01em; }
.brand-mark {
  width: 26px; height: 26px; border-radius: 8px;
  background: var(--grad-1);
  box-shadow: 0 6px 18px -6px rgba(255, 77, 141, 0.55);
  position: relative;
}
.brand-mark::after {
  content: ""; position: absolute; inset: 4px;
  background: var(--bg); border-radius: 5px;
}
.brand-mark::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grad-1);
  transform: translate(-50%, -50%);
}
.brand-name { font-size: 18px; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: var(--text-dim); font-size: 14px; font-weight: 500; transition: color .15s ease; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--text); color: var(--bg) !important;
  padding: 10px 16px; border-radius: 999px; font-weight: 600;
}
.nav-cta:hover { background: #fff; }
@media (max-width: 760px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ============ Layout ============ */
main { max-width: 100%; }
section { padding: clamp(64px, 9vw, 120px) var(--pad); position: relative; }
.section-label {
  display: inline-block;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-mute);
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--border-2);
  margin-bottom: 28px;
}

h1, h2, h3, h4 { letter-spacing: -0.02em; line-height: 1.05; margin: 0; font-weight: 700; }
.h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.1; }
.h2.center { text-align: center; }
.display {
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 18px 0 22px;
}
.display .strike { color: var(--text-mute); text-decoration: line-through; text-decoration-thickness: 3px; }
.grad {
  background: var(--grad-1);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.muted { color: var(--text-dim); font-weight: 600; }
.lede { font-size: clamp(17px, 1.6vw, 21px); color: var(--text-dim); max-width: 720px; }
.sub { color: var(--text-dim); font-size: 17px; max-width: 640px; }
.sub.center { margin: 0 auto 56px; text-align: center; }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding-top: clamp(60px, 10vw, 120px);
  padding-bottom: clamp(60px, 9vw, 100px);
  max-width: var(--maxw);
  margin: 0 auto;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; max-width: 920px; }
.hero-glow {
  position: absolute; inset: -40% -10% auto -10%; height: 100%;
  background: var(--grad-2);
  z-index: 0; pointer-events: none;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-dim);
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--border-2);
  background: rgba(255, 255, 255, 0.03);
}
.pill-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(16,185,129,0.15); }
  50% { box-shadow: 0 0 0 8px rgba(16,185,129,0.05); }
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  border: 1px solid transparent; transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--text); color: var(--bg); }
.btn-primary:hover { background: #fff; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-2); }
.btn-ghost:hover { border-color: var(--text); }
.btn-block { display: flex; width: 100%; }

.hero-strip {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px; padding: 0; margin: 48px 0 0; list-style: none;
  border-top: 1px solid var(--border); padding-top: 32px;
}
.hero-strip li { display: flex; flex-direction: column; gap: 4px; }
.hero-strip strong {
  font-size: clamp(22px, 2.4vw, 30px); font-weight: 700;
  background: var(--grad-1); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-strip span { color: var(--text-mute); font-size: 13px; }
@media (max-width: 640px) {
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ============ Manifesto ============ */
.manifesto { max-width: var(--maxw); margin: 0 auto; }
.manifesto-list { list-style: none; padding: 0; margin: 56px 0 0; display: grid; gap: 16px; }
.manifesto-list li {
  display: grid; grid-template-columns: 96px 1fr; gap: 24px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color .2s ease, transform .2s ease;
}
.manifesto-list li:hover { border-color: var(--border-2); transform: translateY(-2px); }
.manifesto-list .num {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 14px; color: var(--text-mute);
  letter-spacing: 0.1em;
}
.manifesto-list h3 { font-size: clamp(20px, 2vw, 26px); margin-bottom: 10px; }
.manifesto-list p { color: var(--text-dim); margin: 0; font-size: 16px; line-height: 1.6; }
.manifesto-list p em { color: var(--text); font-style: normal; font-weight: 600; }
@media (max-width: 640px) {
  .manifesto-list li { grid-template-columns: 1fr; gap: 10px; padding: 22px; }
}

/* ============ Split sections ============ */
.split {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 80px);
  max-width: var(--maxw); margin: 0 auto;
  align-items: center;
}
.split.reverse .split-side:first-child { order: 2; }
@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-side:first-child { order: 0; }
}
.feat-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.feat-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-dim); font-size: 16px; }
.feat-list .check {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(16,185,129,0.15); color: var(--success);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; margin-top: 2px;
}

/* ============ Phone mock ============ */
.phone-wrap { display: flex; justify-content: center; }
.phone {
  width: min(320px, 100%); aspect-ratio: 9 / 18.5;
  background: linear-gradient(180deg, #1a2138, #0b0f19);
  border-radius: 44px;
  padding: 16px;
  border: 1px solid var(--border-2);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 40px 80px -20px rgba(40,142,215,0.25),
    0 80px 120px -40px rgba(255,77,141,0.2);
  position: relative;
}
.phone::before {
  content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 22px; background: #000; border-radius: 12px;
}
.phone-screen {
  background: #0a0d14;
  border-radius: 30px; height: 100%;
  padding: 50px 18px 22px;
  display: flex; flex-direction: column; gap: 16px;
}
.ticket {
  background: linear-gradient(160deg, rgba(40,142,215,0.18), rgba(255,77,141,0.18));
  border: 1px solid var(--border-2);
  border-radius: 20px;
  padding: 18px;
  display: flex; flex-direction: column; gap: 14px;
}
.ticket-event { font-weight: 700; font-size: 17px; }
.ticket-meta { color: var(--text-dim); font-size: 12px; margin-top: 4px; }
.ticket-qr {
  background: #fff; border-radius: 14px; padding: 12px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.qr-anim {
  width: 140px; height: 140px;
  background:
    repeating-conic-gradient(#000 0% 25%, #fff 25% 50%) 0/8px 8px,
    repeating-linear-gradient(45deg, #000 0 1px, transparent 1px 6px) 0/100% 100%;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  animation: qrShift 3s steps(8) infinite;
}
@keyframes qrShift {
  0% { filter: hue-rotate(0deg); transform: rotate(0deg) scale(1); }
  50% { transform: rotate(0.5deg) scale(1.01); }
  100% { filter: hue-rotate(360deg); transform: rotate(0deg) scale(1); }
}
.qr-label {
  color: #000; font-size: 11px; font-family: "Geist Mono", monospace;
  display: flex; gap: 4px;
}
.qr-label span { font-weight: 600; }
.ticket-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--text-dim);
}
.ticket-price { font-weight: 700; color: var(--text); }
.phone-hint {
  text-align: center; font-size: 12px; color: var(--text-mute);
  padding: 10px; border: 1px dashed var(--border-2); border-radius: 12px;
}

/* ============ Organiser card ============ */
.organiser-card { display: flex; justify-content: center; }
.op-card {
  width: 100%; max-width: 460px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: var(--shadow);
}
.op-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.op-cell {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px;
}
.op-label { font-size: 12px; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.08em; }
.op-value { font-size: 26px; font-weight: 700; margin-top: 6px; letter-spacing: -0.02em; }
.op-value.sm { font-size: 18px; }
.op-delta { font-size: 12px; color: var(--text-dim); margin-top: 6px; }
.op-delta.up { color: var(--success); }
.op-bar {
  height: 12px; background: rgba(255,255,255,0.04); border-radius: 999px; position: relative;
  border: 1px solid var(--border);
}
.op-bar-fill {
  height: 100%; width: var(--w, 50%);
  background: var(--grad-1); border-radius: 999px;
}
.op-bar-label {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  font-size: 11px; color: var(--text-dim);
  font-family: "Geist Mono", monospace;
}

/* ============ Cashless ============ */
.cashless { max-width: var(--maxw); margin: 0 auto; text-align: center; }
.cashless .section-label { margin-left: auto; margin-right: auto; display: inline-block; }
.grid-4 {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px;
  margin-top: 12px;
}
@media (max-width: 900px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .grid-4 { grid-template-columns: 1fr; } }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px; text-align: left;
}
.card-icon {
  font-size: 26px;
  width: 50px; height: 50px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(40,142,215,0.12);
  border-radius: 14px; margin-bottom: 14px;
}
.card h4 { font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--text-dim); margin: 0; font-size: 15px; line-height: 1.55; }

/* ============ Pricing ============ */
.pricing { max-width: var(--maxw); margin: 0 auto; text-align: center; }
.pricing .section-label { display: inline-block; }
.price-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px;
  margin-top: 12px; text-align: left;
}
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
}
.price-card.featured {
  border-color: rgba(40,142,215,0.6);
  box-shadow: 0 0 0 1px rgba(40,142,215,0.5), 0 30px 80px -40px rgba(40,142,215,0.55);
}
.price-card.featured::before {
  content: "Most popular"; position: absolute; top: -12px; left: 24px;
  background: var(--grad-1); color: #0a0d14;
  font-size: 11px; font-weight: 700; padding: 5px 12px;
  border-radius: 999px; letter-spacing: 0.04em;
}
.price-tag { font-size: 13px; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.1em; }
.price-num {
  font-size: 56px; font-weight: 800; letter-spacing: -0.04em; line-height: 1;
}
.price-unit { font-size: 18px; color: var(--text-dim); font-weight: 500; letter-spacing: 0; }
.price-sub { color: var(--text-dim); font-size: 14px; }
.price-feats { list-style: none; padding: 0; margin: 4px 0 0; display: grid; gap: 8px; }
.price-feats li { color: var(--text); font-size: 14px; padding-left: 22px; position: relative; }
.price-feats li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--success); font-weight: 700;
}
.price-foot { font-size: 12px; color: var(--text-mute); font-family: "Geist Mono", monospace; margin-top: auto; }

/* ============ Rails ============ */
.rails { max-width: var(--maxw); margin: 0 auto; }
.rails .section-label { display: block; text-align: center; margin: 0 auto 32px; }
.rails-strip {
  display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 12px;
}
@media (max-width: 900px) { .rails-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .rails-strip { grid-template-columns: repeat(2, 1fr); } }
.rail {
  padding: 22px 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  transition: border-color .2s ease, transform .2s ease;
}
.rail span { display: block; font-size: 11px; color: var(--text-mute); font-weight: 500; margin-top: 6px; }
.rail:hover { border-color: var(--border-2); transform: translateY(-2px); }

/* ============ Compare table ============ */
.compare { max-width: var(--maxw); margin: 0 auto; text-align: center; }
.compare .section-label { display: inline-block; }
.compare .h2 { margin-bottom: 14px; }
.compare .sub { margin: 0 auto 40px; }
.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  font-size: 14px; min-width: 760px; text-align: left;
}
.compare-table th, .compare-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--text-dim);
}
.compare-table thead th {
  position: sticky; top: 0;
  background: var(--card-2);
  font-weight: 600; color: var(--text);
  font-size: 13px; letter-spacing: -0.005em;
}
.compare-table thead th.t-us {
  color: var(--primary-2);
  background: rgba(40, 142, 215, 0.12);
}
.compare-table tbody th {
  font-weight: 600; color: var(--text); white-space: nowrap;
  background: rgba(255, 255, 255, 0.015);
}
.compare-table .t-us { background: rgba(40, 142, 215, 0.06); color: var(--text); font-weight: 500; }
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table .ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%; font-size: 12px; font-weight: 700;
}
.compare-table .ic.ok { background: rgba(16, 185, 129, 0.15); color: var(--success); }
.compare-table .ic.no { background: rgba(239, 68, 68, 0.12); color: var(--danger); }
.compare-table em { color: var(--text-mute); font-style: italic; font-size: 13px; }

/* ============ FAQ ============ */
.faq { max-width: 900px; margin: 0 auto; text-align: center; }
.faq .section-label { display: inline-block; }
.faq-grid { display: grid; gap: 12px; margin-top: 40px; text-align: left; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--border-2); }
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  color: var(--text);
  transition: color .15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px; font-weight: 400; color: var(--text-mute);
  width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
  transition: transform .2s ease, color .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--primary-2); }
.faq-item summary:hover { color: var(--primary-2); }
.faq-item p {
  margin: 0; padding: 0 24px 22px;
  color: var(--text-dim); font-size: 15px; line-height: 1.65;
}

/* ============ Waitlist ============ */
.waitlist { max-width: 760px; margin: 0 auto; }
.waitlist-card {
  background: linear-gradient(160deg, rgba(40,142,215,0.12), rgba(255,77,141,0.10));
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 56px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.waitlist-card::before {
  content: ""; position: absolute; inset: -1px;
  background: radial-gradient(60% 60% at 20% 0%, rgba(40,142,215,0.25), transparent 60%),
              radial-gradient(60% 60% at 100% 100%, rgba(255,77,141,0.2), transparent 60%);
  pointer-events: none; border-radius: inherit;
}
.waitlist-card > * { position: relative; }
.waitlist-card .section-label { display: inline-block; }
.waitlist .h2 { margin-bottom: 14px; }
.waitlist .sub { margin: 0 auto 32px; }

.form { display: grid; gap: 12px; max-width: 480px; margin: 0 auto; text-align: left; }
.form-row { display: flex; }
.form input, .form select, .form textarea {
  width: 100%;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border-2);
  color: var(--text);
  padding: 14px 16px;
  border-radius: 12px;
  font: inherit;
  transition: border-color .2s ease, background .2s ease;
}
.form input::placeholder, .form textarea::placeholder { color: var(--text-mute); }
.form select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--text-dim) 50%), linear-gradient(135deg, var(--text-dim) 50%, transparent 50%); background-position: calc(100% - 18px) 22px, calc(100% - 13px) 22px; background-size: 5px 5px; background-repeat: no-repeat; }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--primary-2); background: rgba(40,142,215,0.06);
}
.form-foot { color: var(--text-mute); font-size: 12px; text-align: center; margin-top: 6px; }
.thanks { padding: 20px 0; }
.thanks-emoji { font-size: 48px; margin-bottom: 8px; }
.thanks h3 { font-size: 24px; margin-bottom: 6px; }
.thanks p { color: var(--text-dim); margin: 0 0 18px; }

/* ============ Footer ============ */
.foot {
  border-top: 1px solid var(--border);
  padding: 56px var(--pad) 32px;
  background: var(--bg-2);
}
.foot-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 2fr; gap: 40px;
}
@media (max-width: 700px) { .foot-inner { grid-template-columns: 1fr; } }
.foot-tag { color: var(--text-dim); font-size: 14px; margin-top: 12px; max-width: 280px; }
.foot-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 520px) { .foot-cols { grid-template-columns: 1fr 1fr; } }
.foot-h { font-size: 12px; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.foot-cols a { display: block; color: var(--text-dim); font-size: 14px; padding: 4px 0; transition: color .15s ease; }
.foot-cols a:hover { color: var(--text); }
.foot-mini {
  max-width: var(--maxw); margin: 32px auto 0;
  color: var(--text-mute); font-size: 12px;
  border-top: 1px solid var(--border); padding-top: 24px;
}

/* ============ Motion respect ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
