:root {
  --text: #fff8ef;
  --muted: rgba(255, 248, 239, 0.78);
  --soft: rgba(255, 248, 239, 0.62);
  --line: rgba(255, 248, 239, 0.15);
  --panel: rgba(34, 22, 14, 0.48);
  --panel-strong: rgba(34, 22, 14, 0.72);
  --panel-soft: rgba(255, 248, 239, 0.08);
  --accent: #da7753;
  --accent-soft: rgba(218, 119, 83, 0.18);
  --shadow: 0 24px 90px rgba(14, 10, 7, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(15, 10, 7, 0.24), rgba(15, 10, 7, 0.24)),
    url("./mus-hero-v2.png") center center / cover no-repeat fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  overflow: hidden;
}

.background-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 184, 124, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(22, 15, 10, 0.28) 0%, rgba(22, 15, 10, 0.5) 100%),
    linear-gradient(90deg, rgba(22, 15, 10, 0.42) 0%, rgba(22, 15, 10, 0.18) 35%, rgba(22, 15, 10, 0.42) 100%);
  pointer-events: none;
}

.content-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
}

.glass-panel {
  width: min(100%, 980px);
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    var(--panel);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.brand-mark {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #f6bf7e 0%, #da7753 100%);
  color: #2d160d;
  font-family: "Marhey", cursive;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(218, 119, 83, 0.35);
}

.brand-text h1 {
  margin: 4px 0 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.eyebrow,
.mini-title,
.status-pill {
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow,
.mini-title {
  margin: 0;
  font-size: 0.78rem;
  color: var(--soft);
}

.hero-copy {
  max-width: 760px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.76rem;
  color: #ffd8c5;
  background: var(--accent-soft);
  border: 1px solid rgba(218, 119, 83, 0.34);
}

.status-pill::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff9a76;
  box-shadow: 0 0 0 6px rgba(255, 154, 118, 0.14);
}

.hero-copy h2 {
  margin: 18px 0 18px;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.02;
  max-width: 12ch;
}

.lead {
  margin: 0 0 14px;
  max-width: 62ch;
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--muted);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 32px 0 24px;
}

.info-card {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--panel-soft);
}

.info-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  color: var(--soft);
}

.info-card strong {
  display: block;
  line-height: 1.5;
  font-size: 1rem;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.feature-item {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 239, 0.05);
}

.feature-item span {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 0.82rem;
  color: var(--soft);
}

.feature-item p {
  margin: 0;
  line-height: 1.6;
  color: var(--text);
}

.bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.bottom-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  flex: 1;
}

.meta-block p,
.meta-block a {
  margin: 8px 0 0;
  color: var(--muted);
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 216, 197, 0.28);
  background: rgba(255, 248, 239, 0.04);
  color: var(--text);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}

.ghost-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 248, 239, 0.1);
  border-color: rgba(255, 216, 197, 0.46);
}

@media (max-width: 960px) {
  .glass-panel {
    padding: 30px 22px;
    border-radius: 26px;
  }

  .hero-copy h2 {
    max-width: none;
    font-size: clamp(2rem, 8vw, 3.4rem);
  }

  .info-grid,
  .feature-strip,
  .bottom-meta {
    grid-template-columns: 1fr;
  }

  .bottom-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .ghost-button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 18px;
  }

  .brand-row {
    align-items: flex-start;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
    font-size: 1.8rem;
  }

  .lead {
    font-size: 1rem;
    line-height: 1.75;
  }
}
