/* =========================================================================
   ZAList — Stylesheet
   Aesthetic: late web 2.0. Glossy. Rounded. Slightly maximalist. Earnest.
   Submission email is concealed in the .hidden-email rule near the bottom.
   ========================================================================= */

:root {
  /* Palette */
  --c-bg:        #f4f7fc;
  --c-bg-top:    #dde8f7;
  --c-bg-soft:   #ffffff;
  --c-ink:       #1a2332;
  --c-ink-soft:  #4a5a73;
  --c-ink-faint: #8a99b3;

  --c-primary:       #2962ff;
  --c-primary-dark:  #0039cb;
  --c-primary-light: #6b8eff;

  --c-accent:        #ff6b35;
  --c-accent-dark:   #c43e08;

  --c-gold:          #f5b800;
  --c-gold-dark:     #c08c00;

  --c-border:        #c7d4e8;
  --c-border-soft:   #e2e9f4;

  /* Pastel chip palette for category tags */
  --chip-blue:   #d9e6ff;
  --chip-pink:   #ffd9e8;
  --chip-green:  #d4f0d4;
  --chip-yellow: #fff0c2;
  --chip-orange: #ffe1cf;
  --chip-purple: #e6d4ff;

  /* Avatar gradient palettes */
  --pal-1-from: #5b9eff; --pal-1-to: #2962ff;
  --pal-2-from: #ff8c4a; --pal-2-to: #ff5a1f;
  --pal-3-from: #66d9a8; --pal-3-to: #1ea672;
  --pal-4-from: #f06292; --pal-4-to: #c2185b;
  --pal-5-from: #b585f7; --pal-5-to: #7c3aed;
  --pal-6-from: #ffd166; --pal-6-to: #e8a317;

  /* Type */
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body:    "Nunito", system-ui, sans-serif;

  /* Radius, shadow */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(20, 35, 60, 0.08), 0 2px 4px rgba(20, 35, 60, 0.04);
  --shadow-md: 0 4px 10px rgba(20, 35, 60, 0.08), 0 8px 20px rgba(20, 35, 60, 0.06);
  --shadow-lg: 0 10px 25px rgba(20, 35, 60, 0.12), 0 20px 40px rgba(20, 35, 60, 0.08);
  --shadow-inset-light: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  --shadow-button: 0 1px 0 rgba(255,255,255,0.4) inset,
                   0 -1px 0 rgba(0,0,0,0.1) inset,
                   0 2px 0 rgba(0, 30, 90, 0.15),
                   0 4px 12px rgba(41, 98, 255, 0.3);
}

/* -------- Reset-ish -------- */
*,*::before,*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-ink);
  background:
    radial-gradient(ellipse 1200px 600px at 50% -200px, var(--c-bg-top) 0%, transparent 70%),
    var(--c-bg);
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: var(--c-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; margin: 0; }

/* -------- Layout container -------- */
.main-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fc 100%);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 2px 8px rgba(20, 35, 60, 0.06);
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--c-ink);
}
.brand:hover { text-decoration: none; }
.brand-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255,255,255,0.8);
}
.brand-z { color: var(--c-primary); }
.brand-a { color: var(--c-accent); }
.brand-list { color: var(--c-ink); }
.brand-beta {
  background: linear-gradient(180deg, #ffd54a 0%, #f5b800 100%);
  color: #5a3e00;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 7px;
  border-radius: var(--r-sm);
  border: 1px solid #d49f00;
  box-shadow: var(--shadow-inset-light);
  transform: translateY(-6px);
}
.brand-tagline {
  font-size: 13px;
  color: var(--c-ink-soft);
  font-style: italic;
  margin-left: 8px;
}
@media (max-width: 720px) { .brand-tagline { display: none; } }

.site-nav { display: flex; align-items: center; gap: 14px; }
.nav-link {
  color: var(--c-ink-soft);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-link:hover { color: var(--c-primary); background: var(--c-border-soft); text-decoration: none; }
.nav-link.is-active { color: var(--c-primary); background: var(--c-border-soft); }
.nav-submit {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--c-primary-light) 0%, var(--c-primary) 50%, var(--c-primary-dark) 100%);
  color: #fff;
  border: 1px solid var(--c-primary-dark);
  box-shadow: var(--shadow-inset-light), 0 2px 6px rgba(41,98,255,0.3);
}
.nav-submit:hover { color: #fff; background: linear-gradient(180deg, var(--c-primary) 0%, var(--c-primary-dark) 100%); }
.nav-shine {
  position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0));
  border-radius: var(--r-pill) var(--r-pill) 0 0;
  pointer-events: none;
}
.header-stripe {
  height: 3px;
  background: linear-gradient(90deg, var(--c-primary) 0%, var(--c-accent) 50%, var(--c-gold) 100%);
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  margin: 32px 0 48px;
  padding: 56px 40px 60px;
  background: linear-gradient(180deg, #ffffff 0%, #f0f5ff 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md), var(--shadow-inset-light);
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; text-align: center; }
.hero-title { margin-bottom: 16px; }
.hero-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 8px;
}
.hero-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 10vw, 96px);
  line-height: 1;
  letter-spacing: -0.04em;
  display: inline-block;
  text-shadow: 0 2px 0 rgba(255,255,255,0.8), 0 4px 0 rgba(0,0,0,0.04);
}
.hw-z { color: var(--c-primary); }
.hw-a { color: var(--c-accent); }
.hw-list { color: var(--c-ink); }

.hero-tagline {
  max-width: 580px;
  margin: 0 auto 32px;
  font-size: 18px;
  color: var(--c-ink-soft);
  line-height: 1.5;
}
.hero-tagline strong { color: var(--c-ink); font-weight: 700; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--r-md);
  min-width: 110px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--c-ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 6px;
}

.hero-deco { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero-bubble {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
}
.bubble-1 { width: 200px; height: 200px; background: var(--c-primary-light); top: -60px; left: -40px; }
.bubble-2 { width: 240px; height: 240px; background: var(--c-accent); bottom: -80px; right: -60px; }
.bubble-3 { width: 160px; height: 160px; background: var(--c-gold); top: 30%; right: 20%; }

/* =========================================================================
   LETTER NAV
   ========================================================================= */
.letter-nav {
  position: sticky;
  top: 78px;
  z-index: 40;
  background: rgba(244, 247, 252, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  padding: 10px 18px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}
.letter-nav-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.letter-nav-letters {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.letter-nav-item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-ink-faint);
}
.letter-nav-item.is-active {
  color: var(--c-primary);
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  text-decoration: none;
}
.letter-nav-item.is-active:hover { background: var(--c-primary); color: #fff; }
.letter-nav-item.is-empty { opacity: 0.3; }
@media (max-width: 720px) {
  .letter-nav { flex-direction: column; align-items: stretch; border-radius: var(--r-lg); }
  .letter-nav-label { text-align: center; }
}

/* =========================================================================
   DIRECTORY (letter sections + cards)
   ========================================================================= */
.directory { display: flex; flex-direction: column; gap: 48px; }

.letter-section { scroll-margin-top: 140px; }

.letter-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 12px;
}
.letter-glyph {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  background: linear-gradient(180deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(41, 98, 255, 0.2);
  width: 80px;
  text-align: center;
  flex-shrink: 0;
}
.letter-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--c-primary) 0%, transparent 100%);
  border-radius: var(--r-pill);
}
.letter-count {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  padding: 4px 10px;
  border-radius: var(--r-pill);
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.listing-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm), var(--shadow-inset-light);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  overflow: hidden;
}
.listing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), var(--shadow-inset-light);
  border-color: var(--c-primary-light);
}
.listing-card-link {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  color: inherit;
  text-decoration: none;
  position: relative;
}
.listing-card-link:hover { text-decoration: none; }
.listing-card-avatar { flex-shrink: 0; }
.listing-card-body { flex: 1; min-width: 0; }
.listing-card-name {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--c-ink);
}
.listing-card-tagline {
  font-size: 14px;
  color: var(--c-ink-soft);
  margin: 0 0 10px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.listing-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.listing-card-arrow {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 18px;
  color: var(--c-primary);
  opacity: 0;
  transition: opacity 0.18s, transform 0.18s;
}
.listing-card:hover .listing-card-arrow { opacity: 1; transform: translateX(4px); }

/* =========================================================================
   AVATARS
   ========================================================================= */
.avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.avatar-img { background-size: cover; background-position: center; background-color: #eee; }
.avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar-letter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  z-index: 1;
}
.avatar-gloss {
  position: absolute;
  top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), rgba(255,255,255,0));
  pointer-events: none;
}

.palette-1 { background: linear-gradient(135deg, var(--pal-1-from), var(--pal-1-to)); }
.palette-2 { background: linear-gradient(135deg, var(--pal-2-from), var(--pal-2-to)); }
.palette-3 { background: linear-gradient(135deg, var(--pal-3-from), var(--pal-3-to)); }
.palette-4 { background: linear-gradient(135deg, var(--pal-4-from), var(--pal-4-to)); }
.palette-5 { background: linear-gradient(135deg, var(--pal-5-from), var(--pal-5-to)); }
.palette-6 { background: linear-gradient(135deg, var(--pal-6-from), var(--pal-6-to)); }

/* =========================================================================
   TAGS, STARS
   ========================================================================= */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--r-pill);
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  line-height: 1.4;
}
.tag-category {
  background: var(--chip-blue);
  color: #1d3a8a;
  border-color: #b8cdf2;
}
.tag-location {
  background: var(--chip-green);
  color: #14532d;
  border-color: #b6dfb6;
}
.tag-pill {
  background: var(--c-bg-soft);
  color: var(--c-ink-soft);
  border: 1px solid var(--c-border);
}
.stars {
  color: var(--c-gold);
  font-size: 12px;
  letter-spacing: 1px;
  text-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 0.12s ease, box-shadow 0.18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(180deg, var(--c-primary-light) 0%, var(--c-primary) 50%, var(--c-primary-dark) 100%);
  color: #fff;
  border-color: var(--c-primary-dark);
  box-shadow: var(--shadow-button);
}
.btn-primary:hover {
  background: linear-gradient(180deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: #fff;
}
.btn-shine .btn-shine-overlay {
  position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0));
  border-radius: var(--r-pill) var(--r-pill) 0 0;
  pointer-events: none;
}
.btn-ghost {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-border);
}
.btn-ghost:hover { background: var(--c-border-soft); color: var(--c-primary-dark); }

/* =========================================================================
   CTA BAND
   ========================================================================= */
.cta-band {
  margin-top: 64px;
  padding: 48px 32px;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0));
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-band h2 { font-size: 32px; margin-bottom: 12px; }
.cta-band p { margin: 0 auto 24px; max-width: 480px; opacity: 0.92; font-size: 16px; }
.cta-band .btn-primary {
  background: linear-gradient(180deg, #ffffff 0%, #f0f0f0 100%);
  color: var(--c-primary-dark);
  border-color: #d0d0d0;
  box-shadow: 0 1px 0 rgba(255,255,255,1) inset,
              0 -1px 0 rgba(0,0,0,0.05) inset,
              0 2px 0 rgba(0,0,0,0.1),
              0 4px 12px rgba(0,0,0,0.15);
}
.cta-band .btn-primary:hover { background: #fff; color: var(--c-primary-dark); }

/* =========================================================================
   PROFILE PAGE
   ========================================================================= */
.profile { margin-top: 32px; }
.profile-breadcrumb {
  font-size: 13px;
  color: var(--c-ink-soft);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.profile-breadcrumb a { color: var(--c-primary); }
.breadcrumb-sep { color: var(--c-ink-faint); }

.profile-hero {
  display: flex;
  gap: 28px;
  padding: 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fc 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md), var(--shadow-inset-light);
  margin-bottom: 28px;
}
.profile-avatar .avatar { width: 120px; height: 120px; border-radius: var(--r-lg); }
.profile-avatar .avatar-letter { font-size: 58px; }
.profile-hero-body { flex: 1; min-width: 0; }
.profile-eyebrow { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.profile-name {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.profile-tagline {
  font-size: 17px;
  color: var(--c-ink-soft);
  margin: 0 0 20px;
  line-height: 1.5;
}
.profile-actions { display: flex; gap: 10px; flex-wrap: wrap; }
@media (max-width: 640px) {
  .profile-hero { flex-direction: column; padding: 24px; }
  .profile-avatar .avatar { width: 88px; height: 88px; }
  .profile-avatar .avatar-letter { font-size: 44px; }
}

.profile-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
}
@media (max-width: 880px) {
  .profile-layout { grid-template-columns: 1fr; }
}

.profile-main { display: flex; flex-direction: column; gap: 24px; }
.profile-section {
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.profile-section-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-ink-soft);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-border-soft);
}
.profile-prose { font-size: 16px; line-height: 1.65; color: var(--c-ink); }
.profile-prose p { margin: 0 0 1em; }
.profile-prose p:last-child { margin-bottom: 0; }
.profile-prose strong { color: var(--c-primary-dark); font-weight: 700; }
.profile-prose a { color: var(--c-primary); border-bottom: 1px dotted var(--c-primary-light); }
.profile-prose a:hover { text-decoration: none; border-bottom-style: solid; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }

/* Sidebar */
.profile-sidebar { display: flex; flex-direction: column; gap: 16px; }
.sidebar-card {
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.sidebar-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-ink-soft);
  margin-bottom: 14px;
}

.social-list { display: flex; flex-direction: column; gap: 6px; }
.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--r-md);
  color: var(--c-ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.12s;
  border: 1px solid transparent;
}
.social-link:hover { background: var(--c-border-soft); text-decoration: none; }
.social-icon {
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  color: #fff;
}
.social-icon svg { width: 16px; height: 16px; }
.social-facebook .social-icon  { background: #1877f2; }
.social-instagram .social-icon { background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%); }
.social-twitter .social-icon,
.social-x .social-icon         { background: #000; }
.social-linkedin .social-icon  { background: #0a66c2; }
.social-youtube .social-icon   { background: #ff0000; }
.social-tiktok .social-icon    { background: #000; }
.social-pinterest .social-icon { background: #e60023; }
.social-website .social-icon   { background: var(--c-primary); }

.meta-list { display: grid; grid-template-columns: auto 1fr; gap: 8px 14px; margin: 0; font-size: 14px; }
.meta-list dt { color: var(--c-ink-faint); font-weight: 600; }
.meta-list dd { margin: 0; color: var(--c-ink); }
.meta-letter {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--c-primary);
}

.sidebar-stars { text-align: center; }
.rating-block { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 8px; }
.rating-stars { color: var(--c-gold); font-size: 20px; letter-spacing: 2px; }
.rating-num { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--c-ink); }
.rating-fineprint { font-size: 11px; color: var(--c-ink-faint); margin: 0; font-style: italic; }

.profile-foot { margin-top: 32px; text-align: center; }

/* =========================================================================
   GENERIC PAGE (/submit/)
   ========================================================================= */
.page { margin: 40px auto; max-width: 720px; }
.page-inner {
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 48px;
  box-shadow: var(--shadow-md), var(--shadow-inset-light);
}
.page-header { margin-bottom: 28px; padding-bottom: 20px; border-bottom: 2px dashed var(--c-border); }
.page-title {
  font-size: clamp(32px, 4vw, 42px);
  margin: 0 0 8px;
  background: linear-gradient(180deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-subtitle { font-size: 17px; color: var(--c-ink-soft); margin: 0; font-style: italic; }
.page-content { font-size: 16px; line-height: 1.65; }
.page-content p { margin: 0 0 1em; }
.page-content h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-ink-soft);
  margin: 32px 0 14px;
}
.page-content ul { padding-left: 22px; }
.page-content li { margin-bottom: 6px; }
.page-content strong { color: var(--c-primary-dark); }
.page-content hr { border: none; border-top: 1px dashed var(--c-border); margin: 32px 0; }
@media (max-width: 640px) { .page-inner { padding: 28px 22px; } }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
  margin-top: 80px;
  padding: 40px 0 32px;
  background: linear-gradient(180deg, transparent 0%, #e8eef9 100%);
  border-top: 1px solid var(--c-border);
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
}
.footer-brand { display: flex; flex-direction: column; gap: 2px; }
.footer-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--c-ink);
  letter-spacing: -0.02em;
}
.footer-sub { font-size: 13px; color: var(--c-ink-soft); font-style: italic; }
.footer-links { display: flex; gap: 16px; justify-content: center; }
.footer-links a {
  color: var(--c-ink-soft);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.footer-links a:hover { color: var(--c-primary); text-decoration: underline; }
.footer-meta { text-align: right; }
@media (max-width: 720px) { .footer-meta { text-align: center; } }
.footer-meta p { margin: 0; font-size: 13px; color: var(--c-ink-soft); }
.footer-fineprint { margin-top: 4px !important; font-size: 12px !important; color: var(--c-ink-faint) !important; font-style: italic; }

/* =========================================================================
   THE HIDDEN EMAIL EASTER EGG
   -------------------------------------------------------------------------
   The .hidden-email span lives in the footer with no visible content.
   But ::before injects the submission address — backwards — into the DOM.
   Visually hidden via the standard "sr-only" clip pattern, so it doesn't
   render on screen, but DevTools (and screen readers) can see it.
   Anyone who inspects the footer will find: gro.tsilaz@timbus
   Reverse it, and you've got submit@zalist.org.
   ========================================================================= */
.hidden-email {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}
.hidden-email::before {
  content: "gro.tsilaz@timbus";
}
.hidden-email::after {
  content: " (hint: read me backwards)";
}
