:root {
  --ink: #f1eee7;
  --muted: #b8b2a8;
  --line: rgba(255,255,255,.16);
  --glass: rgba(16,16,15,.68);
  --glass-2: rgba(26,25,23,.78);
  --spotify: #1ed760;
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: #111; color: var(--ink); }
body { font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 28px 18px;
}
.hero-image {
  position: absolute;
  inset: -3%;
  z-index: -4;
  background: url('hero.png') center 43% / cover no-repeat;
  filter: contrast(1.04) saturate(.72) brightness(.82);
  transform: scale(1.035);
}
.shade {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 55% 42%, rgba(255,255,255,.05), transparent 28%),
    linear-gradient(90deg, rgba(8,8,8,.84) 0%, rgba(8,8,8,.45) 37%, rgba(8,8,8,.22) 62%, rgba(8,8,8,.56) 100%),
    linear-gradient(0deg, rgba(5,5,5,.72), transparent 48%);
}
.grain {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .2;
  background-image:
    repeating-radial-gradient(circle at 17% 29%, rgba(255,255,255,.16) 0 1px, transparent 1px 4px);
  mix-blend-mode: soft-light;
}
.panel {
  width: min(520px, 94vw);
  margin-left: min(34vw, 440px);
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(20,20,19,.82), rgba(15,15,14,.58));
  box-shadow: 0 24px 70px rgba(0,0,0,.48);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.eyebrow {
  font-size: .7rem;
  letter-spacing: .28em;
  color: #d7d0c5;
  margin-bottom: 14px;
}
h1 {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: clamp(2.7rem, 7vw, 5rem);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.035em;
  margin: 0 0 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,.45);
}
.tagline {
  max-width: 430px;
  margin: 0;
  font-size: clamp(1rem, 2.1vw, 1.18rem);
  line-height: 1.6;
  color: #d4cec4;
}
.rule { width: 68px; height: 1px; background: rgba(255,255,255,.36); margin: 26px 0 18px; }
.listen-label { margin: 0 0 13px; color: var(--muted); font-size: .83rem; }
.buttons { display: grid; gap: 11px; }
.service {
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--line);
  display: grid;
  align-items: center;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  -webkit-tap-highlight-color: transparent;
}
.service:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.38); }
.service.pressed { transform: scale(.985); }
.service small { display: block; font-size: .56rem; letter-spacing: .16em; color: #a9a49c; margin-bottom: 3px; }
.service strong { font-size: 1rem; font-weight: 600; }
.service-mark { font-size: 1.45rem; line-height: 1; }
.primary {
  grid-template-columns: 34px 1fr 24px;
  gap: 11px;
  min-height: 72px;
  padding: 14px 18px;
  background: linear-gradient(90deg, rgba(30,215,96,.18), rgba(255,255,255,.035));
  border-color: rgba(30,215,96,.44);
}
.primary .service-mark { color: var(--spotify); text-shadow: 0 0 18px rgba(30,215,96,.45); }
.arrow { justify-self: end; font-size: 1.1rem; opacity: .7; }
.secondary-row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.secondary {
  grid-template-columns: 28px 1fr;
  gap: 9px;
  min-height: 62px;
  padding: 11px 14px;
  background: rgba(255,255,255,.035);
}
.secondary strong { font-size: .86rem; }
.play { font-size: 1rem; }
.microcopy { color: #99938a; font-size: .72rem; margin: 17px 0 0; }
.corner-copy {
  position: absolute;
  top: 32px;
  left: 46px;
  display: grid;
  color: rgba(12,12,12,.78);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(.65rem, 1vw, .86rem);
  letter-spacing: .05em;
  line-height: 1.45;
  transform: rotate(-1deg);
}
@media (max-width: 900px) {
  .hero { align-items: end; padding: 18px; }
  .hero-image { background-position: 36% center; }
  .shade { background: linear-gradient(0deg, rgba(7,7,7,.9) 0%, rgba(7,7,7,.54) 60%, rgba(7,7,7,.25) 100%); }
  .panel { margin: 0; width: min(620px, 100%); }
  .corner-copy { left: 22px; top: 20px; color: rgba(0,0,0,.62); }
}
@media (max-width: 520px) {
  .hero { padding: 12px; }
  .panel { padding: 24px 20px; border-radius: 2px; }
  .secondary-row { grid-template-columns: 1fr; }
  .secondary { min-height: 56px; }
  .corner-copy { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
