/* ==========================================================================
   Y1 Game — Homepage
     01 · Hero
     02 · Device & floating art
     03 · Hero strip
     04 · OG promo banner
     05 · Top slot picks (bento)
     06 · Feature panels
     07 · Steps ladder
     08 · Bonus altar
     09 · Screenshot slider
     10 · Voices
     11 · Community band
     12 · Keyword strip
   ========================================================================== */


/* ==========================================================================
   01 · HERO
   ========================================================================== */

.hero {
  position: relative;
  padding-top: clamp(7.5rem, 5rem + 8vw, 11rem);
  padding-bottom: clamp(2rem, 1rem + 3vw, 4rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 640px at 72% 16%, rgba(212, 175, 55, 0.16), transparent 62%),
    radial-gradient(760px 560px at 4% 4%, rgba(155, 17, 30, 0.42), transparent 64%),
    radial-gradient(620px 520px at 96% 74%, rgba(196, 30, 58, 0.16), transparent 66%),
    linear-gradient(180deg, var(--surface-tint) 0%, rgba(8, 8, 7, 0) 72%);
}

/* Faint gold graph paper behind the whole hero */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(to right, rgba(212, 175, 55, 0.09) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(212, 175, 55, 0.09) 1px, transparent 1px);
  background-size: 74px 74px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000 0%, transparent 78%);
  mask-image: radial-gradient(70% 60% at 50% 30%, #000 0%, transparent 78%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2.5rem, 1rem + 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 1000px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    gap: clamp(2rem, 1rem + 3vw, 4rem);
  }
}

.hero__copy { display: grid; gap: var(--sp-5); max-width: 46ch; }

.hero__title {
  /* Sized so each masked line holds on one row down to small phones */
  font-size: clamp(2.5rem, 1.4rem + 3.5vw, 4.6rem);
  line-height: 1;
}
.hero__title .ruby { color: var(--ruby-bright); }
.hero__title .thin {
  display: block;
  font-style: italic;
  font-weight: 600;
  background: var(--gold-plate);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead { max-width: 46ch; }

.hero__proof {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: var(--sp-3);
}
.hero__dots { display: flex; }
.hero__dots i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-style: normal;
  font-family: var(--font-label);
  font-size: 0.68rem;
  color: #fff;
  background: var(--ruby-plate);
  box-shadow: 0 0 0 2px var(--surface-base), inset 0 0 0 1px rgba(212, 175, 55, 0.55);
}
.hero__dots i + i { margin-left: -11px; }
.hero__dots i:nth-child(2) { background: linear-gradient(135deg, #262220, #100E0D); color: var(--gold); }
.hero__dots i:nth-child(3) { background: var(--gold-plate); color: var(--ink-invert); }
.hero__proof p { font-size: var(--fs-xs); line-height: 1.5; color: var(--ink-soft); }
.hero__proof b { color: var(--ink); font-weight: 800; }


/* ==========================================================================
   02 · DEVICE & FLOATING ART
   ========================================================================== */

.hero__art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(430px, 52vw, 620px);
}

/* Ruby/gold halo behind the device */
.hero__art::before {
  content: '';
  position: absolute;
  width: min(430px, 92%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.42) 0%, rgba(212, 175, 55, 0.12) 46%, transparent 70%);
  filter: blur(6px);
}

/* Thin rotating gold ring for depth */
.hero__ring {
  position: absolute;
  width: min(500px, 104%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--line-gold-faint);
}
.hero__ring::after {
  content: '';
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 55, 0.28);
  animation: spinSlow 46s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero__ring::after { animation: none; } }

.device {
  position: relative;
  z-index: 2;
  /* Best-fit against the hero column: large enough to read as a real app,
     never so large it crowds the copy on tablet widths */
  width: clamp(248px, 27vw, 320px);
  aspect-ratio: 9 / 19.2;
  padding: 9px;
  border-radius: 40px;
  background: linear-gradient(150deg, #2A2724, var(--obsidian) 46%, #23201D);
  box-shadow:
    0 50px 90px -40px rgba(13, 13, 13, 0.7),
    inset 0 0 0 1px rgba(212, 175, 55, 0.55),
    0 0 0 1px rgba(13, 13, 13, 0.12);
  animation: deviceFloat 8s var(--ease-inout) infinite;
}
/* A slow, barely-there hover so the mockup reads as alive without
   distracting from the copy beside it */
@keyframes deviceFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-10px) rotate(-0.6deg); }
}
@media (prefers-reduced-motion: reduce) { .device { animation: none; } }
.device::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 5px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.16);
  z-index: 3;
}
.device__screen {
  position: relative;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: var(--obsidian);
}
.device__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
/* Glass reflection */
.device__screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, rgba(255, 255, 255, 0.16) 0%, transparent 34%, transparent 66%, rgba(255, 255, 255, 0.06) 100%);
  pointer-events: none;
}

/* Floating game tiles beside the device */
.hero__tile {
  position: absolute;
  z-index: 3;
  width: clamp(122px, 15vw, 168px);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface-lift);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px var(--line-gold);
}
.hero__tile img { width: 100%; aspect-ratio: 211 / 260; object-fit: cover; }
.hero__tile figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  padding: 0.5rem 0.65rem;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.hero__tile figcaption em {
  font-style: normal;
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__tile--a { left: 0; top: 12%; }
.hero__tile--b { right: 0; bottom: 16%; }

/* Seal medallion pinned to the device */
.hero__seal {
  position: absolute;
  z-index: 4;
  right: 6%;
  top: 4%;
  animation: sealFloat 9s var(--ease-inout) infinite;
}
@keyframes sealFloat {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50%      { transform: translateY(-14px) rotate(-2deg); }
}
@media (prefers-reduced-motion: reduce) { .hero__seal { animation: none; } }

@media (max-width: 620px) {
  /* Smaller tiles so they frame the device rather than cover it */
  .hero__tile { width: clamp(92px, 26vw, 118px); }
  .hero__tile--a { left: 0; top: 10%; }
  .hero__tile--b { right: 0; bottom: 12%; }
  .hero__tile figcaption { padding: 0.4rem 0.5rem; font-size: 0.6rem; }
  .hero__seal { right: 0; top: 0; }
  .seal { width: 96px; }
}


/* ==========================================================================
   03 · HERO STRIP
   ========================================================================== */

.hero__strip {
  position: relative;
  z-index: 1;
  margin-top: clamp(2.5rem, 1.5rem + 3vw, 4.5rem);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line-gold-faint);
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
}
.hstat {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hstat svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.hstat b {
  display: block;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.hstat span { font-size: 0.72rem; color: var(--ink-soft); }


/* ==========================================================================
   04 · OG PROMO BANNER
   The pre-built marketing banner (assets/images/og_banner) shown as a full
   clickable panel, framed to match the site's card language rather than
   dropped in raw.
   ========================================================================== */

.promo {
  position: relative;
  display: block;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--glow-gold), var(--shadow-lg);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.promo:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px var(--line-gold-strong), 0 34px 74px -30px rgba(212, 175, 55, 0.55), var(--shadow-lg);
}
.promo img {
  width: 100%;
  height: auto;
  display: block;
}
.promo__ring {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px var(--line-gold);
  pointer-events: none;
}
/* Sheen sweep, echoes the button shimmer so the banner feels part of the
   same interactive system rather than a static image drop-in */
.promo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 40%, rgba(255, 255, 255, 0.16) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 1100ms var(--ease-out);
  pointer-events: none;
}
.promo:hover::after { transform: translateX(120%); }

.promo-wrap {
  position: relative;
}
.promo-wrap .chip {
  position: absolute;
  top: clamp(0.8rem, 2vw, 1.4rem);
  left: clamp(0.8rem, 2vw, 1.4rem);
  z-index: 2;
  background: rgba(8, 8, 7, 0.72);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}


/* ==========================================================================
   05 · TOP SLOT PICKS (BENTO)
   ========================================================================== */

.bento {
  display: grid;
  gap: clamp(0.75rem, 0.4rem + 1vw, 1.15rem);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 780px)  { .bento { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { .bento { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 180px; } }

.bcard {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.3rem;
  min-height: 178px;
  padding: 1.15rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface-deep);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line-gold-faint), var(--shadow-sm);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.bcard img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  transition: transform 900ms var(--ease-out), opacity var(--t-base) linear;
}
/* Two stacked scrims: a soft overall dim, then a hard base so the label
   stays legible over bright game art */
.bcard::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.15) 0%, rgba(5, 5, 5, 0.45) 42%, rgba(5, 5, 5, 0.98) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.28), rgba(5, 5, 5, 0.28));
}
.bcard > * { position: relative; z-index: 2; }
.bcard:hover { transform: translateY(-5px); box-shadow: inset 0 0 0 1px var(--line-gold-strong), var(--shadow-lg); }
.bcard:hover img { transform: scale(1.07); opacity: 0.75; }

.bcard__name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 0.8vw, 1.72rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
}
.bcard__meta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.bcard__meta::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line-gold), transparent);
}
.bcard__go {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--gold);
  box-shadow: inset 0 0 0 1px var(--line-gold);
  font-size: 0.78rem;
  background: rgba(13, 13, 13, 0.42);
  transition: background-color var(--t-base) linear, color var(--t-base) linear, transform var(--t-base) var(--ease-out);
}
.bcard:hover .bcard__go { background: var(--ruby); color: #fff; transform: rotate(-45deg); }

/* 6-column bento: row 1 = xl + lg, row 2 = xl (continued) + md,
   row 3 = three sm cards. No orphan gaps at any breakpoint. */
@media (min-width: 1100px) {
  .bcard--xl { grid-column: span 3; grid-row: span 2; }
  .bcard--lg { grid-column: span 3; }
  .bcard--md { grid-column: span 3; }
  .bcard--sm { grid-column: span 2; }
}
@media (min-width: 780px) and (max-width: 1099px) {
  .bcard--xl { grid-column: span 2; }
  .bcard--lg { grid-column: span 2; }
}

/* On phones the tiles are small and the art is loud: dim it hard and drop
   the supporting line so the room name stays readable */
@media (max-width: 779px) {
  .bcard { min-height: 152px; padding: 1rem; }
  .bcard img { opacity: 0.4; }
  .bcard .fine { display: none; }
  .bcard__name { font-size: 1.15rem; }
  .bcard__go { width: 28px; height: 28px; top: 0.7rem; right: 0.7rem; font-size: 0.68rem; }
}


/* ==========================================================================
   06 · FEATURE PANELS
   ========================================================================== */

/* Six panels: 3 × 2 on desktop, 2 × 3 on tablet, stacked on phones —
   never a lonely orphan row */
.feat-grid {
  display: grid;
  gap: clamp(1rem, 0.6rem + 1.2vw, 1.6rem);
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feat-grid { grid-template-columns: repeat(3, 1fr); } }
.feat h3 { font-family: var(--font-body); font-size: 1.06rem; font-weight: 800; letter-spacing: 0; margin-bottom: 0.6rem; }
.feat p { font-size: var(--fs-sm); line-height: 1.68; }

/* Split showcase: dark panel + copy */
.split {
  display: grid;
  gap: clamp(1.75rem, 1rem + 3vw, 3.5rem);
  align-items: center;
}
@media (min-width: 940px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--flip .split__media { order: 2; }
}
.split__media { position: relative; }
.split__copy { display: grid; gap: var(--sp-4); }


/* ==========================================================================
   07 · STEPS LADDER
   ========================================================================== */

.ladder {
  position: relative;
  display: grid;
  gap: clamp(1.1rem, 0.6rem + 1.4vw, 1.75rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 236px), 1fr));
}

/* The connecting line that draws itself across the steps */
.ladder::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--ruby));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1500ms var(--ease-out) 200ms;
  display: none;
}
.ladder.is-in::before { transform: scaleX(1); }
@media (min-width: 900px) { .ladder::before { display: block; } }

.step {
  position: relative;
  display: grid;
  gap: 0.75rem;
  padding: 1.6rem 1.35rem;
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 46%),
    var(--surface-lift);
  box-shadow: inset 0 0 0 1px var(--line-ink), var(--shadow-sm);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: inset 0 0 0 1px var(--line-gold-strong), var(--shadow-md);
}
.step__num {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-family: var(--font-label);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--surface-base);
  box-shadow: inset 0 0 0 1px var(--line-gold), 0 0 0 6px var(--surface-base);
  transition: background var(--t-base) linear, color var(--t-base) linear;
}
.step:hover .step__num { color: #fff; }
.step:hover .step__num { background: var(--ruby-plate); }
.step h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 800; letter-spacing: 0; }
.step p { font-size: var(--fs-sm); line-height: 1.66; }


/* ==========================================================================
   08 · BONUS ALTAR
   ========================================================================== */

.altar {
  position: relative;
  overflow: hidden;
  background: var(--surface-deep);
  color: var(--ink-muted);
}
.altar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(820px 500px at 16% 10%, rgba(155, 17, 30, 0.72), transparent 62%),
    radial-gradient(620px 420px at 88% 88%, rgba(212, 175, 55, 0.22), transparent 64%);
}
.altar::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(to right, rgba(212, 175, 55, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(212, 175, 55, 0.08) 1px, transparent 1px);
  background-size: 90px 90px;
  -webkit-mask-image: radial-gradient(80% 70% at 50% 50%, #000, transparent 76%);
  mask-image: radial-gradient(80% 70% at 50% 50%, #000, transparent 76%);
}
.altar > .shell { position: relative; z-index: 1; }

.altar__grid {
  display: grid;
  gap: clamp(2rem, 1rem + 3vw, 3.5rem);
  align-items: center;
}
@media (min-width: 940px) { .altar__grid { grid-template-columns: 1.15fr 0.85fr; } }

.altar h2 { color: var(--ink); }
.altar__amount {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 1rem + 11vw, 8.5rem);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.04em;
  background: var(--gold-plate);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.altar__terms { font-size: 0.76rem; line-height: 1.62; color: rgba(255, 255, 255, 0.42); max-width: 52ch; }

.altar__card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.5rem, 1rem + 1.6vw, 2.2rem);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px var(--line-gold);
}
.altar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line-invert);
  font-size: var(--fs-sm);
}
.altar__row:last-of-type { border-bottom: 0; padding-bottom: 0; }
.altar__row span { color: rgba(255, 255, 255, 0.55); }
.altar__row b { color: var(--gold); font-weight: 700; }


/* ==========================================================================
   09 · SCREENSHOT SLIDER
   Native scroll-snap does the dragging/swiping for free (mouse, trackpad,
   touch); JS only drives autoplay, the arrow buttons and the active dot.
   Markup contract: .slider > .slider__viewport > .slider__track > .slider__slide*
   plus .slider__prev / .slider__next and a .slider__dots row.
   ========================================================================== */

.slider { position: relative; }

.slider__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* Bleed the first/last slide's padding out to the shell edge so the row
     lines up with everything above it while still snapping cleanly */
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  scroll-padding-inline: var(--gutter);
}
.slider__viewport::-webkit-scrollbar { display: none; }

.slider__track {
  display: flex;
  gap: clamp(1rem, 0.6rem + 1.4vw, 1.75rem);
  width: max-content;
  padding-block: 0.6rem 1.4rem;
}

.slider__slide {
  flex: 0 0 auto;
  width: clamp(200px, 26vw, 260px);
  scroll-snap-align: start;
  display: grid;
  gap: 0.75rem;
}

.slide-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface-deep);
  box-shadow: inset 0 0 0 1px var(--line-gold-faint), var(--shadow-md);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.slide-frame img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
  transition: transform 700ms var(--ease-out);
}
.slide-frame::after {
  content: '\002B';
  position: absolute;
  right: 0.6rem;
  bottom: 0.6rem;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(8, 8, 7, 0.66);
  color: var(--gold);
  font-size: 0.9rem;
  opacity: 0;
  transform: scale(0.8);
  box-shadow: inset 0 0 0 1px var(--line-gold);
  transition: opacity var(--t-base) linear, transform var(--t-base) var(--ease-spring);
}
.slider__slide:hover .slide-frame {
  transform: translateY(-6px);
  box-shadow: inset 0 0 0 1px var(--line-gold-strong), var(--shadow-lg);
}
.slider__slide:hover .slide-frame img { transform: scale(1.06); }
.slider__slide:hover .slide-frame::after,
.slide-frame:focus-visible::after { opacity: 1; transform: scale(1); }

.slider__slide figcaption {
  text-align: center;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* Arrow controls, hidden until the viewport is wide enough to have room
   for them beside the shell gutter */
.slider__nav {
  position: absolute;
  top: 42%;
  display: none;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  z-index: 3;
  background: rgba(8, 8, 7, 0.72);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px var(--line-gold), var(--shadow-md);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  font-size: 1.1rem;
  transition: background-color var(--t-fast) linear, transform var(--t-base) var(--ease-out);
}
.slider__nav:hover { background: var(--ruby); color: #fff; }
.slider__prev { left: -4px; }
.slider__next { right: -4px; }
@media (min-width: 1180px) {
  .slider__nav { display: grid; }
  .slider__prev { left: -24px; }
  .slider__next { right: -24px; }
}

.slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
}
.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-gold);
  transition: width var(--t-base) var(--ease-out), background-color var(--t-base) linear;
}
.slider__dot.is-active {
  width: 26px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold), var(--ruby-bright));
}


/* ==========================================================================
   10 · VOICES
   ========================================================================== */

.voices {
  display: grid;
  gap: clamp(1rem, 0.6rem + 1.2vw, 1.6rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}


/* ==========================================================================
   11 · COMMUNITY BAND
   ========================================================================== */

.band {
  position: relative;
  display: grid;
  gap: var(--sp-6);
  align-items: center;
  padding: clamp(1.85rem, 1rem + 3vw, 3.25rem);
  border-radius: var(--r-xl);
  background:
    radial-gradient(620px 320px at 88% 8%, rgba(212, 175, 55, 0.18), transparent 66%),
    radial-gradient(560px 320px at 6% 96%, rgba(155, 17, 30, 0.34), transparent 64%),
    linear-gradient(135deg, var(--surface-lift) 0%, var(--surface-tint) 100%);
  box-shadow: inset 0 0 0 1px var(--line-gold), var(--shadow-md);
  overflow: hidden;
}
@media (min-width: 880px) { .band { grid-template-columns: 1fr auto; } }

.band__copy { display: grid; gap: 0.85rem; max-width: 58ch; }
.band h2 { font-size: clamp(1.8rem, 1.3rem + 2vw, 2.8rem); }
.band__glyph {
  position: absolute;
  right: -18px;
  bottom: -46px;
  color: rgba(212, 175, 55, 0.16);
  pointer-events: none;
}
.band__glyph svg { width: 210px; height: 210px; }


/* ==========================================================================
   12 · KEYWORD STRIP
   Styles moved to main.css so the closing search-term paragraph renders
   consistently in every page footer, not just the homepage.
   ========================================================================== */
