:root {
  --ink: #05080b;
  --muted: #5b6871;
  --line: #d7e2e8;
  --paper: #f7fbfd;
  --sand: #eaf3f8;
  --white: #ffffff;
  --blue: #168bce;
  --blue-dark: #0d6fa9;
  --blue-soft: #dff2fb;
  --amber: #f0b34f;
  --coral: #e23d68;
  --shadow: 0 24px 70px rgba(5, 8, 11, 0.16);
  --radius: 8px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  padding-bottom: 94px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(216, 224, 222, 0.7);
  display: flex;
  gap: 24px;
  height: 74px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: flex;
  min-width: 220px;
}

.brand img {
  height: 48px;
  object-fit: contain;
  width: 210px;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  justify-content: center;
}

.desktop-nav a {
  color: #34494b;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a:hover {
  color: var(--blue);
}

.header-action,
.primary-button,
.secondary-button,
.donation-card a,
.player-donate,
.kofi-button,
.patreon-button {
  align-items: center;
  border-radius: var(--radius);
  gap: 10px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
}

.header-action,
.primary-button,
.donation-card a,
.player-donate,
.kofi-button,
.patreon-button {
  background: var(--blue);
  color: var(--white);
}

.header-action:hover,
.primary-button:hover,
.donation-card a:hover,
.player-donate:hover,
.kofi-button:hover,
.patreon-button:hover {
  background: var(--blue-dark);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.54);
  color: var(--white);
}

.hero {
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

.hero-image,
.hero-overlay {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 8, 11, 0.88) 0%, rgba(5, 8, 11, 0.52) 44%, rgba(5, 8, 11, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 8, 11, 0.44), rgba(5, 8, 11, 0.05) 46%);
}

.hero-content {
  color: var(--white);
  max-width: 760px;
  padding: 132px clamp(20px, 6vw, 84px) 180px;
  position: relative;
  z-index: 1;
}

.hero-logo {
  height: auto;
  aspect-ratio: 1000 / 266;
  margin-bottom: 28px;
  object-fit: contain;
  width: min(480px, 100%);
}

.kicker,
.section-label {
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2 {
  overflow-wrap: anywhere;
  hyphens: auto;
  margin: 0;
}

h1 {
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(42px, 6.8vw, 78px);
  line-height: 1.02;
  max-width: 760px;
}

h2 {
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(31px, 4vw, 56px);
  line-height: 1.08;
}

h3 {
  font-size: 20px;
  margin: 0 0 10px;
}

p {
  line-height: 1.7;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 21px);
  margin: 24px 0 0;
  max-width: 660px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-stats {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 52px 0 0;
  max-width: 560px;
}

.hero-stats div {
  border-left: 1px solid rgba(255, 255, 255, 0.34);
  min-width: 0;
  padding-left: 18px;
}

.hero-stats dt {
  font-size: 30px;
  font-weight: 900;
}

.hero-stats dd {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.35;
  margin: 3px 0 0;
  overflow-wrap: anywhere;
}

.section,
.listen-band {
  padding: clamp(62px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.listen-band {
  background: linear-gradient(135deg, var(--ink), #082f49);
  color: var(--white);
}

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
}

.split,
.two-column,
.contact-grid,
.app-row {
  display: grid;
  gap: clamp(28px, 6vw, 88px);
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
}

.listen-band p,
.apps p,
.support-intro p,
.contact p,
.rich-text p {
  color: var(--muted);
  font-size: 17px;
  margin: 20px 0 0;
}

.listen-band p {
  color: rgba(255, 255, 255, 0.76);
}

.now-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  display: grid;
  gap: 16px;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  padding: 24px;
}

.now-card strong,
.now-card span {
  display: block;
}

.now-card span {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

.track-art-wrap {
  height: 72px;
  position: relative;
  width: 72px;
}

.track-art {
  background: #0d1b1d;
  border-radius: 7px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.live-dot {
  background: #ef6a54;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(239, 106, 84, 0.16);
  height: 11px;
  position: absolute;
  right: -2px;
  top: -2px;
  width: 11px;
}

.mini-play,
.player-button {
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-weight: 900;
}

.mini-play {
  background: var(--blue);
  color: var(--white);
  height: 58px;
  width: 58px;
}

.icon-play {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  position: relative;
}

.play-shape {
  border-bottom: 10px solid transparent;
  border-left: 16px solid currentColor;
  border-top: 10px solid transparent;
  display: block;
  height: 0;
  margin-left: 4px;
  width: 0;
}

.icon-play.is-playing .play-shape {
  border: 0;
  height: 20px;
  margin-left: 0;
  position: relative;
  width: 16px;
}

.icon-play.is-playing .play-shape::before,
.icon-play.is-playing .play-shape::after {
  background: currentColor;
  border-radius: 2px;
  content: "";
  height: 20px;
  position: absolute;
  top: 0;
  width: 5px;
}

.icon-play.is-playing .play-shape::before {
  left: 0;
}

.icon-play.is-playing .play-shape::after {
  right: 0;
}

.rich-text {
  border-top: 1px solid var(--line);
  padding-top: 6px;
}

.story-logo {
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 32px;
  padding: 14px;
  width: 118px;
}

.muted {
  background: var(--sand);
}

.section-heading {
  margin-bottom: 34px;
  max-width: 760px;
}

.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid article,
.timeline article,
.donation-card,
.store-list a {
  background: var(--white);
  border: 1px solid rgba(216, 224, 222, 0.86);
  border-radius: var(--radius);
  box-shadow: 0 10px 32px rgba(20, 36, 38, 0.07);
}

.feature-grid article {
  padding: 24px;
}

.feature-icon {
  color: var(--coral);
  display: inline-block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 22px;
}

.feature-grid p,
.timeline p,
.donation-card p {
  color: var(--muted);
  margin: 0;
}

.timeline {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline article {
  padding: 24px;
}

.program-time {
  color: var(--blue);
  display: block;
  font-weight: 900;
  margin-bottom: 20px;
}

.support {
  background: var(--ink);
  color: var(--white);
}

.support-intro {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.8fr);
  margin-bottom: 34px;
}

.support-intro p {
  color: rgba(255, 255, 255, 0.72);
}

.donation-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.donation-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 24px;
}

.donation-card.featured {
  border-color: var(--amber);
  box-shadow: 0 18px 58px rgba(217, 145, 61, 0.22);
}

.donation-card .price {
  color: var(--ink);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 28px;
}

.donation-card .price span {
  color: var(--muted);
  font-size: 15px;
}

.donation-card a {
  margin-top: auto;
}

.apps {
  background: var(--blue-soft);
}

.store-list {
  display: grid;
  gap: 12px;
}

.store-list a {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 22px;
}

.store-list strong,
.store-list span {
  display: block;
}

.store-list a > img {
  height: 30px;
  max-width: 34px;
  object-fit: contain;
  width: 30px;
}

.apps-logo {
  margin-top: 36px;
  max-width: 226px;
  width: 100%;
}

.store-list span {
  color: var(--muted);
  margin-top: 6px;
}

address {
  display: grid;
  min-width: 0;
  overflow-wrap: anywhere;
  font-style: normal;
  gap: 12px;
}

address .contact-line {
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--blue-dark);
  display: flex;
  gap: 16px;
  font-size: 20px;
  font-weight: 800;
  padding: 0 0 14px;
}

.contact-line img {
  height: 24px;
  opacity: 0.85;
  width: 24px;
}

.contact-line:first-child img {
  filter: invert(47%) sepia(84%) saturate(753%) hue-rotate(100deg) brightness(91%) contrast(88%);
}

.site-footer {
  align-items: center;
  background: #0d1b1d;
  color: rgba(255, 255, 255, 0.74);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 34px clamp(18px, 5vw, 72px) 128px;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a:hover {
  color: var(--white);
}

.sticky-player {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 224, 222, 0.8);
  border-radius: var(--radius);
  bottom: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  grid-template-columns: auto 1fr minmax(150px, 220px) auto;
  left: clamp(12px, 3vw, 36px);
  padding: 14px;
  position: fixed;
  right: clamp(12px, 3vw, 36px);
  z-index: 30;
}

.player-button {
  background: var(--ink);
  color: var(--white);
  height: 54px;
  width: 54px;
}

.player-meta strong,
.player-meta span {
  display: block;
}

.player-meta span {
  color: var(--muted);
  font-size: 14px;
  margin-top: 3px;
}

.volume-control {
  align-items: center;
  display: flex;
  gap: 10px;
}

.volume-control span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.volume-control input {
  accent-color: var(--blue);
  width: 100%;
}

.header-tools {
  align-items: center;
  display: flex;
}

.header-tools {
  gap: 12px;
}

.language-picker {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 46px;
  position: relative;
  flex-shrink: 0;
}

.language-picker summary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 10px;
  cursor: pointer;
  list-style: none;
}
.language-picker summary::-webkit-details-marker { display: none; }
.language-picker summary::after { content: ""; width: 6px; height: 6px; border-right: 2px solid; border-bottom: 2px solid; transform: rotate(45deg); margin: -3px 2px 0 4px; }
.language-picker img { width: 24px; height: 16px; object-fit: cover; border: 1px solid #00000018; }
.language-options { position: absolute; top: calc(100% + 10px); right: 0; width: 184px; padding: 6px; border: 1px solid var(--line); border-radius: 8px; background: white; box-shadow: var(--shadow); }
.language-options button { display: flex; align-items: center; gap: 12px; width: 100%; min-height: 44px; border: 0; background: transparent; padding: 10px; text-align: left; font: inherit; cursor: pointer; }
.language-options button:hover, .language-options button[aria-pressed="true"] { background: var(--blue-soft); }
.action-icon { width: 20px; height: 20px; filter: invert(1); flex-shrink: 0; }
.header-action { white-space: nowrap; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
.social-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.social-link { --social-color: var(--blue); display: flex; flex-direction: column; padding: 26px 20px; background: white; border: 1px solid var(--line); border-top: 3px solid var(--social-color); border-radius: 8px; transition: transform 180ms ease, box-shadow 180ms ease; }
.social-link:hover { transform: translateY(-4px); box-shadow: 0 12px 28px #05080b12; }
.instagram { --social-color: #c13584; }
.facebook { --social-color: #1877f2; }
.youtube { --social-color: #e62117; }
.twitter { --social-color: #111111; }
.vk { --social-color: #0077ff; }
.social-icon { width: 34px; height: 34px; margin-bottom: 28px; }
.social-handle { font-size: 12px; color: var(--muted); overflow-wrap: anywhere; }
.social-link p { font-size: 14px; color: var(--muted); }
.social-cta { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-top: auto; padding-top: 22px; font-size: 14px; font-weight: 700; }
.social-cta img { height: 20px; width: 20px; }
.social-hashtag { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 24px; margin-top: 30px; font-weight: 800; color: var(--blue-dark); }
.social-hashtag span { font-size: 14px; font-weight: 500; color: var(--muted); }
.now-card > div, .player-meta { min-width: 0; }
.now-card strong { overflow-wrap: anywhere; }
.now-card .track-label { font-size: 12px; font-weight: 700; color: var(--blue-dark); margin-bottom: 8px; }
.player-meta strong { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.site-footer { justify-content: center; text-align: center; }
.site-footer a { color: white; text-decoration: underline; text-underline-offset: 4px; }
.footer-separator { padding: 0 8px; }
@media (max-width: 1150px) {
  .desktop-nav { display: none; }
  .social-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.button-icon {
  align-items: center;
  display: inline-flex;
  height: 20px;
  justify-content: center;
  width: 20px;
}

.button-icon svg {
  display: block;
  fill: currentColor;
  height: 20px;
  width: 20px;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: -10px 0 34px;
}

.kofi-button {
  background: var(--coral);
}

.kofi-button:hover {
  background: #c72e56;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .split,
  .two-column,
  .contact-grid,
  .app-row,
  .support-intro {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .timeline,
  .donation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticky-player {
    grid-template-columns: auto 1fr auto;
  }

  .volume-control {
    display: none;
  }
}

@media (max-width: 820px) {
  .hero-stats {
    max-width: 500px;
  }

  .hero-stats dt {
    font-size: 26px;
  }

  .hero-stats dd {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 146px;
  }

  .site-header {
    height: 66px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    height: 38px;
    width: 162px;
  }

  .site-header { gap: 8px; padding: 0 12px; }
  .brand img { width: 104px; }
  .header-tools { gap: 6px; }
  .header-action { font-size: 12px; padding: 0 9px; gap: 6px; white-space: normal; max-width: 136px; text-align: center; }
  .language-picker summary { gap: 5px; padding: 12px 6px; font-size: 12px; }
  .language-picker summary::after { display: none; }
  .social-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .social-link { padding: 22px 14px; }
  .social-link h3 { font-size: 18px; }

  .hero {
    min-height: 94vh;
  }

  .hero-content {
    padding: 120px 20px 170px;
  }

  .hero-logo {
    height: auto;
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-stats,
  .feature-grid,
  .timeline,
  .donation-grid {
    grid-template-columns: 1fr;
  }

  .now-card {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .track-art-wrap { height: 62px; width: 62px; }

  .mini-play {
    grid-column: 1 / -1;
    width: 100%;
    border-radius: var(--radius);
  }

  .sticky-player {
    align-items: stretch;
    grid-template-columns: auto 1fr;
    padding: 12px;
  }

  .player-donate {
    grid-column: 1 / -1;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 188px;
  }
}

@media (max-width: 360px) {
  .social-grid { grid-template-columns: 1fr; }
  .header-action .action-icon { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .social-link { transition: none; }
}

@media (max-height: 780px) and (min-width: 700px) {
  .hero-stats {
    display: none;
  }
}
