/* Hopper / Kira / Kai talk-page themes (no blogs yet) */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Nunito:wght@700;800&family=Source+Sans+3:wght@400;500;600&display=swap');

body.theme-hopper, body.theme-kira, body.theme-kai {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  line-height: 1.75;
  min-height: 100vh;
}
body.theme-hopper a, body.theme-kira a, body.theme-kai a { text-decoration: none; }
body.theme-hopper a:hover, body.theme-kira a:hover, body.theme-kai a:hover { text-decoration: underline; }

.hopper-shell, .kira-shell, .kai-shell {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 18px 64px;
}
.hopper-hero, .kira-hero, .kai-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 36px;
  height: min(78vh, 720px);
  min-height: 420px;
  overflow: hidden;
}
.hopper-hero video, .hopper-hero img,
.kira-hero video, .kira-hero img,
.kai-hero video, .kai-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hopper-hero-scrim, .kira-hero-scrim, .kai-hero-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hopper-hero-card, .kira-hero-card, .kai-hero-card {
  position: absolute;
  left: max(18px, calc(50% - 460px));
  bottom: 48px;
  max-width: min(540px, calc(100% - 36px));
  padding: 22px 24px 24px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.hopper-kicker, .kira-kicker, .kai-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 10px;
}
.hopper-kicker::before, .kira-kicker::before, .kai-kicker::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.hopper-hero-card h1, .kira-hero-card h1, .kai-hero-card h1 {
  margin: 0 0 12px;
  border: none;
  padding: 0;
  line-height: 1.12;
}
.hopper-hero-deck, .kira-hero-deck, .kai-hero-deck {
  margin: 0;
  line-height: 1.55;
  font-size: 1.02rem;
}

/* Hopper — glow teal, E for Everyone */
body.theme-hopper {
  --h-bg: #041210;
  --h-teal: #2dd4bf;
  --h-mint: #7dffd8;
  --h-text: #e8fff8;
  --h-soft: #b7e8dc;
  background: var(--h-bg);
  color: var(--h-text);
}
body.theme-hopper::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(45, 212, 191, 0.16), transparent 55%),
    linear-gradient(180deg, #041210, #071a18 55%, #041210);
}
body.theme-hopper a { color: var(--h-teal); }
body.theme-hopper a:hover { color: var(--h-mint); }
.hopper-hero { background: #02100e; }
.hopper-hero img { object-fit: contain; object-position: center; background: #02100e; }
.hopper-hero-scrim {
  background:
    linear-gradient(180deg, rgba(4,18,16,0.12) 0%, rgba(4,18,16,0.4) 48%, rgba(4,18,16,0.94) 88%, var(--h-bg) 100%),
    linear-gradient(90deg, rgba(4,18,16,0.55) 0%, transparent 48%);
}
.hopper-hero-card {
  border-radius: 22px;
  border: 1px solid rgba(45, 212, 191, 0.32);
  background: rgba(6, 24, 22, 0.62);
}
.hopper-kicker { color: var(--h-mint); }
.hopper-kicker::before { background: var(--h-teal); box-shadow: 0 0 14px var(--h-mint); }
.hopper-hero-card h1 {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: clamp(1.7rem, 4.2vw, 2.55rem);
  font-weight: 800;
  color: var(--h-mint);
}
.hopper-hero-deck { color: var(--h-soft); }

/* Kira — rose polish, PG-13 */
body.theme-kira {
  --k-bg: #12080f;
  --k-rose: #f472b6;
  --k-rose2: #ffb3d9;
  --k-text: #fceef6;
  --k-soft: #e8c8d8;
  background: var(--k-bg);
  color: var(--k-text);
}
body.theme-kira::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 45% at 40% 0%, rgba(244, 114, 182, 0.16), transparent 55%),
    linear-gradient(180deg, #12080f, #1a0c14 55%, #12080f);
}
body.theme-kira a { color: var(--k-rose); }
body.theme-kira a:hover { color: var(--k-rose2); }
.kira-hero { background: #0c060a; }
.kira-hero img { object-position: center 18%; }
.kira-hero-scrim {
  background:
    linear-gradient(180deg, rgba(18,8,15,0.12) 0%, rgba(18,8,15,0.38) 45%, rgba(18,8,15,0.94) 88%, var(--k-bg) 100%),
    linear-gradient(90deg, rgba(18,8,15,0.55) 0%, transparent 48%);
}
.kira-hero-card {
  border-radius: 18px;
  border: 1px solid rgba(244, 114, 182, 0.32);
  background: rgba(22, 10, 18, 0.62);
}
.kira-kicker { color: var(--k-rose); }
.kira-kicker::before { background: var(--k-rose); box-shadow: 0 0 14px var(--k-rose2); }
.kira-hero-card h1 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.7rem, 4.2vw, 2.55rem);
  font-weight: 700;
  color: var(--k-rose2);
}
.kira-hero-deck { color: var(--k-soft); }

/* Kai — orange signature, PG-13 */
body.theme-kai {
  --q-bg: #120c08;
  --q-orange: #ff8c42;
  --q-orange2: #ffc08a;
  --q-text: #fff4ea;
  --q-soft: #e8d0b8;
  background: var(--q-bg);
  color: var(--q-text);
}
body.theme-kai::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 45% at 55% 0%, rgba(255, 140, 66, 0.16), transparent 55%),
    linear-gradient(180deg, #120c08, #1a120c 55%, #120c08);
}
body.theme-kai a { color: var(--q-orange); }
body.theme-kai a:hover { color: var(--q-orange2); }
.kai-hero { background: #0c0804; }
.kai-hero img { object-position: center 16%; }
.kai-hero-scrim {
  background:
    linear-gradient(180deg, rgba(18,12,8,0.12) 0%, rgba(18,12,8,0.38) 45%, rgba(18,12,8,0.94) 88%, var(--q-bg) 100%),
    linear-gradient(90deg, rgba(18,12,8,0.55) 0%, transparent 48%);
}
.kai-hero-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 140, 66, 0.32);
  background: rgba(22, 14, 8, 0.62);
}
.kai-kicker { color: var(--q-orange); }
.kai-kicker::before { background: var(--q-orange); box-shadow: 0 0 14px var(--q-orange2); }
.kai-hero-card h1 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.7rem, 4.2vw, 2.55rem);
  font-weight: 700;
  color: var(--q-orange2);
}
.kai-hero-deck { color: var(--q-soft); }
