/* =============================================================
   DARIBA — main.css
   Token system
   --------------------------------------------------------------
   Palette  : Obsidian Green base + single Saudi-emerald accent
   Type     : Space Grotesk (display) · Instrument Sans (body)
              IBM Plex Mono (data figures)
   Radius   : rule — buttons pill, cards 16px, inputs 12px
   Shadows  : tinted to background hue, never pure black
============================================================= */

/* ---------- Fonts (self-hosted) ---------- */
@font-face { font-family: 'Space Grotesk'; src: url('../fonts/space-grotesk-latin-500-normal.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Space Grotesk'; src: url('../fonts/space-grotesk-latin-700-normal.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Instrument Sans'; src: url('../fonts/instrument-sans-latin-400-normal.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Instrument Sans'; src: url('../fonts/instrument-sans-latin-500-normal.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Instrument Sans'; src: url('../fonts/instrument-sans-latin-600-normal.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'IBM Plex Mono'; src: url('../fonts/ibm-plex-mono-latin-400-normal.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'IBM Plex Mono'; src: url('../fonts/ibm-plex-mono-latin-500-normal.woff2') format('woff2'); font-weight: 500; font-display: swap; }

/* ---------- Tokens ---------- */
:root {
	--bg: #06100c;
	--bg-2: #0a1712;
	--ink: #eef4f0;
	--muted: #94a59c;
	--accent: #16c28a;
	--accent-deep: #0c7a58;
	--warn: #e8b34b;
	--line: rgba(238, 244, 240, 0.08);
	--glass: rgba(255, 255, 255, 0.035);
	--glass-strong: rgba(255, 255, 255, 0.06);
	--shadow: 0 24px 64px rgba(2, 10, 7, 0.55);
	--display: 'Space Grotesk', system-ui, sans-serif;
	--body: 'Instrument Sans', system-ui, sans-serif;
	--mono: 'IBM Plex Mono', ui-monospace, monospace;
	--r-card: 16px;
	--r-input: 12px;
	--container: 1200px;
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font: 400 1rem/1.65 var(--body);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { color: var(--ink); text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
	border-radius: 4px;
}
.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	clip-path: inset(50%);
	overflow: hidden; white-space: nowrap;
}
.skip-link:focus {
	position: fixed; inset: 12px auto auto 12px;
	width: auto; height: auto; clip-path: none;
	background: var(--accent); color: #04120c;
	padding: 10px 18px; border-radius: 999px; z-index: 999;
	font-weight: 600;
}
.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 4vw, 40px); }
.container.narrow { max-width: 760px; text-align: center; }
.mono { font-family: var(--mono); }

h1, h2, h3 { font-family: var(--display); font-weight: 700; letter-spacing: -0.025em; line-height: 1.05; margin: 0 0 0.5em; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
.section { padding-block: clamp(80px, 11vw, 150px); position: relative; }
.section-head { max-width: 640px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-sub { color: var(--muted); max-width: 60ch; }

.eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.14em;
	text-transform: uppercase; color: var(--accent); margin-bottom: 18px;
}
.pulse-dot {
	width: 7px; height: 7px; border-radius: 50%;
	background: var(--accent); flex: none;
	box-shadow: 0 0 0 0 rgba(22, 194, 138, 0.5);
	animation: pulse 2.2s infinite;
}
@keyframes pulse {
	70% { box-shadow: 0 0 0 9px rgba(22, 194, 138, 0); }
	100% { box-shadow: 0 0 0 0 rgba(22, 194, 138, 0); }
}

/* ---------- Buttons (pill rule) ---------- */
.btn {
	display: inline-flex; align-items: center; gap: 8px;
	font: 600 0.95rem/1 var(--body);
	padding: 14px 26px; border-radius: 999px;
	border: 1px solid var(--line);
	transition: transform 0.18s var(--ease-out), background 0.18s, border-color 0.18s;
	cursor: pointer; white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.98); }
.btn-solid { background: var(--accent); border-color: var(--accent); color: #04120c; }
.btn-solid:hover { background: #2bd49c; }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(238, 244, 240, 0.22); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-arrow { transition: transform 0.2s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ---------- Glass surface (frosted-glass approximation, solid fallback below) ---------- */
.glass, .float-card, .mobile-nav {
	background: linear-gradient(160deg, var(--glass-strong), var(--glass));
	border: 1px solid var(--line);
	border-radius: var(--r-card);
	backdrop-filter: blur(18px) saturate(140%);
	-webkit-backdrop-filter: blur(18px) saturate(140%);
	box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
@media (prefers-reduced-transparency: reduce) {
	.glass, .float-card, .mobile-nav, .site-header.scrolled .header-inner {
		background: var(--bg-2);
		backdrop-filter: none; -webkit-backdrop-filter: none;
	}
}

/* =============================================================
   HEADER
============================================================= */
.site-header {
	position: fixed; inset: 0 0 auto 0; z-index: 90;
	padding: 14px clamp(16px, 3vw, 32px);
}
.header-inner {
	max-width: var(--container); margin-inline: auto;
	display: flex; align-items: center; gap: 28px;
	padding: 10px 18px; border-radius: 999px;
	border: 1px solid transparent;
	transition: background 0.3s, border-color 0.3s;
}
.site-header.scrolled .header-inner {
	background: rgba(8, 18, 14, 0.72);
	border-color: var(--line);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.02em; }
.brand-mark { color: var(--accent); display: inline-flex; }
.site-nav { margin-inline: auto; }
.nav-list { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-list a {
	display: block; padding: 8px 14px; border-radius: 999px;
	font-size: 0.92rem; font-weight: 500; color: var(--muted);
	transition: color 0.2s, background 0.2s;
}
.nav-list a:hover { color: var(--ink); background: rgba(255, 255, 255, 0.05); }
.nav-toggle { display: none; }
.mobile-nav { display: none; }

/* =============================================================
   HERO
============================================================= */
.hero {
	min-height: 100dvh;
	display: flex; flex-direction: column; justify-content: center;
	padding-block: 140px 80px; position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.grid-field {
	position: absolute; inset: -1px;
	background-image:
		linear-gradient(var(--line) 1px, transparent 1px),
		linear-gradient(90deg, var(--line) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 90% 70% at 60% 40%, #000 30%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 90% 70% at 60% 40%, #000 30%, transparent 75%);
}
.hero-glow {
	position: absolute; width: 60vw; height: 60vw; max-width: 820px; max-height: 820px;
	right: -18vw; top: -12vw; border-radius: 50%;
	background: radial-gradient(circle, rgba(22, 194, 138, 0.13), transparent 62%);
	filter: blur(20px);
}
.hero-grid {
	display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(36px, 5vw, 72px); align-items: center; position: relative;
}
.hero-title {
	font-size: clamp(2.6rem, 6.2vw, 4.6rem);
	letter-spacing: -0.035em; margin-bottom: 22px;
}
.hero-title .line { display: block; }
.hero-title .accent { color: var(--accent); }
.hero-sub { color: var(--muted); font-size: 1.1rem; max-width: 50ch; margin-bottom: 30px; }

.hero-proof { display: flex; gap: clamp(24px, 4vw, 48px); margin: 34px 0 0; }
.hero-proof div { display: flex; flex-direction: column; }
.hero-proof dt { font: 500 1.6rem/1.1 var(--mono); color: var(--ink); order: 1; }
.hero-proof dd { margin: 4px 0 0; font-size: 0.82rem; color: var(--muted); order: 2; }

/* Lead form */
.lead-form { max-width: 520px; }
.final-cta .lead-form { margin-inline: auto; }
.lf-row { display: flex; gap: 10px; }
.lf-row input[type='email'] {
	flex: 1; min-width: 0;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--line); border-radius: var(--r-input);
	color: var(--ink); font: 500 0.98rem var(--body);
	padding: 14px 18px;
	transition: border-color 0.2s;
}
.lf-row input[type='email']::placeholder { color: var(--muted); }
.lf-row input[type='email']:focus { border-color: var(--accent); outline: none; }
.lf-note { font-size: 0.8rem; color: var(--muted); margin: 10px 2px 0; font-family: var(--mono); }
.lf-success { font-size: 0.88rem; color: var(--accent); margin: 10px 2px 0; }
.lf-hp { position: absolute !important; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* Corridor (signature) */
.corridor { margin: 0; position: relative; }
#corridor-svg { width: 100%; height: auto; display: block; }
.route { stroke: rgba(238, 244, 240, 0.14); stroke-width: 1.5; fill: none; }
.route-main { stroke: rgba(22, 194, 138, 0.35); stroke-width: 2; }
.node circle, .node rect { fill: rgba(10, 23, 18, 0.9); stroke: var(--line); stroke-width: 1.5; }
.node text {
	fill: var(--muted); font: 500 11px var(--mono);
	text-anchor: middle; letter-spacing: 0.08em;
}
.node-engine .engine-ring { fill: none; stroke: rgba(22, 194, 138, 0.45); stroke-dasharray: 5 7; }
.node-engine .engine-core { fill: rgba(22, 194, 138, 0.1); stroke: var(--accent); }
.node-engine text { fill: var(--accent); font-weight: 500; }
.node-zatca rect { stroke: rgba(238, 244, 240, 0.25); }
.node-zatca text { fill: var(--ink); font-size: 12px; }
.node-zatca .sub { fill: var(--muted); font-size: 9px; }
#packets circle { fill: var(--accent); }
#packets .pk-glow { fill: rgba(22, 194, 138, 0.35); }
#clear-pulse { fill: rgba(22, 194, 138, 0.0); }
.corridor-status { display: flex; justify-content: center; margin-top: 14px; }
.status-chip {
	display: inline-flex; align-items: center; gap: 9px;
	font: 500 0.8rem var(--mono); color: var(--ink);
	border: 1px solid var(--line); border-radius: 999px;
	padding: 8px 16px; background: rgba(8, 18, 14, 0.7);
}
.status-chip.small { padding: 5px 12px; font-size: 0.72rem; }

.scroll-cue {
	position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
	width: 24px; height: 38px; border: 1.5px solid rgba(238, 244, 240, 0.25);
	border-radius: 14px; display: flex; justify-content: center;
}
.scroll-cue span {
	width: 3px; height: 8px; border-radius: 2px; margin-top: 7px;
	background: var(--accent); animation: cue 1.8s var(--ease-out) infinite;
}
@keyframes cue { 50% { transform: translateY(10px); opacity: 0.2; } }

/* =============================================================
   REGIME TICKER
============================================================= */
.regimes { padding-block: 38px; border-block: 1px solid var(--line); }
.regimes-label {
	text-align: center; font: 500 0.78rem var(--mono);
	letter-spacing: 0.16em; text-transform: uppercase;
	color: var(--muted); margin: 0 0 22px;
}
.ticker { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.ticker-track { display: flex; gap: 14px; width: max-content; animation: ticker 36s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
	font: 500 0.88rem var(--mono); color: var(--ink);
	border: 1px solid var(--line); border-radius: 999px;
	padding: 9px 18px; white-space: nowrap; background: var(--glass);
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* =============================================================
   PLATFORM — floating cards
============================================================= */
.float-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.float-card { padding: 30px 28px 26px; position: relative; transition: transform 0.3s var(--ease-out), border-color 0.3s; }
.float-card:hover { transform: translateY(-6px); border-color: rgba(22, 194, 138, 0.35); }
.float-card.is-featured { border-color: rgba(22, 194, 138, 0.3); }
.card-icon {
	width: 48px; height: 48px; display: grid; place-items: center;
	border-radius: 12px; color: var(--accent); margin-bottom: 20px;
	background: rgba(22, 194, 138, 0.08); border: 1px solid rgba(22, 194, 138, 0.2);
}
.float-card p { color: var(--muted); font-size: 0.95rem; }
.card-stat { margin: 18px 0 0; padding-top: 16px; border-top: 1px solid var(--line); font-size: 0.82rem !important; }
.card-stat .num { font: 500 1.3rem var(--mono); color: var(--ink); }
.card-stat .unit { font: 500 1rem var(--mono); color: var(--accent); margin-right: 8px; }

/* =============================================================
   SPLIT SECTIONS / ANALYTICS DASH
============================================================= */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(36px, 6vw, 80px); align-items: center; }
.split.reverse { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); }
.split-copy p { color: var(--muted); }
.check-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 12px; }
.check-list li { padding-left: 30px; position: relative; color: var(--ink); font-size: 0.97rem; }
.check-list li::before {
	content: ''; position: absolute; left: 0; top: 3px;
	width: 18px; height: 18px; border-radius: 50%;
	background: rgba(22, 194, 138, 0.12);
	border: 1px solid var(--accent);
}
.check-list li::after {
	content: ''; position: absolute; left: 5px; top: 8px;
	width: 8px; height: 5px;
	border-left: 1.5px solid var(--accent); border-bottom: 1.5px solid var(--accent);
	transform: rotate(-45deg);
}

.dash { padding: 26px; }
.dash-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.dash-title { font: 500 0.82rem var(--mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 24px; }
.kpi { border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; background: rgba(255, 255, 255, 0.02); }
.kpi-label { display: block; font-size: 0.72rem; color: var(--muted); margin-bottom: 6px; }
.kpi-value { font: 500 1.15rem var(--mono); }
.kpi-accent { color: var(--warn); }
.dash-chart { display: flex; align-items: flex-end; gap: 8px; height: 130px; margin-bottom: 22px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.dash-chart .bar { flex: 1; height: 100%; display: flex; align-items: flex-end; }
.dash-chart .bar i {
	display: block; width: 100%; height: 0; border-radius: 4px 4px 0 0;
	background: linear-gradient(180deg, var(--accent), var(--accent-deep));
	opacity: 0.85;
}
.dash-feed { display: grid; gap: 8px; }
.feed-row {
	display: grid; grid-template-columns: 92px 1fr auto; gap: 14px; align-items: center;
	font-size: 0.85rem; padding: 10px 12px; border-radius: 10px;
	border: 1px solid var(--line); color: var(--muted); background: rgba(255, 255, 255, 0.02);
}
.feed-row .mono { color: var(--ink); font-size: 0.8rem; }
.tag { font: 500 0.7rem var(--mono); letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.tag.ok { color: var(--accent); background: rgba(22, 194, 138, 0.1); border: 1px solid rgba(22, 194, 138, 0.3); }
.tag.warn { color: var(--warn); background: rgba(232, 179, 75, 0.1); border: 1px solid rgba(232, 179, 75, 0.3); }

/* =============================================================
   PIPELINE
============================================================= */
.pipe-wrap { position: relative; }
.pipe-line { position: absolute; top: 13px; left: 0; width: 100%; height: 4px; }
#pipe-path { stroke: var(--accent); stroke-width: 2; fill: none; stroke-dasharray: 1000; stroke-dashoffset: 1000; opacity: 0.6; }
.pipe-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 56px); counter-reset: step; }
.pipe-step { position: relative; padding-top: 44px; }
.pipe-step::before {
	content: ''; position: absolute; top: 4px; left: 0;
	width: 20px; height: 20px; border-radius: 50%;
	background: var(--bg); border: 2px solid var(--accent);
	box-shadow: 0 0 0 6px rgba(22, 194, 138, 0.08);
}
.step-k { display: block; color: var(--accent); font-size: 0.8rem; letter-spacing: 0.2em; margin-bottom: 10px; }
.pipe-step p { color: var(--muted); font-size: 0.95rem; }

/* =============================================================
   AUDIT RING
============================================================= */
.ring-wrap { position: relative; padding: clamp(32px, 5vw, 56px); display: grid; place-items: center; }
.ring { width: min(300px, 70%); transform: rotate(-90deg); }
.ring-bg, .ring-fg { fill: none; stroke-width: 10; stroke-linecap: round; }
.ring-bg { stroke: rgba(238, 244, 240, 0.07); }
.ring-fg { stroke: var(--accent); stroke-dasharray: 527.8; stroke-dashoffset: 527.8; }
.ring-center { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; gap: 4px; }
.ring-num { font: 500 clamp(2.6rem, 5vw, 3.6rem)/1 var(--mono); }
.ring-num::after { content: '%'; font-size: 0.45em; color: var(--accent); }
.ring-label { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--mono); }

/* =============================================================
   AUTHORITY / POSTS
============================================================= */
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.post-card { padding: 26px; transition: transform 0.3s var(--ease-out), border-color 0.3s; }
.post-card:hover { transform: translateY(-5px); border-color: rgba(22, 194, 138, 0.3); }
.post-meta { font-size: 0.74rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.post-card h3 { font-size: 1.08rem; line-height: 1.3; }
.post-card h3 a:hover { color: var(--accent); }
.post-card p:last-child { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* =============================================================
   FINAL CTA + FOOTER
============================================================= */
.final-cta {
	background:
		radial-gradient(ellipse 60% 80% at 50% 110%, rgba(22, 194, 138, 0.14), transparent 70%),
		var(--bg);
	border-top: 1px solid var(--line);
}
.final-cta p { color: var(--muted); margin-bottom: 30px; }

.site-footer { border-top: 1px solid var(--line); padding-block: 48px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.footer-brand .brand-name { font-family: var(--display); font-weight: 700; margin: 0; }
.footer-tag { color: var(--muted); font-size: 0.85rem; margin: 4px 0 0; }
.footer-nav .nav-list { flex-wrap: wrap; }
.footer-legal { grid-column: 1 / -1; color: var(--muted); font-size: 0.78rem; margin: 12px 0 0; border-top: 1px solid var(--line); padding-top: 20px; }

/* =============================================================
   BLOG / INNER PAGES
============================================================= */
.page-shell { padding: 160px 0 100px; }
.entry-content { max-width: 720px; }
.entry-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.archive-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); margin-top: 40px; }

/* =============================================================
   REVEAL STATES (JS adds .in)
============================================================= */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
[data-reveal].in { opacity: 1; transform: none; }
.no-js [data-reveal] { opacity: 1; transform: none; }

/* =============================================================
   RESPONSIVE
============================================================= */
@media (max-width: 1024px) {
	.hero-grid, .split, .split.reverse { grid-template-columns: 1fr; }
	.corridor { max-width: 560px; margin-inline: auto; }
	.float-grid, .post-grid, .pipe-steps { grid-template-columns: 1fr 1fr; }
	.site-nav, .header-cta { display: none; }
	.nav-toggle {
		display: inline-flex; flex-direction: column; gap: 5px;
		margin-left: auto; background: none; border: 0; padding: 10px; cursor: pointer;
	}
	.nav-toggle span { width: 22px; height: 2px; background: var(--ink); transition: transform 0.25s, opacity 0.25s; }
	.nav-toggle[aria-expanded='true'] span:first-child { transform: translateY(7px) rotate(45deg); }
	.nav-toggle[aria-expanded='true'] span:last-child { transform: translateY(-0px) rotate(-45deg); }
	.mobile-nav { display: block; margin-top: 10px; padding: 18px; }
	.mobile-nav[hidden] { display: none; }
	.mobile-nav .nav-list { flex-direction: column; margin-bottom: 14px; }
}
@media (max-width: 640px) {
	.float-grid, .post-grid, .pipe-steps, .dash-kpis { grid-template-columns: 1fr; }
	.lf-row { flex-direction: column; }
	.lf-row .btn { justify-content: center; }
	.hero-proof { flex-wrap: wrap; gap: 20px 32px; }
	.pipe-line { display: none; }
	.feed-row span:nth-child(2) { display: none; }
	.feed-row { grid-template-columns: 1fr auto; }
}

/* =============================================================
   REDUCED MOTION — everything collapses to static
============================================================= */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
	[data-reveal] { opacity: 1; transform: none; }
	.ticker-track { animation: none; transform: none; }
	.ring-fg { stroke-dashoffset: 0; }
	#pipe-path { stroke-dashoffset: 0; }
	.dash-chart .bar i { height: calc(var(--h, 50) * 1%); }
}
