/* ============================================================
   PINEEON SMART WEARABLE — Global Stylesheet
   Dark cinematic premium · biometric accent · titanium gold
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg: #0b1120;
  --bg-2: #0f172a;
  --surface: #131c30;
  --surface-2: #18233c;
  --surface-3: #1f2c49;

  --fg: #eef2fb;
  --muted: #9fb0cc;
  --faint: #6b7d99;

  --border: rgba(148, 163, 184, 0.14);
  --border-strong: rgba(148, 163, 184, 0.26);

  --cyan: #22d3ee;
  --emerald: #22c55e;
  --emerald-bright: #34d399;
  --gold: #c9a96a;
  --gold-soft: #e6cd9c;
  --danger: #f87171;

  --grad-accent: linear-gradient(100deg, #22d3ee, #22c55e);
  --grad-gold: linear-gradient(100deg, #e6cd9c, #c9a96a);

  --radius: 16px;
  --radius-lg: 22px;
  --shadow-card: 0 24px 50px -28px rgba(0, 0, 0, 0.9);
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
::selection { background: rgba(34, 197, 94, 0.3); color: #fff; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }

/* ---------- Ambient background ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(55% 45% at 82% -6%, rgba(34, 211, 238, 0.12), transparent 70%),
    radial-gradient(48% 42% at 8% 6%, rgba(34, 197, 94, 0.10), transparent 70%),
    radial-gradient(80% 60% at 50% 120%, rgba(201, 169, 106, 0.07), transparent 70%);
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 768px) { .container { padding-inline: 2rem; } }
.section { padding-block: 4.5rem; }
@media (min-width: 768px) { .section { padding-block: 6.5rem; } }
.section-sm { padding-block: 3rem; }

.grid { display: grid; gap: 1.25rem; }
.cols-2 { grid-template-columns: repeat(1, 1fr); }
.cols-3 { grid-template-columns: repeat(1, 1fr); }
.cols-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .cols-2 { grid-template-columns: repeat(2, 1fr); } .cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) {
  .cols-3 { grid-template-columns: repeat(3, 1fr); }
  .cols-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--emerald-bright);
  display: inline-block;
}
.display { font-size: clamp(2.1rem, 5.5vw, 4rem); }
.h1 { font-size: clamp(2rem, 4.6vw, 3.2rem); }
.h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--muted); }
.muted { color: var(--muted); }
.mono { font-family: var(--font-mono); }
.tnum { font-variant-numeric: tabular-nums; }
.center { text-align: center; }
.maxw-prose { max-width: 70ch; }
.mx-auto { margin-inline: auto; }

.text-gradient {
  background: linear-gradient(100deg, #ffffff 10%, #c2cee2 55%, var(--cyan) 130%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.text-accent {
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.text-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 600; font-size: 0.95rem; line-height: 1;
  padding: 0.85rem 1.4rem; border-radius: 12px; border: 1px solid transparent;
  min-height: 46px;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.2s;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--grad-accent); color: #04140e; box-shadow: 0 10px 30px -10px rgba(34, 197, 94, 0.5); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 42px -10px rgba(34, 197, 94, 0.7); }
.btn-ghost { background: rgba(255, 255, 255, 0.03); color: var(--fg); border-color: var(--border-strong); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.07); border-color: rgba(148, 163, 184, 0.42); transform: translateY(-2px); }
.btn-gold { background: var(--grad-gold); color: #1b1407; box-shadow: 0 10px 30px -10px rgba(201, 169, 106, 0.5); }
.btn-gold:hover { transform: translateY(-2px); }
.btn-sm { padding: 0.6rem 1rem; min-height: 40px; font-size: 0.88rem; }

/* ---------- Chips / badges ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.4rem 0.85rem; border-radius: 999px;
  border: 1px solid var(--border-strong); background: rgba(255, 255, 255, 0.02);
  font-size: 0.8rem; color: var(--muted);
}
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald-bright); }
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em;
  padding: 0.3rem 0.6rem; border-radius: 7px;
  border: 1px solid var(--border-strong); color: var(--fg);
  background: rgba(255, 255, 255, 0.02);
}

/* ---------- Cards ---------- */
.card {
  position: relative;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.card-pad { padding: 1.75rem; }
.card-hover:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: var(--shadow-card), 0 0 0 1px rgba(34, 197, 94, 0.10); }
.icon-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(150deg, rgba(34, 211, 238, 0.16), rgba(34, 197, 94, 0.10));
  border: 1px solid rgba(34, 197, 94, 0.24); color: var(--emerald-bright);
}
.icon-badge svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.15rem; }

/* ---------- Media / images with safe fallback ---------- */
.media {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--surface-2), var(--bg-2));
  border: 1px solid var(--border);
}
.media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.media.ratio-16-9 { aspect-ratio: 16 / 9; }
.media.ratio-4-3 { aspect-ratio: 4 / 3; }
.media.ratio-1-1 { aspect-ratio: 1 / 1; }
.media.ratio-3-2 { aspect-ratio: 3 / 2; }
.card-hover:hover .media img, .media-zoom:hover img { transform: scale(1.05); }
/* image error fallback → branded gradient + label */
img.img-fallback { opacity: 0; }
.media:has(img.img-fallback)::after {
  content: "PINEEON";
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--font-mono); letter-spacing: 0.3em; font-size: 0.8rem;
  color: rgba(159, 176, 204, 0.5);
  background:
    radial-gradient(60% 60% at 70% 20%, rgba(34, 211, 238, 0.18), transparent 70%),
    radial-gradient(60% 60% at 20% 80%, rgba(34, 197, 94, 0.16), transparent 70%),
    linear-gradient(135deg, var(--surface-2), var(--bg-2));
}
.media .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(11, 17, 32, 0.85));
}
.media .media-cap {
  position: absolute; left: 1rem; bottom: 0.9rem; right: 1rem; z-index: 2;
  font-family: var(--font-mono); font-size: 0.78rem; color: var(--fg);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 17, 32, 0.82);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 1rem; }
.brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; letter-spacing: -0.02em; }
.brand .logo {
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: 11px;
  background: linear-gradient(150deg, rgba(34, 211, 238, 0.18), rgba(34, 197, 94, 0.12));
  border: 1px solid rgba(34, 197, 94, 0.3); color: var(--emerald-bright);
}
.brand .logo svg { width: 20px; height: 20px; }

.nav-menu { display: none; align-items: center; gap: 0.25rem; }
.nav-actions { display: none; align-items: center; gap: 0.6rem; }
@media (min-width: 1080px) {
  .nav-menu { display: flex; }
  .nav-actions { display: flex; }
}
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.6rem 0.8rem; border-radius: 10px;
  font-size: 0.92rem; color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-item:hover .nav-link, .nav-link.active { color: var(--fg); }
.nav-link .caret { width: 14px; height: 14px; transition: transform 0.25s; opacity: 0.7; }
.nav-item:hover .nav-link .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 260px;
  background: rgba(15, 23, 42, 0.97); backdrop-filter: blur(18px);
  border: 1px solid var(--border-strong); border-radius: 16px;
  padding: 0.5rem; box-shadow: var(--shadow-card);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem 0.7rem; border-radius: 10px; font-size: 0.9rem; color: var(--muted);
  transition: background 0.18s, color 0.18s;
}
.dropdown a:hover { background: rgba(255, 255, 255, 0.05); color: var(--fg); }
.dropdown a .di { width: 18px; height: 18px; color: var(--emerald-bright); flex: none; }

.hamburger {
  display: inline-grid; place-items: center; width: 44px; height: 44px;
  border-radius: 11px; border: 1px solid var(--border-strong); background: rgba(255, 255, 255, 0.02);
}
.hamburger svg { width: 22px; height: 22px; }
@media (min-width: 1080px) { .hamburger { display: none; } }

/* mobile drawer */
.drawer {
  position: fixed; inset: 70px 0 0; z-index: 99;
  background: rgba(11, 17, 32, 0.98); backdrop-filter: blur(18px);
  transform: translateX(100%); transition: transform 0.32s var(--ease);
  overflow-y: auto; padding: 1.25rem 1.25rem 3rem;
}
.drawer.open { transform: translateX(0); }
.drawer .m-group { border-bottom: 1px solid var(--border); }
.drawer .m-parent {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0.25rem; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  background: none; border: none; text-align: left;
}
.drawer .m-parent .caret { width: 18px; height: 18px; transition: transform 0.25s; color: var(--emerald-bright); }
.drawer .m-parent[aria-expanded="true"] .caret { transform: rotate(180deg); }
.drawer .m-sub { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s var(--ease); }
.drawer .m-sub.open { grid-template-rows: 1fr; }
.drawer .m-sub > div { overflow: hidden; }
.drawer .m-sub a { display: block; padding: 0.6rem 0.75rem; color: var(--muted); font-size: 0.95rem; }
.drawer .m-sub a:hover { color: var(--fg); }
.drawer .m-link { display: block; padding: 1rem 0.25rem; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; }
.drawer .drawer-cta { margin-top: 1.5rem; }

/* ---------- Hero (home) ---------- */
.hero { position: relative; padding-top: 7rem; }
@media (min-width: 768px) { .hero { padding-top: 9rem; } }
.hero-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 980px) { .hero-grid { grid-template-columns: 1.05fr 0.95fr; } }

/* page hero (interior) */
.page-hero { position: relative; padding-top: 8rem; padding-bottom: 3rem; }
@media (min-width: 768px) { .page-hero { padding-top: 10rem; padding-bottom: 4rem; } }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 0.4rem; font-size: 0.82rem; color: var(--faint); margin-bottom: 1.1rem; }
.breadcrumb a:hover { color: var(--fg); }
.breadcrumb .sep { opacity: 0.5; }

/* ---------- Trust strip / marquee ---------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; width: max-content; gap: 3rem; animation: marquee 42s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: rgba(159, 176, 204, 0.55); white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stat-band { display: grid; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .stat-band { grid-template-columns: repeat(4, 1fr); } }
.stat { padding: 1.6rem 1rem; text-align: center; border: 1px solid var(--border); }
.stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.stat .lbl { font-size: 0.85rem; color: var(--muted); margin-top: 0.3rem; }

/* ---------- Steps / process ---------- */
.steps { display: grid; gap: 1.1rem; counter-reset: step; }
.step { display: flex; gap: 1.1rem; align-items: flex-start; }
.step .sn {
  flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; color: var(--emerald-bright);
  border: 1px solid rgba(34, 197, 94, 0.3); background: rgba(34, 197, 94, 0.08);
}
.step h4 { font-size: 1.05rem; }

/* ---------- Split content ---------- */
.split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split.reverse > .media, .split.reverse .split-media { order: 2; } }

/* ---------- Feature list ---------- */
.flist { display: grid; gap: 0.9rem; }
.flist li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--muted); }
.flist li .ck { flex: none; width: 22px; height: 22px; color: var(--emerald-bright); margin-top: 1px; }

/* ---------- Spec table ---------- */
.spec { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.spec .row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.85rem 1.1rem; border-top: 1px solid var(--border); font-size: 0.92rem; }
.spec .row:first-child { border-top: none; }
.spec .row dt { color: var(--muted); }
.spec .row dd { font-family: var(--font-mono); }

/* ---------- Testimonials ---------- */
.quote { display: flex; flex-direction: column; height: 100%; }
.quote .mark { font-family: var(--font-display); font-size: 2.5rem; line-height: 1; color: var(--emerald-bright); }
.quote blockquote { flex: 1; margin-top: 0.4rem; color: rgba(238, 242, 251, 0.92); }
.quote .who { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.3rem; padding-top: 1.1rem; border-top: 1px solid var(--border); }
.quote .av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; color: var(--emerald-bright); border: 1px solid rgba(34, 197, 94, 0.3); background: rgba(34, 197, 94, 0.1); }

/* ---------- FAQ accordion ---------- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 0; text-align: left; background: none; border: none; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; }
.faq-q .pm { flex: none; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--border-strong); color: var(--emerald-bright); transition: transform 0.3s; }
.faq-q[aria-expanded="true"] .pm { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.34s var(--ease); }
.faq-a.open { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding-bottom: 1.2rem; color: var(--muted); }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .form-2 { grid-template-columns: 1fr 1fr; } }
.field-label { display: block; font-size: 0.88rem; font-weight: 500; margin-bottom: 0.4rem; }
.field-label .req { color: var(--emerald-bright); margin-left: 0.2rem; }
.field {
  width: 100%; min-height: 46px; padding: 0.75rem 0.9rem;
  background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border-strong);
  border-radius: 12px; color: var(--fg); font: inherit; font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
textarea.field { min-height: 130px; resize: vertical; }
.field::placeholder { color: var(--faint); }
.field:focus { outline: none; border-color: var(--emerald); background: rgba(34, 197, 94, 0.04); box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.13); }
.field:user-invalid { border-color: var(--danger); }
.form-note { font-size: 0.8rem; color: var(--faint); }
.form-success {
  display: none; text-align: center; padding: 2rem 1rem;
  border: 1px solid rgba(34, 197, 94, 0.3); border-radius: var(--radius); background: rgba(34, 197, 94, 0.06);
}
.form-success.show { display: block; }
.form-success .ok { width: 60px; height: 60px; margin: 0 auto 1rem; border-radius: 50%; display: grid; place-items: center; color: var(--emerald-bright); border: 1px solid rgba(34, 197, 94, 0.4); background: rgba(34, 197, 94, 0.1); }
.form-error { display:none; margin-top: 0.6rem; padding: 0.7rem 0.9rem; border-radius: 10px; border: 1px solid rgba(248, 113, 113, 0.4); background: rgba(248, 113, 113, 0.08); color: #fca5a5; font-size: 0.88rem; }
.form-error.show { display: block; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong); padding: clamp(2rem, 5vw, 3.5rem);
  background:
    radial-gradient(60% 120% at 85% 10%, rgba(34, 211, 238, 0.16), transparent 60%),
    radial-gradient(60% 120% at 10% 90%, rgba(34, 197, 94, 0.14), transparent 60%),
    linear-gradient(180deg, var(--surface), var(--bg-2));
}

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: rgba(255, 255, 255, 0.012); margin-top: 2rem; }
.footer-grid { display: grid; gap: 2.5rem; padding-block: 3.5rem; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer-col h4 { font-family: var(--font-mono); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); margin-bottom: 1rem; }
.footer-col a { display: block; color: var(--muted); font-size: 0.9rem; padding: 0.3rem 0; transition: color 0.18s; }
.footer-col a:hover { color: var(--fg); }
.footer-bottom { border-top: 1px solid var(--border); padding-block: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: 0.82rem; color: var(--faint); }
.socials { display: flex; gap: 0.6rem; }
.socials a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border-strong); color: var(--muted); transition: color 0.2s, border-color 0.2s, transform 0.2s; }
.socials a:hover { color: var(--fg); border-color: var(--border-strong); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }

/* ---------- Divider ---------- */
.hairline { height: 1px; background: linear-gradient(90deg, transparent, var(--border-strong), transparent); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); transition-delay: var(--d, 0ms); will-change: transform, opacity; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Misc ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.kicker-row { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--emerald); color: #04140e; padding: 0.6rem 1rem; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; }

@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; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
