:root {
  --bg: #030303;
  --bg-soft: #090909;
  --panel: rgba(10, 10, 10, 0.82);
  --panel-strong: rgba(16, 16, 16, 0.92);
  --text: #f8f7f2;
  --muted: #c5c5c1;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #d90012;
  --accent-bright: #f2a900;
  --accent-cool: #0033a0;
  --accent-hot: #ff6a00;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 0, 18, 0.3), transparent 26%),
    radial-gradient(circle at 82% 16%, rgba(0, 51, 160, 0.22), transparent 24%),
    radial-gradient(circle at 55% 92%, rgba(242, 169, 0, 0.18), transparent 30%),
    linear-gradient(180deg, #000000 0%, #070707 45%, #000000 100%);
}


html.splash-pending,
html.splash-pending body {
  overflow: hidden;
  height: 100%;
}

html.splash-pending .site-shell {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  pointer-events: none;
}

.site-shell {
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.startup-splash {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #ffffff;
  transition:
    opacity 520ms ease,
    visibility 520ms ease;
}

html:not(.splash-pending) .startup-splash {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.startup-splash-image {
  width: auto;
  max-width: min(88vw, 760px);
  height: min(84vh, 920px);
  max-height: 84vh;
  display: block;
  object-fit: contain;
}

.startup-splash.is-dismissed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent);
  pointer-events: none;
}

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

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 120px;
}

.topbar,
.hero,
.priority-grid,
.club,
.seo-strip,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0 24px;
  overflow: visible;
  z-index: 20;
}

.topbar-menu {
  display: contents;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  text-align: left;
}

.brand-mark {
  display: none;
}

.brand-copy {
  display: grid;
  gap: 4px;
  text-align: left;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 24px rgba(242, 169, 0, 0.28);
}

.brand-copy strong,
h1,
h2,
h3 {
  font-family: "Archivo", sans-serif;
}

.spotlight-name {
  color: var(--accent-bright);
}

.spotlight-name-nowrap {
  white-space: nowrap;
}

.brand-copy span,
.hero-text,
.panel p,
.club-copy p,
.seo-strip p,
.footer p,
.stat-grid span,
.form-note,
.consent span {
  color: var(--muted);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle span + span {
  margin-top: 4px;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.topbar-actions-tight {
  gap: 6px;
  flex-wrap: nowrap;
}

.topbar-actions-tight .nav-link {
  padding: 9px 10px;
  font-size: 0.84rem;
  white-space: nowrap;
}

.nav-link {
  color: var(--muted);
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.inline-link:hover,
.inline-link:focus-visible,
.sticky-listen:hover,
.sticky-listen:focus-visible {
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
}

.button-primary,
.sticky-listen {
  background: linear-gradient(135deg, var(--accent), var(--accent-hot) 62%, var(--accent-bright));
  color: #0b0b0b;
  box-shadow: 0 16px 40px rgba(217, 0, 18, 0.32);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-hot) 62%, var(--accent-bright));
  color: #0b0b0b;
  box-shadow: 0 16px 40px rgba(217, 0, 18, 0.32);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.button-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  padding: 24px 0 28px;
}

.hero-copy,
.hero-card,
.panel,
.club,
.seo-strip article {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 42px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(217, 0, 18, 0.08), rgba(0, 0, 0, 0)),
    var(--panel);
}

.eyebrow,
.panel-tag,
.hero-card-kicker {
  margin: 0 0 12px;
  color: var(--accent-bright);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-card-kicker {
  padding-left: 18px;
}

.eyebrow-line {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.eyebrow-muted {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

.eyebrow-separator {
  color: var(--muted);
}

.hero-mothership {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 28px;
  padding: 18px 20px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(217, 0, 18, 0.16), rgba(0, 51, 160, 0.14)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-mothership-logo {
  width: clamp(110px, 18vw, 180px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 40px rgba(242, 169, 0, 0.24);
}

.hero-mothership-copy {
  display: grid;
  gap: 6px;
}

.hero-mothership-label {
  margin: 0;
  color: var(--accent-bright);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff2d55;
  box-shadow:
    0 0 0 0 rgba(255, 45, 85, 0.75),
    0 0 18px rgba(255, 45, 85, 0.9);
  animation: live-pulse 1.4s ease-in-out infinite;
}

.hero-mothership-copy strong {
  font-family: "Archivo", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
}

.hero-mothership-copy span {
  color: var(--muted);
  max-width: 28ch;
  line-height: 1.5;
}

h1 {
  margin: 0;
  max-width: none;
  font-size: clamp(1.9rem, 3.75vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.headline-accent {
  color: #ff2d55;
}

.hero-headline {
  display: grid;
  gap: 2px;
}

.hero-headline span {
  display: block;
  white-space: nowrap;
}

.hero-text {
  max-width: 58ch;
  margin: 24px 0 0;
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-text span {
  color: var(--text);
  font-weight: 700;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-points li,
.club-benefits span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-points li::before {
  content: "•";
  margin-right: 8px;
  color: var(--accent-bright);
}

.now-playing-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  margin-top: 24px;
  padding: 20px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(217, 0, 18, 0.08), rgba(0, 51, 160, 0.08)),
    rgba(255, 255, 255, 0.03);
}

.now-playing-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.05;
}

.now-playing-copy p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.last-played-shell {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(0, 51, 160, 0.08)),
    rgba(0, 0, 0, 0.42);
  height: 374px;
  min-height: 374px;
  position: relative;
}

.last-played-shell iframe {
  display: block;
  width: 100%;
  min-height: 511px;
  border: 0;
  background: transparent;
  transform: translateY(-78px);
}

.last-played-shell::before,
.last-played-shell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
  background: #111111;
}

.last-played-shell::before {
  top: 0;
  height: 18px;
}

.last-played-shell::after {
  bottom: 0;
  height: 72px;
}

.hero-card {
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(0, 51, 160, 0.16), rgba(217, 0, 18, 0.12)),
    var(--panel-strong);
}

.hero-promo,
.panel-banner {
  width: 100%;
  display: block;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 18px;
}

.hero-promo {
  width: min(100%, 290px);
  margin-inline: auto;
  height: auto;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.18);
  padding: 8px;
}

.spotlight-photo {
  width: 100%;
  max-width: none;
  height: 420px;
  object-fit: cover;
  object-position: center 12%;
  background: rgba(0, 0, 0, 0.28);
  padding: 0;
}

.spotlight-photo-big-e {
  object-fit: cover;
  object-position: center 18%;
  background: rgba(0, 0, 0, 0.28);
}

.spotlight-photo-djan {
  object-position: center 18%;
}

.spotlight-photo-sammy {
  object-position: center 18%;
}

.spotlight-photo-vartan {
  object-position: center 15%;
  filter: contrast(1.08) saturate(1.03);
}

.spotlight-photo-tonee {
  object-position: center 16%;
}

.spotlight-photo-shprot {
  width: 100%;
  margin-inline: auto;
  object-fit: cover;
  object-position: center 18%;
  background: rgba(0, 0, 0, 0.28);
  padding: 0;
}

.spotlight-photo-jack {
  object-position: center 16%;
}

.spotlight-photo-arshak {
  object-position: left 20%;
}

.spotlight-photo-apeh {
  object-position: center 20%;
}

.spotlight-photo-jilber {
  object-position: center 18%;
}

.spotlight-photo-ruzanna {
  object-position: center 16%;
}

.spotlight-photo-harout {
  object-position: center 10%;
}

.hero-promo-quote {
  display: grid;
  gap: 12px;
  width: 100%;
  margin-inline: auto;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(242, 169, 0, 0.16), transparent 28%),
    linear-gradient(160deg, rgba(217, 0, 18, 0.18), rgba(0, 51, 160, 0.14)),
    rgba(0, 0, 0, 0.3);
}

.hero-promo-quote strong {
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 1.15;
}

.hero-promo-quote span:last-child {
  color: var(--muted);
  line-height: 1.7;
}

.panel-banner {
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.stat-grid article {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-grid strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Archivo", sans-serif;
  font-size: 1.15rem;
}

.video-card {
  margin-top: 16px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-copy {
  display: grid;
  gap: 5px;
  margin-bottom: 10px;
}

.video-copy strong {
  font-family: "Archivo", sans-serif;
  font-size: 1.05rem;
}

.video-copy span {
  color: var(--muted);
  line-height: 1.35;
  font-size: 0.86rem;
}

.video-shell {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
  aspect-ratio: 16 / 8.2;
}

.video-shell iframe,
.video-shell img {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}

.video-shell-link {
  position: relative;
}

.video-shell-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.45));
}

.video-play-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.video-play-badge::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--accent-bright);
}

.sponsor-card {
  margin-top: 16px;
  padding: 16px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(242, 169, 0, 0.08), rgba(217, 0, 18, 0.08)),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sponsor-kicker {
  margin: 0 0 8px;
  color: var(--accent-bright);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
}

.sponsor-spotlight {
  display: grid;
  gap: 8px;
}

.sponsor-spotlight strong {
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  line-height: 1;
}

.sponsor-spotlight p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.92rem;
  white-space: pre-line;
}

.advertise-spotlight-row {
  margin-top: 6px;
  margin-bottom: 20px;
}

.advertise-sponsor-card {
  margin-top: 0;
  padding: 24px 28px;
  border-radius: 30px;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(242, 169, 0, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(242, 169, 0, 0.08), rgba(217, 0, 18, 0.08)),
    rgba(255, 255, 255, 0.05);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.26),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.advertise-sponsor-card .sponsor-kicker {
  margin-bottom: 10px;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
}

.advertise-sponsor-card .sponsor-spotlight {
  justify-items: center;
  gap: 10px;
}

.advertise-sponsor-card .sponsor-spotlight strong {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.advertise-sponsor-card .sponsor-spotlight p {
  max-width: 56ch;
  font-size: 0.98rem;
  line-height: 1.6;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  margin: 12px 0 28px;
  padding: 16px 0;
}

.ticker-top {
  position: relative;
  z-index: 1;
  margin: 4px 0 22px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      rgba(217, 0, 18, 0.9) 0%,
      rgba(217, 0, 18, 0.9) 33.33%,
      rgba(0, 51, 160, 0.92) 33.33%,
      rgba(0, 51, 160, 0.92) 66.66%,
      rgba(242, 169, 0, 0.92) 66.66%,
      rgba(242, 169, 0, 0.92) 100%
    );
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.ticker-top .ticker-track {
  padding: 14px 0;
  color: #fffdf7;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.ticker-top .ticker-track span::after {
  color: rgba(255, 255, 255, 0.88);
}

.ticker-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: drift 75s linear infinite;
  font-family: "Archivo", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(248, 251, 255, 0.88);
}

.ticker-track span::after {
  content: "•";
  margin-left: 24px;
  color: var(--accent-bright);
}

.priority-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.panel {
  padding: 30px;
  border-radius: 30px;
}

.panel h2,
.club h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
}

.panel p,
.club-copy p,
.seo-strip p {
  line-height: 1.7;
}

.panel-signoff {
  display: block;
  margin-top: 10px;
  text-align: center;
}

.inline-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent-bright);
  font-weight: 700;
}

.panel-banner-shell {
  margin-top: 20px;
  height: clamp(150px, 20vw, 200px);
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.panel-banner-link {
  display: block;
  width: 100%;
  height: 100%;
}

.club {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.95fr);
  gap: 26px;
  margin-top: 24px;
  padding: 32px;
  border-radius: 34px;
}

.club-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.club-photo-card {
  margin-top: 24px;
}

.club-photo {
  width: 100%;
  display: block;
  margin-top: 10px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.club-photo-caption {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.signup-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.signup-form label {
  display: grid;
  gap: 8px;
  font-weight: 500;
}

.signup-form input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.16);
  color: var(--text);
  padding: 0 16px;
  font: inherit;
}

.signup-form input::placeholder {
  color: rgba(173, 192, 217, 0.72);
}

.signup-form input:focus-visible {
  outline: 2px solid var(--accent-cool);
  outline-offset: 2px;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.consent input {
  min-height: auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.form-note,
.form-response {
  margin: 0;
  font-size: 0.92rem;
}

.form-note code {
  font-family: "Archivo", sans-serif;
  color: var(--text);
}

.form-response {
  color: var(--accent-bright);
  min-height: 1.4em;
}

.seo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.seo-strip article {
  padding: 24px;
  border-radius: 28px;
}

.growth-grid,
.calendar-list,
.subpage-hero,
.calendar-embed-section,
.spotlight-menu-grid {
  display: grid;
  gap: 20px;
}

.growth-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.growth-card,
.calendar-item,
.subpage-copy {
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.growth-card h3,
.calendar-item h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.growth-card p,
.calendar-item p,
.subpage-copy p {
  line-height: 1.7;
}

.subpage-hero {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.12fr);
  align-items: stretch;
  padding: 24px 0 8px;
}

.subpage-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(242, 169, 0, 0.14), transparent 24%),
    linear-gradient(135deg, rgba(217, 0, 18, 0.08), rgba(0, 51, 160, 0.08)),
    var(--panel);
}

.calendar-list {
  margin-top: 24px;
}

.spotlight-menu {
  margin-top: 24px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(0, 51, 160, 0.14), transparent 24%),
    linear-gradient(135deg, rgba(217, 0, 18, 0.06), rgba(242, 169, 0, 0.05)),
    var(--panel);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.spotlight-menu-head h2 {
  margin: 0 0 12px;
}

.spotlight-menu-head p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.spotlight-menu-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 22px;
}

.spotlight-link {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  min-height: 180px;
}

.spotlight-link strong {
  font-family: "Archivo", sans-serif;
  font-size: 1.35rem;
}

.spotlight-link span:last-child {
  color: var(--muted);
  line-height: 1.6;
}

.spotlight-link-label {
  color: var(--accent-bright);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 700;
}

.spotlight-link-active {
  background:
    linear-gradient(160deg, rgba(217, 0, 18, 0.2), rgba(242, 169, 0, 0.08)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.spotlight-link-placeholder {
  opacity: 0.9;
}

.calendar-hero-photo {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.36)),
    rgba(0, 0, 0, 0.25);
  box-shadow: var(--shadow);
  min-height: 560px;
}

.calendar-hero-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.calendar-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.55)),
    radial-gradient(circle at top right, rgba(217, 0, 18, 0.22), transparent 28%);
}

.calendar-photo-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  max-width: 72%;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(8, 8, 8, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.calendar-photo-title {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.4;
}

.calendar-photo-credit {
  display: block;
  font-family: "Archivo", sans-serif;
  font-size: 1rem;
  color: var(--accent-bright);
  line-height: 1.25;
}

.calendar-ribbon {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 24px;
}

.calendar-ribbon-stack {
  display: grid;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  width: 100%;
}

.calendar-ribbon span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
}

.subpage-copy .hero-cta {
  justify-content: center;
}

.advertise-copy {
  background:
    radial-gradient(circle at top right, rgba(242, 169, 0, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(217, 0, 18, 0.1), rgba(0, 51, 160, 0.08)),
    var(--panel);
}

.advertise-points {
  display: grid;
  gap: 12px;
}

.advertise-points p {
  margin: 0;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.advertise-points p:first-child {
  background: transparent;
  border: 0;
  padding: 0;
}

.advertise-points strong {
  color: var(--accent-bright);
  font-family: "Archivo", sans-serif;
}

.advertise-card {
  background:
    radial-gradient(circle at top left, rgba(0, 51, 160, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(217, 0, 18, 0.1), rgba(0, 0, 0, 0)),
    var(--panel-strong);
}

.advertise-logo-shell {
  margin-bottom: 14px;
  padding: 18px;
  border-radius: 26px;
  background:
    radial-gradient(circle at center, rgba(242, 169, 0, 0.14), transparent 42%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.advertise-logo {
  width: min(100%, 220px);
}

.advertise-kicker {
  margin-bottom: 18px;
  text-align: center;
}

.advertise-card-block {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.16)),
    var(--panel);
}

.calendar-embed-section {
  margin-top: 24px;
}

.calendar-embed-shell {
  overflow: hidden;
  min-height: 960px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.18)),
    rgba(0, 0, 0, 0.35);
  box-shadow: var(--shadow);
  position: relative;
}

.calendar-embed-shell::before {
  content: "Melkoni Media Events Feed";
  display: block;
  padding: 14px 18px;
  font-family: "Archivo", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-bright);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(217, 0, 18, 0.12), rgba(0, 51, 160, 0.12));
}

.calendar-embed-shell iframe {
  width: 100%;
  min-height: calc(960px - 47px);
  border: 0;
  display: block;
  background: white;
}

.calendar-owned-hero,
.calendar-stat-grid,
.calendar-simple-board,
.calendar-owned-cta {
  display: grid;
  gap: 20px;
}

.calendar-owned-hero {
  grid-template-columns: minmax(0, 1.18fr) minmax(240px, 0.62fr);
  align-items: start;
  padding: 24px 0 8px;
}

.calendar-owned-copy,
.calendar-owned-feature,
.calendar-simple-board,
.calendar-owned-cta,
.calendar-stat-card,
.calendar-embed-preview,
.calendar-embed-placeholder {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.calendar-owned-copy,
.calendar-owned-feature,
.calendar-simple-board,
.calendar-owned-cta {
  border-radius: 32px;
}

.calendar-owned-copy,
.calendar-owned-feature,
.calendar-simple-board,
.calendar-owned-cta {
  padding: 30px;
}

.calendar-owned-copy {
  background:
    radial-gradient(circle at top right, rgba(242, 169, 0, 0.22), transparent 26%),
    radial-gradient(circle at bottom left, rgba(217, 0, 18, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(217, 0, 18, 0.12), rgba(0, 51, 160, 0.1)),
    var(--panel);
}

.calendar-owned-feature {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 280px;
  aspect-ratio: 4 / 4.2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.4)),
    rgba(0, 0, 0, 0.24);
}

.calendar-owned-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.calendar-owned-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.62)),
    radial-gradient(circle at top right, rgba(242, 169, 0, 0.2), transparent 30%);
}

.calendar-stat-label,
.calendar-event-tag {
  display: inline-flex;
  align-items: center;
  color: var(--accent-bright);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 700;
}

.calendar-stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.calendar-stat-card {
  padding: 20px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.16)),
    var(--panel);
}

.calendar-stat-card strong {
  display: block;
  margin: 8px 0 6px;
  font-family: "Archivo", sans-serif;
  font-size: 1.24rem;
}

.calendar-stat-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.calendar-stat-card {
  color: inherit;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.calendar-stat-card:hover,
.calendar-stat-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(242, 169, 0, 0.26);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.32);
}

.calendar-board-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 8px;
}

.calendar-board-head h2 {
  margin: 0;
}

.calendar-board-head p:last-child {
  margin: 0;
  color: var(--muted);
  max-width: none;
  font-size: 0.86rem;
  line-height: 1.3;
  white-space: nowrap;
}

.calendar-embed-preview {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.18)),
    var(--panel);
}

.calendar-embed-placeholder {
  min-height: 520px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(242, 169, 0, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.18)),
    rgba(0, 0, 0, 0.28);
}

.calendar-embed-placeholder-copy {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 36px;
  text-align: center;
}

.calendar-embed-placeholder-copy h3 {
  margin: 12px 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.calendar-embed-placeholder-copy p {
  margin: 0;
  max-width: 42ch;
  color: var(--muted);
  line-height: 1.7;
}

.calendar-owned-cta {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin-top: 24px;
  background:
    radial-gradient(circle at top right, rgba(242, 169, 0, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(217, 0, 18, 0.16), rgba(0, 51, 160, 0.1)),
    var(--panel);
}

.calendar-owned-cta-copy h2 {
  margin: 0 0 12px;
}

.calendar-owned-cta-copy p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.podcast-hero,
.podcast-stats,
.podcast-grid,
.podcast-episode-grid {
  display: grid;
  gap: 16px;
}

.podcast-hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: start;
  padding: 18px 0 4px;
}

.podcast-copy,
.podcast-feature,
.podcast-grid,
.podcast-stat-card,
.podcast-episode-card {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.podcast-copy,
.podcast-feature,
.podcast-grid {
  padding: 24px;
  border-radius: 32px;
}

.podcast-copy {
  background:
    radial-gradient(circle at top right, rgba(242, 169, 0, 0.18), transparent 24%),
    radial-gradient(circle at bottom left, rgba(217, 0, 18, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(0, 51, 160, 0.1), rgba(217, 0, 18, 0.08)),
    var(--panel);
}

.podcast-title-banner {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
  width: min(100%, 88%);
  margin: 18px auto 14px;
  aspect-ratio: 16 / 9;
}

.podcast-title-artwork {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
}

.podcast-feature {
  display: grid;
  gap: 12px;
}

.podcast-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.28);
  aspect-ratio: 16 / 9;
}

.podcast-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.podcast-feature-copy,
.podcast-episode-copy {
  display: grid;
  gap: 8px;
}

.podcast-feature-copy strong,
.podcast-episode-copy strong,
.podcast-stat-card strong {
  font-family: "Archivo", sans-serif;
  font-size: 1.2rem;
}

.podcast-feature-copy span,
.podcast-episode-copy span,
.podcast-stat-card p {
  color: var(--muted);
  line-height: 1.65;
}

.podcast-copy .hero-text {
  font-size: 0.92rem;
  line-height: 1.65;
}

.podcast-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.podcast-stat-card {
  padding: 20px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.16)),
    var(--panel);
}

.podcast-stat-card p {
  margin: 8px 0 0;
}

.podcast-grid {
  margin-top: 14px;
}

.podcast-grid .spotlight-menu-head p:last-child {
  margin: 0;
}

.podcast-episode-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 6px;
}

.podcast-playlist-frame {
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.podcast-episode-card {
  padding: 16px;
  border-radius: 28px;
  display: grid;
  gap: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.16)),
    var(--panel);
}

.podcast-archive-frame {
  display: grid;
  place-items: center;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.24)),
    rgba(0, 0, 0, 0.28);
}

.podcast-archive-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podcast-coming-soon {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--accent-bright);
  font-family: "Archivo", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.podcast-archives-link {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.seo-strip h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

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

.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

.parent-company {
  margin-top: 12px;
}

.parent-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  margin-left: 0;
  padding: 18px 22px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(0, 51, 160, 0.08)),
    rgba(9, 9, 9, 0.88);
  border: 1px solid var(--line);
}

.parent-card img {
  width: 110px;
  height: auto;
  border-radius: 14px;
  background: white;
}

.parent-label {
  margin: 0 0 6px;
  color: var(--accent-bright);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 700;
}

.parent-card strong {
  display: block;
  font-family: "Archivo", sans-serif;
  margin-bottom: 6px;
}

.parent-card > div:last-child {
  text-align: center;
}

.parent-card p {
  margin: 0;
}

.parent-card p:last-child {
  color: var(--muted);
}

.sticky-listen {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 5;
  width: min(520px, calc(100% - 24px));
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  min-height: 62px;
  border-radius: 999px;
  padding: 18px 24px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background:
    linear-gradient(90deg, #c8001d 0%, #ff2d55 44%, #ff5a36 72%, #ff9a3d 100%);
  color: #fff8f8;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 18px 40px rgba(200, 0, 29, 0.38),
    0 0 0 4px rgba(255, 45, 85, 0.12);
  overflow: hidden;
}

.sticky-listen::before {
  content: "♪";
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.28);
  margin-right: 4px;
  flex: 0 0 auto;
}

.sticky-listen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.22), transparent 80%);
  transform: translateX(-130%);
  animation: listen-shine 3.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes drift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes listen-shine {
  0%,
  100% {
    transform: translateX(-130%);
  }

  45%,
  60% {
    transform: translateX(130%);
  }
}

@keyframes live-pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow:
      0 0 0 0 rgba(255, 45, 85, 0.75),
      0 0 18px rgba(255, 45, 85, 0.9);
  }

  50% {
    opacity: 0.5;
    box-shadow:
      0 0 0 8px rgba(255, 45, 85, 0),
      0 0 10px rgba(255, 45, 85, 0.5);
  }
}

@media (max-width: 980px) {
  .hero,
  .priority-grid,
  .club,
  .seo-strip,
  .footer,
  .growth-grid,
  .subpage-hero,
  .podcast-hero,
  .podcast-stats,
  .podcast-episode-grid,
  .calendar-owned-hero,
  .calendar-stat-grid,
  .calendar-flyer-card,
  .calendar-owned-cta,
  .spotlight-menu-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    align-items: start;
  }

  .parent-card {
    align-items: start;
  }

  .calendar-embed-shell {
    min-height: 760px;
  }

  .calendar-embed-shell iframe {
    min-height: 760px;
  }

  .calendar-hero-photo {
    min-height: 440px;
  }
}

@media (max-width: 720px) {
  .startup-splash-image {
    width: min(90vw, 360px);
    max-width: 90vw;
    height: auto;
    max-height: 78vh;
  }

  .app-hero-copy {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .ticker-track {
    width: max-content;
    max-width: none;
  }

  .ticker-track span {
    white-space: nowrap;
    flex: 0 0 auto;
  }

  html,
  body {
    overflow-x: hidden;
  }

  .site-shell,
  .hero,
  .hero-copy,
  .hero-card,
  .hero-mothership,
  .hero-headline,
  .hero-text,
  .hero-cta,
  .hero-points {
    max-width: 100%;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .button {
    width: 100%;
    max-width: 360px;
    justify-content: center;
    text-align: center;
  }


  .app-page-shell {
    width: min(100% - 12px, 1120px);
  }

  .app-hero {
    padding: 28px 14px;
    border-radius: 24px;
    gap: 22px;
  }

  .app-hero-logo {
    width: 104px;
    height: 104px;
  }

  .app-title-desktop {
    display: none;
  }

  .app-title-mobile {
    display: block;
    max-width: 100%;
    width: 100%;
    font-size: clamp(1.12rem, 5.1vw, 1.42rem);
    line-height: 1.04;
    letter-spacing: 0.02em;
    word-spacing: 0.08em;
  }

  .app-title-line {
    display: block;
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .app-hero-text {
    font-size: 0.98rem;
  }

  .app-download-grid {
    grid-template-columns: 1fr;
  }

  .app-download-card {
    min-height: 0;
    padding: 16px 12px;
  }

  .app-topbar-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .app-footer-links {
    justify-content: flex-start;
  }

  .app-store-badge {
    width: auto;
    max-width: 100%;
    height: 64px;
  }

  .app-store-badge-apple {
    height: 68px;
  }

  .app-store-badge-google {
    height: 60px;
  }

  .site-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 18px;
  }

  .topbar {
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 8px;
  }

  .topbar-menu {
    display: block;
    width: auto;
    margin-left: auto;
    position: relative;
    flex: 0 0 auto;
    z-index: 30;
  }

  .topbar-menu-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-cta {
    width: 100%;
  }

  .hero-cta .button {
    flex: 1 1 100%;
  }

  .topbar-actions {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(280px, calc(100vw - 32px));
    margin-top: 0;
    padding: 12px;
    grid-template-columns: 1fr;
    gap: 8px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(8, 17, 31, 0.96);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.3);
    z-index: 40;
  }

  .topbar-actions.is-open {
    display: grid;
  }

  .hero-copy,
  .hero-card,
  .panel,
  .club,
  .seo-strip article {
    border-radius: 24px;
  }

  .hero-copy,
  .panel,
  .club {
    padding: 24px;
  }

  h1 {
    font-size: clamp(1.9rem, 8.8vw, 2.85rem);
  }

  .hero-headline span {
    white-space: normal;
  }

  .nav-link {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .sticky-listen {
    min-height: 58px;
    font-size: 0.98rem;
    padding: 16px 20px;
  }

  .ticker-top {
    margin: 0 0 10px;
  }

  .ticker-top .ticker-track {
    padding: 12px 0;
    font-size: 0.9rem;
  }

  .hero {
    gap: 14px;
    padding: 10px 0 14px;
  }

  .hero-mothership {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 18px;
  }

  .hero-mothership-copy {
    justify-items: center;
    text-align: center;
  }

  .hero-mothership-label {
    justify-content: center;
    width: 100%;
  }

  .hero-mothership-copy span {
    max-width: none;
  }

  .eyebrow-line {
    justify-content: center;
    text-align: center;
    gap: 8px;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-points {
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
  }

  .hero-points li {
    width: 100%;
    border-radius: 18px;
  }

  .now-playing-card {
    margin-top: 20px;
    padding: 16px;
  }

  .last-played-shell {
    height: 352px;
    min-height: 352px;
  }

  .last-played-shell iframe {
    transform: translateY(-76px);
  }

  .last-played-shell::after {
    height: 50px;
  }

  .hero-card {
    padding: 22px;
  }

  .hero-promo {
    width: min(100%, 240px);
    margin-bottom: 14px;
  }

  .spotlight-photo {
    width: 100%;
    height: 360px;
    object-position: center 10%;
  }

  .spotlight-photo-big-e {
    object-position: center 16%;
  }

  .spotlight-photo-djan {
    object-position: center 16%;
  }

  .spotlight-photo-sammy {
    object-position: center 16%;
  }

  .spotlight-photo-vartan {
    object-position: center 14%;
  }

  .spotlight-photo-tonee {
    object-position: center 14%;
  }

  .spotlight-photo-shprot {
    width: 100%;
    object-position: center 16%;
    padding: 0;
  }

  .spotlight-photo-jack {
    object-position: center 14%;
  }

  .spotlight-photo-arshak {
    object-position: left 18%;
  }

  .spotlight-photo-apeh {
    object-position: center 18%;
  }

  .hero-promo-quote {
    padding: 22px;
  }

  .stat-grid article {
    padding: 16px;
  }

  .video-card,
  .sponsor-card {
    padding: 14px;
  }

  .video-shell,
  .panel-banner-shell {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .video-play-badge {
    left: 10px;
    right: 10px;
    bottom: 10px;
    justify-content: center;
    font-size: 0.86rem;
  }

  .priority-grid {
    gap: 14px;
  }

  .panel h2,
  .club h2 {
    font-size: clamp(1.65rem, 7vw, 2.2rem);
  }

  .panel p,
  .club-copy p {
    line-height: 1.6;
  }

  .panel-banner-shell {
    margin-top: 12px;
  }

  .panel-listen .panel-banner-shell {
    height: auto;
    aspect-ratio: 2.5 / 1;
  }

  .panel-listen .panel-banner {
    object-fit: contain;
    object-position: center;
    background: rgba(0, 0, 0, 0.18);
    padding: 8px 6px;
  }

  .club {
    gap: 18px;
  }

  .club-benefits {
    gap: 10px;
    margin-top: 18px;
  }

  .club-photo-card {
    margin-top: 20px;
  }

  .club-photo-caption {
    font-size: 0.88rem;
  }

  .club-benefits span {
    border-radius: 18px;
  }

  .signup-form {
    padding: 18px;
  }

  .footer {
    gap: 18px;
    margin-top: 24px;
  }

  .footer-links {
    gap: 12px;
  }

  .footer-links a {
    width: 100%;
  }

  .footer-brand,
  .parent-card {
    align-items: center;
  }

  .parent-card {
    gap: 12px;
    padding: 16px;
  }

  .parent-card img {
    width: 92px;
    transform: none;
  }

  .calendar-embed-shell {
    min-height: 640px;
    border-radius: 24px;
  }

  .calendar-owned-copy,
  .podcast-copy,
  .podcast-feature,
  .podcast-grid,
  .calendar-simple-board,
  .calendar-owned-cta {
    padding: 22px;
    border-radius: 24px;
  }

  .calendar-owned-feature {
    min-height: 320px;
    border-radius: 24px;
  }

  .podcast-frame {
    border-radius: 20px;
  }

  .calendar-board-head {
    display: grid;
    gap: 8px;
  }

  .calendar-embed-placeholder {
    min-height: 360px;
  }

  .subpage-hero {
    gap: 14px;
    padding: 10px 0 8px;
  }

  .subpage-copy {
    padding: 22px;
    text-align: center;
    align-items: center;
  }

  .subpage-copy h1,
  .subpage-copy p {
    text-align: center;
  }

  .subpage-copy .hero-text {
    margin-inline: auto;
  }

  .subpage-copy .hero-cta {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 12px;
    margin-top: 22px;
  }

  .subpage-copy .hero-cta .button {
    display: flex;
    width: 100%;
    max-width: 100%;
    flex: none;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    padding: 14px 18px;
    overflow-wrap: anywhere;
  }

  .calendar-embed-shell iframe {
    min-height: calc(640px - 47px);
  }

  .calendar-hero-photo {
    min-height: 340px;
    border-radius: 24px;
  }

  .calendar-hero-photo img {
    object-position: center top;
  }

  .calendar-photo-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
    padding: 14px 16px;
    text-align: center;
  }

  .calendar-ribbon {
    width: 100%;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
  }

  .calendar-ribbon span {
    width: 100%;
    justify-content: center;
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ticker-track {
    animation: none;
  }

  .startup-splash-mark {
    animation: none;
  }

  .site-shell,
  .startup-splash {
    transition: none;
  }

  .button,
  .inline-link,
  .sticky-listen {
    transition: none;
  }

  .sticky-listen::after {
    animation: none;
  }

  .live-dot {
    animation: none;
  }
}


.app-page-shell {
  width: min(1080px, calc(100% - 36px));
}

.app-topbar {
  padding-bottom: 16px;
}

.app-topbar-actions {
  gap: 10px;
}

.app-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 30px;
  padding: 48px 32px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 18%, rgba(217, 0, 18, 0.26), transparent 24%),
    radial-gradient(circle at 82% 20%, rgba(0, 51, 160, 0.26), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(242, 169, 0, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.96), rgba(4, 4, 4, 0.98));
  box-shadow: var(--shadow);
}

.app-orb {
  position: absolute;
  width: 300px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.7;
  pointer-events: none;
}

.app-orb-left {
  top: -110px;
  left: -70px;
  background: radial-gradient(circle, rgba(217, 0, 18, 0.48), transparent 68%);
}

.app-orb-right {
  right: -90px;
  bottom: -140px;
  background: radial-gradient(circle, rgba(242, 169, 0, 0.38), transparent 70%);
}

.app-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
}

.app-hero-logo {
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 42px rgba(242, 169, 0, 0.24);
}

.app-title {
  margin: 0;
  max-width: none;
  text-align: center;
}

.app-title-desktop {
  display: block;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.app-title-mobile {
  display: none;
}

.app-title-line {
  display: block;
}

.app-hero-text {
  margin: 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.app-download-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}

.app-download-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 16px;
  border-radius: 28px;
  min-height: 116px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.app-download-card:hover,
.app-download-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 30px 58px rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.2);
}

.app-download-card-ios {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(242, 169, 0, 0.22), rgba(217, 0, 18, 0.24), rgba(0, 0, 0, 0.62));
}

.app-download-card-android {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(242, 169, 0, 0.22), rgba(217, 0, 18, 0.24), rgba(0, 0, 0, 0.62));
}

.app-download-kicker {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.72);
}

.app-store-badge {
  display: block;
  width: auto;
  max-width: 100%;
  height: 72px;
  margin-inline: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.24));
}

.app-store-badge-apple {
  height: 76px;
}

.app-store-badge-google {
  height: 68px;
}

.app-download-card strong {
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1.04;
  white-space: nowrap;
}

.app-download-card span:last-child {
  color: var(--muted);
  font-size: 1rem;
}

.app-footer {
  margin-top: 26px;
}

.app-footer-links {
  justify-content: flex-end;
}

@media (max-width: 1100px) {
  .app-page-shell {
    width: min(100% - 28px, 1024px);
  }

  .app-hero {
    gap: 24px;
    padding: 40px 24px;
  }

  .app-title-desktop {
    font-size: clamp(1.9rem, 4.6vw, 3rem);
  }

  .app-hero-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .app-download-grid {
    max-width: 560px;
    grid-template-columns: 1fr;
  }
}
