:root {
  --bg: #0a110f;
  --deep: #141c19;
  --accent: #38f959;
  --accent2: #8c38c6;
  --lamp: #ffd172;
  --text: #f2f7f4;
  --muted: #8a9a92;
  --glass: rgba(255, 255, 255, 0.06);
  --stroke: rgba(255, 255, 255, 0.14);
  --max: 1120px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(140, 56, 198, 0.22), transparent 55%),
    radial-gradient(900px 500px at 0% 30%, rgba(56, 249, 89, 0.08), transparent 50%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: var(--accent);
  color: #06100b;
  padding: 0.6rem 1rem;
  border-radius: 999px;
}

/* Floating pill nav — not sticky top section menu */
.pill-nav {
  position: fixed;
  right: 1.1rem;
  bottom: 1.25rem;
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  max-width: min(92vw, 22rem);
  justify-content: flex-end;
  padding: 0.45rem;
  border-radius: 999px;
  background: rgba(10, 17, 15, 0.72);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(56, 249, 89, 0.08);
}

.pill-nav a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  color: var(--muted);
  transition: color 0.2s ease, background 0.2s ease;
}

.pill-nav a:hover,
.pill-nav a.is-active {
  color: #06100b;
  background: var(--accent);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 17, 15, 0.25) 0%, rgba(10, 17, 15, 0.55) 45%, rgba(10, 17, 15, 0.92) 100%),
    radial-gradient(700px 400px at 70% 20%, rgba(140, 56, 198, 0.25), transparent 60%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero__copy {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 0 0 5.5rem;
  animation: rise 0.9s ease both;
}

.hero__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero__brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.2rem, 9vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-shadow: 0 0 40px rgba(56, 249, 89, 0.18);
}

.hero__tag {
  margin: 1rem 0 0;
  max-width: 32rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: rgba(242, 247, 244, 0.82);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--neon {
  background: var(--accent);
  color: #06100b;
  box-shadow: 0 0 28px rgba(56, 249, 89, 0.35);
}

.btn--ghost {
  background: transparent;
  border-color: var(--stroke);
  color: var(--text);
}

.btn--violet {
  background: rgba(140, 56, 198, 0.9);
  color: var(--text);
  box-shadow: 0 0 28px rgba(140, 56, 198, 0.35);
}

.band {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 5rem 0 1rem;
}

.band--mist {
  padding-top: 4.5rem;
}

.band__intro {
  max-width: 34rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.band__intro--end {
  margin-left: auto;
  text-align: right;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent2);
}

.band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.lede {
  margin: 0.85rem 0 0;
  color: var(--muted);
}

/* Vertical care timeline */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1.1rem;
  border-left: 1px solid rgba(56, 249, 89, 0.28);
}

.timeline__item {
  position: relative;
  padding: 0 0 2.25rem 1.6rem;
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.7s ease forwards;
}

.timeline__item:nth-child(1) { animation-delay: 0.05s; }
.timeline__item:nth-child(2) { animation-delay: 0.15s; }
.timeline__item:nth-child(3) { animation-delay: 0.25s; }
.timeline__item:nth-child(4) { animation-delay: 0.35s; }

.timeline__mark {
  position: absolute;
  left: -0.42rem;
  top: 0.35rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(56, 249, 89, 0.15), 0 0 18px rgba(56, 249, 89, 0.45);
}

.timeline__body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.timeline__body p {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
}

.band--gallery {
  padding-top: 2rem;
}

.still-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0.85rem;
}

.still {
  margin: 0;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid var(--stroke);
  background: var(--deep);
  min-height: 12rem;
}

.still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 14rem;
  transition: transform 0.6s ease;
}

.still:hover img {
  transform: scale(1.04);
}

.still--wide img {
  min-height: 18rem;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.85rem;
}

.mosaic figure {
  margin: 0;
  overflow: hidden;
  border-radius: 1.35rem;
  border: 1px solid var(--stroke);
  background: #050807;
  box-shadow: inset 0 0 0 1px rgba(56, 249, 89, 0.06);
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.mosaic__hero {
  grid-row: 1 / span 2;
  min-height: 28rem;
}

.mosaic__tile {
  min-height: 13.5rem;
}

.mosaic__tile--span {
  min-height: 12rem;
}

.band--legal,
.band--support {
  padding-bottom: 2rem;
}

.legal-panel,
.support-panel {
  padding: 2rem 1.75rem;
  border-radius: 1.5rem;
  background: linear-gradient(160deg, rgba(20, 28, 25, 0.95), rgba(10, 17, 15, 0.9));
  border: 1px solid var(--stroke);
  box-shadow: 0 0 0 1px rgba(140, 56, 198, 0.08);
}

.prose p {
  color: var(--muted);
  max-width: 46rem;
}

.prose strong {
  color: var(--text);
}

.support-panel .btn {
  margin-top: 1.25rem;
}

.fine {
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.site-foot {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 2rem 0 7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-foot a {
  text-decoration: none;
  color: var(--accent);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .still-row {
    grid-template-columns: 1fr;
  }

  .mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .mosaic__hero {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 22rem;
  }

  .band__intro--end {
    margin-left: 0;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .pill-nav {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    max-width: calc(100vw - 1.5rem);
    justify-content: center;
  }

  .mosaic {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    padding-bottom: 7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .timeline__item,
  .hero__copy {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
