/* comitea — the public website.
   Light only, on purpose: the logo is a JPG on white, blended into the page
   with `multiply`, and that trick has no dark-mode equivalent. */
:root {
  --navy: #0f3a5f;
  --blue: #1b5e8f;
  --teal: #3ddcaa;
  --ink: #33536e;
  --bg: #f7fbfb;
}
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body {
  display: grid;
  place-items: center;
  padding: 24px 16px;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(60rem 40rem at 12% 8%, rgba(27, 94, 143, 0.10), transparent 60%),
    radial-gradient(50rem 36rem at 90% 95%, rgba(61, 220, 170, 0.16), transparent 60%),
    var(--bg);
}
body.page { place-items: start center; }
main { width: 100%; max-width: 40rem; text-align: center; }
main.text { text-align: left; padding: 3rem 0 2rem; }
.logo {
  display: block;
  width: min(100%, 30rem);
  height: auto;
  margin: 0 auto;
  /* The JPG's background is #fdfdfd-ish, not white; lift it to pure white so
     `multiply` leaves no visible rectangle, then let white become the page. */
  filter: brightness(1.06) contrast(1.06);
  mix-blend-mode: multiply;
}
.logo.small { width: min(100%, 14rem); margin: 0 0 2.5rem; }
h1 {
  margin: 0.25rem 0 0;
  font-size: clamp(1.15rem, 3.6vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--navy);
}
main.text h1 { margin: 0 0 1.5rem; font-size: 1.5rem; }
main.text h2 {
  margin: 2rem 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}
main.text p { margin: 0.5rem 0; }
main.text ul { margin: 0.5rem 0; padding-left: 1.2rem; }
.rule {
  width: 4rem; height: 3px; border: 0; border-radius: 3px;
  margin: 1.75rem auto;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}
.status {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin: 0; padding: 0.55rem 1.1rem;
  font-size: 0.95rem;
  border: 1px solid rgba(15, 58, 95, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}
.dot {
  width: 0.6rem; height: 0.6rem; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(61, 220, 170, 0.6);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(61, 220, 170, 0.55); }
  70%  { box-shadow: 0 0 0 0.7rem rgba(61, 220, 170, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 220, 170, 0); }
}
@media (prefers-reduced-motion: reduce) { .dot { animation: none; } }
footer { margin-top: 3rem; font-size: 0.8rem; color: rgba(51, 83, 110, 0.7); }
main.text footer { margin-top: 3rem; }
a { color: var(--blue); }
footer a { color: inherit; }
