/* ═══════════════════════════════════════════════════════════════
   AlgoTech — company website stylesheet
   Design tokens live in :root — recolor the whole site from there.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg: #05070f;
  --bg-2: #0a0e1c;
  --card: rgba(148, 163, 255, 0.045);
  --card-strong: rgba(148, 163, 255, 0.07);
  --border: rgba(148, 163, 255, 0.12);
  --border-strong: rgba(148, 163, 255, 0.3);
  --text: #e9edf8;
  --muted: #99a3c0;
  --faint: #5b6480;
  --indigo: #6366f1;
  --indigo-light: #818cf8;
  --cyan: #22d3ee;
  --green: #34d399;
  --red: #f87171;
  --grad: linear-gradient(100deg, #818cf8 0%, #22d3ee 100%);
  --grad-btn: linear-gradient(135deg, #6366f1, #0ea5e9);
  --radius: 16px;
  --font-head: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  color-scheme: dark;
}

/* ── Reset & base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: rgba(99, 102, 241, 0.45); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1d2540; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #2a3457; }

:focus-visible { outline: 2px solid var(--indigo-light); outline-offset: 3px; border-radius: 4px; }

.container { width: min(1160px, 100% - 3rem); margin-inline: auto; }

/* ── Background decor ─────────────────────────────────────────── */
.bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60rem 42rem at 85% -12%, rgba(99, 102, 241, 0.16), transparent 60%),
    radial-gradient(50rem 36rem at -12% 28%, rgba(34, 211, 238, 0.09), transparent 60%),
    radial-gradient(46rem 34rem at 55% 115%, rgba(139, 92, 246, 0.1), transparent 60%),
    var(--bg);
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(72rem 52rem at 50% -10%, #000 25%, transparent 75%);
  mask-image: radial-gradient(72rem 52rem at 50% -10%, #000 25%, transparent 75%);
}

/* ── Typography helpers ───────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; letter-spacing: -0.01em; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.section { padding: 6.5rem 0; }

.section-head { max-width: 640px; margin: 0 auto 3.5rem; text-align: center; }
.section-head h2 { font-size: clamp(1.75rem, 3.6vw, 2.5rem); }
.section-lead { color: var(--muted); margin-top: 1rem; font-size: 1.05rem; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.btn-primary {
  background: var(--grad-btn);
  color: #fff;
  box-shadow: 0 8px 28px rgba(80, 100, 240, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(80, 100, 240, 0.5); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost { border: 1px solid var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--border-strong); background: rgba(148, 163, 255, 0.06); }

.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.9rem; }
.btn-block { width: 100%; }

.btn[disabled] { opacity: 0.7; cursor: wait; }

.btn.loading { position: relative; }
.btn.loading .btn-label { opacity: 0; }
.btn.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Navigation ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(5, 7, 15, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.logo { display: inline-flex; align-items: center; gap: 0.65rem; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; letter-spacing: -0.01em; }
.logo-mark { width: 32px; height: 32px; border-radius: 9px; }

.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links > a:not(.btn) { font-size: 0.95rem; font-weight: 500; color: var(--muted); transition: color 0.2s ease; }
.nav-links > a:not(.btn):hover { color: var(--text); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }

body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero { padding: 11rem 0 5rem; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.pulse-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--green);
  animation: ping 1.8s ease-out infinite;
}
@keyframes ping {
  0% { transform: scale(0.6); opacity: 0.9; }
  80%, 100% { transform: scale(1.7); opacity: 0; }
}

.hero h1 { font-size: clamp(2.4rem, 5.4vw, 3.9rem); font-weight: 700; letter-spacing: -0.02em; }

.hero .lead { color: var(--muted); font-size: 1.13rem; margin-top: 1.4rem; max-width: 34rem; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

/* Terminal card */
.terminal {
  background: rgba(10, 14, 28, 0.85);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(148, 163, 255, 0.04) inset;
  overflow: hidden;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0.8rem 1.1rem;
  border-bottom: 1px solid var(--border);
  background: rgba(148, 163, 255, 0.04);
}

.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }

.terminal-title { margin-left: 0.6rem; font-family: var(--font-mono); font-size: 0.75rem; color: var(--faint); }

.terminal-body {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 2;
  padding: 1.2rem 1.3rem 1.4rem;
  min-height: 232px;
  white-space: pre-wrap;
  word-break: break-word;
}

.t-line { min-height: 1.7em; }
.t-cmd { color: var(--text); font-weight: 500; }
.t-dim { color: var(--muted); }
.t-ok { color: var(--green); }

.t-cursor {
  display: inline-block;
  width: 8px;
  height: 1.05em;
  margin-left: 2px;
  vertical-align: text-bottom;
  background: var(--cyan);
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* Stats strip */
.stats {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  overflow: hidden;
}

.stat { padding: 1.7rem 1.2rem; text-align: center; }
.stat + .stat { border-left: 1px solid var(--border); }

.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label { display: block; margin-top: 0.3rem; font-size: 0.88rem; color: var(--muted); }

/* ── Service cards ────────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
}

.card {
  padding: 1.9rem 1.8rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  background: var(--card-strong);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(34, 211, 238, 0.14));
  border: 1px solid rgba(148, 163, 255, 0.18);
  color: #9daeff;
  margin-bottom: 1.3rem;
  transition: box-shadow 0.25s ease;
}
.card:hover .card-icon { box-shadow: 0 0 22px rgba(99, 102, 241, 0.35); }

.card-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.card h3 { font-size: 1.14rem; margin-bottom: 0.6rem; }
.card p { color: var(--muted); font-size: 0.95rem; line-height: 1.65; }

/* ── Tech stack ───────────────────────────────────────────────── */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.stack-group {
  padding: 1.7rem 1.8rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stack-group h3 {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 1.1rem;
}

.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }

.chip {
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(148, 163, 255, 0.05);
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.chip:hover { color: var(--text); border-color: var(--border-strong); background: rgba(148, 163, 255, 0.1); }

/* ── Process ──────────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.step {
  padding: 1.8rem 1.6rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--grad);
  opacity: 0.7;
}

.step-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.85;
  margin-bottom: 0.9rem;
}

.step h3 { font-size: 1.08rem; margin-bottom: 0.55rem; }
.step p { color: var(--muted); font-size: 0.92rem; line-height: 1.65; }

/* ── About ────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.about-copy h2 { font-size: clamp(1.75rem, 3.6vw, 2.5rem); margin-bottom: 1.3rem; }
.about-copy p { color: var(--muted); margin-bottom: 1.1rem; max-width: 36rem; }

.about-card {
  padding: 2rem 1.9rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.about-card h3 { font-size: 1.1rem; margin-bottom: 1.2rem; }

.check-list { list-style: none; display: grid; gap: 0.9rem; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.check-list svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  fill: none;
  stroke: var(--green);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Contact ──────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.6rem;
  align-items: start;
}

.contact-info,
.contact-form-wrap {
  padding: 2.1rem 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-info h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.contact-info > p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.6rem; }

.contact-list { list-style: none; display: grid; gap: 1.15rem; }

.contact-list li { display: flex; gap: 0.9rem; align-items: flex-start; }

.ci-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.18), rgba(34, 211, 238, 0.12));
  border: 1px solid rgba(148, 163, 255, 0.16);
  color: #9daeff;
}
.ci-icon svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.ci-body { font-size: 0.95rem; color: var(--text); line-height: 1.5; word-break: break-word; }
.ci-label { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--faint); margin-bottom: 0.15rem; }
.ci-body a { color: var(--text); border-bottom: 1px solid var(--border-strong); transition: color 0.2s ease, border-color 0.2s ease; }
.ci-body a:hover { color: var(--cyan); border-color: var(--cyan); }

.divider { height: 1px; background: var(--border); margin: 1.7rem 0; }

.contact-info h4 { font-size: 0.98rem; margin-bottom: 0.9rem; }

.next-steps { list-style: none; counter-reset: step; display: grid; gap: 0.75rem; }
.next-steps li {
  counter-increment: step;
  display: flex;
  gap: 0.8rem;
  align-items: baseline;
  color: var(--muted);
  font-size: 0.92rem;
}
.next-steps li::before {
  content: counter(step);
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--indigo-light);
  transform: translateY(3px);
}

/* Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.field { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.1rem; }

.field label { font-size: 0.88rem; font-weight: 500; color: var(--text); }
.req { color: var(--indigo-light); }

.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: rgba(148, 163, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field textarea { resize: vertical; min-height: 130px; }

.field input::placeholder,
.field textarea::placeholder { color: var(--faint); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.22);
  background: rgba(148, 163, 255, 0.07);
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2399a3c0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
}
.field select option { background: var(--bg-2); color: var(--text); }

/* Honeypot — visually removed, still in the DOM for bots */
.hp { position: absolute; left: -9999px; top: -9999px; opacity: 0; pointer-events: none; }

.form-error {
  margin-bottom: 1.1rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(248, 113, 113, 0.4);
  border-radius: 12px;
  background: rgba(248, 113, 113, 0.08);
  color: var(--red);
  font-size: 0.92rem;
}

.form-note { margin-top: 0.9rem; text-align: center; font-size: 0.82rem; color: var(--faint); }

.form-success { text-align: center; padding: 2.5rem 1rem; }

.success-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.2), rgba(34, 211, 238, 0.15));
  border: 1px solid rgba(52, 211, 153, 0.45);
  box-shadow: 0 0 34px rgba(52, 211, 153, 0.25);
}
.success-icon svg { width: 30px; height: 30px; fill: none; stroke: var(--green); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

.form-success h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.form-success p { color: var(--muted); }
.success-note { margin-top: 0.7rem; font-size: 0.85rem; color: var(--faint); }

/* ── Footer ───────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--border); padding: 2.4rem 0; margin-top: 2rem; }

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer .logo { font-size: 1.05rem; }
.footer .logo-mark { width: 27px; height: 27px; }

.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.9rem; color: var(--muted); transition: color 0.2s ease; }
.footer-links a:hover { color: var(--text); }

.footer-copy { font-size: 0.85rem; color: var(--faint); }

/* ── Reveal animation ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease var(--d, 0s), transform 0.7s ease var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero { padding-top: 9.5rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 560px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(odd) { border-left: 0; }
  .stat:nth-child(n + 3) { border-top: 1px solid var(--border); }
  .stack-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    padding: 1.2rem 1.5rem 1.6rem;
    background: rgba(5, 7, 15, 0.97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }
  body.menu-open .nav-links { transform: none; opacity: 1; visibility: visible; }
  .nav-links > a:not(.btn) { padding: 0.7rem 0.3rem; font-size: 1.02rem; }
  .nav-links .btn { margin-top: 0.7rem; }
}

@media (max-width: 600px) {
  .section { padding: 4.5rem 0; }
  .hero { padding: 8.5rem 0 3.5rem; }
  .hero-cta .btn { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .terminal-body { font-size: 0.78rem; min-height: 215px; }
}

/* ── Reduced motion ───────────────────────────────────────────── */
@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; }
  .reveal { opacity: 1; transform: none; }
}
