:root {
  --bg: #050505;
  --panel: #101010;
  --panel-soft: #181818;
  --gold: #ffc107;
  --gold-strong: #ff9f05;
  --white: #ffffff;
  --cream: #fff4d0;
  --muted: #cfc7b4;
  --green: #6baa2e;
  --line: rgba(255, 193, 7, 0.32);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(255, 193, 7, 0.16), transparent 34rem),
    linear-gradient(120deg, rgba(107, 170, 46, 0.1), transparent 30rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;
  background-image:
    linear-gradient(30deg, transparent 28%, rgba(255, 193, 7, 0.75) 29%, rgba(255, 193, 7, 0.75) 30%, transparent 31%),
    linear-gradient(150deg, transparent 28%, rgba(255, 193, 7, 0.55) 29%, rgba(255, 193, 7, 0.55) 30%, transparent 31%);
  background-size: 76px 44px;
}

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

a {
  color: inherit;
}

.site-header {
  min-height: 96vh;
  padding: 18px clamp(18px, 4vw, 58px) 40px;
}

.nav {
  position: sticky;
  top: 14px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

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

.brand span {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--bg);
  background: var(--gold);
  outline: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(26px, 5vw, 70px);
  max-width: 1180px;
  min-height: calc(96vh - 86px);
  margin: 0 auto;
  padding-top: 34px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1 {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.22em;
  max-width: 700px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 8vw, 7.6rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span {
  white-space: nowrap;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead,
.section p,
.form-intro p {
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1.65;
}

.lead {
  max-width: 650px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--white);
  background: transparent;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.button.primary {
  color: #070707;
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  box-shadow: 0 16px 38px rgba(255, 173, 6, 0.25);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  color: var(--bg);
  background: var(--cream);
  outline: none;
}

.hero-art {
  margin: 0;
  filter: drop-shadow(0 30px 50px rgba(255, 193, 7, 0.18));
}

.hero-art img {
  width: min(100%, 720px);
  margin-left: auto;
  border-radius: 8px;
}

.info-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 58px);
}

.info-band article {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(16, 16, 16, 0.9);
}

.info-band .icon {
  display: block;
  margin-bottom: 12px;
  font-size: 2rem;
}

.info-band p {
  margin: 0 0 8px;
  color: var(--muted);
  font-weight: 700;
}

.info-band strong {
  display: block;
  color: var(--gold);
  font-size: 1.35rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.landing-countdown {
  max-width: 1180px;
  margin: -34px auto 0;
  padding: 0 clamp(18px, 4vw, 58px) 18px;
}

.landing-countdown-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.landing-countdown-heading h2 {
  max-width: 760px;
  font-size: clamp(1.8rem, 4.5vw, 3.8rem);
}

.countdown-grid.landing-countdown-grid article {
  min-height: 138px;
  background:
    linear-gradient(180deg, rgba(255, 193, 7, 0.14), rgba(16, 16, 16, 0.94)),
    rgba(16, 16, 16, 0.92);
}

.countdown-grid.landing-countdown-grid strong {
  animation: countdownGlow 1s ease-in-out infinite alternate;
}

.landing-countdown-grid article:nth-child(2) strong { animation-delay: 0.12s; }
.landing-countdown-grid article:nth-child(3) strong { animation-delay: 0.24s; }
.landing-countdown-grid article:nth-child(4) strong { animation-delay: 0.36s; }

.radio-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 5vw, 54px);
  max-width: 1180px;
  margin: 18px auto 0;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 193, 7, 0.14), rgba(16, 16, 16, 0.92)),
    rgba(16, 16, 16, 0.94);
  box-shadow: var(--shadow);
}

.radio-strip-copy {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
}

.radio-strip .live-dot {
  flex: 0 0 auto;
  margin-top: 6px;
}

.radio-strip h2 {
  font-size: clamp(1.55rem, 3.6vw, 3rem);
  line-height: 1.04;
}

.radio-strip p {
  max-width: 660px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.radio-strip-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.landing-radio-player {
  display: grid;
  grid-template-columns: 54px minmax(180px, 1fr);
  align-items: center;
  gap: 12px;
  width: min(100%, 360px);
  padding: 12px;
  border: 1px solid rgba(255, 193, 7, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 193, 7, 0.12), rgba(0, 0, 0, 0.28)),
    rgba(5, 5, 5, 0.7);
}

.landing-radio-player img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(255, 193, 7, 0.18));
}

.landing-radio-info {
  min-width: 0;
}

.landing-radio-info span {
  display: block;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.landing-radio-info strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.landing-radio-info p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.25;
}

.landing-radio-audio {
  grid-column: 1 / -1;
  display: block;
  width: 100%;
  height: 42px;
  accent-color: var(--gold);
}

.radio-backup-link {
  grid-column: 1 / -1;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.landing-radio-is-playing .landing-radio-player {
  border-color: rgba(107, 170, 46, 0.72);
  box-shadow: 0 0 0 1px rgba(107, 170, 46, 0.22), var(--shadow);
}

.support-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 4vw, 42px);
  max-width: 1180px;
  margin: 14px auto 0;
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid rgba(255, 244, 208, 0.2);
  border-radius: 8px;
  background: rgba(16, 16, 16, 0.72);
}

.support-strip h2 {
  max-width: 760px;
  font-size: clamp(1.25rem, 2.7vw, 2.2rem);
  line-height: 1.08;
}

.support-strip .button {
  flex: 0 0 auto;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(62px, 8vw, 108px) clamp(18px, 4vw, 58px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(270px, 0.55fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
}

.identity-card {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: clamp(18px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(16, 16, 16, 0.92));
  box-shadow: var(--shadow);
}

.identity-card img {
  width: min(100%, 360px);
  border-radius: 6px;
}

.identity-card div {
  padding: 4px 4px 10px;
}

.identity-card h3 {
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.identity-card p {
  margin: 0;
}

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

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

.role-grid article {
  min-height: 176px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 193, 7, 0.12), rgba(16, 16, 16, 0.92));
}

.role-grid p {
  margin: 0;
}

.roles-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.form-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.5fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 82px);
  align-items: start;
}

.form-intro {
  position: sticky;
  top: 96px;
}

.form-intro h2 {
  font-size: clamp(1.7rem, 3.4vw, 3rem);
  line-height: 1.08;
}

.registration-form {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 16, 16, 0.94);
  box-shadow: var(--shadow);
}

label,
legend {
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 193, 7, 0.34);
  border-radius: 6px;
  color: var(--white);
  background: #050505;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold);
  outline: 2px solid rgba(255, 193, 7, 0.2);
}

.two-cols,
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255, 193, 7, 0.24);
  border-radius: 8px;
}

fieldset input,
fieldset select {
  margin-top: 0;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--gold);
  font-weight: 800;
}

.identity-preview {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 16, 16, 0.9);
  text-decoration: none;
}

.identity-preview img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  background: var(--cream);
}

.identity-preview span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 30px clamp(18px, 4vw, 58px);
  border-top: 1px solid var(--line);
  background: #020202;
  color: var(--muted);
  text-align: left;
}

.footer img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer .subaspot-footer-logo {
  width: min(220px, 42vw);
  height: auto;
  border-radius: 4px;
}

.footer strong,
.footer a {
  color: var(--gold);
  font-weight: 900;
}

.footer p {
  margin: 4px 0 0;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    border-radius: 18px;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero,
  .split,
  .form-section {
    grid-template-columns: 1fr;
  }

  .radio-strip {
    align-items: stretch;
    flex-direction: column;
    margin-right: clamp(18px, 4vw, 58px);
    margin-left: clamp(18px, 4vw, 58px);
  }

  .support-strip {
    align-items: stretch;
    flex-direction: column;
    margin-right: clamp(18px, 4vw, 58px);
    margin-left: clamp(18px, 4vw, 58px);
  }

  .radio-strip-actions {
    justify-content: flex-start;
  }

  .landing-radio-player {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .hero-art img {
    margin: 0 auto;
  }

  .info-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
  }

  .form-intro {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: auto;
  }

  .nav-links a {
    padding: 9px 10px;
    font-size: 0.84rem;
  }

  .brand span {
    font-size: 0.88rem;
  }

  h1 {
    font-size: clamp(2.7rem, 18vw, 4.8rem);
  }

  .info-band,
  .role-grid,
  .two-cols,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .info-band article {
    min-height: 118px;
  }

  .button {
    width: 100%;
  }

  .landing-radio-player {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .landing-radio-player img {
    width: 48px;
    height: 48px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

.radio-header {
  min-height: 96vh;
  padding: 18px clamp(18px, 4vw, 58px) 50px;
}

.radio-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: clamp(28px, 6vw, 86px);
  max-width: 1180px;
  min-height: calc(96vh - 86px);
  margin: 0 auto;
  padding-top: 34px;
}

.radio-copy {
  position: relative;
  z-index: 1;
}

.radio-player-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 20px;
  overflow: hidden;
  padding: clamp(22px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 193, 7, 0.18), rgba(16, 16, 16, 0.9) 42%),
    rgba(8, 8, 8, 0.96);
  box-shadow: var(--shadow);
}

.radio-player-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 244, 208, 0.12);
  border-radius: 8px;
  pointer-events: none;
}

.live-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 193, 7, 0.45);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(0, 0, 0, 0.45);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(107, 170, 46, 0.7);
  animation: livePulse 1.8s infinite;
}

.radio-mark {
  position: relative;
  z-index: 1;
  width: min(58vw, 210px);
  filter: drop-shadow(0 26px 46px rgba(255, 193, 7, 0.22));
}

.radio-now {
  position: relative;
  z-index: 1;
  text-align: center;
}

.radio-now p {
  margin: 0 0 6px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.radio-now strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.radio-stream-player {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 420px);
  height: 46px;
  border-radius: 8px;
  accent-color: var(--gold);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.radio-play-button {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: #050505;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  box-shadow: 0 18px 50px rgba(255, 173, 6, 0.28);
  cursor: pointer;
}

.play-icon {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
}

.radio-visualizer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 58px;
}

.radio-visualizer span {
  width: 8px;
  height: 16px;
  border-radius: 999px;
  background: var(--gold);
  opacity: 0.42;
}

.radio-is-playing .radio-visualizer span {
  opacity: 1;
  animation: radioBars 0.9s ease-in-out infinite;
}

.radio-is-playing .radio-visualizer span:nth-child(2) { animation-delay: 0.12s; }
.radio-is-playing .radio-visualizer span:nth-child(3) { animation-delay: 0.24s; }
.radio-is-playing .radio-visualizer span:nth-child(4) { animation-delay: 0.36s; }
.radio-is-playing .radio-visualizer span:nth-child(5) { animation-delay: 0.18s; }
.radio-is-playing .radio-visualizer span:nth-child(6) { animation-delay: 0.3s; }
.radio-is-playing .radio-visualizer span:nth-child(7) { animation-delay: 0.42s; }

.radio-controls {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
}

.radio-controls label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  text-align: center;
}

.radio-controls input {
  accent-color: var(--gold);
}

.radio-message {
  position: relative;
  z-index: 1;
  min-height: 24px;
  margin: 0;
  color: var(--gold);
  font-weight: 800;
  text-align: center;
}

.radio-external {
  position: relative;
  z-index: 1;
}

.countdown-section {
  padding-top: clamp(42px, 7vw, 84px);
}

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

.countdown-grid article,
.schedule-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 16, 16, 0.92);
  box-shadow: var(--shadow);
}

.countdown-grid article {
  display: grid;
  gap: 8px;
  min-height: 160px;
  place-items: center;
  padding: 22px 14px;
}

.countdown-grid strong {
  color: var(--gold);
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  line-height: 0.9;
}

.countdown-grid span {
  color: var(--cream);
  font-weight: 900;
  text-transform: uppercase;
}

.countdown-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 800;
}

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

.schedule-grid article {
  min-height: 220px;
  padding: 24px;
}

.schedule-grid span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.schedule-grid h3 {
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.schedule-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

@keyframes livePulse {
  70% {
    box-shadow: 0 0 0 12px rgba(107, 170, 46, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(107, 170, 46, 0);
  }
}

@keyframes radioBars {
  0%, 100% {
    height: 14px;
  }
  50% {
    height: 52px;
  }
}

@keyframes countdownGlow {
  from {
    text-shadow: 0 0 0 rgba(255, 193, 7, 0);
    transform: translateY(0);
  }
  to {
    text-shadow: 0 0 18px rgba(255, 193, 7, 0.34);
    transform: translateY(-2px);
  }
}

@media (max-width: 900px) {
  .radio-hero,
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .radio-hero {
    min-height: auto;
    padding-top: 46px;
  }

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

@media (max-width: 560px) {
  .radio-player-card {
    gap: 16px;
  }

  .radio-play-button {
    width: 92px;
    height: 92px;
  }

  .countdown-grid article {
    min-height: 128px;
  }
}

.memory-header {
  min-height: 92vh;
  padding: 18px clamp(18px, 4vw, 58px) 46px;
}

.memory-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  align-items: center;
  gap: clamp(34px, 7vw, 92px);
  max-width: 1180px;
  min-height: calc(92vh - 86px);
  margin: 0 auto;
  padding-top: 34px;
}

.memory-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.memory-copy h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 7vw, 6.6rem);
}

.memory-art {
  position: relative;
  z-index: 0;
  margin: 0;
  filter: drop-shadow(0 30px 50px rgba(255, 193, 7, 0.18));
}

.memory-art img {
  width: min(100%, 440px);
  margin-left: auto;
  border-radius: 8px;
}

.memory-intro {
  padding-top: clamp(46px, 7vw, 84px);
}

.memory-stamp img {
  width: min(100%, 430px);
  border-radius: 4px;
  background: #050505;
}

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

.timeline-grid article,
.media-card,
.subaspot-archive-grid article,
.pillar-grid article,
.project-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 193, 7, 0.1), rgba(16, 16, 16, 0.94)),
    rgba(16, 16, 16, 0.92);
  box-shadow: var(--shadow);
}

.timeline-grid article {
  min-height: 250px;
  padding: 22px;
}

.timeline-grid span,
.media-card span,
.subaspot-archive-grid span,
.pillar-grid span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.timeline-grid h3,
.media-card h3,
.subaspot-archive-grid h3,
.pillar-grid h3,
.project-grid h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
}

.timeline-grid p,
.media-card p,
.subaspot-archive-grid p,
.pillar-grid p,
.project-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.pillar-grid article,
.project-grid article {
  min-height: 240px;
  padding: 24px;
}

.program-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 54px);
  align-items: center;
  margin-bottom: 18px;
}

.program-feature figure,
.program-grid article {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 16, 16, 0.92);
  box-shadow: var(--shadow);
}

.program-feature figure {
  overflow: hidden;
}

.program-feature img {
  width: 100%;
  height: auto;
}

.program-feature h3 {
  font-size: clamp(1.55rem, 3.4vw, 2.8rem);
}

.program-feature p {
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.65;
}

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

.program-grid article {
  overflow: hidden;
}

.program-grid span {
  display: block;
  padding: 16px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.program-grid img {
  width: 100%;
  height: auto;
  border-top: 1px solid var(--line);
}

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

.memory-gallery figure {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 16, 16, 0.92);
}

.memory-gallery img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.memory-gallery figure:hover img {
  transform: scale(1.035);
}

.memory-gallery-featured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.memory-gallery-featured figure,
.memory-gallery-featured img {
  min-height: 360px;
}

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

.media-card {
  overflow: hidden;
}

.media-card > div:last-child {
  padding: 22px;
}

.media-card-featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: center;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #000000;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.subaspot-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.subaspot-archive-grid article {
  min-height: 230px;
  padding: 22px;
}

.subaspot-archive-grid a,
.sources-list a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

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

.sources-list a {
  margin-top: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 16, 16, 0.86);
  text-decoration: none;
}

.sources-list a:hover,
.sources-list a:focus-visible {
  color: var(--bg);
  background: var(--gold);
  outline: none;
}

@media (max-width: 980px) {
  .memory-hero,
  .media-card-featured {
    grid-template-columns: 1fr;
  }

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

  .media-grid,
  .subaspot-archive-grid,
  .pillar-grid,
  .project-grid,
  .program-feature,
  .program-grid {
    grid-template-columns: 1fr;
  }

  .media-card-featured {
    grid-column: span 1;
  }

  .memory-art img {
    width: min(100%, 520px);
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .memory-header {
    min-height: auto;
  }

  .memory-hero {
    min-height: auto;
    padding-top: 46px;
  }

  .timeline-grid,
  .sources-list,
  .memory-gallery,
  .memory-gallery-featured {
    grid-template-columns: 1fr;
  }

  .memory-copy h1 {
    font-size: clamp(2.35rem, 15vw, 4.4rem);
  }
}

.brand-manual-hero {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.92)),
    #030303;
}

.manual-symbol-stage {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: clamp(18px, 3vw, 30px);
  max-width: 1180px;
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 76px) 22px clamp(54px, 8vw, 96px);
  text-align: center;
}

.manual-symbol-stage figure {
  display: grid;
  place-items: center;
  width: min(58vw, 520px);
  margin: 0;
}

.manual-symbol-stage img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 34px 62px rgba(0, 0, 0, 0.62));
}

.manual-hero-copy {
  max-width: 780px;
}

.manual-hero-copy h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.88;
}

.manual-hero-copy p {
  max-width: 680px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.manual-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(54px, 9vw, 110px) 22px;
  border-top: 1px solid var(--line);
}

.manual-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(24px, 4vw, 42px);
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.manual-kicker span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--cream);
}

.manual-kicker p {
  margin: 0;
}

.manual-purpose-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(28px, 7vw, 86px);
}

.manual-purpose h2,
.manual-logo-display h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(2rem, 5.4vw, 5.4rem);
  line-height: 0.95;
}

.manual-poster h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  line-height: 1;
}

.manual-video h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 0.96;
}

.manual-copy-stack {
  display: grid;
  gap: 18px;
}

.manual-copy-stack p,
.manual-logo-display p,
.manual-poster-copy p,
.manual-video p,
.manual-application p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.62;
}

.manual-logo-display {
  text-align: center;
}

.manual-logo-display .manual-kicker {
  justify-content: center;
}

.manual-logo-display figure {
  display: grid;
  place-items: center;
  max-width: 840px;
  margin: 0 auto;
}

.manual-logo-display img {
  width: 100%;
  height: auto;
}

.manual-logo-display p {
  max-width: 760px;
  margin: 22px auto 0;
}

.manual-applications .section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.manual-application {
  display: grid;
  gap: clamp(22px, 5vw, 58px);
  align-items: center;
  margin-top: 22px;
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(9, 9, 9, 0.92);
  box-shadow: var(--shadow);
}

.manual-application-badge {
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr);
}

.manual-application-certificate {
  grid-template-columns: minmax(0, 0.38fr) minmax(320px, 0.62fr);
}

.manual-application figure,
.manual-poster figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #050505;
}

.manual-application img,
.manual-poster img {
  display: block;
  width: 100%;
  height: auto;
}

.manual-application span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.manual-application h3 {
  margin: 10px 0 14px;
  color: var(--cream);
  font-size: clamp(1.6rem, 4vw, 3.6rem);
  line-height: 0.98;
}

.manual-poster {
  display: grid;
  gap: clamp(42px, 7vw, 86px);
}

.manual-poster-copy {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.manual-poster-copy h2 {
  margin-bottom: 22px;
}

.manual-poster-copy p {
  max-width: 760px;
  margin: 0 auto;
}

.manual-poster figure {
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.manual-video-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(360px, 0.66fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.manual-video p {
  margin-top: 18px;
}

.manual-video-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 190, 35, 0.34);
  border-radius: 8px;
  color: var(--cream);
  text-decoration: none;
  background: #050505;
  box-shadow: var(--shadow);
}

.manual-video-card figure {
  margin: 0;
  aspect-ratio: 16 / 9;
  background: #050505;
}

.manual-video-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.manual-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 196, 34, 0.16), transparent 16rem),
    linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.68));
  pointer-events: none;
}

.manual-play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: clamp(72px, 9vw, 104px);
  height: clamp(72px, 9vw, 104px);
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: rgba(255, 190, 35, 0.92);
  transform: translate(-50%, -50%);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.62);
}

.manual-play-button::before {
  content: "";
  position: absolute;
  left: 52%;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 27px solid #050505;
  transform: translate(-38%, -50%);
}

.manual-video-card strong {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 2;
  color: var(--white);
  font-size: clamp(1.25rem, 3vw, 2.3rem);
  line-height: 1;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.82);
}

.manual-video-card:hover img,
.manual-video-card:focus-visible img {
  transform: scale(1.025);
  filter: saturate(1.08) brightness(1.06);
}

.manual-video-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 8px;
}

.manual-open-piece {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
}

.manual-open-piece figure {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.manual-open-piece span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 9px 12px;
  border: 1px solid rgba(255, 190, 35, 0.55);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.78);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.manual-open-piece:hover figure,
.manual-open-piece:focus-visible figure {
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(255, 183, 24, 0.16), var(--shadow);
}

.manual-open-piece:hover span,
.manual-open-piece:focus-visible span {
  opacity: 1;
  transform: translateY(0);
}

.manual-open-piece:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 8px;
  border-radius: 8px;
}

.piece-viewer-body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 184, 28, 0.15), transparent 34rem),
    #020202;
}

.piece-viewer {
  min-height: 100vh;
  padding: clamp(18px, 3vw, 34px);
}

.piece-back {
  position: fixed;
  top: clamp(14px, 3vw, 28px);
  left: clamp(14px, 3vw, 28px);
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 190, 35, 0.58);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.74);
  color: var(--cream);
  text-decoration: none;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.piece-back span {
  font-size: 1.35rem;
  line-height: 1;
}

.piece-back strong {
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.piece-stage {
  display: grid;
  place-items: center;
  min-height: calc(100vh - clamp(36px, 6vw, 68px));
  gap: 14px;
  text-align: center;
}

.piece-stage .eyebrow {
  margin-top: 56px;
}

.piece-stage h1 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(1.9rem, 5vw, 4.8rem);
  line-height: 0.95;
}

.piece-stage figure {
  display: grid;
  place-items: center;
  width: min(100%, 1180px);
  margin: 8px auto 0;
}

.piece-stage img {
  display: block;
  width: auto;
  max-width: min(100%, 1180px);
  height: auto;
  max-height: calc(100vh - 170px);
  border-radius: 8px;
  object-fit: contain;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.72));
}

.piece-video-frame {
  width: min(100%, 1220px);
  aspect-ratio: 16 / 9;
  margin: 10px auto 0;
  border: 1px solid rgba(255, 190, 35, 0.32);
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
}

.piece-video-frame iframe,
.piece-youtube-link {
  display: block;
  width: 100%;
  height: 100%;
}

.piece-youtube-link {
  position: relative;
  color: var(--cream);
  text-decoration: none;
  background: #000;
}

.piece-youtube-link img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  border-radius: 0;
  object-fit: cover;
  filter: none;
}

.piece-youtube-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 190, 35, 0.16), transparent 18rem),
    linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72));
}

.piece-youtube-link .manual-play-button {
  z-index: 2;
}

.piece-youtube-link strong {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 2;
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2.8rem);
  line-height: 1;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.86);
}

.piece-video-frame p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
  text-align: center;
}

.piece-video-frame iframe {
  border: 0;
}

.piece-stage .piece-poster img,
.piece-stage .piece-vertical img {
  max-height: none;
  width: min(100%, 820px);
}

.piece-stage .piece-horizontal img {
  width: min(100%, 1220px);
}

@media (max-width: 980px) {
  .manual-purpose-grid,
  .manual-application-badge,
  .manual-application-certificate,
  .manual-video-grid,
  .manual-poster-copy {
    grid-template-columns: 1fr;
  }

  .brand-manual-hero {
    min-height: auto;
  }

  .manual-symbol-stage {
    min-height: auto;
  }

  .manual-symbol-stage figure {
    width: min(78vw, 460px);
  }

  .manual-open-piece span {
    opacity: 1;
    transform: none;
  }

  .piece-stage {
    min-height: calc(100vh - 36px);
    padding-top: 58px;
  }

  .piece-stage img,
  .piece-stage .piece-poster img,
  .piece-stage .piece-vertical img,
  .piece-stage .piece-horizontal img {
    width: 100%;
    max-height: none;
  }

  .piece-video-frame {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .manual-symbol-stage figure {
    width: min(92vw, 380px);
  }

  .manual-hero-copy h1 {
    font-size: clamp(2.4rem, 15vw, 4.5rem);
  }
}
