:root { --blue: #3f63c4; --cream: #f6e0ba; }
* { box-sizing: border-box; margin: 0; }
html, body { height: 100%; }
body {
  display: flex; flex-direction: column; min-height: 100svh;
  background: var(--blue); color: var(--cream);
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased; text-align: center;
}
main { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 48px 24px 24px; }

.buzz { margin-bottom: clamp(14px, 2.8vh, 32px); font-size: clamp(15px, 1.5vw, 20px); font-weight: 500; color: #fff; }

.logo { width: min(1300px, 88vw); height: auto; max-height: 54svh; display: block; }
.logo .fill { fill: var(--cream); }
#words { opacity: 0; transition: opacity 1.2s ease; }
#words.ready { opacity: 1; }
.logo text { fill: var(--blue); opacity: var(--dim, 0.3); }
.logo text.glint { animation: glint 14s ease-in-out infinite alternate; }
/* The only movement: each tile slowly brightens and settles, never in step with its neighbours. */
@keyframes glint { from { opacity: var(--dim, 0.3); } to { opacity: var(--lit, 0.5); } }
@media (prefers-reduced-motion: reduce) { .logo text.glint { animation: none; } }

/* The strapline speaks in one of the mosaic's own voices: the handwriting the medium "massi" is in. */
h1 { margin-top: clamp(24px, 4.5vh, 52px); font-family: Caveat, 'Bradley Hand', cursive; font-size: clamp(36px, 4.4vw, 60px); font-weight: 400; line-height: 1.05; }
.sub { margin-top: 12px; font-size: clamp(16px, 1.6vw, 20px); opacity: 0.92; }
.small { margin-top: 10px; font-size: 15px; opacity: 0.7; }

.stores { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: clamp(24px, 4vh, 40px); }
.store {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  min-width: 176px; padding: 9px 20px 10px; border-radius: 12px; background: #0b0b0c; color: #fff;
  font-size: 19px; font-weight: 500; line-height: 1.15; text-align: left; border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: default; user-select: none;
}
.store small { font-size: 11px; font-weight: 400; opacity: 0.8; }

footer { display: flex; flex-wrap: wrap; gap: 8px 28px; justify-content: center; padding: 20px 24px 28px; font-size: 14px; }
a { color: inherit; opacity: 0.75; text-underline-offset: 3px; }
a:hover { opacity: 1; }
footer a { text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* Plain text pages */
.page { max-width: 640px; margin: 0 auto; padding: 40px 24px 64px; text-align: left; line-height: 1.6; }
.page .home { opacity: 1; display: inline-block; }
.page .home svg { width: 84px; height: auto; display: block; fill: var(--cream); }
.page h1 { margin: 40px 0 8px; font-size: 32px; }
.page h2 { margin: 32px 0 8px; font-size: 19px; font-weight: 500; }
.page p, .page li { opacity: 0.92; margin-top: 10px; }
.page ol, .page ul { padding-left: 22px; }
.page .note { margin-top: 12px; font-size: 14px; opacity: 0.7; }
