:root{
  --olo-bg: #000000;
  --olo-panel: #07070b;
  --olo-panel-2: #0d0d14;
  --olo-text: #f7f2f8;
  --olo-muted: #c7bcc8;
  --olo-line: rgba(255,255,255,0.10);
  --olo-line-strong: rgba(255,255,255,0.18);
  --olo-pink: #ff4da6;
  --olo-pink-soft: #ff87c7;
  --olo-purple: #8b3dff;
  --olo-shadow: 0 20px 70px rgba(0,0,0,0.55);
  --olo-max: 1400px;
  --olo-radius: 18px;
}

*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body.olo-home-v2{
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top center, rgba(255, 77, 166, 0.10), transparent 30%),
    radial-gradient(circle at 75% 15%, rgba(139, 61, 255, 0.12), transparent 22%),
    #000;
  color: var(--olo-text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

body.olo-home-v2 a{
  color: var(--olo-text);
  text-decoration: none;
}

/* accessibility */
body.olo-home-v2 .sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* top bar */
body.olo-home-v2 .olo-topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0,0,0,0.84);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--olo-line);
}

body.olo-home-v2 .olo-topbar-inner{
  width: min(var(--olo-max), calc(100% - 34px));
  margin: 0 auto;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

body.olo-home-v2 .olo-wordmark{
  color: var(--olo-pink);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

body.olo-home-v2 .olo-nav{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}

body.olo-home-v2 .olo-nav a{
  position: relative;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  padding: 8px 0;
}

body.olo-home-v2 .olo-nav a:hover,
body.olo-home-v2 .olo-nav a.is-active{
  color: #fff;
}

body.olo-home-v2 .olo-nav a.is-active::after,
body.olo-home-v2 .olo-nav a:hover::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  border-radius: 99px;
  background: var(--olo-pink);
  box-shadow: 0 0 12px rgba(255,77,166,0.55);
}

body.olo-home-v2 .olo-social a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 77, 166, 0.35);
  border-radius: 999px;
  color: var(--olo-pink-soft);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: 0.25s ease;
}

body.olo-home-v2 .olo-social a:hover{
  background: rgba(255,77,166,0.10);
  border-color: rgba(255, 77, 166, 0.70);
  color: #fff;
}

/* hero */
body.olo-home-v2 .hero-shell{
  width: min(var(--olo-max), calc(100% - 34px));
  margin: 0 auto;
  padding: 14px 0 0;
}

body.olo-home-v2 .hero-grid{
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 540px;
  background: #020204;
  border: 1px solid var(--olo-line);
  box-shadow: var(--olo-shadow);
  overflow: hidden;
  align-items: start;
}

body.olo-home-v2 .hero-logo-panel{
  position: relative;
  padding: 28px 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 30% 18%, rgba(255,77,166,0.18), transparent 26%),
    radial-gradient(circle at 55% 35%, rgba(139,61,255,0.12), transparent 30%),
    #020204;
}

body.olo-home-v2 .hero-logo-image{
  display: block;
  width: 100%;
  max-width: 760px;
  margin: 0 auto 18px;
  filter: saturate(1.08) contrast(1.05);
}

body.olo-home-v2 .album-title{
  margin: 0 0 26px;
  color: var(--olo-pink-soft);
  font-size: clamp(30px, 3.1vw, 58px);
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  line-height: 1.04;
  text-align: left;
}

body.olo-home-v2 .hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

body.olo-home-v2 .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 72px;
  padding: 0 26px;
  border-radius: 14px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

body.olo-home-v2 .btn:hover{
  transform: translateY(-2px);
}

body.olo-home-v2 .btn-primary{
  color: var(--olo-pink-soft);
  border: 2px solid rgba(255,77,166,0.65);
  background: rgba(255,77,166,0.08);
  box-shadow: 0 0 0 1px rgba(255,77,166,0.10) inset;
}

body.olo-home-v2 .btn-primary:hover{
  background: rgba(255,77,166,0.14);
  box-shadow: 0 0 26px rgba(255,77,166,0.18);
}

body.olo-home-v2 .btn-secondary{
  color: #f6edf4;
  border: 2px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.03);
}

body.olo-home-v2 .btn-secondary:hover{
  border-color: rgba(255,255,255,0.40);
  background: rgba(255,255,255,0.07);
}

body.olo-home-v2 .hero-photo-panel{
  position: relative;
  min-height: 100%;
  background: #000;
}

body.olo-home-v2 .hero-photo{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}

body.olo-home-v2 .hero-photo-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.15), rgba(0,0,0,0)),
    linear-gradient(to top, rgba(0,0,0,0.10), rgba(0,0,0,0));
  pointer-events: none;
}

/* content strip */
body.olo-home-v2 .content-strip{
  width: min(var(--olo-max), calc(100% - 34px));
  margin: 0 auto;
  border-left: 1px solid var(--olo-line);
  border-right: 1px solid var(--olo-line);
  border-bottom: 1px solid var(--olo-line);
  background: linear-gradient(to bottom, #040409, #020204);
}

body.olo-home-v2 .content-grid{
  display: grid;
  grid-template-columns: 1fr 1.28fr 1fr;
  gap: 34px;
  padding: 28px 34px 30px;
}

body.olo-home-v2 .panel-title{
  margin: 0 0 18px;
  color: var(--olo-pink-soft);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* release */
body.olo-home-v2 .release-card,
body.olo-home-v2 .video-card{
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--olo-line);
  border-radius: var(--olo-radius);
  overflow: hidden;
  box-shadow: var(--olo-shadow);
}

body.olo-home-v2 .release-art{
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  display: block;
}

body.olo-home-v2 .release-content{
  padding: 18px 18px 20px;
}

body.olo-home-v2 .release-content h3,
body.olo-home-v2 .video-meta h3{
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

body.olo-home-v2 .small-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,77,166,0.46);
  background: rgba(255,77,166,0.08);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

body.olo-home-v2 .small-button:hover{
  background: rgba(255,77,166,0.15);
  border-color: rgba(255,77,166,0.72);
}

/* video */
body.olo-home-v2 .video-frame{
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

body.olo-home-v2 .video-frame iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

body.olo-home-v2 .video-meta{
  padding: 16px 18px 18px;
}
.panel-instagram .orbit-photo{
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
}

.panel-instagram .orbit-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* join */
body.olo-home-v2 .join-shell{
  width: min(var(--olo-max), calc(100% - 34px));
  margin: 0 auto 42px;
  border-left: 1px solid var(--olo-line);
  border-right: 1px solid var(--olo-line);
  border-bottom: 1px solid var(--olo-line);
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.015), rgba(0,0,0,0.04)),
    #020204;
}

body.olo-home-v2 .join-inner{
  padding: 34px;
  text-align: center;
}

body.olo-home-v2 .join-inner h2{
  margin: 0 0 20px;
  font-size: clamp(28px, 2.5vw, 46px);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f2e7f2;
}

body.olo-home-v2 .join-form{
  width: min(760px, 100%);
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  border: 1px solid var(--olo-line-strong);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

body.olo-home-v2 .join-form input{
  min-width: 0;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0 20px;
  min-height: 64px;
  font-size: 20px;
  outline: none;
}

body.olo-home-v2 .join-form input::placeholder{
  color: rgba(255,255,255,0.55);
}

body.olo-home-v2 .join-form button{
  border: 0;
  min-height: 64px;
  padding: 0 26px;
  background: linear-gradient(180deg, rgba(255,77,166,0.95), rgba(184,55,125,0.95));
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

body.olo-home-v2 .join-form button:hover{
  filter: brightness(1.05);
}

body.olo-home-v2 .join-links{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

body.olo-home-v2 .join-links a{
  color: rgba(255,255,255,0.78);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
}

body.olo-home-v2 .join-links a:hover{
  color: #fff;
}

/* responsive */
@media (max-width: 1180px){
  body.olo-home-v2 .hero-grid{
    grid-template-columns: 1fr;
  }

  body.olo-home-v2 .hero-photo-panel{
    min-height: 460px;
  }

  body.olo-home-v2 .content-grid{
    grid-template-columns: 1fr;
  }

  body.olo-home-v2 .insta-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px){
  body.olo-home-v2 .olo-topbar-inner{
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 0;
  }

  body.olo-home-v2 .olo-wordmark,
  body.olo-home-v2 .olo-social{
    text-align: center;
  }

  body.olo-home-v2 .olo-nav{
    gap: 18px;
  }

  body.olo-home-v2 .hero-logo-panel,
  body.olo-home-v2 .join-inner,
  body.olo-home-v2 .content-grid{
    padding-left: 20px;
    padding-right: 20px;
  }

  body.olo-home-v2 .album-title{
    font-size: clamp(26px, 7vw, 48px);
    letter-spacing: 0.18em;
  }

  body.olo-home-v2 .btn{
    width: 100%;
    min-width: 0;
    min-height: 64px;
    font-size: 20px;
  }

  body.olo-home-v2 .hero-actions{
    flex-direction: column;
  }

  body.olo-home-v2 .join-form{
    grid-template-columns: 1fr;
  }

  body.olo-home-v2 .join-form button{
    width: 100%;
  }
}

@media (max-width: 560px){
  body.olo-home-v2 .hero-shell,
  body.olo-home-v2 .content-strip,
  body.olo-home-v2 .join-shell{
    width: min(var(--olo-max), calc(100% - 18px));
  }

  body.olo-home-v2 .olo-topbar-inner{
    width: min(var(--olo-max), calc(100% - 18px));
  }

  body.olo-home-v2 .olo-wordmark{
    font-size: 26px;
  }

  body.olo-home-v2 .olo-nav{
    gap: 14px;
  }

  body.olo-home-v2 .olo-nav a{
    font-size: 13px;
  }

  body.olo-home-v2 .panel-title{
    font-size: 16px;
  }

  body.olo-home-v2 .release-content h3,
  body.olo-home-v2 .video-meta h3{
    font-size: 20px;
  }

  body.olo-home-v2 .insta-grid{
    gap: 8px;
  }

  body.olo-home-v2 .join-inner h2{
    letter-spacing: 0.12em;
  }
}

/* =========================
   ABOUT PAGE
========================= */

body.olo-about-page .about-main{
  width: min(var(--olo-max), calc(100% - 34px));
  margin: 0 auto 42px;
}

body.olo-about-page .about-hero-shell,
body.olo-about-page .about-band-panel,
body.olo-about-page .about-members-shell,
body.olo-about-page .about-closing-shell{
  border-left: 1px solid var(--olo-line);
  border-right: 1px solid var(--olo-line);
  border-bottom: 1px solid var(--olo-line);
  background: linear-gradient(to bottom, #040409, #020204);
}

body.olo-about-page .about-hero-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
  padding: 42px 34px;
}

body.olo-about-page .about-kicker,
body.olo-about-page .about-section-label{
  margin: 0 0 12px;
  color: var(--olo-pink-soft);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.olo-about-page .about-hero-copy h1{
  margin: 0 0 24px;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

body.olo-about-page .about-intro p,
body.olo-about-page .about-band-copy p,
body.olo-about-page .member-content p,
body.olo-about-page .about-closing-inner p{
  margin: 0 0 18px;
  color: rgba(255,255,255,0.84);
  font-size: 20px;
  line-height: 1.65;
}

body.olo-about-page .about-hero-image-wrap{
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--olo-line);
  border-radius: 18px;
  background:
    radial-gradient(circle at center, rgba(255,77,166,0.18), transparent 34%),
    radial-gradient(circle at 60% 40%, rgba(139,61,255,0.18), transparent 28%),
    #05050a;
}

body.olo-about-page .about-hero-image{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 540px;
  display: block;
  object-fit: contain;
}

body.olo-about-page .about-hero-glow{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255,77,166,0.16), transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.04), transparent 45%);
  pointer-events: none;
}

body.olo-about-page .about-band-panel-inner{
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 34px;
  align-items: start;
  padding: 34px;
}

body.olo-about-page .about-band-copy h2,
body.olo-about-page .about-members-header h2,
body.olo-about-page .about-closing-inner h2{
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.02;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

body.olo-about-page .about-band-image{
  overflow: hidden;
  border: 1px solid var(--olo-line);
  border-radius: 18px;
  background: #000;
  min-height: 360px;
}

body.olo-about-page .about-band-image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body.olo-about-page .about-members-inner{
  padding: 34px;
}

body.olo-about-page .about-members-header{
  margin-bottom: 24px;
}

body.olo-about-page .member-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

body.olo-about-page .member-card{
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--olo-line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--olo-shadow);
}

body.olo-about-page .member-image-wrap{
  aspect-ratio: 0.85 / 1;
  background: #08080d;
}

body.olo-about-page .member-image-wrap img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

body.olo-about-page .member-content{
  padding: 18px 16px 20px;
}

body.olo-about-page .member-content h3{
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

body.olo-about-page .member-role{
  margin: 0 0 12px !important;
  color: var(--olo-pink-soft) !important;
  font-size: 13px !important;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.olo-about-page .member-content p{
  font-size: 16px;
  line-height: 1.55;
}

body.olo-about-page .about-closing-inner{
  padding: 40px 34px 44px;
  text-align: center;
}

body.olo-about-page .about-closing-inner p{
  max-width: 720px;
  margin: 0 auto 24px;
}

body.olo-about-page .about-closing-links{
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 1220px){
  body.olo-about-page .member-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px){
  body.olo-about-page .about-hero-grid,
  body.olo-about-page .about-band-panel-inner{
    grid-template-columns: 1fr;
  }

  body.olo-about-page .about-hero-image-wrap{
    min-height: 320px;
  }

  body.olo-about-page .member-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px){
  body.olo-about-page .about-main{
    width: min(var(--olo-max), calc(100% - 18px));
  }

  body.olo-about-page .about-hero-grid,
  body.olo-about-page .about-band-panel-inner,
  body.olo-about-page .about-members-inner,
  body.olo-about-page .about-closing-inner{
    padding-left: 20px;
    padding-right: 20px;
  }

  body.olo-about-page .about-intro p,
  body.olo-about-page .about-band-copy p,
  body.olo-about-page .about-closing-inner p{
    font-size: 18px;
  }

  body.olo-about-page .member-grid{
    grid-template-columns: 1fr;
  }

  body.olo-about-page .member-content h3{
    font-size: 22px;
  }
}

.orbit-subtext{
  opacity:.7;
  margin-bottom:30px;
}

.orbit-links{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:18px;
}

.orbit-btn{
  padding:14px 26px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.25);
  text-decoration:none;
  font-weight:700;
  transition:.25s ease;
}

.orbit-btn.spotify:hover{
  background:#1db954;
  box-shadow:0 0 14px #1db954;
}

.orbit-btn.youtube:hover{
  background:#ff0000;
  box-shadow:0 0 14px #ff0000;
}

.orbit-btn.instagram:hover{
  background:#ff2d75;
  box-shadow:0 0 14px #ff2d75;
}

.orbit-btn.bandcamp:hover{
  background:#629aa9;
  box-shadow:0 0 14px #629aa9;
}

/* ORBIT CONSOLE */

.join-inner.orbit-console{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,77,166,0.10), transparent 28%),
    radial-gradient(circle at 15% 100%, rgba(139,61,255,0.08), transparent 20%),
    radial-gradient(circle at 85% 100%, rgba(255,77,166,0.08), transparent 20%);
}

.orbit-console-kicker{
  margin: 0 0 10px;
  color: var(--olo-pink-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.9;
}

.orbit-subtext{
  margin: 0 0 26px;
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  letter-spacing: 0.04em;
}

.orbit-console-panel{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 28px;
  width: min(760px, 100%);
}

.orbit-console-line{
  flex: 1 1 auto;
  height: 2px;
  border-radius: 999px;
  background:
    linear-gradient(to right,
      rgba(255,255,255,0.00),
      rgba(255,77,166,0.65),
      rgba(255,255,255,0.00));
  opacity: 0.9;
}

.orbit-console-core{
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, var(--olo-pink-soft) 45%, rgba(255,77,166,0.2) 70%, rgba(255,77,166,0) 100%);
  box-shadow:
    0 0 10px rgba(255,77,166,0.9),
    0 0 24px rgba(255,77,166,0.45),
    0 0 48px rgba(139,61,255,0.22);
  animation: orbitPulse 2.4s ease-in-out infinite;
}

.orbit-console-core::before{
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(255,77,166,0.25);
  border-radius: 50%;
}

.orbit-console-core::after{
  content: "";
  position: absolute;
  inset: -22px;
  border: 1px solid rgba(139,61,255,0.16);
  border-radius: 50%;
}

.orbit-links{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.orbit-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.orbit-btn:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.34);
}

.orbit-btn.spotify:hover{
  background: rgba(29,185,84,0.16);
  box-shadow: 0 0 18px rgba(29,185,84,0.35);
}

.orbit-btn.youtube:hover{
  background: rgba(255,0,0,0.16);
  box-shadow: 0 0 18px rgba(255,0,0,0.35);
}

.orbit-btn.instagram:hover{
  background: rgba(255,45,117,0.16);
  box-shadow: 0 0 18px rgba(255,45,117,0.35);
}

.orbit-btn.bandcamp:hover{
  background: rgba(98,154,169,0.16);
  box-shadow: 0 0 18px rgba(98,154,169,0.35);
}

@keyframes orbitPulse{
  0%, 100%{
    transform: scale(1);
    opacity: 0.95;
  }
  50%{
    transform: scale(1.12);
    opacity: 1;
  }
}

/* =========================
   ALBUM PAGE
========================= */

body.olo-album-page .album-main{
  width: min(var(--olo-max), calc(100% - 34px));
  margin: 0 auto 42px;
}

body.olo-album-page .album-hero-shell,
body.olo-album-page .album-overview-shell,
body.olo-album-page .album-tracklist-shell,
body.olo-album-page .album-lineup-shell{
  position: relative;
  border-left: 1px solid var(--olo-line);
  border-right: 1px solid var(--olo-line);
  border-bottom: 1px solid var(--olo-line);
  background: linear-gradient(to bottom, #040409, #020204);
  overflow: hidden;
}

body.olo-album-page .album-hero-shell{
  min-height: 620px;
}

body.olo-album-page .album-hero-bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,.72), rgba(0,0,0,.42)),
    linear-gradient(to top, rgba(0,0,0,.40), rgba(0,0,0,.10)),
    url('/images/album-cover.jpg') center/cover no-repeat;
  filter: blur(0px) saturate(1.05);
  transform: scale(1.05);
}

body.olo-album-page .album-hero-shell::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(255,77,166,0.18), transparent 24%),
    radial-gradient(circle at 72% 28%, rgba(139,61,255,0.16), transparent 22%);
  pointer-events: none;
}

body.olo-album-page .album-hero-inner{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: flex-start;
  padding: 50px 34px;
}

body.olo-album-page .album-cover-wrap{
  width: 100%;
  max-width: 420px;
  justify-self: center;
}

body.olo-album-page .album-cover-main{
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 24px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 28px 80px rgba(0,0,0,0.55),
    0 0 60px rgba(255,77,166,0.10);
}

body.olo-album-page .album-hero-copy{
  max-width: 760px;
}

body.olo-album-page .album-kicker{
  margin: 0 0 12px;
  color: var(--olo-pink-soft);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

body.olo-album-page .album-hero-copy h1{
  margin: 0 0 8px;
  font-size: clamp(42px, 6vw, 88px);
  line-height: 0.92;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

body.olo-album-page .album-year{
  margin: 0 0 22px;
  color: rgba(255,255,255,0.62);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.olo-album-page .album-hero-text{
  margin: 0 0 26px;
  max-width: 58ch;
  color: rgba(255,255,255,0.86);
  font-size: 20px;
  line-height: 1.6;
}

body.olo-album-page .album-hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

body.olo-album-page .album-overview-grid{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  padding: 34px;
}

body.olo-album-page .album-info-card,
body.olo-album-page .album-listen-card{
  border: 1px solid var(--olo-line);
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  box-shadow: var(--olo-shadow);
}

body.olo-album-page .album-info-card{
  padding: 28px;
}

body.olo-album-page .album-info-card h2{
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.04;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

body.olo-album-page .album-info-card p{
  margin: 0 0 18px;
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  line-height: 1.65;
}

body.olo-album-page .album-overview-links{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

body.olo-album-page .album-overview-links a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.olo-album-page .album-overview-links a:hover{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.24);
}

body.olo-album-page .album-listen-card{
  padding: 24px;
}

body.olo-album-page .album-tracklist-inner,
body.olo-album-page .album-lineup-inner{
  padding: 34px;
}

body.olo-album-page .album-section-head{
  margin-bottom: 22px;
}

body.olo-album-page .album-section-head h2{
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.02;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

body.olo-album-page .album-section-sub{
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-size: 16px;
  line-height: 1.55;
}

body.olo-album-page .tracklist.card{
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--olo-line);
  border-radius: 20px;
  box-shadow: var(--olo-shadow);
  padding: 18px;
}

body.olo-album-page .tracks{
  margin: 0;
  padding: 0;
  list-style: none;
}

body.olo-album-page .track{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

body.olo-album-page .track + .track{
  margin-top: 8px;
}

body.olo-album-page .track:hover{
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.10);
  transform: translateY(-1px);
}

body.olo-album-page .track-left{
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

body.olo-album-page .track-num{
  color: var(--olo-pink-soft);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  min-width: 30px;
}

body.olo-album-page .track-title{
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

body.olo-album-page .track-dur{
  color: rgba(255,255,255,0.58);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

body.olo-album-page .expander{
  margin-top: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(8,9,14,0.92);
}

body.olo-album-page .exp-head{
  padding: 20px 20px 14px;
}

body.olo-album-page .lyrics{
  white-space: pre-wrap;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  padding: 6px 18px 18px 26px;
}

body.olo-album-page .lineup{
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

body.olo-album-page .member{
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  transition: background 0.2s ease, border-color 0.2s ease;
}

body.olo-album-page .member:hover{
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.16);
}

body.olo-album-page .member-img{
  width: 68px;
  height: 68px;
  border-radius: 14px;
  object-fit: cover;
}

body.olo-album-page footer{
  margin-top: 0;
}

@media (max-width: 1120px){
  body.olo-album-page .album-hero-inner{
    grid-template-columns: 1fr;
    text-align: center;
  }

  body.olo-album-page .album-cover-wrap{
    max-width: 360px;
  }

  body.olo-album-page .album-hero-copy{
    margin: 0 auto;
  }

  body.olo-album-page .album-hero-actions{
    justify-content: center;
  }

  body.olo-album-page .album-overview-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px){
  body.olo-album-page .album-main{
    width: min(var(--olo-max), calc(100% - 18px));
  }

  body.olo-album-page .album-hero-inner,
  body.olo-album-page .album-overview-grid,
  body.olo-album-page .album-tracklist-inner,
  body.olo-album-page .album-lineup-inner{
    padding-left: 20px;
    padding-right: 20px;
  }

  body.olo-album-page .lineup{
    grid-template-columns: 1fr;
  }

  body.olo-album-page .album-hero-text,
  body.olo-album-page .album-info-card p{
    font-size: 17px;
  }

  body.olo-album-page .track{
    padding: 14px 12px;
  }

  body.olo-album-page .track-title{
    font-size: 16px;
  }
}


body.olo-album-page .member{
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

body.olo-album-page .member-text{
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

body.olo-album-page .member-text span{
  display: block;
}

body.olo-album-page .member .name{
  font-size: 22px;
  font-weight: 800;body.olo-album-page .member{
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

body.olo-album-page .member-text{
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

body.olo-album-page .member-text span{
  display: block;
}

body.olo-album-page .member .name{
  font-size: 22px;
  font-weight: 800;
  line-height: 1.05;
}

body.olo-album-page .member .role{
  color: var(--olo-pink-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.olo-album-page .member .member-more{
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.5;
}
  line-height: 1.05;
}

body.olo-album-page .member .role{
  color: var(--olo-pink-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.olo-album-page .member .member-more{
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.5;
}

body.olo-album-page .member:hover{
  transform: translateY(-2px);
  box-shadow:
    0 10px 28px rgba(0,0,0,.45),
    0 0 30px rgba(255,77,166,.12);
}

body.olo-album-page .album-tabs{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 22px;
}

body.olo-album-page .album-tab{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.22s ease;
}

body.olo-album-page .album-tab:hover{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.24);
}

body.olo-album-page .album-tab.is-active{
  background: rgba(255,77,166,0.14);
  border-color: rgba(255,77,166,0.50);
  color: #fff;
  box-shadow: 0 0 18px rgba(255,77,166,0.12);
}
.album-selector-shell{
  padding:32px 0 10px;
}

.album-selector-inner{
  max-width:1200px;
  margin:auto;
  padding:0 24px;
}
.album-tab.is-active{
  box-shadow:0 0 14px rgba(255,60,150,0.45);
}

.insta-tile
{
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.insta-tile img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
body.olo-home-v2 .panel-instagram .insta-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

body.olo-home-v2 .panel-instagram .insta-tile{
  position: relative;
  display: block;
  width: 100%;
  padding-top: 100%;
  aspect-ratio: auto;
  overflow: hidden;
  border-radius: 14px;
}

body.olo-home-v2 .panel-instagram .insta-tile img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}