/* =========================================================
   Yash Pandey — CLI-native terminal portfolio
   Systems / Terminal aesthetic
   ========================================================= */

:root {
  --bg: #0a0b0d;
  --surface: #0d0e11;
  --border: #1e2024;
  --border-2: #2c2f36;
  --text: #e8eaed;
  --muted: #8b9099;
  --accent: #b9ff66;
  --accent-dim: rgba(185, 255, 102, 0.14);

  --mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --sans: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1080px;
  --r: 10px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--bg);
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 30px 30px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

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

strong { color: var(--text); font-weight: 600; }

.accent { color: var(--accent); }

.dot { color: var(--muted); padding: 0 0.15em; }

/* ---- Focus + skip link ---- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--accent);
  color: #06210a;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 6px;
  transition: top 0.18s var(--ease);
}
.skip-link:focus { top: 12px; }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 11, 13, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}

.wordmark {
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: baseline;
}
.wordmark__txt { color: var(--text); }
.wordmark__sep { color: var(--muted); }
.wordmark__path { color: var(--accent); }
.wordmark__caret {
  display: inline-block;
  width: 8px;
  height: 1.02em;
  margin-left: 5px;
  transform: translateY(2px);
  background: var(--accent);
  animation: blink 1.1s steps(1) infinite;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.primary-nav ul {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav a {
  font-family: var(--mono);
  font-size: 0.88rem;
  color: var(--muted);
  position: relative;
  padding: 4px 0;
  transition: color 0.16s var(--ease);
}
.primary-nav ul a::before {
  content: "";
  color: var(--accent);
  opacity: 0;
  transition: opacity 0.16s var(--ease);
}
.primary-nav ul a:hover,
.primary-nav ul a:focus-visible { color: var(--text); }
.primary-nav ul a:hover::before,
.primary-nav ul a:focus-visible::before {
  content: "~/";
  opacity: 1;
  color: var(--accent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.92rem;
  color: var(--accent);
  border: 1px solid var(--border-2);
  border-radius: 8px;
  padding: 10px 18px;
  transition: border-color 0.16s var(--ease), background 0.16s var(--ease), transform 0.16s var(--ease);
}
.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: var(--accent);
  background: var(--accent-dim);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--border-2);
  border-radius: 7px;
  padding: 9px 10px;
  cursor: pointer;
}
.nav-toggle__bar {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero { padding: 64px 0 56px; }

.terminal {
  border: 1px solid var(--border-2);
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.8);
}

.terminal__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  background: #101116;
  border-bottom: 1px solid var(--border);
}
.terminal__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.terminal__dot--r { background: #ff5f57; }
.terminal__dot--y { background: #febc2e; }
.terminal__dot--g { background: #28c840; }
.terminal__title {
  margin-left: 10px;
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.terminal__body { padding: 28px 30px 32px; }

.line--cmd {
  font-family: var(--mono);
  font-size: 0.92rem;
  color: var(--text);
  margin: 0 0 4px;
}
.line--cmd:not(:first-child) { margin-top: 22px; }

.prompt {
  color: var(--accent);
  font-family: var(--mono);
  margin-right: 8px;
  font-weight: 500;
}
.prompt--sm { margin-right: 6px; }

.hero-name {
  font-family: var(--sans);
  font-size: clamp(2.4rem, 7vw, 4.1rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 4px 0 6px;
}

.hero-tagline {
  font-family: var(--sans);
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
}

.hero-role {
  font-family: var(--mono);
  font-size: 0.92rem;
  color: var(--muted);
  margin: 4px 0 0;
  line-height: 1.55;
}
.hero-role .dot { padding: 0 0.2em; }

.hero-status { margin: 6px 0 0; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--text);
  border: 1px solid var(--border-2);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 999px;
  padding: 6px 14px;
}
.chip__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(185, 255, 102, 0.5);
  animation: pulse 2.4s var(--ease) infinite;
}

.cursor {
  display: inline-block;
  width: 9px;
  height: 1.05em;
  margin-left: 3px;
  transform: translateY(2px);
  background: var(--accent);
  animation: blink 1.1s steps(1) infinite;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 13px 18px;
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: transform 0.16s var(--ease), background 0.16s var(--ease), border-color 0.16s var(--ease);
}
.btn--primary {
  background: var(--accent);
  color: #06210a;
}
.btn--primary:hover,
.btn--primary:focus-visible { transform: translateY(-2px); background: #c8ff80; }
.btn--ghost {
  border-color: var(--border-2);
  color: var(--text);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: var(--accent-dim);
}

/* ---- Stats strip ---- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}
.stat {
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
  padding: 20px 18px;
  transition: border-color 0.18s var(--ease), transform 0.18s var(--ease);
}
.stat:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
}
.stat__num {
  display: block;
  font-family: var(--mono);
  font-size: clamp(1.5rem, 3.4vw, 2rem);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stat__label {
  display: block;
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 7px;
  letter-spacing: 0.01em;
}

/* =========================================================
   Sections
   ========================================================= */
.section { padding: 56px 0; border-top: 1px solid var(--border); scroll-margin-top: 72px; }

.section-head {
  font-family: var(--mono);
  font-size: clamp(1.05rem, 2.6vw, 1.3rem);
  font-weight: 500;
  color: var(--text);
  margin: 0 0 34px;
  letter-spacing: -0.01em;
}
.section-head .prompt { font-size: 1em; }
.flag { color: var(--muted); font-weight: 400; }

/* ---- About ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 44px;
  align-items: start;
}
.about-copy p { margin: 0 0 16px; color: var(--muted); }
.about-copy .lead {
  font-family: var(--sans);
  font-size: 1.22rem;
  line-height: 1.55;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 20px;
}
.about-copy strong { color: var(--text); }

.about-points {
  list-style: none;
  margin: 0;
  padding: 0;
}
.about-points li {
  position: relative;
  padding-left: 22px;
  margin: 10px 0;
  color: var(--muted);
}
.about-points li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--mono);
  font-weight: 600;
}

.about-meta {
  list-style: none;
  margin: 24px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--border);
}
.about-meta li {
  display: flex;
  gap: 16px;
  font-family: var(--mono);
  font-size: 0.85rem;
  padding: 5px 0;
}
.about-meta .k {
  color: var(--accent);
  min-width: 64px;
}
.about-meta .v { color: var(--muted); }

/* ---- About avatar placeholder ---- */
.avatar { margin: 0; max-width: 280px; }
.avatar__frame {
  border: 1px solid var(--border-2);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}
.avatar__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background: #101116;
  border-bottom: 1px solid var(--border);
}
.avatar__path {
  margin-left: 8px;
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--muted);
}
.avatar__img {
  display: block;
  width: 100%;
  height: auto;
}
.avatar__cap {
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 10px;
  text-align: center;
}

/* ---- Experience timeline ---- */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--border-2);
}
.tl-item {
  position: relative;
  padding-left: 36px;
  margin-bottom: 22px;
}
.tl-marker {
  position: absolute;
  left: 0;
  top: 7px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border-2);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.tl-item:first-child .tl-marker {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-dim);
}
.tl-card {
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
  padding: 20px 22px;
  transition: border-color 0.18s var(--ease), transform 0.18s var(--ease);
}
.tl-card:hover {
  border-color: var(--border-2);
  transform: translateX(3px);
}
.tl-item:hover .tl-marker { border-color: var(--accent); }

/* Featured (emphasised) timeline entry */
.tl-item--featured .tl-card {
  border-color: var(--border-2);
  box-shadow: inset 3px 0 0 0 var(--accent);
  background: linear-gradient(90deg, var(--accent-dim), transparent 55%), var(--surface);
}
.tl-item--featured .tl-marker {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-dim);
}
.tl-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 5px;
  padding: 2px 7px;
  vertical-align: middle;
  white-space: nowrap;
}
.tl-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.tl-role {
  font-family: var(--sans);
  font-size: 1.12rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}
.tl-sub { color: var(--muted); font-weight: 400; font-size: 0.92rem; }
.tl-date {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--accent);
  white-space: nowrap;
}
.tl-org {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--muted);
  margin: 5px 0 12px;
}
.tl-co {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.16s var(--ease);
}
.tl-co:hover,
.tl-co:focus-visible { border-color: var(--accent); }
.tl-points {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tl-points li {
  position: relative;
  padding-left: 20px;
  margin: 7px 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}
.tl-points li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--mono);
}

.edu {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 30px;
  padding: 16px 20px;
  border: 1px dashed var(--border-2);
  border-radius: var(--r);
}
.edu__tag {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 5px;
  padding: 3px 7px;
  flex-shrink: 0;
  margin-top: 2px;
}
.edu__txt { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ---- Projects ---- */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.proj {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
  padding: 20px 20px 18px;
  transition: border-color 0.18s var(--ease), transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.proj:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.9);
}
.proj__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.proj__name {
  font-family: var(--mono);
  font-size: 1.02rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}
.proj__star { color: var(--muted); display: inline-flex; }
.proj:hover .proj__star { color: var(--accent); }
.proj__tech {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--accent);
  margin: 9px 0 11px;
  letter-spacing: 0.01em;
}
.proj__desc {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
  margin: 0 0 16px;
  flex-grow: 1;
}
.proj__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.proj__links a {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--text);
  transition: color 0.16s var(--ease);
}
.proj__links a:hover,
.proj__links a:focus-visible { color: var(--accent); }

/* ---- Skills ---- */
.skill-group { margin-bottom: 28px; }
.skill-label {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 12px;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.chips .chip {
  cursor: default;
  transition: border-color 0.16s var(--ease), color 0.16s var(--ease), transform 0.16s var(--ease);
}
.chips .chip:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.chip--core {
  color: var(--accent);
  border-color: var(--border-2);
  background: var(--accent-dim);
}

.achievements { margin-top: 36px; }
.ach-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ach-list li {
  position: relative;
  padding-left: 22px;
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--muted);
}
.ach-list li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.78rem;
}

/* ---- Contact ---- */
.contact__lead {
  font-family: var(--sans);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 22px;
  max-width: 36ch;
  letter-spacing: -0.01em;
}
.contact__mail {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--mono);
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  color: var(--accent);
  max-width: 100%;
  overflow-wrap: anywhere;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.16s var(--ease);
}
.contact__mail:hover,
.contact__mail:focus-visible { border-color: var(--accent); }
.contact__loc {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--muted);
  margin: 12px 0 26px;
}

.socials {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-2);
  border-radius: 9px;
  color: var(--muted);
  transition: color 0.16s var(--ease), border-color 0.16s var(--ease), transform 0.16s var(--ease), background 0.16s var(--ease);
}
.socials a:hover,
.socials a:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-dim);
  transform: translateY(-3px);
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 26px 0;
}
.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.footer-line {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}
.footer-top {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.16s var(--ease);
}
.footer-top:hover,
.footer-top:focus-visible { color: var(--accent); }

/* =========================================================
   Animations
   ========================================================= */
@keyframes blink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(185, 255, 102, 0.45); }
  70% { box-shadow: 0 0 0 7px rgba(185, 255, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(185, 255, 102, 0); }
}

/* Page-load reveal (hero) — only active when JS present */
.js .reveal-hero {
  opacity: 0;
  transform: translateY(14px);
  animation: heroIn 0.6s var(--ease) forwards;
  animation-delay: var(--d, 0ms);
}
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Reveal-on-scroll — only hidden when JS present */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .avatar { max-width: 320px; }
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 18px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0s linear 0.2s;
  }
  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0s;
  }
  .primary-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .primary-nav ul li { border-bottom: 1px solid var(--border); }
  .primary-nav ul a { display: block; padding: 13px 0; font-size: 0.95rem; }
  .nav-cta { margin-top: 14px; justify-content: center; }

  .hero { padding: 40px 0 40px; }
  .terminal__body { padding: 22px 18px 26px; }
  .terminal__title { display: none; }
  .stats { grid-template-columns: 1fr 1fr; }
  .proj-grid { grid-template-columns: 1fr; }
  .ach-list { grid-template-columns: 1fr; }
  .section { padding: 44px 0; }
  .tl-top { flex-direction: column; gap: 2px; }
  .wrap { padding: 0 18px; }
}

/* =========================================================
   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;
  }
  .js .reveal-hero,
  .js .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .cursor,
  .wordmark__caret { animation: none; opacity: 1; }
  .chip__dot { animation: none; }
}