* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: #111;
  color: #fff;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  width: 100%;
  max-width: 760px;
  margin: auto;
  padding: 64px 24px 40px;
  text-align: center;
}

.badge {
  display: inline-block;
  padding: 9px 15px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 11vw, 86px);
  line-height: .93;
  letter-spacing: -3px;
  text-transform: uppercase;
}

h1 span {
  font-style: italic;
}

.intro {
  max-width: 590px;
  margin: 28px auto 34px;
  color: #cfcfcf;
  font-size: 18px;
  line-height: 1.55;
}

.listen-card {
  background: #fff;
  color: #111;
  border-radius: 22px;
  padding: 28px;
  text-align: left;
  box-shadow: 0 18px 50px rgba(0,0,0,.3);
}

.listen-card h2 {
  margin: 0 0 5px;
  font-size: 28px;
}

.listen-card p {
  margin: 0 0 20px;
  color: #666;
}

.platform {
  display: block;
  text-decoration: none;
  color: #111;
  background: #f0f0f0;
  padding: 17px 18px;
  border-radius: 12px;
  margin-top: 10px;
  font-weight: 800;
  transition: transform .15s ease, background .15s ease;
}

.platform:hover {
  transform: translateY(-2px);
  background: #e2e2e2;
}

.social {
  margin-top: 34px;
}

.social p {
  color: #aaa;
  margin-bottom: 12px;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-buttons a {
  color: #fff;
  text-decoration: none;
  border: 1px solid #444;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
}

footer {
  margin-top: auto;
  padding: 25px;
  text-align: center;
  color: #777;
  font-size: 12px;
}
