/* Hand-Drawn Design System — AURA */
:root {
  --paper: #fdfbf7;
  --pencil: #2d2d2d;
  --muted: #e5e0d8;
  --marker: #ff4d4d;
  --pen: #2d5da1;
  --postit: #fff9c4;
  --white: #ffffff;
  --shadow: 4px 4px 0 0 #2d2d2d;
  --shadow-lg: 8px 8px 0 0 #2d2d2d;
  --shadow-sm: 3px 3px 0 0 rgba(45, 45, 45, 0.15);
  --wobbly: 255px 15px 225px 15px / 15px 225px 15px 255px;
  --wobbly-md: 185px 12px 195px 10px / 12px 180px 14px 190px;
  --wobbly-sm: 120px 8px 130px 6px / 8px 120px 10px 125px;
  --font-head: "Kalam", cursive;
  --font-body: "Patrick Hand", cursive;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--pencil);
  background-color: var(--paper);
  background-image: radial-gradient(var(--muted) 1px, transparent 1px);
  background-size: 24px 24px;
  line-height: 1.5;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
}

a { color: var(--pen); text-decoration: underline; text-decoration-style: wavy; text-underline-offset: 3px; }
a:hover { color: var(--marker); }

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 3px solid var(--pencil);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-logo {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--pencil);
  transform: rotate(-1deg);
}

.nav-links { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; align-items: center; }
.nav-links a { text-decoration: none; font-size: 1.1rem; color: var(--pencil); }
.nav-links a:hover, .nav-links a.active { color: var(--marker); text-decoration: underline wavy; }

.btn-sketch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.6rem 1.4rem;
  font-family: var(--font-body);
  font-size: 1.15rem;
  background: var(--white);
  color: var(--pencil);
  border: 3px solid var(--pencil);
  border-radius: var(--wobbly-sm);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s, background 0.1s, color 0.1s;
  text-decoration: none;
}

.btn-sketch:hover {
  background: var(--marker);
  color: var(--white);
  box-shadow: 2px 2px 0 0 var(--pencil);
  transform: translate(2px, 2px);
}

.btn-sketch:active {
  box-shadow: none;
  transform: translate(4px, 4px);
}

.btn-sketch.secondary {
  background: var(--muted);
}
.btn-sketch.secondary:hover {
  background: var(--pen);
  color: var(--white);
}

.btn-sketch.pen:hover { background: var(--pen); }

.card-sketch {
  background: var(--white);
  border: 2px solid var(--pencil);
  border-radius: var(--wobbly-md);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  position: relative;
}

.card-sketch.postit { background: var(--postit); }
.card-sketch.tilt-1 { transform: rotate(1deg); }
.card-sketch.tilt-2 { transform: rotate(-1.5deg); }

.card-sketch.tape::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 80px;
  height: 24px;
  background: rgba(200, 200, 200, 0.55);
  border: 1px dashed var(--pencil);
}

.input-sketch {
  width: 100%;
  padding: 0.65rem 0.9rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  border: 2px solid var(--pencil);
  border-radius: var(--wobbly-sm);
  background: var(--white);
  color: var(--pencil);
}

.input-sketch:focus {
  outline: none;
  border-color: var(--pen);
  box-shadow: 0 0 0 3px rgba(45, 93, 161, 0.2);
}

.section { padding: 4rem 1.5rem; max-width: 72rem; margin: 0 auto; }
.section-title { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.5rem; }
.section-sub { color: var(--pencil); opacity: 0.75; font-size: 1.2rem; margin-bottom: 2rem; }

.grid-2 { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.grid-3 { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.hero {
  text-align: center;
  padding: 3rem 1.5rem 4rem;
  max-width: 48rem;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  margin: 0 0 1rem;
}

.hero .scribble {
  display: inline-block;
  transform: rotate(8deg);
  color: var(--marker);
}

.badge-sketch {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  background: var(--postit);
  border: 2px dashed var(--pencil);
  border-radius: var(--wobbly-sm);
  font-size: 0.95rem;
  transform: rotate(-2deg);
}

.alert-item {
  border: 2px solid var(--pencil);
  border-radius: var(--wobbly-sm);
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: var(--white);
}

.alert-item.critical { border-left: 6px solid var(--marker); }
.alert-item.warning { border-left: 6px solid #f59e0b; }
.alert-item.pending { border-left: 6px dashed var(--pen); }

.status-ok { color: #15803d; font-weight: 700; }
.status-err { color: var(--marker); }

.footer-sketch {
  border-top: 3px solid var(--pencil);
  padding: 2rem 1.5rem;
  text-align: center;
  margin-top: 3rem;
  background: var(--white);
}

code, .mono {
  font-family: ui-monospace, monospace;
  font-size: 0.9em;
  background: var(--muted);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

.steps { counter-reset: step; list-style: none; padding: 0; }
.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.25rem;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  border: 2px solid var(--pencil);
  border-radius: 50% 40% 55% 45% / 45% 50% 40% 55%;
  background: var(--postit);
}

.hidden { display: none !important; }

/* Simulation layout */
.sim-shell { display: flex; flex-direction: column; min-height: 100vh; }
.sim-main {
  flex: 1;
  display: grid;
  gap: 1rem;
  padding: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1100px) {
  .sim-main {
    grid-template-columns: 280px 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .sim-upload { grid-row: span 3; }
  .sim-video { grid-column: span 2; }
  .sim-events { grid-column: 1 / -1; }
}

.chart-fit { min-height: 180px; height: 100%; }
.video-fit { width: 100%; max-height: 280px; background: #111; border-radius: var(--wobbly-sm); border: 2px solid var(--pencil); }

.stat-mini {
  text-align: center;
  padding: 0.75rem;
  border: 2px dashed var(--pencil);
  border-radius: var(--wobbly-sm);
  background: var(--paper);
}
.stat-label { display: block; font-size: 0.85rem; opacity: 0.7; }
.stat-value-sm { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; }

.upload-row { margin-bottom: 0.75rem; }
.upload-row-head { display: flex; gap: 0.5rem; align-items: center; margin-bottom: 0.25rem; }
.upload-row-num {
  width: 1.5rem; height: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--pencil); border-radius: 50%;
  font-size: 0.8rem; font-weight: 700;
}
.file-input { width: 100%; font-size: 0.9rem; }

.btn-spinner {
  width: 1rem; height: 1rem;
  border: 2px solid var(--pencil);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.map-box {
  height: 200px;
  border: 2px dashed var(--pencil);
  border-radius: var(--wobbly-sm);
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

/* Scroll reveal + pitch page */
.reveal {
  opacity: 0;
  transform: translateY(28px) rotate(0.5deg);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.case-card { overflow: hidden; padding: 0; }
.case-card .case-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-bottom: 3px solid var(--pencil);
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-card .case-img-wrap svg,
.case-card .case-img-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.case-card:hover .case-img-wrap svg,
.case-card:hover .case-img-wrap img { transform: scale(1.02); }
.case-card .case-body { padding: 1.25rem; }

.problem-gap {
  margin: 2rem 0 1.5rem;
  padding: 1.5rem;
  background: var(--postit);
  border: 3px solid var(--pencil);
  border-radius: var(--wobbly-md);
  box-shadow: var(--shadow);
  transform: rotate(-0.5deg);
}
.problem-gap h3 { margin-bottom: 0.75rem; color: var(--marker); }
.problem-gap ul { margin: 0.5rem 0 0 1.25rem; }
.problem-gap li { margin-bottom: 0.35rem; }

/* Simplified simulation upload */
.sim-upload-clean { display: flex; flex-direction: column; gap: 1rem; }
.sim-file-slot {
  padding: 0.75rem;
  border: 2px dashed var(--pencil);
  border-radius: var(--wobbly-sm);
  background: var(--paper);
}
.sim-file-slot label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.sim-file-slot .file-name {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-top: 0.25rem;
  word-break: break-all;
}
.sim-divider {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0.25rem 0;
}
.sim-divider::before,
.sim-divider::after {
  content: "—";
  margin: 0 0.5rem;
}
.case-tag {
  display: inline-block; font-size: 0.8rem; padding: 0.15rem 0.5rem;
  background: var(--marker); color: white;
  border-radius: var(--wobbly-sm); margin-bottom: 0.5rem;
}

.stat-row {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1rem; margin: 2rem 0;
}
@media (min-width: 768px) { .stat-row { grid-template-columns: repeat(4, 1fr); } }
.stat-big {
  text-align: center; padding: 1.25rem 0.75rem;
  background: var(--postit); border: 3px solid var(--pencil);
  border-radius: var(--wobbly-md); box-shadow: var(--shadow-sm);
}
.stat-big .num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700; line-height: 1; color: var(--marker);
}
.stat-big .lbl { font-size: 0.95rem; opacity: 0.85; margin-top: 0.35rem; }

.arch-flow {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  justify-content: center; align-items: center; margin: 1.5rem 0;
}
.arch-box {
  padding: 0.75rem 1.1rem; border: 2px solid var(--pencil);
  border-radius: var(--wobbly-sm); background: var(--white);
  font-family: var(--font-head); font-weight: 700;
  text-align: center; min-width: 7rem;
}
.arch-arrow { font-size: 1.5rem; opacity: 0.6; }

.timeline { max-width: 42rem; margin: 0 auto; }
.timeline-item {
  border-left: 4px solid var(--pen);
  padding: 0 0 1.5rem 1.5rem; margin-left: 0.5rem; position: relative;
}
.timeline-item::before {
  content: ""; position: absolute; left: -10px; top: 4px;
  width: 14px; height: 14px; background: var(--postit);
  border: 2px solid var(--pencil); border-radius: 50%;
}

.alert-item.info { border-left: 6px solid var(--pen); }
.alert-item.advisory { border-left: 6px solid #f59e0b; }
.alert-item.severity-critical, .alert-item.critical { border-left: 6px solid var(--marker); }
.alert-item.severity-warning, .alert-item.warning { border-left: 6px solid #f59e0b; }

.alert-meta {
  display: grid; gap: 0.35rem; font-size: 0.9rem; margin: 0.5rem 0;
  padding: 0.5rem; background: var(--muted); border-radius: 6px;
}

.dm-grid { display: grid; gap: 1.25rem; }
@media (min-width: 1000px) { .dm-grid { grid-template-columns: 1fr 1.1fr; } }

.zone-editor { display: grid; gap: 0.75rem; }
.zone-row {
  display: grid; gap: 0.5rem; padding: 0.75rem;
  border: 2px dashed var(--pencil); border-radius: var(--wobbly-sm);
  background: var(--paper);
}
@media (min-width: 700px) {
  .zone-row { grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr auto; align-items: end; }
}

.textarea-sketch {
  width: 100%; min-height: 110px; padding: 0.65rem 0.9rem;
  font-family: var(--font-body); font-size: 1.05rem;
  border: 2px solid var(--pencil); border-radius: var(--wobbly-sm);
  background: var(--white); color: var(--pencil); resize: vertical;
}
.textarea-sketch:focus {
  outline: none; border-color: var(--pen);
  box-shadow: 0 0 0 3px rgba(45, 93, 161, 0.2);
}

.preview-box {
  padding: 1rem; background: var(--postit);
  border: 2px solid var(--pencil); border-radius: var(--wobbly-sm);
  white-space: pre-wrap; font-size: 1rem;
}

.status-warn { color: #b45309; font-weight: 700; }
.error-banner {
  padding: 0.75rem 1rem; background: #fee2e2;
  border: 2px solid var(--marker); border-radius: var(--wobbly-sm);
  margin-bottom: 1rem;
}

.info-banner {
  padding: 0.75rem 1rem;
  background: var(--postit);
  border: 2px dashed var(--pencil);
  border-radius: var(--wobbly-sm);
  margin-bottom: 1rem;
}

.status-offline { color: var(--pen); font-weight: 700; }

.pitch-cta {
  text-align: center; padding: 3rem 1.5rem;
  background: var(--white);
  border-top: 3px solid var(--pencil);
  border-bottom: 3px solid var(--pencil);
}

.judge-table {
  width: 100%; border-collapse: collapse; font-size: 0.95rem;
}
.judge-table th, .judge-table td {
  border: 2px dashed var(--pencil);
  padding: 0.6rem 0.75rem; text-align: left;
}
.judge-table th { background: var(--muted); font-family: var(--font-head); }

.map-embed {
  width: 100%; height: 220px;
  border: 2px solid var(--pencil); border-radius: var(--wobbly-sm);
}

/* ─── Landing hero (sketchbook frame + floating notes) ─── */
.sketchbook-frame {
  margin: 1.25rem 1rem 0;
  padding: 2rem 1.25rem 3rem;
  background: var(--white);
  border: 3px solid var(--pencil);
  border-radius: var(--wobbly);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.sketchbook-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--muted) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.55;
  pointer-events: none;
}

.hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 38rem;
  margin: 0 auto;
  padding: 1rem 0.5rem;
}

.hero-icon-sketch {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  background: var(--postit);
  border: 3px solid var(--pencil);
  border-radius: var(--wobbly-sm);
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
  animation: bounce-soft 3s ease-in-out infinite;
}

@keyframes bounce-soft {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-8px); }
}

.hero-center h1 {
  font-size: clamp(2.25rem, 7vw, 3.75rem);
  margin: 0 0 0.75rem;
  line-height: 1.05;
}

.hero-center .hero-line2 {
  display: block;
  color: var(--pen);
  font-size: 0.92em;
  transform: rotate(-0.5deg);
}

.hero-center .hero-sub {
  font-size: 1.2rem;
  opacity: 0.85;
  margin-bottom: 1.75rem;
  max-width: 34ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-wrap {
  position: relative;
  display: inline-block;
}

.sketch-arrow {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 40px;
  pointer-events: none;
}

@media (max-width: 900px) {
  .sketch-arrow { display: none; }
}

.float-sketch {
  position: absolute;
  z-index: 3;
  width: min(270px, 42vw);
  transition: transform 0.1s;
}

.float-sketch .card-sketch {
  box-shadow: var(--shadow);
}

.float-sketch:hover .card-sketch {
  transform: rotate(1deg) translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--pencil);
}

.float-tl { top: 6%; left: 1%; transform: rotate(-4deg); }
.float-tr { top: 8%; right: 1%; transform: rotate(2deg); }
.float-bl { bottom: 8%; left: 1%; transform: rotate(1.5deg); }
.float-br { bottom: 6%; right: 1%; transform: rotate(-2deg); }

@media (max-width: 900px) {
  .float-sketch { display: none; }
}

.card-sketch.tack::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: radial-gradient(circle at 35% 30%, #ef4444, #b91c1c);
  border: 2px solid var(--pencil);
  border-radius: 50%;
  box-shadow: 1px 2px 0 rgba(0,0,0,0.2);
}

.sticky-note {
  background: var(--postit) !important;
  font-family: var(--font-body);
  transform: rotate(-3deg);
  box-shadow: var(--shadow) !important;
}

.sticky-note p {
  font-size: 1.05rem;
  line-height: 1.35;
  margin-top: 0.35rem;
}

.mini-check {
  position: absolute;
  bottom: -14px;
  right: -10px;
  width: 38px;
  height: 38px;
  background: var(--white);
  border: 2px solid var(--pencil);
  border-radius: var(--wobbly-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
  transform: rotate(6deg);
}

.progress-sketch {
  height: 8px;
  background: var(--muted);
  border: 2px solid var(--pencil);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 0.35rem;
}

.progress-sketch span {
  display: block;
  height: 100%;
  background: var(--pen);
}

.progress-sketch.marker span { background: var(--marker); }

.int-sketch {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.int-chip {
  padding: 0.35rem 0.55rem;
  border: 2px solid var(--pencil);
  border-radius: var(--wobbly-sm);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 2px 2px 0 0 var(--pencil);
  transform: rotate(-2deg);
}

.int-chip:nth-child(2) { transform: rotate(1deg); background: var(--pen); color: white; }
.int-chip:nth-child(3) { transform: rotate(-1deg); background: #15803d; color: white; }

.deco-bounce {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 3px dashed var(--pen);
  border-radius: 50% 45% 55% 40% / 40% 55% 45% 50%;
  animation: bounce-soft 3s ease-in-out infinite;
  opacity: 0.45;
  pointer-events: none;
}

.deco-bounce.d1 { top: 18%; left: 22%; animation-delay: 0.5s; }
.deco-bounce.d2 { bottom: 22%; right: 20%; width: 36px; height: 36px; }

.section-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--postit);
  border: 2px dashed var(--pencil);
  border-radius: var(--wobbly-sm);
  font-family: var(--font-head);
  font-size: 0.95rem;
  transform: rotate(-2deg);
  margin-bottom: 0.75rem;
}

.feature-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  transition: transform 0.1s, box-shadow 0.1s;
}

.feature-card:hover {
  transform: rotate(-1deg) translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--pencil);
}

.how-grid {
  display: grid;
  gap: 1.25rem;
  position: relative;
}

@media (min-width: 768px) {
  .how-grid { grid-template-columns: repeat(4, 1fr); }
}

.how-card {
  text-align: center;
  padding: 1.25rem 1rem;
  transition: transform 0.1s;
}

.how-card:hover { transform: rotate(1deg) scale(1.02); }

.how-num {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  background: var(--marker);
  color: white;
  border: 3px solid var(--pencil);
  border-radius: 50% 42% 48% 55% / 55% 48% 52% 45%;
  box-shadow: var(--shadow-sm);
}

.squiggle-connect {
  display: none;
}

@media (min-width: 768px) {
  .squiggle-connect {
    display: block;
    position: absolute;
    top: 2.5rem;
    left: 12%;
    right: 12%;
    height: 24px;
    pointer-events: none;
    opacity: 0.5;
  }
}

.demo-banner-sketch {
  background: var(--postit);
  border: 2px dashed var(--pencil);
  border-radius: var(--wobbly-sm);
  padding: 1rem;
  margin-bottom: 1rem;
}

.target-row {
  padding: 0.6rem 0.75rem;
  margin-bottom: 0.4rem;
  border-left: 4px solid var(--pen);
  background: var(--paper);
  border-radius: 0 var(--wobbly-sm) var(--wobbly-sm) 0;
  cursor: pointer;
  transition: background 0.1s, transform 0.1s;
}

.target-row:hover,
.target-row.selected {
  background: var(--postit);
  transform: translateX(2px);
}

.target-head { font-weight: 700; font-size: 0.95rem; }
.target-coord { opacity: 0.7; font-weight: 400; font-size: 0.85rem; }
.target-vitals { font-size: 0.85rem; margin-top: 0.2rem; }

.pill {
  font-size: 0.7rem;
  padding: 0.1rem 0.4rem;
  border: 1px solid var(--pencil);
  border-radius: var(--wobbly-sm);
  font-weight: 700;
}

.pill-motion { background: #fce7f3; }
.pill-static { background: var(--muted); }

.jiggle-hover:hover {
  transform: rotate(1deg);
  transition: transform 0.1s;
}

.jiggle-hover-alt:hover {
  transform: rotate(-2deg);
  transition: transform 0.1s;
}
