:root {
  color-scheme: dark;
  --bg: #020403;
  --panel: rgba(4, 18, 9, 0.78);
  --panel-strong: #03130a;
  --red: #00ff66;
  --red-bright: #5dffa0;
  --red-deep: #006622;
  --text: #d9ffe6;
  --muted: #6fae84;
  --line: rgba(0, 255, 102, 0.24);
  --shadow: 0 0 50px rgba(0, 255, 102, 0.13);
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --sans: var(--mono);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 12%, rgba(0, 153, 68, 0.22), transparent 34rem),
    linear-gradient(180deg, #010302 0%, var(--bg) 100%);
  color: var(--text);
  font-family: var(--sans);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 4px;
}

.noise,
.grid,
.scanline {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.noise {
  z-index: -1;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.grid {
  z-index: -2;
  background-image:
    linear-gradient(rgba(0, 255, 102, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 102, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.scanline {
  z-index: 10;
  height: 14rem;
  top: -14rem;
  background: linear-gradient(to bottom, transparent, rgba(0, 255, 102, 0.035), transparent);
  animation: scan 9s linear infinite;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 8, 4, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.topbar-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.topnav a {
  color: var(--muted);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  transition: color 160ms ease, text-shadow 160ms ease;
}

.topnav a:hover,
.topnav a.is-active {
  color: var(--red-bright);
}

.topnav a.is-active {
  text-shadow: 0 0 14px rgba(0, 255, 102, 0.6);
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 40;
  background: linear-gradient(90deg, var(--red-deep), var(--red) 60%, var(--red-bright));
  box-shadow: 0 0 12px rgba(0, 255, 102, 0.5);
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

.spotlight {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 26%), rgba(0, 255, 102, 0.06), transparent 70%);
}

.brand,
.status {
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  color: var(--red);
  text-shadow: 0 0 18px rgba(0, 255, 102, 0.75);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(0, 255, 102, 0.08), 0 0 18px var(--red);
  animation: pulse 1.7s ease-in-out infinite;
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 72vh;
  padding: clamp(72px, 11vw, 138px) 0 76px;
  display: grid;
  align-content: center;
}

.hero-schiff {
  position: absolute;
  z-index: -1;
  right: clamp(-60px, -2vw, 0px);
  top: calc(50% + 56px);
  transform: translateY(-50%);
  width: min(480px, 40vw);
  opacity: 0.2;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 0 46px rgba(0, 255, 102, 0.28));
}

.profile-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: block;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 0 0 6px rgba(0, 255, 102, 0.06), 0 0 34px rgba(0, 255, 102, 0.18);
}

.cert-link {
  display: inline-block;
  margin-left: 6px;
  color: var(--red-bright);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px dashed rgba(0, 255, 102, 0.4);
  transition: color 160ms ease, border-color 160ms ease;
}

.cert-link:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}

.cert-id {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  word-break: break-all;
}

.eyebrow,
.card-kicker {
  font-family: var(--mono);
  color: var(--red-bright);
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 800;
}

h1 {
  margin: 18px 0 22px;
  max-width: 980px;
}

.glitch {
  position: relative;
  display: block;
  width: fit-content;
  font-size: clamp(3rem, 10vw, 8.7rem);
  line-height: 0.88;
  letter-spacing: -0.065em;
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: 0 0 34px rgba(0, 255, 102, 0.22);
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
}

.glitch::before {
  color: #fff;
  transform: translateX(2px);
}

.glitch::after {
  color: var(--red);
  transform: translateX(-2px);
}

.glitch.is-glitching::before,
.glitch.is-glitching::after {
  opacity: 0.65;
  animation: glitch 340ms steps(2, end) 2;
}

.subtitle {
  display: block;
  margin-top: 20px;
  color: var(--red-bright);
  font-family: var(--mono);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  letter-spacing: 0.02em;
  font-weight: 700;
}

.intro {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.75;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-button,
.ghost-button {
  min-height: 52px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  border-radius: 3px;
  font-family: var(--mono);
  font-weight: 850;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.primary-button {
  background: var(--red);
  color: #130006;
  box-shadow: 0 12px 38px rgba(0, 255, 102, 0.22);
}

.ghost-button {
  background: rgba(0, 255, 102, 0.035);
  color: var(--red-bright);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(0, 255, 102, 0.25);
}

.primary-button:active,
.ghost-button:active {
  transform: translateY(0);
}

.mini-stats {
  max-width: 700px;
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mini-stats div {
  padding: 20px 16px;
  display: grid;
  gap: 6px;
}

.mini-stats div + div {
  border-left: 1px solid var(--line);
}

.mini-stats span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
}

.mini-stats strong {
  color: var(--text);
  font-size: 1.25rem;
}

.terminal-section {
  padding: 40px 0 120px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.85fr);
  gap: 24px;
}

.terminal-card,
.incident-card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.terminal-card {
  min-height: 430px;
}

.terminal-bar {
  min-height: 54px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.terminal-bar p {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.terminal-dots {
  display: flex;
  gap: 7px;
}

.terminal-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-deep);
}

.terminal-dots span:nth-child(2) {
  opacity: 0.7;
}

.terminal-dots span:nth-child(3) {
  opacity: 0.42;
}

.secure-badge {
  justify-self: end;
  color: var(--red-bright);
}

.terminal-output {
  min-height: 375px;
  padding: clamp(22px, 4vw, 38px);
  overflow: auto;
  font-family: var(--mono);
  font-size: clamp(0.78rem, 1.7vw, 0.95rem);
  line-height: 1.85;
}

.terminal-output p {
  margin: 0 0 9px;
}

.prompt,
.ok {
  color: var(--red-bright);
}

.warning {
  color: #ffcc66;
  font-weight: 850;
}

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

.cursor {
  display: inline-block;
  width: 9px;
  height: 1.05em;
  margin-left: 2px;
  vertical-align: -2px;
  background: var(--red);
  animation: blink 850ms steps(1) infinite;
}

.incident-card {
  padding: clamp(24px, 4vw, 34px);
}

.incident-card h2 {
  margin: 12px 0 28px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.incident-card dl {
  margin: 0;
}

.incident-card dl div {
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.incident-card dt {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.incident-card dd {
  margin: 8px 0 0;
  font-weight: 760;
}

.callout {
  margin-top: 34px;
  padding: 13px;
  border: 1px dashed rgba(0, 255, 102, 0.34);
  color: var(--red-bright);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-align: center;
}

.intro + .intro {
  margin-top: 16px;
}

.cv-section {
  padding: 60px 0;
  border-top: 1px solid var(--line);
}

.prose {
  max-width: 820px;
}

.prose p,
.prose ul {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.8;
}

.prose ul {
  padding-left: 18px;
}

.prose li {
  margin-bottom: 4px;
}

.prose > :last-child {
  margin-bottom: 0;
}

.prose + .skills-grid {
  margin-top: 36px;
}

.section-head {
  margin-bottom: 36px;
}

.section-head h2 {
  margin: 10px 0 0;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.1;
}

.timeline {
  display: grid;
  gap: 26px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  transition: background 220ms ease;
}

.timeline-item:hover {
  background: linear-gradient(90deg, rgba(0, 255, 102, 0.045), transparent 70%);
}

.timeline-item:first-child {
  border-top: none;
}

.timeline-dates {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
}

.timeline-body h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  line-height: 1.4;
}

.timeline-company {
  color: var(--muted);
  font-weight: 600;
}

.timeline-body p {
  max-width: 780px;
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.75;
}

.timeline-body ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.timeline-body li {
  margin-bottom: 4px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.skill-group h3 {
  margin: 0 0 16px;
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  color: var(--red-bright);
  text-transform: uppercase;
}

.skill-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-badge {
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 3px;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text);
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.skill-badge:hover {
  border-color: var(--red);
  color: var(--red-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 255, 102, 0.18);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.contact-item {
  padding: 20px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(0, 255, 102, 0.2);
}

.contact-item span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
}

.contact-item strong {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  word-break: break-word;
}

footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 38px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

footer p {
  margin: 0;
}

.privacy {
  text-align: right;
}

footer a {
  color: var(--red-bright);
  text-decoration: none;
  transition: color 160ms ease;
}

footer a:hover {
  color: var(--red);
}

.toast {
  position: fixed;
  z-index: 20;
  right: 24px;
  bottom: 24px;
  max-width: min(420px, calc(100% - 48px));
  padding: 16px 18px;
  border: 1px solid var(--red);
  background: #021a0c;
  color: var(--text);
  box-shadow: 0 18px 60px rgba(0, 255, 102, 0.32);
  font-family: var(--mono);
  font-size: 0.76rem;
  line-height: 1.5;
  animation: toast-in 220ms ease-out;
}

@keyframes scan {
  to { transform: translateY(calc(100vh + 28rem)); }
}

@keyframes pulse {
  50% { opacity: 0.45; transform: scale(0.82); }
}

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

@keyframes glitch {
  0% { clip-path: inset(5% 0 78% 0); }
  25% { clip-path: inset(72% 0 4% 0); transform: translateX(-4px); }
  50% { clip-path: inset(35% 0 44% 0); transform: translateX(4px); }
  75% { clip-path: inset(82% 0 2% 0); }
  100% { clip-path: inset(10% 0 68% 0); }
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(12px); }
}

@media (max-width: 780px) {
  .status {
    font-size: 0;
  }

  .topnav {
    display: none;
  }

  .hero-schiff {
    width: 64vw;
    right: -14vw;
    opacity: 0.1;
  }

  .terminal-section {
    grid-template-columns: 1fr;
  }

  .terminal-bar {
    grid-template-columns: auto 1fr;
  }

  .terminal-bar p {
    text-align: right;
  }

  .secure-badge {
    display: none;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  footer {
    flex-direction: column;
  }

  .privacy {
    text-align: left;
  }
}

.game-hero {
  min-height: 38vh;
  padding-bottom: 40px;
}

.game-section {
  padding: 0 0 120px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.85fr);
  gap: 24px;
}

.game-card {
  min-height: auto;
  padding-bottom: clamp(22px, 4vw, 34px);
}

.game-hud {
  padding: clamp(18px, 3vw, 28px) clamp(22px, 4vw, 38px) 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.game-hud div {
  display: grid;
  gap: 4px;
}

.game-hud span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.game-hud strong {
  color: var(--text);
  font-family: var(--mono);
  font-size: 1.05rem;
}

.game-board {
  margin: clamp(18px, 3vw, 28px) clamp(22px, 4vw, 38px) 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  perspective: 800px;
}

.game-card-tile {
  position: relative;
  aspect-ratio: 1;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--mono);
}

.game-card-inner {
  position: absolute;
  inset: 0;
  display: block;
  transform-style: preserve-3d;
  transition: transform 220ms ease;
}

.game-card-tile.is-flipped .game-card-inner,
.game-card-tile.is-matched .game-card-inner {
  transform: rotateY(180deg);
}

.game-card-front,
.game-card-back {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--panel);
  backface-visibility: hidden;
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  color: var(--red-bright);
}

.game-card-front {
  color: var(--muted);
}

.game-card-back {
  transform: rotateY(180deg);
}

.game-card-tile.is-matched .game-card-back {
  color: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 18px rgba(0, 255, 102, 0.35);
}

.game-card-tile:disabled,
.game-card-tile.is-matched {
  cursor: default;
}

.game-actions {
  margin: clamp(18px, 3vw, 28px) clamp(22px, 4vw, 38px) 0;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.game-error {
  color: var(--red-bright);
}

.score-form {
  margin: 22px clamp(22px, 4vw, 38px) 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.score-form label {
  display: block;
  margin-bottom: 12px;
  font-family: var(--mono);
  font-size: 0.85rem;
}

.score-form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.score-form-row input {
  flex: 1;
  min-width: 160px;
  padding: 0 14px;
  height: 48px;
  border: 1px solid var(--line);
  background: var(--panel-strong);
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.85rem;
}

.score-form-row input:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 2px;
}

.score-form-hint {
  margin: 10px 0 0;
  font-size: 0.68rem;
}

.leaderboard-card h2 {
  margin: 12px 0 24px;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
}

.personal-best {
  margin: -10px 0 20px;
  padding: 10px 12px;
  border: 1px dashed rgba(0, 255, 102, 0.34);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--red-bright);
}

.personal-best strong {
  color: var(--text);
  letter-spacing: 0.04em;
}

.leaderboard-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}

.leaderboard-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.leaderboard-list li:first-child {
  border-top: none;
}

.leaderboard-name {
  color: var(--text);
  font-weight: 700;
  word-break: break-word;
}

.leaderboard-meta {
  color: var(--muted);
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 780px) {
  .game-section {
    grid-template-columns: 1fr;
  }
}

.login-section {
  padding: 24px 0 120px;
  display: grid;
}

.login-card {
  width: min(640px, 100%);
  justify-self: center;
  min-height: 0;
  padding-bottom: clamp(22px, 4vw, 34px);
}

.login-output {
  min-height: 0;
  padding-bottom: 0;
}

@media (max-width: 520px) {
  .game-board {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
  }

  .leaderboard-list li {
    flex-direction: column;
  }

  .leaderboard-meta {
    text-align: left;
  }

  .topbar,
  main,
  footer {
    width: min(100% - 22px, 1180px);
  }

  .hero {
    padding-top: 76px;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }

  .mini-stats div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .actions > * {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

main section[id] {
  scroll-margin-top: 96px;
}

.subtitle.typing::after {
  content: "▍";
  margin-left: 2px;
  color: var(--red);
  animation: blink 850ms steps(1) infinite;
}

@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .section-head,
    .timeline-item,
    .skill-group,
    .contact-item,
    .prose,
    .terminal-card,
    .incident-card {
      animation: reveal both;
      animation-timeline: view();
      animation-range: entry 0% entry 45%;
    }
  }

  @supports (animation-timeline: scroll()) {
    .progress {
      animation: grow-progress linear both;
      animation-timeline: scroll(root);
    }
  }
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes grow-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
