:root {
  --navy: #071633;
  --navy-soft: #0d2450;
  --ink: #131722;
  --cream: #f7f4ee;
  --white: #fff;
  --muted: #697080;
  --pink: #ff8fa8;
  --orange: #ff6238;
  --line: rgba(255,255,255,.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -.03em;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}
.site-header nav { display: flex; gap: 28px; }
.site-header nav a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(255,255,255,.78);
}
.site-header nav a:hover { color: white; }

.hero {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 60px;
  padding: 130px max(32px, calc((100vw - 1176px) / 2)) 88px;
  color: white;
  background:
    radial-gradient(circle at 70% 20%, rgba(66,111,197,.22), transparent 34%),
    linear-gradient(135deg, #06132d 0%, #0a1b3b 52%, #09162f 100%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 80px;
  background: var(--cream);
  clip-path: polygon(0 78%, 100% 0, 100% 100%, 0 100%);
}
.hero-glow { position: absolute; border-radius: 999px; filter: blur(40px); opacity: .35; }
.hero-glow-one { width: 340px; height: 340px; background: var(--pink); right: 4%; top: 13%; }
.hero-glow-two { width: 300px; height: 300px; background: var(--orange); right: 27%; bottom: 0; opacity: .16; }
.hero-copy, .hero-art { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(64px, 8vw, 126px);
  line-height: .88;
  letter-spacing: -.075em;
}
.hero-line {
  max-width: 570px;
  margin: 30px 0 0;
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.45;
  color: rgba(255,255,255,.72);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 38px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: white; color: var(--navy); }
.button-secondary { border: 1px solid var(--line); color: white; background: rgba(255,255,255,.04); }
.hero-art { justify-self: end; width: min(100%, 490px); transform: rotate(2deg); }
.hero-art img {
  border-radius: 26px;
  box-shadow: 0 40px 100px rgba(0,0,0,.42);
}
.record-shadow {
  position: absolute;
  inset: 10% -18% 8% 18%;
  border-radius: 50%;
  background: #03070f;
  box-shadow: inset 0 0 0 25px #0c1424, inset 0 0 0 27px rgba(255,255,255,.06), 0 40px 90px rgba(0,0,0,.4);
  z-index: -1;
}

.section { max-width: 1176px; margin: 0 auto; padding: 110px 32px; }
.section-heading { max-width: 700px; margin-bottom: 42px; }
.section h2 { margin: 0; font-size: clamp(44px, 6vw, 78px); letter-spacing: -.055em; line-height: 1; }
.section-heading > p:last-child { color: var(--muted); font-size: 18px; margin-top: 18px; }
.video-shell {
  overflow: hidden;
  border-radius: 24px;
  background: #05070b;
  box-shadow: 0 28px 70px rgba(19,23,34,.16);
  aspect-ratio: 16 / 9;
}
.video-shell iframe { width: 100%; height: 100%; border: 0; }
.release-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 2px 0;
  font-size: 14px;
  color: var(--muted);
}
.release-footer a, .text-link { font-weight: 700; color: var(--ink); text-decoration: none; }
.release-footer a:hover, .text-link:hover { text-decoration: underline; }

.coming-soon {
  display: grid;
  grid-template-columns: minmax(280px, 520px) 1fr;
  gap: clamp(46px, 8vw, 110px);
  align-items: center;
}
.coming-art img { border-radius: 24px; box-shadow: 0 25px 60px rgba(19,23,34,.14); }
.coming-copy > p:not(.eyebrow) { margin: 24px 0; font-size: 20px; color: var(--muted); }

.about { border-top: 1px solid rgba(19,23,34,.11); }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; }
.about-grid h2 { font-size: clamp(42px, 5vw, 70px); }
.about-grid p { margin: 0; max-width: 520px; font-size: 19px; line-height: 1.75; color: var(--muted); }

footer {
  max-width: 1176px;
  margin: 0 auto;
  padding: 48px 32px 56px;
  border-top: 1px solid rgba(19,23,34,.11);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}
footer p { margin: 0; }
.footer-title { font-weight: 700; font-size: 20px; letter-spacing: -.03em; }
footer div > p:last-child { margin-top: 7px; color: var(--muted); font-size: 14px; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { text-decoration: none; font-size: 14px; font-weight: 600; }
.footer-links a:hover { text-decoration: underline; }
.copyright { grid-column: 1 / -1; margin-top: 32px !important; color: var(--muted); font-size: 12px; }

@media (max-width: 840px) {
  .site-header { padding: 20px; }
  .site-header nav { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 54px; padding: 120px 20px 100px; }
  .hero h1 { font-size: clamp(62px, 20vw, 92px); }
  .hero-art { justify-self: center; width: min(86vw, 470px); }
  .record-shadow { display: none; }
  .section { padding: 82px 20px; }
  .coming-soon { grid-template-columns: 1fr; }
  .coming-art { max-width: 520px; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  footer { margin: 0 20px; padding-left: 0; padding-right: 0; grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 10px; }
}

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