/* Tyreik Rogers — portfolio theme: professional black + gold */

:root {
  --bg-deep: #060606;
  --bg: #0c0c0c;
  --surface: #141414;
  --surface-hover: #1a1a1a;
  --border: #2e2e2e;
  --border-strong: #3d3d3d;
  --gold: #e8b923;
  --gold-dim: #c9a227;
  --gold-glow: rgba(232, 185, 35, 0.35);
  --text: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-subtle: #71717a;
  --radius: 12px;
  --radius-sm: 8px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --nav-h: 64px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -30%, rgba(232, 185, 35, 0.08), transparent 55%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 40%, var(--bg-deep) 100%);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Soft gold spotlight following the pointer (see main.js) */
.cursor-glow {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    520px circle at var(--cursor-x, 50vw) var(--cursor-y, 50vh),
    rgba(232, 185, 35, 0.16) 0%,
    rgba(232, 185, 35, 0.06) 28%,
    transparent 62%
  );
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s var(--ease), opacity 0.2s;
}

a:hover {
  color: #f5d45c;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout */
.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.section {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
}

.section--tight {
  padding-top: calc(var(--nav-h) + 2rem);
}

.section__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.section__lead {
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 0 2rem;
  font-size: 1.05rem;
}

.section__lead code,
.project-path-hint {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.88em;
  color: var(--gold-dim);
}

/* Site header / nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(6, 6, 6, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(46, 46, 46, 0.6);
}

.site-header__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo__mark {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold);
  box-shadow: 0 0 16px var(--gold-glow);
}

.logo:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin-inline: auto;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-sm);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(232, 185, 35, 0.08);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.15rem;
    background: rgba(12, 12, 12, 0.97);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.25s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.85rem 1rem;
  }
}

/* Hero */
.hero {
  padding: calc(var(--nav-h) + clamp(3rem, 12vw, 6rem)) 0 clamp(3rem, 8vw, 5rem);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  background: radial-gradient(ellipse, rgba(232, 185, 35, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black 20%, transparent 85%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}

.hero__title {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 1.25rem;
  max-width: 14ch;
}

.hero__title span {
  color: var(--gold);
  text-shadow: 0 0 40px var(--gold-glow);
}

.hero__desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 42ch;
  margin: 0 0 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(165deg, var(--gold) 0%, var(--gold-dim) 100%);
  color: #0a0a0a;
  box-shadow: 0 4px 24px var(--gold-glow);
}

.btn--primary:hover {
  color: #0a0a0a;
  box-shadow: 0 6px 32px var(--gold-glow);
}

.btn--ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(232, 185, 35, 0.06);
}

/* Project category filters */
.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

@media (max-width: 640px) {
  .project-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    margin-inline: calc(-1 * min(4vw, 1rem));
    padding-inline: min(4vw, 1rem);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
}

.project-filter {
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s var(--ease), border-color 0.2s, color 0.2s;
}

.project-filter:hover {
  color: var(--text);
  border-color: rgba(232, 185, 35, 0.4);
}

.project-filter:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.project-filter.is-active {
  background: rgba(232, 185, 35, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.project-card.is-hidden {
  display: none !important;
}

.project-empty {
  display: none;
  padding: 2rem 1.25rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  margin-top: 0.5rem;
}

.project-empty.is-visible {
  display: block;
}

/* Cards grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

/* Projects page: exactly three cards per row on wide screens */
#project-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 960px) {
  #project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  #project-grid {
    grid-template-columns: 1fr;
  }
}

/* Conferences page: two cards per row on wide screens */
#conferences-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 600px) {
  #conferences-grid {
    grid-template-columns: 1fr;
  }
}

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

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 185, 35, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(232, 185, 35, 0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.card__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 1rem;
}

.card__link {
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.card__link::after {
  content: "→";
  transition: transform 0.2s var(--ease);
}

.card:hover .card__link::after {
  transform: translateX(4px);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--border);
  margin: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 0.5rem;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: calc(-1.5rem - 5px);
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
}

/* Experience: vertical line in the center, cards alternate left / right */
.timeline.timeline--experience {
  margin-top: 0.5rem;
  border-left: none;
  padding-left: 0;
}

.timeline.timeline--experience::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  margin-left: -1px;
  background: var(--border);
  z-index: 0;
}

.timeline.timeline--experience li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: start;
  padding-left: 0;
  padding-bottom: 2rem;
  z-index: 1;
}

.timeline.timeline--experience li:last-child {
  padding-bottom: 0;
}

.timeline.timeline--experience .experience-card {
  margin: 0;
  width: min(100%, 520px);
  height: auto;
  max-height: none;
  overflow: visible;
}

.timeline.timeline--experience .experience-card .card__title,
.timeline.timeline--experience .experience-card .meta,
.timeline.timeline--experience .experience-card p,
.timeline.timeline--experience .experience-card .card__text,
.timeline.timeline--experience .experience-card .tag {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.timeline.timeline--experience li:nth-child(odd) .experience-card {
  grid-column: 1;
  justify-self: end;
}

.timeline.timeline--experience li:nth-child(even) .experience-card {
  grid-column: 2;
  justify-self: start;
}

.timeline.timeline--experience li::before {
  left: 50%;
  transform: translateX(-50%);
  top: 1.25rem;
  z-index: 2;
}

@media (max-width: 800px) {
  .timeline.timeline--experience::before {
    left: 15px;
    margin-left: -1px;
  }

  .timeline.timeline--experience li {
    grid-template-columns: 1fr;
    padding-left: 2.25rem;
  }

  .timeline.timeline--experience li:nth-child(odd) .experience-card,
  .timeline.timeline--experience li:nth-child(even) .experience-card {
    grid-column: 1;
    justify-self: stretch;
    width: 100%;
    max-width: none;
  }

  .timeline.timeline--experience li::before {
    left: 10px;
    transform: none;
  }
}

.timeline h3 {
  font-size: 1.05rem;
  margin: 0 0 0.25rem;
}

.timeline .meta,
.card .meta {
  font-size: 0.85rem;
  color: var(--gold);
  margin: 0 0 0.5rem;
}

.timeline p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(232, 185, 35, 0.1);
  color: var(--gold-dim);
  border: 1px solid rgba(232, 185, 35, 0.25);
}

/* Project cards */
.card.project-card {
  padding: 0;
  overflow: hidden;
}

.project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--surface-hover);
  border-bottom: 1px solid var(--border);
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.project-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.project-card__body .card__title {
  margin-top: 0;
}

.project-card .card__text {
  flex: 1;
}

/* Certification cards (badge / certificate image + details) */
.card.cert-card {
  padding: 0;
  overflow: hidden;
}

.cert-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cert-card__media {
  position: relative;
  aspect-ratio: 8 / 5;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.cert-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.cert-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.cert-card__body .card__title {
  margin-top: 0;
}

.cert-card .card__text {
  flex: 1;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.contact-card {
  display: block;
  padding: 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.contact-card:hover {
  border-color: rgba(232, 185, 35, 0.4);
  transform: translateY(-2px);
}

.contact-card strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-subtle);
  margin-bottom: 0.35rem;
}

.contact-card span {
  font-size: 1rem;
  color: var(--text);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  margin-top: auto;
  color: var(--text-subtle);
  font-size: 0.875rem;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer a {
  color: var(--text-muted);
}

.site-footer a:hover {
  color: var(--gold);
}

/* Page shell for flex footer stick */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page main {
  flex: 1;
  position: relative;
  z-index: 1;
}

.page .site-footer {
  position: relative;
  z-index: 1;
}

/* Reveal animation (JS adds .is-visible) */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.4s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.47s; }

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* About: circular photo beside bio */
.about-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.25rem, 4vw, 2.75rem);
  align-items: center;
  margin-top: 0.5rem;
}

.about-photo {
  margin: 0;
  position: relative;
  width: clamp(128px, 38vw, 300px);
  aspect-ratio: 1;
  flex-shrink: 0;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(145deg, rgba(232, 185, 35, 0.55), rgba(232, 185, 35, 0.12) 45%, rgba(232, 185, 35, 0.2) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  /* Vertical crop fine-tuning inside the circle */
  object-position: center calc(50% + 52px);
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.about-copy {
  min-width: 0;
}

/* Prose */
.prose p {
  color: var(--text-muted);
  max-width: 65ch;
}

.prose p + p {
  margin-top: 1rem;
}

/* Full-page loader */
body.page-loader-active {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232, 185, 35, 0.12), transparent 55%),
    var(--bg-deep);
  transition: opacity 0.55s var(--ease), visibility 0.55s;
}

.page-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
  pointer-events: none;
}

.page-loader--done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  max-width: 28rem;
  width: 92vw;
}

.page-loader__wordmark {
  margin: 0 0 0.35rem;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.page-loader__wordmark span {
  color: var(--gold);
  text-shadow: 0 0 48px var(--gold-glow);
}

.page-loader__status {
  margin: 0 0 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.page-loader__dots span {
  animation: page-loader-dot 1.2s ease-in-out infinite;
}

.page-loader__dots span:nth-child(2) {
  animation-delay: 0.15s;
}

.page-loader__dots span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes page-loader-dot {
  0%,
  100% {
    opacity: 0.15;
  }

  35% {
    opacity: 1;
  }
}

.page-loader__track {
  height: 6px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 0.85rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.page-loader__bar {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), #f5d45c, var(--gold));
  background-size: 200% 100%;
  animation: page-loader-shimmer 1.2s linear infinite;
  box-shadow: 0 0 24px var(--gold-glow);
  /* width driven every frame in JS for smooth progress */
  transition: none;
}

@keyframes page-loader-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.page-loader__pct {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-stagger > *,
  .card {
    transition: none;
  }

  .card:hover {
    transform: none;
  }

  .page-loader__bar {
    animation: none;
  }

  .page-loader__dots span {
    animation: none;
    opacity: 0.6;
  }
}
