:root {
  --bg: #100f0d;
  --bg-soft: #191714;
  --panel: rgba(34, 30, 25, 0.88);
  --panel-strong: #241f19;
  --panel-deep: #17130f;
  --text: #fff8ea;
  --muted: #c9bfae;
  --faint: #8f8373;
  --line: rgba(255, 248, 234, 0.14);
  --accent: #d9ad63;
  --accent-strong: #f0c879;
  --accent-dark: #6f4a1f;
  --danger: #f19b72;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.24);
  --inner-glow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --space: clamp(18px, 5vw, 28px);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: var(--font);
  letter-spacing: 0;
  background:
    linear-gradient(180deg, rgba(16, 15, 13, 0.34) 0%, rgba(16, 15, 13, 0.88) 72%, rgba(16, 15, 13, 0.96) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.22) 58%, rgba(0, 0, 0, 0.68)),
    url("kracked-bg.png") center / cover fixed no-repeat,
    linear-gradient(150deg, #080807 0%, #17130f 52%, #23180f 100%);
}

button {
  font: inherit;
}

.app-shell {
  width: min(100%, 1180px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 18px;
  padding-bottom: calc(18px + env(safe-area-inset-bottom));
  display: grid;
  place-items: center;
}

.app-shell:focus {
  outline: none;
}

.screen {
  width: 100%;
  display: none;
  opacity: 0;
  transform: translateY(10px);
}

.screen.is-active {
  display: block;
  animation: rise 210ms ease both;
}

.flow-card {
  width: min(100%, 520px);
  margin: 0 auto;
  padding: var(--space);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.landing-card {
  min-height: min(720px, calc(100vh - 36px));
  display: grid;
  grid-template-rows: auto minmax(180px, 0.72fr) auto;
  gap: 18px;
  align-content: stretch;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.62)),
    rgba(16, 15, 13, 0.34);
}

.landing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(16, 15, 13, 0.34) 56%, rgba(16, 15, 13, 0.78) 100%);
  pointer-events: none;
  z-index: -2;
}

.landing-card > * {
  position: relative;
}

.landing-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.13em;
}

.landing-brand img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(240, 200, 121, 0.2);
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.86;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
}

.landing-visual {
  min-height: 210px;
  align-self: stretch;
  margin: 0 calc(var(--space) * -0.35);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(16, 15, 13, 0.88)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 48%, rgba(0, 0, 0, 0.24)),
    url("landing-pastry.png") center / cover no-repeat;
  box-shadow: inset 0 -70px 90px rgba(0, 0, 0, 0.72), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: 0.9;
}

.landing-content {
  display: grid;
  gap: 0;
}

.kicker {
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 11px;
  border: 1px solid rgba(240, 200, 121, 0.18);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.18);
  font-size: 0.84rem;
}

.preview-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin: 20px 0 14px;
}

.preview-card {
  min-height: 82px;
  padding: 12px;
  display: grid;
  align-content: end;
  gap: 5px;
  border: 1px solid rgba(240, 200, 121, 0.16);
  border-radius: var(--radius-md);
  background:
    linear-gradient(160deg, rgba(240, 200, 121, 0.16), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.18);
  box-shadow: var(--inner-glow);
}

.preview-card span {
  font-size: 0.86rem;
  font-weight: 820;
}

.preview-card small {
  color: var(--faint);
  font-size: 0.68rem;
  line-height: 1.2;
}

.topbar {
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
}

.back-button,
.ghost-button {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.back-button:hover,
.ghost-button:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.back-button[hidden] {
  visibility: hidden;
}

.progress-wrap {
  display: grid;
  gap: 7px;
}

.progress-meta {
  color: var(--faint);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.progress-track {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.progress-fill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transition: width 200ms ease;
}

.eyebrow,
.strap,
.meta-label {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(2.6rem, 12vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 8vw, 3.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.lead {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.microcopy {
  color: var(--faint);
  font-size: 0.9rem;
  line-height: 1.45;
}

.actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.button {
  min-height: 52px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #17110a;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  box-shadow: 0 14px 28px rgba(217, 173, 99, 0.18);
  cursor: pointer;
  font-weight: 780;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button.secondary {
  color: var(--text);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.button:hover,
.answer-card:hover {
  transform: translateY(-2px);
}

.button:active,
.answer-card:active {
  transform: translateY(0);
}

.answer-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.answer-card {
  width: 100%;
  min-height: 82px;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  text-align: left;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  cursor: pointer;
  box-shadow: var(--shadow-soft), var(--inner-glow);
  position: relative;
  overflow: hidden;
  transition: transform 190ms ease, border-color 190ms ease, background 190ms ease, opacity 190ms ease, box-shadow 190ms ease;
}

.answer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 0%, rgba(240, 200, 121, 0.16), transparent 42%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 190ms ease;
}

.answer-index {
  width: fit-content;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border: 1px solid rgba(240, 200, 121, 0.18);
  border-radius: 999px;
  color: var(--accent-strong) !important;
  background: rgba(0, 0, 0, 0.16);
  font-size: 0.72rem;
  font-weight: 800;
}

.answer-card strong {
  font-size: 1.04rem;
}

.answer-card span {
  color: var(--muted);
  line-height: 1.35;
}

.answer-card:hover,
.answer-card:focus-visible {
  border-color: rgba(240, 200, 121, 0.58);
  background: rgba(240, 200, 121, 0.09);
}

.answer-card:hover::after,
.answer-card:focus-visible::after,
.answer-card.is-picked::after {
  opacity: 1;
}

.answer-card.is-picked {
  border-color: rgba(240, 200, 121, 0.8);
  background:
    linear-gradient(145deg, rgba(240, 200, 121, 0.22), rgba(255, 255, 255, 0.035)),
    rgba(240, 200, 121, 0.09);
  box-shadow: 0 18px 42px rgba(217, 173, 99, 0.16), var(--inner-glow);
  transform: scale(0.99);
}

.answer-card.is-muted {
  opacity: 0.42;
  transform: scale(0.985);
}

.answer-card:disabled {
  cursor: default;
}

.image-card {
  min-height: 188px;
  padding: 0;
  overflow: hidden;
}

.image-card .placeholder {
  min-height: 124px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(140deg, var(--shot-a), var(--shot-b)),
    radial-gradient(circle at 70% 24%, rgba(255, 255, 255, 0.3), transparent 4rem);
}

.image-card .answer-copy {
  padding: 15px;
}

.tags,
.why-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.chip {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(240, 200, 121, 0.24);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--text);
  background: rgba(240, 200, 121, 0.08);
  font-size: 0.86rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.result-layout {
  width: 100%;
  display: grid;
  gap: 18px;
  align-items: start;
}

.result-hero {
  width: min(100%, 520px);
  margin: 0 auto;
  padding: clamp(26px, 7vw, 44px);
  border: 1px solid rgba(240, 200, 121, 0.46);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 80% 4%, rgba(240, 200, 121, 0.3), transparent 16rem),
    radial-gradient(circle at 10% 100%, rgba(111, 74, 31, 0.28), transparent 14rem),
    linear-gradient(150deg, rgba(240, 200, 121, 0.18), rgba(255, 255, 255, 0.035) 44%),
    #201a14;
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(240, 200, 121, 0.08),
    0 0 54px rgba(217, 173, 99, 0.13),
    var(--inner-glow);
  animation: resultReveal 220ms ease both;
  position: relative;
  overflow: hidden;
}

.result-hero::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 248, 234, 0.08);
  border-radius: calc(var(--radius-xl) - 12px);
  pointer-events: none;
}

.result-image-slot {
  min-height: 118px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(240, 200, 121, 0.2);
  border-radius: var(--radius-lg);
  color: rgba(255, 248, 234, 0.34);
  background:
    radial-gradient(circle at 62% 18%, rgba(240, 200, 121, 0.16), transparent 7rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018));
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.result-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.match-label {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  color: #1a1208;
  background: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.result-name {
  margin-bottom: 16px;
  font-size: clamp(3rem, 13vw, 5.4rem);
  line-height: 0.88;
  animation: resultNameIn 260ms ease 80ms both;
}

.result-tags .chip {
  animation: chipIn 220ms ease both;
}

.result-tags .chip:nth-child(2) {
  animation-delay: 80ms;
}

.result-tags .chip:nth-child(3) {
  animation-delay: 140ms;
}

.best-match {
  margin: 24px 0 18px;
  padding: 19px;
  border: 1px solid rgba(240, 200, 121, 0.24);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(240, 200, 121, 0.14), rgba(255, 255, 255, 0.03)),
    rgba(0, 0, 0, 0.2);
}

.best-match p,
.share-line {
  margin-bottom: 0;
}

.share-line {
  margin: 0;
  padding-left: 16px;
  border-left: 3px solid var(--accent-strong);
  color: var(--accent-strong);
  font-weight: 720;
  line-height: 1.5;
  font-size: 1.05rem;
}

.result-stack {
  width: min(100%, 520px);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.info-panel {
  padding: 20px;
  border: 1px solid rgba(255, 248, 234, 0.1);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.032);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.recommendation-grid {
  display: grid;
  gap: 11px;
}

.recommendation-card {
  width: 100%;
  min-height: 86px;
  padding: 12px;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 13px;
  align-items: center;
  border: 1px solid rgba(240, 200, 121, 0.16);
  border-radius: var(--radius-md);
  color: var(--text);
  text-align: left;
  background:
    linear-gradient(145deg, rgba(240, 200, 121, 0.12), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.12);
  box-shadow: var(--inner-glow);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.recommendation-card:hover {
  border-color: rgba(240, 200, 121, 0.42);
  background:
    linear-gradient(145deg, rgba(240, 200, 121, 0.18), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

.recommendation-image {
  width: 62px;
  height: 62px;
  border: 1px dashed rgba(240, 200, 121, 0.2);
  border-radius: 14px;
  background:
    radial-gradient(circle at 65% 22%, rgba(255, 248, 234, 0.2), transparent 1.8rem),
    linear-gradient(135deg, rgba(240, 200, 121, 0.18), rgba(255, 255, 255, 0.025));
}

.recommendation-card--secondary .recommendation-image {
  background:
    radial-gradient(circle at 68% 24%, rgba(255, 248, 234, 0.18), transparent 1.8rem),
    linear-gradient(135deg, rgba(201, 191, 174, 0.18), rgba(255, 255, 255, 0.025));
}

.recommendation-card--wildcard .recommendation-image {
  background:
    radial-gradient(circle at 68% 24%, rgba(255, 248, 234, 0.2), transparent 1.8rem),
    linear-gradient(135deg, rgba(241, 155, 114, 0.22), rgba(240, 200, 121, 0.07));
}

.recommendation-copy {
  display: grid;
  gap: 2px;
}

.recommendation-copy .meta-label {
  margin-bottom: 0;
}

.recommendation-copy strong {
  font-size: 0.98rem;
  line-height: 1.24;
}

.toast {
  min-height: 28px;
  margin-top: 10px;
  color: var(--accent-strong);
  font-size: 0.9rem;
}

.remix-callout {
  margin-top: 14px;
  padding: 15px;
  border: 1px solid rgba(240, 200, 121, 0.2);
  border-radius: var(--radius-md);
  background: rgba(240, 200, 121, 0.075);
}

.remix-callout p:last-child {
  margin-bottom: 0;
}

button:focus-visible {
  outline: 3px solid rgba(240, 200, 121, 0.75);
  outline-offset: 3px;
}

@media (min-width: 760px) {
  .app-shell {
    padding: 32px;
  }

  .actions {
    grid-template-columns: 1fr 1fr;
  }

  .actions .button:first-child:last-child {
    grid-column: 1 / -1;
  }

  .result-layout {
    grid-template-columns: minmax(380px, 560px) minmax(300px, 420px);
    justify-content: center;
    gap: 30px;
  }

  .result-hero {
    position: sticky;
    top: 32px;
  }
}

@media (max-width: 430px) {
  .app-shell {
    min-height: 100svh;
    padding: 8px;
    padding-bottom: calc(34px + env(safe-area-inset-bottom));
    align-items: start;
  }

  .flow-card,
  .result-hero,
  .info-panel {
    border-radius: 20px;
  }

  .flow-card {
    padding: 14px;
  }

  .landing-card {
    min-height: min(680px, calc(100svh - 16px));
    grid-template-rows: auto minmax(132px, 0.58fr) auto;
    gap: 12px;
  }

  .landing-brand {
    gap: 8px;
    font-size: 0.64rem;
  }

  .landing-brand img {
    width: 34px;
    height: 34px;
  }

  .landing-visual {
    min-height: 138px;
    margin: 0 -6px;
    border-radius: 18px;
    background-position: center;
  }

  h1 {
    margin-bottom: 8px;
    font-size: clamp(1.92rem, 9vw, 2.42rem);
    line-height: 0.98;
  }

  h2 {
    margin-bottom: 7px;
    font-size: clamp(1.42rem, 6.4vw, 1.9rem);
    line-height: 1;
  }

  h3 {
    margin-bottom: 8px;
    font-size: 0.98rem;
  }

  .lead {
    margin-bottom: 0;
    font-size: 0.88rem;
    line-height: 1.36;
  }

  .microcopy {
    margin-bottom: 0;
    font-size: 0.78rem;
    line-height: 1.32;
  }

  .eyebrow,
  .strap,
  .meta-label {
    margin-bottom: 8px;
    font-size: 0.68rem;
  }

  .kicker {
    margin-bottom: 8px;
    padding: 5px 8px;
    font-size: 0.72rem;
  }

  .preview-strip {
    grid-template-columns: 1fr;
    gap: 6px;
    margin: 9px 0 8px;
  }

  .preview-card {
    min-height: 38px;
    padding: 7px 9px;
    align-content: center;
  }

  .preview-card span {
    font-size: 0.8rem;
  }

  .preview-card small {
    font-size: 0.64rem;
  }

  .topbar {
    grid-template-columns: 48px 1fr 48px;
    gap: 8px;
    margin-bottom: 11px;
  }

  .back-button {
    min-height: 40px;
    font-size: 0.84rem;
  }

  .progress-wrap {
    gap: 5px;
  }

  .progress-meta {
    font-size: 0.67rem;
  }

  .progress-track {
    height: 6px;
  }

  .actions {
    gap: 8px;
    margin-top: 12px;
  }

  .button {
    min-height: 46px;
  }

  .answer-grid {
    gap: 8px;
    margin-top: 12px;
    padding-bottom: calc(26px + env(safe-area-inset-bottom));
  }

  .answer-card {
    min-height: 66px;
    padding: 9px 11px;
    gap: 3px;
    border-radius: 15px;
  }

  .answer-index {
    min-height: 20px;
    padding: 2px 7px;
    font-size: 0.65rem;
  }

  .answer-card strong {
    font-size: 0.92rem;
  }

  .answer-card span {
    font-size: 0.8rem;
    line-height: 1.22;
  }

  .image-card {
    min-height: 150px;
  }

  .image-card .placeholder {
    min-height: 86px;
  }

  .image-card .answer-copy {
    padding: 11px;
  }

  .result-layout {
    gap: 8px;
    padding-bottom: calc(32px + env(safe-area-inset-bottom));
  }

  .result-hero {
    padding: 16px;
  }

  .result-card-top {
    gap: 8px;
    margin-bottom: 10px;
  }

  .match-label {
    min-height: 30px;
    padding: 6px 10px;
    font-size: 0.72rem;
  }

  .result-name {
    margin-bottom: 8px;
    font-size: clamp(2.28rem, 10.8vw, 3rem);
  }

  .result-tags {
    gap: 7px;
  }

  .chip {
    min-height: 30px;
    padding: 6px 9px;
    font-size: 0.78rem;
  }

  .best-match {
    margin: 12px 0 10px;
    padding: 12px;
  }

  .share-line {
    padding-left: 12px;
    font-size: 0.9rem;
    line-height: 1.36;
  }

  .result-stack {
    gap: 8px;
  }

  .info-panel {
    padding: 12px;
  }

  .result-stack .info-panel:nth-child(1) {
    order: 2;
  }

  .result-stack .info-panel:nth-child(2) {
    order: 1;
  }

  .result-stack .info-panel:nth-child(3) {
    order: 3;
  }

  .result-stack .info-panel:nth-child(4) {
    order: 4;
  }

  .result-image-slot {
    display: none;
  }

  .result-card-top {
    display: grid;
  }

  .recommendation-card {
    grid-template-columns: 54px 1fr;
    min-height: 68px;
    padding: 8px;
    gap: 9px;
  }

  .recommendation-image {
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }

  .recommendation-copy strong {
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .remix-callout {
    margin-top: 8px;
    padding: 10px;
  }

  .toast {
    min-height: 22px;
    margin-top: 8px;
    font-size: 0.82rem;
  }
}

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

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes resultReveal {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes resultNameIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes chipIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
