:root {
  --bg: #07111a;
  --bg-deep: #04080d;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-border: rgba(255, 255, 255, 0.12);
  --text: #f3eee6;
  --muted: #c7c0b4;
  --accent: #f0b84a;
  --accent-deep: #c98325;
  --shadow: rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(240, 184, 74, 0.15), transparent 35%),
    radial-gradient(circle at bottom right, rgba(186, 73, 41, 0.18), transparent 32%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg-deep) 100%);
}

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

.page-shell {
  position: relative;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0 2.5rem;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.brand-mark {
  display: inline-block;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy {
  padding: 1rem 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: clamp(3.8rem, 9vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.lede {
  max-width: 34rem;
  margin: 1.4rem 0 0;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.7;
  font-family: "Space Grotesk", Arial, sans-serif;
  color: var(--text);
}

.supporting-copy {
  max-width: 32rem;
  margin: 1rem 0 0;
  font-size: 0.98rem;
  line-height: 1.85;
  font-family: "Space Grotesk", Arial, sans-serif;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  color: #1c1308;
  background: linear-gradient(135deg, var(--accent) 0%, #ffd98b 100%);
  text-decoration: none;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(240, 184, 74, 0.2);
}

.status-note {
  color: var(--muted);
  font-size: 0.92rem;
  font-family: "Space Grotesk", Arial, sans-serif;
}

.artwork-panel {
  display: flex;
  justify-content: center;
}

.artwork-frame {
  width: min(100%, 470px);
  padding: 1rem;
  border: 1px solid var(--surface-border);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: 0 24px 70px var(--shadow);
  backdrop-filter: blur(8px);
}

.artwork-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.streaming-strip {
  margin-top: 2.5rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid var(--surface-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}

.streaming-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 860px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .hero-copy {
    order: 2;
  }

  .artwork-panel {
    order: 1;
  }

  .artwork-frame {
    width: min(100%, 430px);
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 1.2rem, 1180px);
    padding-top: 0.8rem;
  }

  .brand-mark {
    width: 100%;
    text-align: center;
    font-size: 0.82rem;
  }

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

  .primary-cta {
    width: 100%;
  }
}
