:root{
  --bg: #0b1020;
  --paper: #ffffff;
  --ink: #0b1020;
  --muted: rgba(11,16,32,0.70);
  --line: rgba(11,16,32,0.10);
  --accent: #0a2a66;
  --accent2: #163b86;
  --radius: 18px;
  --shadow: 0 14px 40px rgba(11,16,32,0.12);
  --max: 1080px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #f6f7fb;
  line-height: 1.55;
}

a{ color: var(--accent); text-decoration: none; }
a:hover{ text-decoration: underline; }

.wrap{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip:focus{
  left: 20px;
  top: 20px;
  width:auto;
  height:auto;
  padding: 10px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  z-index: 10;
}

.topbar{
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(246,247,251,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.announce{
  background: linear-gradient(180deg, var(--accent2), var(--accent));
  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.announce_inner{
  padding: 10px 0;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.announce_inner strong{ font-weight: 850; }

.topbar_inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  padding: 12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
}

.brand_mark{
  width: 42px;
  height: auto;
}

.brand_name{
  font-weight: 800;
  letter-spacing: 0.2px;
}
.brand_sub{
  font-size: 13px;
  color: var(--muted);
}

.nav{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a{
  font-size: 14px;
  color: rgba(11,16,32,0.85);
  padding: 8px 10px;
  border-radius: 10px;
}
.nav a:hover{
  background: rgba(11,16,32,0.05);
  text-decoration: none;
}

.hero{
  padding: 34px 0 18px;
}
.hero_grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
}

.kicker{
  display:inline-block;
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: rgba(11,16,32,0.75);
  margin: 0 0 10px;
}

h1{
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  margin: 0 0 14px;
}

.subhead{
  font-size: 16px;
  color: rgba(11,16,32,0.82);
  margin: 0 0 16px;
}

.callout{
  background: var(--paper);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10,11,16,0.08);
}

.h2{
  font-size: 18px;
  margin: 0 0 10px;
}

.note{
  color: var(--muted);
  margin-top: 10px;
}

.cta_row{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.btn{
  display:inline-block;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: rgba(11,16,32,0.92);
  font-weight: 650;
}
.btn:hover{
  text-decoration: none;
  border-color: rgba(11,16,32,0.18);
  background: rgba(11,16,32,0.02);
}
.btn.primary{
  background: linear-gradient(180deg, var(--accent2), var(--accent));
  color: #ffffff;
  border-color: transparent;
}
.btn.primary:hover{ opacity: 0.95; }

.hero_media{
  display:flex;
  flex-direction: column;
  align-items: flex-end;
}

.vote_over_photo{
  width: 100%;
  max-width: 360px;
  text-align: center;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0.14em;
  font-size: 13px;
  margin: 0 0 10px;
}

.portrait{
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #e9ecf7;
}

.panel{
  padding: 34px 0;
}
.panel.alt{
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

h2{
  font-size: 24px;
  margin: 0 0 14px;
}
p{ margin: 0 0 12px; color: rgba(11,16,32,0.92); }

.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.media_card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.media_card img{
  width: 100%;
  display:block;
  height: auto;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 8px 20px rgba(11,16,32,0.08);
}
.card h3{
  margin: 0 0 8px;
  font-size: 16px;
}
.card p{
  margin: 0;
  color: rgba(11,16,32,0.86);
}

.listen_lockup{
  margin: 0 0 14px;
}
.listen_lockup img{
  width: min(360px, 100%);
  height: auto;
}

.event{
  background: rgba(11,16,32,0.03);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 12px;
}
.event h3{
  margin: 0 0 6px;
  font-size: 16px;
}

.qr{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.qr img{
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #ffffff;
}
.small{
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}

.hr{
  height: 1px;
  background: var(--line);
  margin: 18px 0;
  border: 0;
}

.footer{
  background: #ffffff;
  border-top: 1px solid var(--line);
  color: rgba(11,16,32,0.92);
  padding: 22px 0;
}

.footer_inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}

.footer_note{
  margin: 0;
  font-weight: 750;
  letter-spacing: 0.2px;
  color: rgba(11,16,32,0.80);
}

.footer_mark img{
  width: 140px;
  height: auto;
}

@media (max-width: 920px){
  .hero_grid{ grid-template-columns: 1fr; }
  .hero_media{ align-items:flex-start; }
  .vote_over_photo{ text-align: left; }
  .grid2{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .footer_inner{ flex-direction: column; align-items:flex-start; }
  .announce_inner{ font-size: 13px; padding: 9px 0; }
}
