/* ==========================================================================
   MRRKit — mrrkit.app
   Liquid Glass design system shared by every page.
   Theme: :root = light, dark via prefers-color-scheme (auto) or [data-theme].
   ========================================================================== */

:root {
  --brand: #7c5cff;
  --pink: #ff5c8a;
  --blue: #3da9fc;
  --green: #1faa75;
  --amber: #ffb347;
  --danger: #e5484d;
  --grad: linear-gradient(120deg, #7c5cff 0%, #ff5c8a 55%, #ffb347 100%);
  --grad-cool: linear-gradient(120deg, #3da9fc 0%, #7c5cff 60%, #ff5c8a 100%);

  --bg: #f5f3fb;
  --bg-2: #ece8f8;
  --fg: #14121f;
  --muted: #5b5870;
  --faint: #8d8aa3;
  --hairline: rgba(20, 18, 31, 0.08);
  --glass: rgba(255, 255, 255, 0.52);
  --glass-strong: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(255, 255, 255, 0.85);
  --glass-edge: rgba(255, 255, 255, 0.9);
  --shadow: 0 1px 2px rgba(40, 20, 90, 0.06), 0 24px 60px -12px rgba(60, 30, 140, 0.18);
  --shadow-lg: 0 40px 120px -20px rgba(60, 30, 140, 0.35);
  --aurora-opacity: 0.55;
  --grid-line: rgba(20, 18, 31, 0.045);
  --phone-bezel: #0d0c12;
  --chip-bg: rgba(255, 255, 255, 0.6);
  --radius: 28px;
  --radius-sm: 18px;
  --nav-h: 60px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #07060d;
    --bg-2: #0e0c18;
    --fg: #f4f2ff;
    --muted: #a7a3c0;
    --faint: #767290;
    --hairline: rgba(255, 255, 255, 0.08);
    --glass: rgba(255, 255, 255, 0.055);
    --glass-strong: rgba(28, 25, 44, 0.78);
    --glass-border: rgba(255, 255, 255, 0.11);
    --glass-edge: rgba(255, 255, 255, 0.28);
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 24px 60px -12px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 40px 120px -20px rgba(0, 0, 0, 0.8);
    --aurora-opacity: 0.42;
    --grid-line: rgba(255, 255, 255, 0.035);
    --phone-bezel: #1a1822;
    --chip-bg: rgba(255, 255, 255, 0.06);
    color-scheme: dark;
  }
}

:root[data-theme="dark"] {
  --bg: #07060d;
  --bg-2: #0e0c18;
  --fg: #f4f2ff;
  --muted: #a7a3c0;
  --faint: #767290;
  --hairline: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.055);
  --glass-strong: rgba(28, 25, 44, 0.78);
  --glass-border: rgba(255, 255, 255, 0.11);
  --glass-edge: rgba(255, 255, 255, 0.28);
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 24px 60px -12px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 40px 120px -20px rgba(0, 0, 0, 0.8);
  --aurora-opacity: 0.42;
  --grid-line: rgba(255, 255, 255, 0.035);
  --phone-bezel: #1a1822;
  --chip-bg: rgba(255, 255, 255, 0.06);
  color-scheme: dark;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; overflow-x: hidden; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-x: clip;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
}
img, svg { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 10px; }
::selection { background: rgba(124, 92, 255, 0.3); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 16px; top: -60px; z-index: 100; padding: 10px 16px; border-radius: 12px; background: var(--fg); color: var(--bg); }
.skip:focus { top: 16px; }

.container { width: min(1180px, 100% - 32px); margin-inline: auto; }
.narrow { width: min(860px, 100% - 32px); margin-inline: auto; }

/* Legal pages ship one <article data-lang="xx"> per language */
html:not([lang="en"]) [data-lang="en"],
html:not([lang="fr"]) [data-lang="fr"],
html:not([lang="es"]) [data-lang="es"],
html:not([lang="de"]) [data-lang="de"] { display: none !important; }

/* ---------- Aurora / mesh background ---------- */
.bg { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; background: var(--bg); transition: background-color 0.4s var(--ease); }
.bg .blob {
  position: absolute;
  width: 62vmax; height: 62vmax;
  border-radius: 50%;
  filter: blur(90px);
  opacity: var(--aurora-opacity);
  mix-blend-mode: normal;
  will-change: transform;
}
.bg .b1 { background: radial-gradient(circle at 50% 50%, #7c5cff 0%, transparent 62%); top: -24vmax; left: -18vmax; animation: float1 26s var(--ease) infinite alternate; }
.bg .b2 { background: radial-gradient(circle at 50% 50%, #ff5c8a 0%, transparent 62%); top: -20vmax; right: -24vmax; animation: float2 30s var(--ease) infinite alternate; }
.bg .b3 { background: radial-gradient(circle at 50% 50%, #3da9fc 0%, transparent 62%); bottom: -30vmax; left: 12vmax; animation: float3 34s var(--ease) infinite alternate; }
.bg .b4 { background: radial-gradient(circle at 50% 50%, #ffb347 0%, transparent 60%); bottom: -34vmax; right: -10vmax; width: 44vmax; height: 44vmax; opacity: calc(var(--aurora-opacity) * 0.55); animation: float2 38s var(--ease) infinite alternate-reverse; }
.bg .grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
}
.bg .noise {
  position: absolute; inset: -50%;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
@keyframes float1 { to { transform: translate3d(14vmax, 10vmax, 0) scale(1.15); } }
@keyframes float2 { to { transform: translate3d(-12vmax, 14vmax, 0) scale(0.9); } }
@keyframes float3 { to { transform: translate3d(10vmax, -12vmax, 0) scale(1.2); } }

/* ---------- Liquid glass ---------- */
.glass {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 1px 0 var(--glass-edge);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
  backdrop-filter: blur(28px) saturate(170%);
}
/* specular rim, following the pointer on hover */
.glass.shine { overflow: hidden; isolation: isolate; }
.glass.shine::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, -20%), rgba(255, 255, 255, 0.22), transparent 45%);
  opacity: 0; transition: opacity 0.4s var(--ease);
  z-index: -1;
}
.glass.shine:hover::after { opacity: 1; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 12px; z-index: 50;
  margin: 12px auto 0;
  display: flex; align-items: center; gap: 8px;
  height: var(--nav-h);
  padding: 0 10px 0 16px;
  border-radius: 999px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; letter-spacing: -0.02em; color: var(--fg); margin-right: auto; white-space: nowrap; }
.brand:hover { text-decoration: none; }
.brand img { width: 32px; height: 32px; border-radius: 9px; box-shadow: 0 4px 12px rgba(124, 92, 255, 0.35); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { color: var(--muted); padding: 8px 12px; border-radius: 999px; font-size: 15px; font-weight: 500; transition: color 0.2s, background 0.2s; }
.nav-links a:hover { color: var(--fg); background: var(--hairline); text-decoration: none; }
.nav-tools { display: flex; align-items: center; gap: 6px; }
.pill-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: 38px; min-width: 38px; padding: 0 10px;
  border-radius: 999px;
  background: var(--chip-bg);
  border: 1px solid var(--glass-border);
  color: var(--fg); cursor: pointer; font-size: 14px; font-weight: 600;
  transition: transform 0.2s var(--ease), background 0.2s;
}
.pill-btn:hover { transform: translateY(-1px); }
.pill-btn svg { width: 18px; height: 18px; }
.lang-select {
  appearance: none; -webkit-appearance: none;
  height: 38px; padding: 0 28px 0 12px;
  border-radius: 999px;
  background: var(--chip-bg) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' fill='none' stroke='%238d8aa3' stroke-width='1.6' stroke-linecap='round'/></svg>") no-repeat right 11px center;
  border: 1px solid var(--glass-border);
  color: var(--fg); font: 600 14px/1 inherit; font-family: inherit; cursor: pointer;
}
.lang-select option { color: #14121f; background: #fff; }
.nav .cta-mini { background: var(--fg); color: var(--bg); border-color: transparent; padding: 0 14px; }
.menu-btn { display: none; }
.theme-btn .i-sun, .theme-btn .i-moon, .theme-btn .i-auto { display: none; }
.theme-btn[data-mode="light"] .i-sun, .theme-btn[data-mode="dark"] .i-moon, .theme-btn[data-mode="auto"] .i-auto { display: block; }

@media (max-width: 860px) {
  .nav-links {
    position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    padding: 8px; border-radius: 24px;
    background: var(--glass-strong);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    -webkit-backdrop-filter: blur(30px) saturate(180%); backdrop-filter: blur(30px) saturate(180%);
    opacity: 0; transform: translateY(-8px) scale(0.98); pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  }
  .nav.open .nav-links { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: 12px 14px; font-size: 16px; }
  .menu-btn { display: inline-flex; }
  .nav .cta-mini { display: none; }
}
@media (max-width: 380px) {
  .brand span { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 24px;
  border-radius: 999px; border: 1px solid transparent;
  font-weight: 650; font-size: 16px; letter-spacing: -0.01em;
  cursor: pointer; text-decoration: none !important;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-primary { background: var(--fg); color: var(--bg); box-shadow: 0 12px 30px -8px rgba(124, 92, 255, 0.55); }
.btn-primary svg { width: 20px; height: 20px; }
.btn-grad { background: var(--grad); color: #fff; box-shadow: 0 14px 34px -10px rgba(255, 92, 138, 0.65); }
.btn-glass { background: var(--glass); border-color: var(--glass-border); color: var(--fg); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); }
.btn-danger { background: var(--danger); color: #fff; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; }
.btn-block { width: 100%; }

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 6px; border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--muted);
}
.eyebrow b { padding: 3px 10px; border-radius: 999px; background: var(--grad); color: #fff; font-size: 12px; letter-spacing: 0.02em; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad-cool { background: var(--grad-cool); -webkit-background-clip: text; background-clip: text; color: transparent; }
.kicker { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand); margin-bottom: 14px; }
h1, h2, h3 { letter-spacing: -0.035em; line-height: 1.05; margin: 0; }
.section-title { font-size: clamp(34px, 5.6vw, 64px); font-weight: 800; }
.section-lead { font-size: clamp(17px, 2vw, 21px); color: var(--muted); max-width: 640px; margin: 18px 0 0; line-height: 1.5; }
.center { text-align: center; }
.center .section-lead { margin-inline: auto; }

section.block { padding: clamp(80px, 12vw, 150px) 0 0; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(48px, 9vw, 110px); text-align: center; position: relative; }
.hero h1 { font-size: clamp(46px, 9.4vw, 112px); font-weight: 850; letter-spacing: -0.05em; line-height: 0.98; margin: 24px auto 0; max-width: 12ch; }
.hero .lead { font-size: clamp(18px, 2.2vw, 22px); color: var(--muted); max-width: 660px; margin: 24px auto 0; line-height: 1.5; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 34px; }
.trust { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center; margin-top: 22px; color: var(--faint); font-size: 14px; }
.trust span { display: inline-flex; align-items: center; gap: 6px; }
.trust svg { width: 16px; height: 16px; color: var(--green); }

.stage {
  position: relative;
  margin: clamp(48px, 7vw, 80px) auto 0;
  height: clamp(520px, 64vw, 780px);
  max-width: 1100px;
  perspective: 1600px;
}
.stage .glow {
  position: absolute; left: 50%; top: 40%; width: 70%; height: 60%;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(124, 92, 255, 0.55), transparent);
  filter: blur(40px);
}

/* iPhone frame */
.phone {
  --w: 300px;
  position: absolute;
  width: var(--w);
  aspect-ratio: 736 / 1600;
  padding: calc(var(--w) * 0.035);
  border-radius: calc(var(--w) * 0.17);
  background: var(--phone-bezel);
  box-shadow:
    0 0 0 1.5px rgba(255, 255, 255, 0.14) inset,
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 2px 0 2px #2a2833,
    var(--shadow-lg);
}
.phone::before { /* side buttons */
  content: ""; position: absolute; right: -3px; top: 26%; width: 3px; height: 12%;
  border-radius: 0 3px 3px 0; background: #2a2833;
}
.phone img { width: 100%; height: 100%; object-fit: cover; border-radius: calc(var(--w) * 0.135); background: #111; }
.phone.static { position: relative; }

.stage .phone { left: 50%; top: 0; }
.stage .p-center { --w: clamp(230px, 27vw, 320px); transform: translateX(-50%) translateY(var(--py, 0px)); z-index: 3; }
.stage .p-left { --w: clamp(190px, 22vw, 270px); transform: translateX(calc(-50% - clamp(150px, 22vw, 290px))) translateY(calc(70px + var(--py2, 0px))) rotateY(18deg) rotateZ(-4deg); z-index: 2; opacity: 0.96; }
.stage .p-right { --w: clamp(190px, 22vw, 270px); transform: translateX(calc(-50% + clamp(150px, 22vw, 290px))) translateY(calc(70px + var(--py2, 0px))) rotateY(-18deg) rotateZ(4deg); z-index: 2; opacity: 0.96; }

/* floating glass cards around the phones */
.float {
  position: absolute; z-index: 5;
  padding: 14px 16px;
  border-radius: 22px;
  text-align: left;
  animation: bob 6s ease-in-out infinite;
  background: var(--glass-strong);
}
.float.f-notif { left: 2%; top: 14%; width: 290px; animation-delay: -1s; }
.float.f-mrr { right: 1%; top: 44%; width: 260px; animation-delay: -3s; }
.float.f-mile { left: 8%; bottom: 10%; animation-delay: -4.5s; display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px; }
.float.f-mile .dot { width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; background: var(--grad); font-size: 18px; }
@keyframes bob { 50% { transform: translateY(-12px); } }

.notif { display: grid; grid-template-columns: 38px 1fr auto; gap: 4px 10px; align-items: start; font-size: 14px; line-height: 1.35; }
.notif img { width: 38px; height: 38px; border-radius: 10px; grid-row: span 2; }
.notif .app { font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); }
.notif .when { font-size: 12px; color: var(--faint); }
.notif .msg { grid-column: 2 / 4; color: var(--fg); }
.notif .msg b { font-weight: 700; }

.mini-mrr .label { font-size: 13px; color: var(--muted); font-weight: 600; }
.mini-mrr .value { font-size: 34px; font-weight: 800; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; line-height: 1.1; }
.badge-up { display: inline-flex; align-items: center; gap: 4px; padding: 2px 9px; border-radius: 999px; background: rgba(31, 170, 117, 0.16); color: var(--green); font-size: 13px; font-weight: 700; }
.mini-mrr svg { margin-top: 8px; width: 100%; height: 56px; overflow: visible; }

@media (max-width: 860px) {
  .stage { height: clamp(500px, 128vw, 700px); }
  .stage .p-center { --w: min(64vw, 290px); }
  .stage .p-left, .stage .p-right { --w: min(48vw, 220px); }
  .stage .p-left { transform: translateX(calc(-50% - 34vw)) translateY(60px) rotateY(18deg) rotateZ(-4deg); }
  .stage .p-right { transform: translateX(calc(-50% + 34vw)) translateY(60px) rotateY(-18deg) rotateZ(4deg); }
  .float.f-notif { left: 0; top: auto; bottom: 16%; width: min(300px, 86%); }
  .float.f-mrr { right: 0; top: 6%; width: 200px; padding: 12px 14px; }
  .float.f-mrr .value { font-size: 26px; }
  .float.f-mrr svg { height: 40px; }
  .float.f-mile { display: none; }
}

/* ---------- Provider marquee ---------- */
.marquee { margin-top: clamp(40px, 6vw, 70px); overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 12px; width: max-content; animation: marquee 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(calc(-50% - 6px)); } }
.provider {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px 12px 12px; border-radius: 999px; white-space: nowrap;
  font-weight: 650; font-size: 16px;
}
.provider i { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; font-style: normal; font-weight: 800; color: #fff; font-size: 14px; }
.providers-caption { text-align: center; color: var(--faint); font-size: 14px; margin-top: 18px; }

/* ---------- Dashboard showcase ---------- */
.dash {
  margin-top: 48px;
  padding: clamp(20px, 3.4vw, 40px);
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 24px;
}
.dash-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.dash-head .proj { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.dash-head .proj span { width: 28px; height: 28px; border-radius: 9px; background: var(--grad); display: grid; place-items: center; color: #fff; font-size: 14px; }
.seg { display: inline-flex; padding: 4px; gap: 2px; border-radius: 999px; background: var(--hairline); }
.seg button { border: 0; background: transparent; padding: 7px 14px; border-radius: 999px; font-size: 14px; font-weight: 650; color: var(--muted); cursor: pointer; transition: all 0.25s var(--ease); }
.seg button[aria-pressed="true"] { background: var(--brand); color: #fff; box-shadow: 0 6px 16px -4px rgba(124, 92, 255, 0.6); }
.big-number { font-size: clamp(52px, 8vw, 96px); font-weight: 850; letter-spacing: -0.05em; line-height: 1; margin-top: 18px; font-variant-numeric: tabular-nums; }
.dash-sub { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 12px; color: var(--muted); font-size: 15px; }
.chart { position: relative; margin-top: 22px; }
.chart svg { width: 100%; height: auto; overflow: visible; }
.chart .line { fill: none; stroke: url(#lineGrad); stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; }
.chart .area { fill: url(#areaGrad); transition: opacity 0.6s; }
.chart .gridl { stroke: var(--hairline); stroke-width: 1; }
.chart .tip { fill: var(--brand); stroke: #fff; stroke-width: 3; }
.chart .x-labels { display: flex; justify-content: space-between; color: var(--faint); font-size: 12px; margin-top: 6px; }
.draw .line { stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 2.2s var(--ease) forwards; }
.spark { fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 2.2s var(--ease) 0.3s; }
.in .spark, .spark.in, .no-js .spark { stroke-dashoffset: 0; }
.draw .area { opacity: 0; animation: fadein 1.2s 0.9s var(--ease) forwards; }
.draw .tip { opacity: 0; animation: fadein 0.4s 2s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fadein { to { opacity: 1; } }

.kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-content: start; }
.kpi { padding: 16px; border-radius: 20px; background: var(--chip-bg); border: 1px solid var(--glass-border); }
.kpi .k { font-size: 13px; color: var(--muted); font-weight: 600; display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.kpi .v { font-size: clamp(22px, 2.6vw, 30px); font-weight: 800; letter-spacing: -0.03em; margin-top: 6px; font-variant-numeric: tabular-nums; }
.kpi.wide { grid-column: span 2; }
.bars { display: flex; align-items: end; gap: 5px; height: 64px; margin-top: 10px; }
.bars span { flex: 1; border-radius: 5px 5px 2px 2px; background: var(--grad-cool); transform-origin: bottom; transform: scaleY(0.05); transition: transform 1.2s var(--ease); }
.in .bars span { transform: scaleY(1); }
.breakdown { display: grid; gap: 10px; margin-top: 10px; }
.breakdown div { display: grid; grid-template-columns: 1fr auto; gap: 4px 8px; font-size: 14px; }
.breakdown i { grid-column: span 2; height: 7px; border-radius: 99px; background: var(--hairline); overflow: hidden; }
.breakdown i::after { content: ""; display: block; height: 100%; width: var(--p); background: var(--c); border-radius: inherit; transform-origin: left; transform: scaleX(0); transition: transform 1.4s 0.3s var(--ease); }
.in .breakdown i::after { transform: scaleX(1); }
@media (max-width: 900px) { .dash { grid-template-columns: 1fr; } }

/* ---------- Bento features ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 48px; }
.card { padding: clamp(22px, 3vw, 32px); overflow: hidden; }
.card h3 { font-size: clamp(22px, 2.4vw, 28px); font-weight: 750; }
.card p { color: var(--muted); margin: 10px 0 0; font-size: 16px; line-height: 1.5; }
.card .ico { width: 48px; height: 48px; border-radius: 15px; display: grid; place-items: center; font-size: 24px; margin-bottom: 18px; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4); }
.span-2 { grid-column: span 2; } .span-3 { grid-column: span 3; } .span-4 { grid-column: span 4; } .span-6 { grid-column: span 6; }
@media (max-width: 900px) { .bento { grid-template-columns: 1fr 1fr; } .span-2, .span-3 { grid-column: span 1; } .span-4, .span-6 { grid-column: span 2; } }
@media (max-width: 600px) { .bento { grid-template-columns: 1fr; } .span-2, .span-3, .span-4, .span-6 { grid-column: span 1; } }

.ai-demo { margin-top: 20px; display: grid; gap: 10px; }
.ai-input { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 14px; background: var(--chip-bg); border: 1px solid var(--glass-border); font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 14px; }
.ai-input .caret { width: 2px; height: 18px; background: var(--brand); animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.ai-out { opacity: 0; transform: translateY(10px) scale(0.97); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 16px; background: var(--chip-bg); border: 1px solid var(--glass-border); }
.ai-demo.done .ai-out, .no-js .ai-out { opacity: 1; transform: none; }
.ai-out .logo { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, #ff7eb3, #ff5c8a); display: grid; place-items: center; font-size: 22px; flex: none; }
.ai-out .swatches { display: flex; gap: 4px; margin-top: 4px; }
.ai-out .swatches i { width: 16px; height: 16px; border-radius: 5px; }
.ai-out small { color: var(--muted); display: block; font-size: 13px; }

.share-card { margin-top: 20px; padding: 18px; border-radius: 22px; color: #fff; background: linear-gradient(135deg, #7c5cff, #ff5c8a); box-shadow: 0 20px 40px -12px rgba(124, 92, 255, 0.6); transform: rotate(-2deg); max-width: 320px; }
.share-card .v { font-size: 38px; font-weight: 850; letter-spacing: -0.04em; }
.share-card small { opacity: 0.85; }

.currency-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.currency-row span { padding: 6px 12px; border-radius: 999px; background: var(--chip-bg); border: 1px solid var(--glass-border); font-weight: 700; font-size: 14px; font-variant-numeric: tabular-nums; }

/* ---------- Screens gallery ---------- */
.gallery {
  display: flex; gap: clamp(16px, 3vw, 32px);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 40px 16px 30px; margin: 20px -16px 0;
  scrollbar-width: none;
}
.gallery::-webkit-scrollbar { display: none; }
.shot { flex: none; scroll-snap-align: center; text-align: center; }
.shot .phone { --w: clamp(220px, 24vw, 270px); }
.shot figcaption { margin-top: 18px; font-weight: 650; }
.shot figcaption small { display: block; color: var(--muted); font-weight: 500; font-size: 14px; }
.gallery-nav { display: flex; justify-content: center; gap: 10px; }

/* ---------- Split sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; margin-top: 20px; }
.split.rev > :first-child { order: 2; }
@media (max-width: 900px) { .split, .split.rev { grid-template-columns: 1fr; } .split.rev > :first-child { order: 0; } }
.checks { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 17px; }
.checks li::before { content: ""; flex: none; width: 24px; height: 24px; margin-top: 1px; border-radius: 8px; background: var(--grad) center / 14px no-repeat; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3 7.4l2.6 2.6L11 4.4' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>"), var(--grad); }

.notif-stage { position: relative; display: flex; justify-content: center; align-items: center; min-height: 560px; }
.notif-stage .phone { --w: min(270px, 62vw); position: relative; }
.notif-stack { position: absolute; inset: auto 0 12% 0; display: grid; gap: 10px; justify-items: center; z-index: 3; }
.notif-stack .glass { width: min(360px, 100%); padding: 12px 14px; border-radius: 22px; background: var(--glass-strong); }
.notif-stack .glass { opacity: 0; transform: translateY(24px) scale(0.96); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.in .notif-stack .glass { opacity: 1; transform: none; }
.in .notif-stack .glass:nth-child(2) { transition-delay: 0.35s; }
.in .notif-stack .glass:nth-child(3) { transition-delay: 0.7s; }

.milestones { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.milestones span { padding: 8px 14px; border-radius: 999px; font-weight: 700; font-size: 14px; border: 1px solid var(--glass-border); background: var(--chip-bg); }
.milestones span.on { background: var(--pink); color: #fff; border-color: transparent; box-shadow: 0 8px 20px -6px rgba(255, 92, 138, 0.7); }

/* ---------- Widgets & Watch ---------- */
.widgets { display: grid; grid-template-columns: 1fr 2fr 1fr; grid-template-areas: "s m w" "l m w"; gap: 16px; margin-top: 48px; align-items: stretch; }
.w-small { grid-area: s; } .w-medium { grid-area: m; } .w-watch { grid-area: w; } .w-lock { grid-area: l; }
.w-small, .w-medium, .w-watch, .w-lock { padding: 18px; border-radius: 30px; }
.w-small { aspect-ratio: 1; display: flex; flex-direction: column; }
.w-medium { display: flex; flex-direction: column; gap: 16px; }
.w-medium svg { flex: 1; height: auto !important; min-height: 110px; }
.w-label { font-size: 13px; font-weight: 700; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.w-label i { width: 18px; height: 18px; border-radius: 6px; background: var(--grad); font-style: normal; font-size: 11px; display: grid; place-items: center; color: #fff; }
.w-value { font-size: clamp(26px, 3vw, 34px); font-weight: 850; letter-spacing: -0.04em; margin-top: auto; font-variant-numeric: tabular-nums; }
.w-small svg, .w-medium svg { width: 100%; height: 50px; overflow: visible; }
.w-lock { display: flex; align-items: center; justify-content: space-around; gap: 12px; background: linear-gradient(160deg, #2b2150, #0e0b1c); color: #fff; border: 1px solid rgba(255,255,255,0.12); }
.ring { --p: 0.72; width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(#fff calc(var(--p) * 360deg), rgba(255,255,255,0.2) 0); position: relative; font-weight: 800; font-size: 14px; }
.ring::before { content: ""; position: absolute; inset: 6px; border-radius: 50%; background: #1a1433; }
.ring span { position: relative; text-align: center; line-height: 1.1; }
.ring small { display: block; font-size: 9px; font-weight: 700; opacity: 0.7; letter-spacing: 0.06em; }
.lock-rect { font-size: 13px; line-height: 1.3; }
.lock-rect b { display: block; font-size: 22px; letter-spacing: -0.02em; }
.w-watch { display: grid; place-items: center; background: transparent; border: 0; box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; padding: 0; }
.watch {
  width: 190px; aspect-ratio: 0.83; border-radius: 52px; padding: 12px;
  background: linear-gradient(145deg, #3a3845, #0f0e14);
  box-shadow: 0 0 0 2px #56535f inset, var(--shadow-lg);
  position: relative;
}
.watch::after { content: ""; position: absolute; right: -8px; top: 26%; width: 8px; height: 38px; border-radius: 0 6px 6px 0; background: linear-gradient(90deg, #56535f, #2b2933); }
.watch-screen { height: 100%; border-radius: 42px; background: #000; color: #fff; padding: 16px 14px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
.watch-screen .time { text-align: right; font-weight: 700; font-size: 15px; }
.watch-screen .label { font-size: 12px; color: #b69cff; font-weight: 700; }
.watch-screen .v { font-size: 30px; font-weight: 850; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.watch-screen svg { width: 100%; height: 36px; overflow: visible; }
@media (max-width: 900px) { .widgets { grid-template-columns: 1fr 1fr; grid-template-areas: "s w" "l w" "m m"; } }
@media (max-width: 520px) { .widgets { gap: 12px; grid-template-areas: "s s" "l w" "m m"; } .w-small { aspect-ratio: auto; min-height: 170px; } .w-lock { flex-direction: column; } .watch { width: 160px; border-radius: 44px; } .watch-screen { border-radius: 34px; } }

/* ---------- Privacy band ---------- */
.privacy-band { padding: clamp(28px, 5vw, 60px); display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 4vw, 48px); align-items: center; overflow: hidden; }
.lock-orb { width: clamp(110px, 16vw, 170px); aspect-ratio: 1; border-radius: 36%; display: grid; place-items: center; font-size: clamp(48px, 7vw, 76px); background: var(--grad-cool); box-shadow: 0 30px 70px -20px rgba(61, 169, 252, 0.7), inset 0 2px 0 rgba(255,255,255,0.4); }
.privacy-band .points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.privacy-band .points div { font-size: 15px; color: var(--muted); }
.privacy-band .points b { display: block; color: var(--fg); font-size: 16px; margin-bottom: 4px; }
@media (max-width: 760px) { .privacy-band { grid-template-columns: 1fr; } .privacy-band .points { grid-template-columns: 1fr; } }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 48px auto 0; max-width: 900px; }
.plan { padding: clamp(26px, 4vw, 40px); display: flex; flex-direction: column; }
.plan h3 { font-size: 22px; }
.plan .price { font-size: clamp(48px, 6vw, 64px); font-weight: 850; letter-spacing: -0.05em; margin-top: 14px; line-height: 1; }
.plan .price small { font-size: 16px; color: var(--muted); letter-spacing: 0; font-weight: 600; margin-left: 6px; }
.plan .desc { color: var(--muted); margin: 10px 0 0; }
.plan ul { list-style: none; padding: 0; margin: 24px 0 28px; display: grid; gap: 12px; flex: 1; align-content: start; }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 16px; }
.plan li::before { content: "✓"; font-weight: 800; color: var(--green); }
.plan.pro { border: 1.5px solid transparent; background: linear-gradient(var(--glass-strong), var(--glass-strong)) padding-box, var(--grad) border-box; box-shadow: 0 40px 90px -30px rgba(124, 92, 255, 0.6); }
.plan .tag { align-self: flex-start; padding: 4px 12px; border-radius: 999px; background: var(--grad); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
@media (max-width: 760px) { .pricing { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 40px auto 0; display: grid; gap: 12px; }
.faq details { padding: 0; border-radius: 22px; }
.faq summary { list-style: none; cursor: pointer; padding: 20px 56px 20px 24px; font-weight: 650; font-size: 17px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 22px; top: 50%; width: 22px; height: 22px; margin-top: -11px; border-radius: 50%; background: var(--hairline) center / 10px no-repeat url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'><path d='M5 1v8M1 5h8' stroke='%237c5cff' stroke-width='1.8' stroke-linecap='round'/></svg>"); transition: transform 0.3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 24px 22px; color: var(--muted); }
.faq details > div p { margin: 0; }

/* ---------- Final CTA ---------- */
.final { margin-top: clamp(80px, 12vw, 150px); padding: clamp(40px, 7vw, 90px) 24px; text-align: center; overflow: hidden; }
.final img.icon { width: 96px; height: 96px; border-radius: 24px; margin: 0 auto 24px; box-shadow: 0 20px 50px -10px rgba(124, 92, 255, 0.7); }
.final h2 { font-size: clamp(36px, 6vw, 70px); font-weight: 850; }
.final p { color: var(--muted); font-size: 19px; margin: 16px auto 0; max-width: 560px; }

/* ---------- Footer ---------- */
footer.site { margin-top: 80px; padding: 40px 0 56px; border-top: 1px solid var(--hairline); color: var(--muted); font-size: 15px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 32px; }
.foot-grid h4 { margin: 0 0 12px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg); }
.foot-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.foot-grid a { color: var(--muted); }
.foot-grid a:hover { color: var(--fg); }
.foot-grid p { margin: 12px 0 0; max-width: 320px; }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--hairline); font-size: 14px; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-grid > :first-child { grid-column: span 2; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- Content pages (legal / support / forms) ---------- */
.page-hero { padding: clamp(48px, 8vw, 90px) 0 0; text-align: center; }
.page-hero h1 { font-size: clamp(40px, 7vw, 76px); font-weight: 850; letter-spacing: -0.045em; }
.page-hero p { color: var(--muted); font-size: clamp(17px, 2vw, 20px); max-width: 620px; margin: 18px auto 0; }
.doc { margin-top: 40px; padding: clamp(24px, 5vw, 56px); }
.doc h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 800; }
.doc h2 { font-size: clamp(21px, 2.6vw, 26px); font-weight: 750; margin: 40px 0 12px; letter-spacing: -0.02em; }
.doc p, .doc li { color: var(--muted); }
.doc strong { color: var(--fg); }
.doc .meta { color: var(--faint); font-size: 14px; margin-top: 8px; }
.doc .tldr { margin: 24px 0 0; padding: 18px 20px; border-radius: 18px; background: var(--chip-bg); border: 1px solid var(--glass-border); }
.doc .tldr p { margin: 0; color: var(--fg); }
.table-wrap { overflow-x: auto; margin: 16px 0; border-radius: 18px; border: 1px solid var(--hairline); }
.doc table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 560px; }
.doc th, .doc td { text-align: left; vertical-align: top; padding: 12px 14px; border-bottom: 1px solid var(--hairline); }
.doc tr:last-child td { border-bottom: 0; }
.doc th { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--faint); background: var(--hairline); }
.doc td { color: var(--muted); }
.toc { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.toc a { padding: 6px 12px; border-radius: 999px; background: var(--chip-bg); border: 1px solid var(--glass-border); font-size: 14px; color: var(--fg); }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.contact-grid .card { text-align: left; }
.contact-grid a.card { color: inherit; text-decoration: none; transition: transform 0.3s var(--ease); }
.contact-grid a.card:hover { transform: translateY(-4px); }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }
.guide-list { display: grid; gap: 10px; padding: 0; list-style: none; margin: 18px 0 0; }
.guide-list li { padding: 14px 16px; border-radius: 16px; background: var(--chip-bg); border: 1px solid var(--glass-border); }
.guide-list li strong { display: block; }

/* forms */
.form-card { max-width: 480px; margin: 40px auto 0; padding: clamp(24px, 5vw, 40px); }
.field { display: grid; gap: 6px; margin-top: 16px; }
.field label { font-size: 14px; font-weight: 650; color: var(--muted); }
.input {
  width: 100%; height: 50px; padding: 0 16px; border-radius: 14px;
  border: 1px solid var(--glass-border); background: var(--chip-bg); color: var(--fg);
  font: inherit; font-size: 16px; transition: border-color 0.2s, box-shadow 0.2s;
}
.input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.2); }
.or { display: flex; align-items: center; gap: 12px; color: var(--faint); font-size: 13px; margin: 20px 0; }
.or::before, .or::after { content: ""; flex: 1; height: 1px; background: var(--hairline); }
.btn-google { background: #fff; color: #1f1f1f; border-color: rgba(0, 0, 0, 0.12); }
.btn-google svg { width: 20px; height: 20px; }
.notice { margin-top: 16px; padding: 14px 16px; border-radius: 16px; font-size: 15px; line-height: 1.5; border: 1px solid; }
.notice.info { background: rgba(61, 169, 252, 0.1); border-color: rgba(61, 169, 252, 0.35); }
.notice.warn { background: rgba(255, 179, 71, 0.12); border-color: rgba(255, 179, 71, 0.45); }
.notice.error { background: rgba(229, 72, 77, 0.1); border-color: rgba(229, 72, 77, 0.4); color: var(--danger); }
.notice.ok { background: rgba(31, 170, 117, 0.12); border-color: rgba(31, 170, 117, 0.4); }
.notice code { font-size: 13px; }
.page-hero + .notice, .page-hero + .notice + .notice { margin-top: 32px; }
.hidden { display: none !important; }
.steps { counter-reset: s; list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 10px; }
.steps li { counter-increment: s; display: flex; gap: 12px; color: var(--muted); font-size: 15px; }
.steps li::before { content: counter(s); flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--hairline); color: var(--fg); font-weight: 700; font-size: 13px; display: grid; place-items: center; }
.spinner { width: 18px; height: 18px; border-radius: 50%; border: 2.5px solid currentColor; border-right-color: transparent; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }


/* ---------- Admin dashboard ---------- */
.admin-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: 28px 0 16px; }
.admin-who { font-weight: 700; padding: 8px 14px; border-radius: 999px; background: var(--chip-bg); border: 1px solid var(--glass-border); font-size: 14px; overflow-wrap: anywhere; }
.admin-updated { color: var(--faint); font-size: 13px; }
.stat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 16px; }
.stat { padding: 18px; border-radius: 22px; min-width: 0; }
.stat .k { font-size: 13px; font-weight: 650; color: var(--muted); }
.stat .v { font-size: clamp(28px, 3vw, 38px); font-weight: 850; letter-spacing: -0.04em; margin-top: 6px; font-variant-numeric: tabular-nums; line-height: 1.1; }
.stat .s { font-size: 12.5px; color: var(--faint); margin-top: 4px; }
.chart-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.chart-card { padding: 20px; border-radius: 24px; min-width: 0; }
.chart-card h3 { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 12px; }
.chart-card.span-full { grid-column: 1 / -1; }
.canvas-box { position: relative; height: 240px; }
.canvas-box.tall { height: 300px; }
.admin-table table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 620px; }
.admin-table th, .admin-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--hairline); vertical-align: top; }
.admin-table th { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--faint); background: var(--hairline); }
.admin-table tr:last-child td { border-bottom: 0; }
.prov-chip { display: inline-block; margin: 0 4px 4px 0; padding: 2px 9px; border-radius: 999px; font-size: 12px; font-weight: 650; background: rgba(124, 92, 255, 0.14); color: var(--fg); }
@media (max-width: 1100px) { .stat-grid { grid-template-columns: repeat(3, 1fr); } .chart-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .stat-grid { grid-template-columns: 1fr 1fr; } .chart-grid { grid-template-columns: 1fr; } }

/* ---------- Reduced motion ---------- */
@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; transition-delay: 0s !important; }
  .bg .blob, .float, .marquee-track { animation: none !important; }
  .marquee-track { flex-wrap: wrap; justify-content: center; width: auto; }
  .marquee-track [aria-hidden="true"] { display: none; }
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .reveal { opacity: 1; transform: none; }
  .draw .line { stroke-dashoffset: 0; }
  .draw .area, .draw .tip { opacity: 1; }
}
