:root {
  color-scheme: dark;
  --bg: #05070a;
  --ink: #f4f7fb;
  --muted: #9aa8ba;
  --soft: #637185;
  --cyan: #61f4d7;
  --blue: #6ea8ff;
  --pink: #ff6fd8;
  --amber: #ffd166;
  --danger: #ff6b7a;
  --ok: #7dffa3;
  --panel: rgba(10, 14, 21, 0.72);
  --panel-strong: rgba(15, 21, 32, 0.9);
  --line: rgba(156, 180, 214, 0.18);
  --line-hot: rgba(97, 244, 215, 0.42);
  --shadow: 0 28px 95px rgba(0, 0, 0, 0.52);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
}

.page-bg,
.visual-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.page-bg {
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 18% 12%, rgba(97, 244, 215, 0.17), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(255, 111, 216, 0.12), transparent 28%),
    linear-gradient(180deg, #101828 0%, #06080d 54%, #040507 100%);
  background-size:
    42px 42px,
    42px 42px,
    auto,
    auto,
    auto;
  animation: gridDrift 34s linear infinite;
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0,
    rgba(255, 255, 255, 0.028) 50%,
    transparent 100%
  );
  background-size: 100% 7px;
  opacity: 0.26;
  mix-blend-mode: screen;
}

.beam {
  position: absolute;
  width: 55vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  filter: blur(0.5px);
  opacity: 0.24;
  transform: rotate(-18deg);
}

.beam-one {
  top: 168px;
  left: -12vw;
  animation: beamSweep 18s ease-in-out infinite;
}

.beam-two {
  right: -14vw;
  bottom: 220px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  transform: rotate(16deg);
  animation: beamSweepAlt 22s ease-in-out infinite;
}

.mesh-card {
  position: absolute;
  border: 1px solid rgba(97, 244, 215, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(97, 244, 215, 0.08), transparent 55%),
    rgba(255, 255, 255, 0.018);
  box-shadow: 0 0 42px rgba(97, 244, 215, 0.045);
  opacity: 0.62;
}

.mesh-a {
  width: 260px;
  height: 170px;
  top: 118px;
  right: 9vw;
  transform: rotate(9deg);
}

.mesh-b {
  width: 210px;
  height: 130px;
  bottom: 106px;
  left: 6vw;
  transform: rotate(-11deg);
  border-color: rgba(255, 111, 216, 0.16);
}

.app-shell {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 14px 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  grid-template-areas:
    "topbar topbar"
    "hero insights"
    "results results";
  gap: 12px;
}

body.reduce-motion .page-bg,
body.reduce-motion .beam,
body.reduce-motion .skeleton-card,
body.reduce-motion .user-card:hover::after {
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  .page-bg,
  .beam,
  .skeleton-card,
  .user-card:hover::after {
    animation: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.topbar,
.hero-panel,
.insights-panel,
.results-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  overflow: hidden;
}

.topbar::before,
.hero-panel::before,
.insights-panel::before,
.results-panel::before,
.user-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(97, 244, 215, 0.35), transparent 28%, transparent 72%, rgba(255, 111, 216, 0.22)) border-box;
  mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  border: 1px solid transparent;
  opacity: 0.55;
}

.topbar {
  grid-area: topbar;
  min-height: 54px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(97, 244, 215, 0.95), rgba(110, 168, 255, 0.95));
  color: #03100d;
  font-weight: 950;
  box-shadow:
    0 0 24px rgba(97, 244, 215, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

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

h1 {
  margin-top: 1px;
  font-size: 1rem;
  line-height: 1;
}

.eyebrow,
.section-kicker,
.user-label,
label,
time,
.result-pill,
.topbar-meta,
.search-hints span,
.insights-panel span,
.entry-count {
  color: var(--muted);
}

.eyebrow,
.section-kicker,
.user-label {
  display: block;
  font-size: 0.64rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.topbar-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  padding: 6px 9px;
  font-size: 0.78rem;
  white-space: nowrap;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(125, 255, 163, 0.14), 0 0 18px rgba(125, 255, 163, 0.58);
}

.hero-panel {
  grid-area: hero;
  min-height: 278px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 205px;
  align-items: stretch;
  gap: 14px;
  background:
    linear-gradient(135deg, rgba(97, 244, 215, 0.12), transparent 38%),
    linear-gradient(315deg, rgba(255, 111, 216, 0.08), transparent 32%),
    var(--panel);
}

.hero-panel::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(97, 244, 215, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(rgba(97, 244, 215, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 244, 215, 0.12) 1px, transparent 1px);
  background-size: 18px 18px;
  transform: rotate(10deg);
  opacity: 0.2;
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: start;
}

.hero-copy h2 {
  margin-top: 6px;
  font-size: clamp(1.38rem, 2.1vw, 1.95rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-copy p {
  max-width: 470px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.52;
}

.search-form {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  max-width: 760px;
}

.lookup-card {
  position: relative;
  z-index: 1;
  min-height: 160px;
  border: 1px solid rgba(97, 244, 215, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(2, 6, 11, 0.54);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 0 38px rgba(97, 244, 215, 0.08);
  overflow: hidden;
}

.lookup-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(97, 244, 215, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 244, 215, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.45;
}

.lookup-head {
  position: relative;
  z-index: 1;
  height: 34px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(97, 244, 215, 0.16);
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.68rem;
}

.lookup-head i {
  font-style: normal;
  border: 1px solid rgba(97, 244, 215, 0.24);
  border-radius: 999px;
  background: rgba(97, 244, 215, 0.09);
  color: var(--ink);
  padding: 3px 7px;
}

.lookup-meter {
  position: relative;
  z-index: 1;
  height: 7px;
  margin: 11px 10px;
  border: 1px solid rgba(156, 180, 214, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.lookup-meter span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--pink));
  box-shadow: 0 0 18px rgba(97, 244, 215, 0.35);
  transition: width 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lookup-data {
  position: relative;
  z-index: 1;
  padding: 0 10px 10px;
  display: grid;
  gap: 7px;
}

.lookup-data div {
  min-height: 34px;
  border: 1px solid rgba(156, 180, 214, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(97, 244, 215, 0.1), transparent),
    rgba(255, 255, 255, 0.025);
  padding: 6px 8px;
}

.lookup-data span {
  display: block;
  color: var(--muted);
  font-size: 0.66rem;
}

.lookup-data strong {
  display: block;
  margin-top: 2px;
  font-size: 0.82rem;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.8rem;
}

.input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.search-box {
  min-height: 48px;
  min-width: 0;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 38px;
  align-items: center;
  border: 1px solid var(--line-hot);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(3, 6, 10, 0.78);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.clear-button {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
}

.clear-button:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
}

.search-box:focus-within {
  border-color: rgba(97, 244, 215, 0.92);
  box-shadow:
    0 0 0 4px rgba(97, 244, 215, 0.12),
    0 0 34px rgba(97, 244, 215, 0.13),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.search-icon {
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-size: 1.25rem;
}

input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  padding: 0 16px 0 0;
}

input::placeholder {
  color: var(--soft);
}

.primary-button,
.copy-button {
  min-height: 40px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.primary-button {
  min-width: 126px;
  padding: 0 16px;
  background:
    linear-gradient(135deg, var(--cyan), var(--blue));
  color: #02100e;
  box-shadow: 0 0 28px rgba(97, 244, 215, 0.19);
}

.primary-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 38px rgba(97, 244, 215, 0.3);
}

.primary-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.search-hints {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-hints button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  padding: 5px 9px;
  font-size: 0.74rem;
  color: var(--muted);
  cursor: pointer;
}

.search-hints button:hover {
  border-color: rgba(97, 244, 215, 0.42);
  color: var(--ink);
  background: rgba(97, 244, 215, 0.08);
}

.status {
  position: relative;
  z-index: 1;
  min-height: 34px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  padding: 7px 10px;
  line-height: 1.4;
  font-size: 0.8rem;
}

.recent-panel {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.032);
  overflow: hidden;
}

.recent-head {
  min-height: 32px;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.recent-head span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.recent-head button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  padding: 5px 9px;
  cursor: pointer;
  font-size: 0.74rem;
}

.recent-head button:hover {
  color: var(--ink);
  border-color: rgba(97, 244, 215, 0.42);
}

.recent-list {
  min-height: 36px;
  padding: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.recent-list button {
  max-width: 210px;
  border: 1px solid rgba(156, 180, 214, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(97, 244, 215, 0.08), rgba(255, 111, 216, 0.035)),
    rgba(255, 255, 255, 0.035);
  color: var(--ink);
  padding: 6px 9px;
  cursor: pointer;
  font-size: 0.74rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recent-list button:hover {
  border-color: rgba(97, 244, 215, 0.42);
  box-shadow: 0 0 20px rgba(97, 244, 215, 0.08);
}

.status.error {
  color: var(--danger);
  border-color: rgba(255, 107, 122, 0.42);
  background: rgba(255, 107, 122, 0.08);
  box-shadow: 0 0 26px rgba(255, 107, 122, 0.08);
}

.insights-panel {
  grid-area: insights;
  padding: 10px;
  display: grid;
  gap: 8px;
}

.insights-panel div {
  min-height: 74px;
  display: grid;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent),
    rgba(255, 255, 255, 0.028);
  padding: 11px;
}

.insights-panel strong {
  display: block;
  min-width: 0;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1;
  overflow-wrap: anywhere;
}

.results-panel {
  grid-area: results;
  min-height: 430px;
  background:
    linear-gradient(180deg, rgba(97, 244, 215, 0.055), transparent 28%),
    var(--panel);
}

.results-head {
  min-height: 60px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.results-head h2 {
  margin-top: 3px;
  font-size: 1rem;
}

.result-pill,
.entry-count {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  padding: 7px 11px;
  font-size: 0.8rem;
}

.results-list {
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 430px), 1fr));
  gap: 14px;
}

.results-list.loading {
  opacity: 0.72;
}

.empty-state {
  grid-column: 1 / -1;
  min-height: 310px;
  margin: 0;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(156, 180, 214, 0.26);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
  padding: 28px;
}

.empty-state::before {
  content: "⌕";
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(97, 244, 215, 0.22);
  border-radius: 8px;
  background: rgba(97, 244, 215, 0.1);
  color: var(--cyan);
  font-size: 1.65rem;
  box-shadow: 0 0 32px rgba(97, 244, 215, 0.08);
}

.skeleton-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 430px), 1fr));
  gap: 14px;
}

.skeleton-card {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent),
    rgba(10, 14, 21, 0.74);
  background-size: 220% 100%, auto;
  animation: skeletonSweep 1.8s ease-in-out infinite;
}

.user-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(97, 244, 215, 0.08), transparent 34%),
    linear-gradient(315deg, rgba(255, 111, 216, 0.055), transparent 30%),
    rgba(10, 14, 21, 0.86);
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.user-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -55%;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: skewX(-18deg);
  opacity: 0;
}

.user-card:hover {
  transform: translateY(-2px);
  border-color: rgba(97, 244, 215, 0.34);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
}

.user-card:hover::after {
  opacity: 1;
  animation: cardShine 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.user-card header {
  padding: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.card-summary {
  min-height: 42px;
  padding: 10px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.024);
}

.card-summary span {
  border: 1px solid rgba(156, 180, 214, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  padding: 6px 9px;
  font-size: 0.76rem;
}

.user-card h3 {
  margin-top: 5px;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.copy-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: var(--ink);
  padding: 0 12px;
  font-size: 0.8rem;
}

.copy-button:hover {
  border-color: rgba(97, 244, 215, 0.56);
  background: rgba(97, 244, 215, 0.12);
  box-shadow: 0 0 24px rgba(97, 244, 215, 0.1);
}

.history-list {
  list-style: none;
  margin: 0;
  padding: 7px 0;
}

.history-item {
  position: relative;
  display: grid;
  grid-template-columns: 18px 128px minmax(0, 1fr);
  gap: 11px;
  padding: 12px 14px;
}

.history-item + .history-item::before {
  content: "";
  position: absolute;
  left: 22px;
  top: -8px;
  width: 1px;
  height: 22px;
  background: linear-gradient(var(--line-hot), transparent);
}

.timeline-dot {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(97, 244, 215, 0.12), 0 0 18px rgba(97, 244, 215, 0.4);
}

time {
  padding-top: 1px;
  font-size: 0.8rem;
  line-height: 1.45;
}

.field {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 7px;
  border: 1px solid rgba(97, 244, 215, 0.28);
  border-radius: 999px;
  background: rgba(97, 244, 215, 0.1);
  color: var(--cyan);
  padding: 4px 8px;
  font-size: 0.72rem;
  font-weight: 850;
}

.history-item strong {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 760;
}

.value-chip {
  min-width: 0;
  max-width: 100%;
  border: 1px solid rgba(156, 180, 214, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 5px 8px;
  overflow-wrap: anywhere;
}

.old-value {
  color: #c7d0dc;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 107, 122, 0.62);
}

.new-value {
  color: var(--ink);
  border-color: rgba(97, 244, 215, 0.22);
  background: rgba(97, 244, 215, 0.08);
}

.arrow {
  color: var(--amber);
}

@media (max-width: 920px) {
  .app-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "topbar"
      "hero"
      "insights"
      "results";
  }

  .insights-panel {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .app-shell {
    width: min(100% - 20px, 1160px);
    padding-top: 10px;
  }

  .mesh-card,
  .hero-panel::after {
    display: none;
  }

  .topbar,
  .results-head,
  .user-card header,
  .card-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar-meta,
  .primary-button,
  .copy-button,
  .card-actions,
  .entry-count,
  .recent-list button {
    width: 100%;
  }

  .topbar-meta,
  .entry-count {
    justify-content: center;
    text-align: center;
  }

  .hero-panel {
    min-height: auto;
    padding: 16px;
    grid-template-columns: 1fr;
  }

  .lookup-card {
    min-height: 148px;
  }

  .hero-copy h2 {
    font-size: 1.55rem;
  }

  .input-row,
  .insights-panel,
  .history-item {
    grid-template-columns: 1fr;
  }

  .timeline-dot,
  .history-item + .history-item::before {
    display: none;
  }
}

@keyframes gridDrift {
  from {
    background-position:
      0 0,
      0 0,
      center,
      center,
      center;
  }
  to {
    background-position:
      42px 42px,
      42px 42px,
      center,
      center,
      center;
  }
}

@keyframes beamSweep {
  0%,
  100% {
    transform: translateX(0) rotate(-18deg);
    opacity: 0.25;
  }
  50% {
    transform: translateX(16vw) rotate(-18deg);
    opacity: 0.55;
  }
}

@keyframes beamSweepAlt {
  0%,
  100% {
    transform: translateX(0) rotate(16deg);
    opacity: 0.22;
  }
  50% {
    transform: translateX(-14vw) rotate(16deg);
    opacity: 0.48;
  }
}

@keyframes scanPass {
  0%,
  24% {
    transform: translateY(-100%);
  }
  68%,
  100% {
    transform: translateY(100%);
  }
}

@keyframes cardShine {
  from {
    left: -55%;
  }
  to {
    left: 115%;
  }
}

@keyframes skeletonSweep {
  from {
    background-position: 180% 0, 0 0;
  }
  to {
    background-position: -80% 0, 0 0;
  }
}
