:root {
  --bg: #07090f;
  --bg2: #0c101a;
  --panel: #121826;
  --panel2: #161e2e;
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8edf7;
  --muted: #8b95a8;
  --green: #22c55e;
  --green-dim: rgba(34, 197, 94, 0.15);
  --amber: #f59e0b;
  --amber-dim: rgba(245, 158, 11, 0.15);
  --red: #ef4444;
  --red-dim: rgba(239, 68, 68, 0.15);
  --accent: #7c9cff;
  --radius: 14px;
  --font: "Segoe UI", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.45;
}

.bg-grid {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124, 156, 255, 0.12), transparent),
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
}

.top, main, footer { position: relative; z-index: 1; }

.top {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-2);
  padding: var(--space-2) 1.5rem; max-width: 1200px; margin: 0 auto;
  border-bottom: 1px solid var(--border);
  flex-wrap: nowrap;
}
.brand { display: flex; gap: 0.85rem; align-items: center; min-width: 0; flex: 1; }
.logo-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--amber); box-shadow: 0 0 16px var(--amber);
  flex-shrink: 0;
}
.logo-dot.green { background: var(--green); box-shadow: 0 0 16px var(--green); }
.logo-dot.amber { background: var(--amber); box-shadow: 0 0 16px var(--amber); }
.logo-dot.red { background: var(--red); box-shadow: 0 0 16px var(--red); }
h1 { font-size: 1.15rem; margin: 0; font-weight: 650; letter-spacing: -0.02em; }
.tag { margin: 0.15rem 0 0; color: var(--muted); font-size: 0.8rem; }
.top-actions {
  display: flex; align-items: center; gap: 0.65rem; flex-wrap: nowrap;
  flex-shrink: 0;
}
.updated {
  color: var(--muted); font-size: 0.78rem; font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.btn {
  appearance: none; border: 1px solid var(--border);
  background: linear-gradient(180deg, #1a2233, #121826);
  color: var(--text); border-radius: 10px;
  padding: 0.55rem 0.95rem; font-weight: 600; font-size: 0.85rem;
  cursor: pointer; display: inline-flex; align-items: center; gap: 0.4rem;
  transition: border-color 0.15s, transform 0.1s;
}
.btn:hover { border-color: rgba(124, 156, 255, 0.45); }
.btn-dash-link,
.btn-filings {
  text-decoration: none;
  color: var(--text);
  background: linear-gradient(180deg, #1a2233, #121826);
  border-color: var(--border);
  font-weight: 600;
  box-shadow: none;
}
.btn-dash-link:hover,
.btn-filings:hover {
  border-color: rgba(124, 156, 255, 0.45);
  background: linear-gradient(180deg, #1a2233, #121826);
  color: var(--text);
  box-shadow: none;
}
.btn:active { transform: scale(0.98); }
.btn:disabled { opacity: 0.55; cursor: wait; }
.btn.spin .btn-icon { display: inline-block; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

main { max-width: 1200px; margin: 0 auto; padding: var(--space-2) 1.5rem var(--space-4); }

.hero {
  display: grid; grid-template-columns: auto 1fr; gap: var(--space-3); align-items: center;
  background: linear-gradient(145deg, var(--panel), var(--bg2));
  border: 1px solid var(--border); border-radius: calc(var(--radius) + 4px);
  padding: var(--space-3) 1.5rem; margin-bottom: var(--space-3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.hero.green { border-color: rgba(34, 197, 94, 0.35); }
.hero.amber { border-color: rgba(245, 158, 11, 0.4); }
.hero.red { border-color: rgba(239, 68, 68, 0.4); }

.hero-score { display: flex; align-items: center; gap: 1.25rem; }
.traffic {
  display: flex; flex-direction: column; gap: 0.45rem;
  background: #0a0d14; padding: 0.65rem 0.55rem; border-radius: 999px;
  border: 1px solid var(--border);
}
.lamp {
  width: 18px; height: 18px; border-radius: 50%;
  background: #1a1f2b; opacity: 0.35; transition: 0.2s;
}
.lamp[data-l="green"].on { background: var(--green); opacity: 1; box-shadow: 0 0 14px var(--green); }
.lamp[data-l="amber"].on { background: var(--amber); opacity: 1; box-shadow: 0 0 14px var(--amber); }
.lamp[data-l="red"].on { background: var(--red); opacity: 1; box-shadow: 0 0 14px var(--red); }

.score-num {
  font-size: 3.4rem; font-weight: 700; letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums; line-height: 1;
}
.score-label { color: var(--muted); font-size: 0.8rem; margin-top: 0.35rem; }
.headline { font-size: 1.2rem; font-weight: 600; margin: 0 0 0.5rem; letter-spacing: -0.01em; }
.level-pill {
  display: inline-block; margin: 0 0 0.45rem; padding: 0.25rem 0.7rem;
  border-radius: 999px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em;
}
.level-pill.green { background: var(--green-dim); color: var(--green); }
.level-pill.amber { background: var(--amber-dim); color: var(--amber); }
.level-pill.red { background: var(--red-dim); color: var(--red); }
.level-pill.unknown { background: rgba(255,255,255,0.06); color: var(--muted); }
.hero-note { margin: 0; color: var(--muted); font-size: 0.78rem; }
.muted { color: var(--muted); }
.tiny { font-size: 0.7rem; margin: 0.35rem 0 0; }

/* ─── 7 signs ─── */
.seven-wrap { margin-bottom: var(--space-4); }
.seven-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  align-items: stretch;
}
.sign {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-height: 0;
}
.sign.green { border-left: 4px solid var(--green); }
.sign.amber { border-left: 4px solid var(--amber); box-shadow: 0 0 0 1px rgba(245,158,11,0.12); }
.sign.red { border-left: 4px solid var(--red); box-shadow: 0 0 24px rgba(239,68,68,0.12); }
.sign.unknown { border-left: 4px solid #445; }
.sign-head {
  width: 100%; text-align: left; background: transparent; border: 0;
  color: inherit; padding: 0.9rem 1rem; cursor: pointer;
  display: grid; gap: 0.4rem;
}
.sign-head:hover { background: rgba(255,255,255,0.02); }
.sign-top {
  display: flex; align-items: center; gap: 0.55rem; flex-wrap: wrap;
}
.sign-n {
  width: 1.55rem; height: 1.55rem; border-radius: 50%;
  background: rgba(255,255,255,0.06); display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800; font-family: var(--mono);
  flex-shrink: 0;
}
.sign-name { font-size: 0.88rem; font-weight: 650; flex: 1; min-width: 120px; }
.sign-level {
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem; border-radius: 999px; text-transform: uppercase;
}
.sign-level.green { background: var(--green-dim); color: var(--green); }
.sign-level.amber { background: var(--amber-dim); color: var(--amber); }
.sign-level.red { background: var(--red-dim); color: var(--red); }
.sign-status { margin: 0; font-size: 0.78rem; color: var(--muted); line-height: 1.35; }
.sign-meta { display: flex; gap: 0.4rem; }
.mode-badge {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; padding: 0.15rem 0.45rem; border-radius: 6px;
}
.mode-badge.live { background: rgba(124,156,255,0.15); color: var(--accent); }
.mode-badge.qual { background: rgba(255,255,255,0.06); color: var(--muted); }
.sign-body {
  display: none; padding: 0 1rem 1rem; border-top: 1px solid var(--border);
  flex: 1; flex-direction: column; min-height: 0;
}
.sign.open .sign-body { display: flex; }
.sign-body .rule { margin-top: auto; }
.sign-body .tiny { margin-top: 0.35rem; }
.sign-detail { font-size: 0.78rem; color: #c5cdda; margin: 0.65rem 0 0.35rem; }

.pillars-wrap { margin-bottom: var(--space-4); }
.pillars-head { margin-bottom: 0.75rem; }
.pillars {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem; margin-bottom: 0;
  align-items: start;
}
.pillar {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.15s;
}
.pillar.green { border-top: 3px solid var(--green); }
.pillar.amber { border-top: 3px solid var(--amber); }
.pillar.red { border-top: 3px solid var(--red); }
.pillar.unknown { border-top: 3px solid #445; }
.pillar-head {
  width: 100%; text-align: left; background: transparent; border: 0;
  color: inherit; padding: 0.9rem 1rem; cursor: pointer;
  display: grid; gap: 0.35rem;
}
.pillar-head:hover { background: rgba(255,255,255,0.02); }
.pillar-top { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; }
.pillar-name { font-size: 0.88rem; font-weight: 600; }
.pillar-score {
  font-family: var(--mono); font-size: 0.85rem; font-weight: 700;
}
.pillar-score.green { color: var(--green); }
.pillar-score.amber { color: var(--amber); }
.pillar-score.red { color: var(--red); }
.pillar-sum { margin: 0; font-size: 0.75rem; color: var(--muted); line-height: 1.35; }
.pillar-body {
  display: none; padding: 0 1rem 1rem; border-top: 1px solid var(--border);
}
.pillar.open .pillar-body { display: block; }
.details-table { width: 100%; border-collapse: collapse; font-size: 0.78rem; margin: 0.75rem 0; table-layout: fixed; }
.details-table td { padding: 0.3rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); vertical-align: top; }
.details-table td:first-child { width: 62%; color: var(--muted); padding-right: 0.5rem; }
.details-table td:last-child { width: 38%; text-align: right; font-family: var(--mono); font-variant-numeric: tabular-nums; color: var(--text); }
.rule { font-size: 0.72rem; color: var(--muted); margin: 0.5rem 0 0; line-height: 1.4; }
.rule-why { display: inline; }
.help-tip.inline {
  display: inline-flex; vertical-align: middle; margin-left: 0.25rem;
  width: 1rem; height: 1rem; font-size: 0.65rem;
}
.spark {
  width: 100%; height: 36px; margin-top: 0.5rem;
  display: block;
}

.section-head { margin-bottom: 0.85rem; }
.section-head h2 { margin: 0; font-size: 1.05rem; letter-spacing: -0.02em; }
.section-head h3 { margin: 1rem 0 0.4rem; font-size: 0.9rem; }
.section-head p { margin: 0.25rem 0 0; font-size: 0.8rem; }
.section-title-row {
  display: flex; align-items: center; gap: 0.45rem; flex-wrap: wrap;
}
.section-status {
  margin: 0.35rem 0 0; font-size: 0.78rem;
}
.help-tip {
  appearance: none; border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  width: 1.2rem; height: 1.2rem; border-radius: 50%;
  font-size: 0.7rem; font-weight: 700; line-height: 1;
  padding: 0; cursor: help;
  display: inline-flex; align-items: center; justify-content: center;
  position: relative; flex-shrink: 0;
  z-index: 2;
}
.help-tip:hover,
.help-tip:focus-visible {
  color: var(--text);
  border-color: rgba(124, 156, 255, 0.45);
  outline: none;
}
/* Floating tip lives on body — avoids overflow:hidden clip on .sign/.pillar */
.float-tip {
  position: fixed;
  z-index: 1000;
  max-width: min(300px, calc(100vw - 1.5rem));
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  background: #1a2233;
  border: 1px solid var(--border);
  color: #c5cdda;
  font-size: 0.72rem; font-weight: 400; line-height: 1.35;
  letter-spacing: 0; text-transform: none;
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
  pointer-events: none;
  text-align: left;
  opacity: 0;
  transition: opacity 0.12s ease;
}
.float-tip.on { opacity: 1; }

.stocks-wrap { margin-bottom: var(--space-3); }
.stock-cols {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.85rem;
  align-items: stretch;
}
.col {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.85rem;
  min-width: 0;
  display: flex; flex-direction: column;
  height: 100%;
}
.col h3 {
  margin: 0 0 0.65rem; font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--muted); font-weight: 700;
}
.col.hit h3 { color: #f87171; }
.col.mixed h3 { color: var(--amber); }
.col.resilient h3 { color: #4ade80; }
.col.baskets h3 { color: var(--accent); }

.row {
  display: grid; grid-template-columns: 52px 1fr auto;
  gap: 0.35rem; align-items: center;
  padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.78rem;
}
.row:last-child { border-bottom: 0; }
.sym { font-weight: 700; font-family: var(--mono); font-size: 0.8rem; }
.px { color: var(--muted); font-variant-numeric: tabular-nums; font-size: 0.72rem; }
.chgs { text-align: right; font-family: var(--mono); font-size: 0.68rem; font-variant-numeric: tabular-nums; line-height: 1.35; }
.pos { color: #4ade80; }
.neg { color: #f87171; }
.na { color: #556; }

.mini-spark { width: 56px; height: 22px; opacity: 0.85; }

.how {
  margin-top: var(--space-3); background: var(--panel2);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 0.25rem 1rem 0.5rem;
}
.how summary {
  cursor: pointer; font-weight: 650; padding: 0.75rem 0; list-style: none;
}
.how summary::-webkit-details-marker { display: none; }
.how-body { padding-bottom: 0.85rem; font-size: 0.85rem; color: #c5cdda; }
.how-body h3 { margin: 1rem 0 0.35rem; font-size: 0.88rem; color: var(--text); }
.how-body ol { padding-left: 1.2rem; }
.how-body .g { color: var(--green); }
.how-body .a { color: var(--amber); }
.how-body .r { color: var(--red); }

footer {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem 2rem;
  font-size: 0.75rem; color: var(--muted);
}
footer p { margin: 0.35rem 0; }
.footer-links { display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem 0.5rem; }
.footer-quiet-link {
  color: var(--muted); text-decoration: none; font-weight: 500;
}
.footer-quiet-link:hover { color: var(--accent); text-decoration: underline; }
.footer-sep { color: #445; }

.toast {
  position: fixed; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  background: #1e293b; border: 1px solid var(--border); color: var(--text);
  padding: 0.65rem 1rem; border-radius: 10px; font-size: 0.82rem;
  z-index: 50; box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

@media (max-width: 960px) {
  .seven-grid { grid-template-columns: repeat(2, 1fr); }
  .stock-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hero { grid-template-columns: 1fr; gap: var(--space-2); padding: var(--space-2) 1.1rem; }
  .top {
    flex-direction: column; align-items: stretch; gap: 0.55rem;
    padding: 0.85rem 1rem;
  }
  .brand { width: 100%; }
  .tag { display: none; }
  .top-actions {
    width: 100%;
    justify-content: space-between;
    gap: 0.5rem;
  }
  .updated { font-size: 0.72rem; }
  .top-actions .btn { padding: 0.45rem 0.75rem; font-size: 0.8rem; }
  .seven-grid { grid-template-columns: 1fr; }
  .stock-cols { grid-template-columns: 1fr; }
  .score-num { font-size: 2.6rem; }
}


/* ─── Buy me a coffee ─── */
.btn-coffee {
  border-color: rgba(245, 158, 11, 0.45);
  background: linear-gradient(180deg, #3a2a12, #241a0c);
  color: #fbbf24;
}
.btn-coffee:hover {
  border-color: rgba(245, 158, 11, 0.75);
  box-shadow: 0 0 18px rgba(245, 158, 11, 0.2);
}
.coffee-link {
  color: var(--amber);
  text-decoration: none;
  font-weight: 600;
}
.coffee-link:hover { text-decoration: underline; color: #fbbf24; }

.coffee-dialog {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  padding: 0;
  background: transparent;
  color: var(--text);
  max-width: min(440px, calc(100vw - 2rem));
  width: 100%;
}
.coffee-dialog::backdrop {
  background: rgba(4, 6, 12, 0.72);
  backdrop-filter: blur(4px);
}
.coffee-panel {
  margin: 0;
  padding: 1.15rem 1.25rem 1.25rem;
  background: linear-gradient(160deg, var(--panel), var(--bg2));
  border-radius: inherit;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
}
.coffee-head {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  margin-bottom: 0.65rem;
}
.coffee-head h2 {
  margin: 0; font-size: 1.05rem; letter-spacing: -0.02em;
}
.coffee-close {
  padding: 0.35rem 0.55rem; font-size: 0.85rem; line-height: 1;
}
.coffee-copy {
  margin: 0 0 1rem; font-size: 0.88rem; color: #c5cdda;
}
.coffee-amounts {
  display: flex; gap: 0.55rem; flex-wrap: wrap; margin-bottom: 1.1rem;
}
.coffee-amounts .tip-amt {
  flex: 1; justify-content: center; min-width: 4.5rem;
  text-decoration: none;
}
.coffee-wallet label {
  display: block; font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--muted); margin-bottom: 0.35rem; font-weight: 700;
}
.wallet-row {
  display: flex; gap: 0.5rem; align-items: stretch;
}
.wallet-addr {
  flex: 1; min-width: 0;
  font-family: var(--mono); font-size: 0.68rem;
  background: #0a0d14; border: 1px solid var(--border);
  border-radius: 10px; padding: 0.65rem 0.7rem;
  word-break: break-all; color: #e8edf7;
  line-height: 1.4;
}
.coffee-note { margin: 0.85rem 0 0; font-size: 0.7rem; }

.coffee-amounts .tip-amt.is-selected {
  border-color: rgba(245, 158, 11, 0.85);
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.28);
}
.coffee-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.1rem;
}
.coffee-qr-img {
  width: 200px;
  max-width: min(200px, 72vw);
  height: auto;
  aspect-ratio: 1;
  border-radius: 12px;
  padding: 0.5rem;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  image-rendering: pixelated;
}
.coffee-qr-caption {
  margin: 0;
  font-size: 0.72rem;
  text-align: center;
  letter-spacing: 0.01em;
}



/* ─── Email alerts ─── */
.alerts-card {
  margin-top: 1.5rem;
  background:
    radial-gradient(ellipse 70% 120% at 0% 50%, rgba(245, 158, 11, 0.14), transparent 55%),
    linear-gradient(145deg, #1a1520, var(--panel), var(--bg2));
  border: 1px solid rgba(245, 158, 11, 0.42);
  border-radius: var(--radius);
  padding: 1.35rem 1.45rem;
  box-shadow:
    0 0 0 1px rgba(245, 158, 11, 0.08),
    0 0 28px rgba(245, 158, 11, 0.12),
    0 16px 40px rgba(0, 0, 0, 0.35);
}
.alerts-inner {
  display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; align-items: center; justify-content: space-between;
}
.alerts-copy h2 {
  margin: 0 0 0.35rem; font-size: 1.05rem; letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
}
.alerts-badge {
  display: inline-block;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem; border-radius: 999px;
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.35);
}
.alerts-copy p { margin: 0; font-size: 0.82rem; max-width: 36rem; color: #c5cdda; }
.alerts-form {
  display: flex; gap: 0.55rem; flex-wrap: wrap; align-items: center;
}
.alerts-form input[type="email"] {
  appearance: none;
  background: #0a0d14;
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 10px;
  color: var(--text);
  padding: 0.65rem 0.95rem;
  font-size: 0.88rem;
  min-width: min(260px, 70vw);
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.06);
}
.alerts-form input[type="email"]::placeholder {
  color: #6b7280;
}
.alerts-form input[type="email"]:focus {
  outline: none;
  border-color: rgba(245, 158, 11, 0.75);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}
.btn-alerts {
  border-color: rgba(245, 158, 11, 0.65);
  background: linear-gradient(180deg, #f59e0b, #d97706);
  color: #1a1005;
  font-weight: 750;
  padding: 0.65rem 1.15rem;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
}
.btn-alerts:hover {
  border-color: #fbbf24;
  background: linear-gradient(180deg, #fbbf24, #f59e0b);
  box-shadow: 0 6px 22px rgba(245, 158, 11, 0.45);
  color: #120c04;
}
.alerts-status { width: 100%; margin: 0; font-size: 0.8rem; }
.alerts-status.ok { color: var(--green); }
.alerts-status.err { color: var(--red); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
@media (max-width: 640px) {
  .alerts-card { padding: 1.15rem 1.1rem; }
  .alerts-form { width: 100%; }
  .alerts-form input[type="email"] { flex: 1; min-width: 0; }
}


/* ─── Pear easter egg (discreet footer) ─── */
.pear-easter {
  margin-top: 1.75rem;
  padding-top: 1rem;
  text-align: center;
  opacity: 0.62;
  transition: opacity 0.2s ease;
}
.pear-easter:hover,
.pear-easter:focus-within {
  opacity: 0.88;
}
.pear-easter-link {
  display: inline-block;
  line-height: 0;
  border-radius: 10px;
  overflow: hidden;
}
.pear-easter img {
  display: block;
  max-width: min(260px, 70vw);
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  filter: saturate(0.92);
}
.pear-easter-cap {
  margin: 0.45rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}
