/* ============================================================
   SAULO STOREL — portfólio surreal sofisticado
   Conceito: campo de profundidade com gravidade invertida.
   Paleta monocromática:
     --void   #050505  fundo (preto quase absoluto)
     --layer  #101010  camada elevada / vidro
     --ink    #f5f5f5  texto principal (branco)
     --dim    #8f8f8f  texto secundário (cinza)
     --ruby   #ffffff  acento (branco puro — herda o nome da paleta antiga)
     --azure  #4073b9  acento azul (detalhes: prompts, cursores, status, foco)
     --ghost  #b5b5b5  cinza de profundidade (sombras erradas, glow)
   Tipos: Syne (display colossal) + JetBrains Mono (corpo/UI)
   ============================================================ */

:root {
  --void: #050505;
  --layer: #101010;
  --layer-2: #1a1a1a;
  --ink: #f5f5f5;
  --dim: #8f8f8f;
  --ruby: #ffffff;
  --azure: #4073b9;
  --azure-soft: rgba(64, 115, 185, 0.35);
  --ghost: #b5b5b5;
  --line: rgba(143, 143, 143, 0.22);

  --font-display: "Syne", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1080px;
  --pad: clamp(1.25rem, 5vw, 4rem);

  --ease-spring: cubic-bezier(0.22, 1.4, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  background: var(--void);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  /* vinheta + luz fantasma no topo */
  background-image:
    radial-gradient(120% 90% at 70% -10%, rgba(255, 255, 255, 0.06), transparent 60%),
    radial-gradient(80% 60% at 10% 110%, rgba(255, 255, 255, 0.03), transparent 60%);
  background-attachment: fixed;
}

/* grão sutil por cima de tudo */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection {
  background: var(--azure);
  color: var(--ink);
}

a {
  color: var(--ink);
  text-decoration: none;
}

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

strong {
  color: var(--ink);
  font-weight: 700;
}

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

.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-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--ruby);
  color: var(--void);
  font-weight: 700;
  border-radius: 4px;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
}

/* ===== Canvas de fundo ===== */
#depth-field {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

/* ===== Cursor customizado ===== */
.cursor-dot,
.cursor-ring {
  display: none;
}

body.has-cursor {
  cursor: none;
}

body.has-cursor a,
body.has-cursor button,
body.has-cursor input,
body.has-cursor textarea,
body.has-cursor label {
  cursor: none;
}

body.has-cursor .cursor-dot,
body.has-cursor .cursor-ring {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  pointer-events: none;
  border-radius: 50%;
  will-change: transform;
}

body.has-cursor .cursor-dot {
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  background: var(--azure);
}

body.has-cursor .cursor-ring {
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out),
    margin 0.25s var(--ease-out), border-color 0.25s;
}

body.has-cursor .cursor-ring.is-active {
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  border-color: var(--ghost);
}

/* ===== Topbar ===== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.9rem var(--pad);
  font-size: 0.8rem;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.85), rgba(5, 5, 5, 0));
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.topbar-brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.brand-cursor {
  color: var(--azure);
  animation: blink 1.1s steps(1) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.topbar-nav {
  display: flex;
  gap: 1.25rem;
  margin-left: auto;
}

.topbar-nav a {
  color: var(--dim);
  transition: color 0.2s;
}

.topbar-nav a:hover,
.topbar-nav a.active {
  color: var(--ruby);
}

.depth-meter {
  color: var(--dim);
  font-size: 0.75rem;
}

.depth-meter span {
  color: var(--ghost);
  font-variant-numeric: tabular-nums;
}

/* ===== Layout das seções ===== */
main {
  display: block;
}

.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(5rem, 12vh, 9rem) var(--pad);
  scroll-margin-top: 3.5rem;
}

.eyebrow {
  font-size: 0.8rem;
  color: var(--dim);
  margin-bottom: 0.75rem;
}

.prompt {
  color: var(--azure);
  margin-right: 0.5em;
}

/* Título com sombra fantasma "errada" (deslocada para cima-esquerda,
   contra a luz do resto da página) */
.section-title {
  position: relative;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: clamp(2rem, 5vh, 3.5rem);
}

.section-title::before {
  content: attr(data-ghost);
  position: absolute;
  top: -0.09em;
  left: -0.09em;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(64, 115, 185, 0.55);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100svh;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(6rem, 16vh, 9rem) var(--pad) 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.caret {
  display: inline-block;
  width: 0.6em;
  height: 1.1em;
  vertical-align: text-bottom;
  background: var(--azure);
  animation: blink 1.1s steps(1) infinite;
}

/* --- Nome fatiado (assinatura do site) --- */
.shatter {
  position: relative;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 13vw, 10.5rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 0 2rem;
  user-select: none;
}

.shatter-sizer {
  display: block;
  visibility: hidden;
}

.slice {
  position: absolute;
  inset: 0;
  display: block;
  will-change: transform;
  animation: slice-rise 0.9s var(--ease-out) backwards;
}

.slice > span {
  display: block;
  color: var(--ink);
  /* aberração cromática controlada */
  text-shadow:
    2px 0 0 rgba(255, 255, 255, 0.35),
    -2px 0 0 rgba(181, 181, 181, 0.35);
}

/* 6 faixas horizontais de ~16.67% cada */
.slice:nth-of-type(1) { clip-path: inset(0% 0 83.34% 0); animation-delay: 0.05s; }
.slice:nth-of-type(2) { clip-path: inset(16.66% 0 66.68% 0); animation-delay: 0.12s; }
.slice:nth-of-type(3) { clip-path: inset(33.32% 0 50.02% 0); animation-delay: 0.19s; }
.slice:nth-of-type(4) { clip-path: inset(49.98% 0 33.36% 0); animation-delay: 0.26s; }
.slice:nth-of-type(5) { clip-path: inset(66.64% 0 16.7% 0); animation-delay: 0.33s; }
.slice:nth-of-type(6) { clip-path: inset(83.3% 0 0% 0); animation-delay: 0.4s; }

@keyframes slice-rise {
  from {
    opacity: 0;
    transform: translateY(0.35em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Resto do hero --- */
.hero-meta {
  max-width: 34rem;
  animation: fade-up 0.8s var(--ease-out) 0.55s backwards;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-role {
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.status-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--dim);
  margin-bottom: 1.25rem;
}

.status-dot,
.time-live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--azure);
  box-shadow: 0 0 8px rgba(64, 115, 185, 0.9);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  50% { opacity: 0.4; }
}

.hero-desc {
  color: var(--dim);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.hero-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
}

.hero-links a {
  color: var(--dim);
  transition: color 0.2s;
}

.hero-links a:hover {
  color: var(--ruby);
}

.hero-hint {
  position: absolute;
  bottom: 1.5rem;
  left: var(--pad);
  font-size: 0.72rem;
  color: var(--dim);
  opacity: 0.7;
  animation: fade-up 0.8s var(--ease-out) 1.2s backwards;
}

/* ===== Botões ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 4px;
  border: 1px solid transparent;
  will-change: transform;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
}

.btn-primary {
  background: var(--ruby);
  color: var(--void);
}

.btn-primary:hover {
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.45);
}

.btn-outline {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(16, 16, 16, 0.5);
}

.btn-outline:hover {
  border-color: var(--ghost);
  box-shadow: 0 0 22px rgba(181, 181, 181, 0.25);
}

.btn-lg {
  padding: 0.9rem 2.2rem;
}

.btn-loading {
  opacity: 0.65;
  pointer-events: none;
}

/* ===== Sobre ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.about-text p + p {
  margin-top: 1.25rem;
}

.about-text {
  color: var(--dim);
}

.yaml {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  font-size: 0.82rem;
  line-height: 1.9;
  color: var(--ink);
  background: rgba(16, 16, 16, 0.6);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow-x: auto;
}

.yaml-fence {
  color: var(--dim);
}

.yaml-key {
  color: var(--ghost);
}

.yaml-comment {
  color: var(--dim);
  opacity: 0.8;
}

/* Foto flutuante com sombra que não combina com a luz */
.about-photo {
  position: relative;
}

.photo-frame {
  transform: rotate(2.5deg);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  will-change: transform;
  /* a luz da página vem de cima-direita; esta sombra cai para cima-esquerda */
  box-shadow: -18px -22px 48px rgba(181, 181, 181, 0.22),
    0 0 0 1px rgba(181, 181, 181, 0.08);
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: rotate(2.5deg) translateY(0); }
  50% { transform: rotate(2.5deg) translateY(-10px); }
}

.photo-caption {
  margin-top: 1rem;
  font-size: 0.72rem;
  color: var(--dim);
  text-align: right;
}

/* ===== Skills ===== */
.skills-groups {
  display: grid;
  gap: 2.5rem;
}

.skill-group-label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ghost);
  margin-bottom: 1.1rem;
}

.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(16, 16, 16, 0.6);
  will-change: transform;
  animation: chip-float 6s ease-in-out infinite alternate;
  transition: border-color 0.25s, box-shadow 0.25s, color 0.25s;
}

.chip:hover {
  border-color: var(--brand, var(--azure));
  color: var(--ink);
  box-shadow: 0 0 18px color-mix(in srgb, var(--brand, var(--azure)) 40%, transparent);
}

/* cada chip flutua num ritmo próprio */
.chip:nth-child(3n)  { animation-delay: -1.4s; animation-duration: 5.2s; }
.chip:nth-child(3n+1){ animation-delay: -3.1s; animation-duration: 6.6s; }
.chip:nth-child(4n)  { animation-delay: -2.2s; animation-duration: 7.4s; }

@keyframes chip-float {
  from { transform: translateY(2px); }
  to   { transform: translateY(-4px); }
}

.chip img,
.chip svg {
  display: block;
  width: 14px;
  height: 14px;
}

/* SVGs inline (skills pessoais) herdam a cor do chip, inclusive no hover */
.chip svg {
  color: var(--ghost);
  transition: color 0.25s;
}

.chip:hover svg {
  color: currentColor;
}

.chips-dim .chip {
  color: var(--dim);
  border-style: dashed;
}

.chips-dim .chip:hover {
  border-color: var(--ghost);
  color: var(--ghost);
  box-shadow: 0 0 18px rgba(181, 181, 181, 0.25);
}

/* ===== Projetos ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(160deg, rgba(26, 26, 26, 0.75), rgba(16, 16, 16, 0.55));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  will-change: transform;
  transform-style: preserve-3d;
  transition: border-color 0.25s, box-shadow 0.25s;
  animation: card-in 0.6s var(--ease-out) backwards;
}

@keyframes card-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Destaque: o repo com push mais recente (HEAD) ocupa a linha toda */
.card-featured {
  grid-column: 1 / -1;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: linear-gradient(160deg, rgba(32, 32, 32, 0.8), rgba(16, 16, 16, 0.55));
}

.card-featured .card-name {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
}

.card-featured .card-desc {
  font-size: 1rem;
  max-width: 44rem;
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.5);
  /* sombra invertida: sobe em vez de cair */
  box-shadow: 0 -16px 40px rgba(255, 255, 255, 0.14);
}

.card-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.card-head .card-name {
  flex-basis: min(100%, max-content);
}

.card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
}

.card-name a {
  transition: color 0.2s;
}

.card-name a:hover {
  color: var(--ruby);
}

.card-badge {
  flex-shrink: 0;
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--void);
  background: var(--ink);
  border-radius: 999px;
  padding: 0.15rem 0.65rem;
}

.card-badge + .card-lang {
  margin-left: 0;
}

.card-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  margin-left: auto;
  font-size: 0.72rem;
  color: var(--ghost);
  border: 1px solid rgba(181, 181, 181, 0.35);
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
}

.card-desc {
  font-size: 0.88rem;
  color: var(--dim);
  flex-grow: 1;
}

.card-topics {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.card-topics li {
  font-size: 0.7rem;
  color: var(--dim);
  border: 1px dashed var(--line);
  border-radius: 999px;
  padding: 0.05rem 0.55rem;
}

.card-foot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.8rem;
  color: var(--dim);
}

.card-updated {
  flex-grow: 1;
  font-size: 0.72rem;
  opacity: 0.85;
}

.card-foot a {
  color: var(--dim);
  transition: color 0.2s;
}

.card-foot a:hover {
  color: var(--ruby);
}

.projects-loading {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  padding: 3rem 0;
}

.projects-loading-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ghost);
  animation: loading-bounce 1s ease-in-out infinite;
}

.projects-loading-dot:nth-child(2) { animation-delay: 0.15s; }
.projects-loading-dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes loading-bounce {
  50% { transform: translateY(-8px); opacity: 0.4; }
}

.projects-more {
  margin-top: 2rem;
  font-size: 0.85rem;
}

.projects-more a {
  color: var(--dim);
  transition: color 0.2s;
}

.projects-more a:hover {
  color: var(--ink);
}

/* ===== Contato ===== */
.contact-note {
  color: var(--dim);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.local-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--dim);
  margin-bottom: 2.25rem;
}

.local-time strong {
  color: var(--ghost);
  font-variant-numeric: tabular-nums;
}

.contact-form {
  max-width: 40rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  color: var(--ghost);
  margin-bottom: 0.4rem;
}

.form-group label::before {
  content: "$ read ";
  color: var(--dim);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--ink);
  background: rgba(16, 16, 16, 0.6);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--azure);
  box-shadow: 0 0 0 3px rgba(64, 115, 185, 0.25);
}

.form-group input.invalid,
.form-group textarea.invalid {
  border-color: var(--ruby);
}

.field-error {
  display: none;
  font-size: 0.75rem;
  color: var(--ruby);
  margin-top: 0.35rem;
}

.field-error.visible {
  display: block;
}

.contact-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  font-size: 0.85rem;
}

.contact-links a {
  color: var(--dim);
  transition: color 0.2s;
}

.contact-links a:hover {
  color: var(--ruby);
}

.divider {
  color: var(--dim);
  opacity: 0.5;
}

/* ===== Footer ===== */
.footer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 3rem var(--pad) 2.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--dim);
}

.footer-exit {
  color: var(--azure);
}

.footer-note {
  margin-top: 0.4rem;
  font-size: 0.72rem;
  opacity: 0.7;
}

/* ===== Toast ===== */
#toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  z-index: 60;
  transform: translate(-50%, 150%);
  padding: 0.7rem 1.4rem;
  font-size: 0.85rem;
  background: var(--layer-2);
  color: var(--ink);
  border: 1px solid var(--ghost);
  border-radius: 6px;
  box-shadow: 0 0 24px rgba(181, 181, 181, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s var(--ease-spring), opacity 0.3s, visibility 0.3s;
}

#toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* ===== Responsivo ===== */
@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    max-width: 22rem;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .topbar {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .depth-meter {
    display: none;
  }

  .topbar-nav {
    gap: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-hint {
    display: none;
  }
}

/* ===== Reduced motion: versão calma e estática ===== */
@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;
  }

  .slice {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .photo-frame {
    animation: none;
  }

  .chip {
    animation: none;
  }
}
