/* MLP Software — modern static site */

:root {
  --bg: #070b12;
  --bg-elevated: #0f1623;
  --bg-card: rgba(18, 26, 40, 0.72);
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8edf5;
  --text-muted: #94a3b8;
  --accent: #38bdf8;
  --accent-2: #818cf8;
  --spotify: #1db954;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --max-width: 1120px;
  --header-height: 72px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Outfit", var(--font);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(56, 189, 248, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(129, 140, 248, 0.1), transparent);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #7dd3fc;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 11, 18, 0.85);
  backdrop-filter: blur(12px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
}

.logo img {
  height: 28px;
  width: auto;
  flex-shrink: 0;
}

.logo:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.25rem;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: block;
  padding: 0.5rem 0.875rem;
  color: var(--text-muted);
  font-size: 0.925rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

/* Hero */
.hero {
  padding: 5rem 0 4rem;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-logo {
  width: min(320px, 80vw);
  height: auto;
  margin: 1.75rem auto 1.5rem;
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.hero-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 920px;
  margin: 3rem auto 0;
}

.hero-showcase-item {
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-showcase-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: var(--text);
}

.hero-showcase-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-showcase-caption {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--border);
}

.hero-showcase-caption img {
  width: 28px;
  height: 28px;
  aspect-ratio: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-showcase-caption span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.hero-showcase-item.top5:hover {
  border-color: rgba(99, 102, 241, 0.45);
}

.hero-showcase-item.spinroom:hover {
  border-color: rgba(255, 94, 25, 0.45);
}

.hero-showcase-item.spotify:hover {
  border-color: rgba(29, 185, 84, 0.45);
}

/* Product cards */
.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-muted);
  margin: 0;
  max-width: 32rem;
  margin-inline: auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.product-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.product-card-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: var(--shadow);
}

.product-card.top5:hover {
  border-color: rgba(99, 102, 241, 0.4);
}

.product-card.spinroom:hover {
  border-color: rgba(255, 94, 25, 0.4);
}

.product-card.spotify:hover {
  border-color: rgba(29, 185, 84, 0.4);
}

.product-card-visual {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.08), rgba(129, 140, 248, 0.06));
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.product-card-visual img {
  position: relative;
  z-index: 1;
  max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4));
}

.product-card-media {
  position: relative;
  width: 100%;
  height: 100%;
}

.product-card-screenshot {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  filter: none;
}

.product-card-logo-mark {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 52px;
  height: 52px;
  padding: 0.35rem;
  border-radius: 14px;
  background: rgba(7, 11, 18, 0.85);
  border: 1px solid var(--border);
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
}

.product-card-visual.spotify {
  background: #070b12;
}

.product-card-visual.spotify::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/download-bg.jpg") center / cover no-repeat;
  filter: grayscale(1) brightness(0.4) contrast(1.05);
  transform: scale(1.08);
}

.product-card-visual.spotify::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(7, 11, 18, 0.55) 0%,
    rgba(29, 185, 84, 0.22) 100%
  );
}

.product-card-visual.spinroom {
  background: #070b12;
}

.product-card-visual.spinroom::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/spinroom/card-bg.png") center / cover no-repeat;
  filter: grayscale(1) brightness(0.4) contrast(1.05);
  transform: scale(1.08);
}

.product-card-visual.spinroom::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(7, 11, 18, 0.55) 0%,
    rgba(255, 94, 25, 0.28) 100%
  );
}

.product-card-visual.top5 {
  background: #070b12;
}

.product-card-visual.top5::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/top5challenge/card-bg.png") center / cover no-repeat;
  filter: grayscale(1) brightness(0.4) contrast(1.05);
  transform: scale(1.08);
}

.product-card-visual.top5::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(7, 11, 18, 0.55) 0%,
    rgba(99, 102, 241, 0.28) 100%
  );
}

.product-card-tag.retired {
  color: var(--text-muted);
}

.product-card.retired {
  opacity: 0.85;
}

.btn-spinroom {
  background: #ff5e19;
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 94, 25, 0.35);
}

.btn-spinroom:hover {
  color: #fff;
}

.btn-top5 {
  background: linear-gradient(135deg, #4338ca, #6366f1);
  color: #fff;
  box-shadow: 0 4px 20px rgba(67, 56, 202, 0.35);
}

.btn-top5:hover {
  color: #fff;
}

.product-hero.spinroom-hero .hero-badge {
  border-color: rgba(255, 94, 25, 0.35);
  color: #ffb380;
}

.product-hero.top5-hero .hero-badge {
  border-color: rgba(99, 102, 241, 0.35);
  color: #c7d2fe;
}

.product-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
}

.product-card p {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  flex: 1;
  font-size: 0.95rem;
}

.product-card-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.925rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  color: #041018;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.35);
}

.btn-primary:hover {
  color: #041018;
  box-shadow: 0 6px 28px rgba(56, 189, 248, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.btn-spotify {
  background: var(--spotify);
  color: #fff;
  box-shadow: 0 4px 20px rgba(29, 185, 84, 0.35);
}

.btn-spotify:hover {
  color: #fff;
}

/* Product page hero */
.product-hero {
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.product-hero > .container {
  position: relative;
  z-index: 1;
}

.product-hero.top5-hero::before {
  background:
    radial-gradient(ellipse 70% 60% at 15% 20%, rgba(99, 102, 241, 0.22), transparent),
    radial-gradient(ellipse 50% 50% at 85% 80%, rgba(67, 56, 202, 0.15), transparent);
}

.product-hero.spinroom-hero::before {
  background:
    radial-gradient(ellipse 70% 60% at 85% 15%, rgba(255, 94, 25, 0.2), transparent),
    radial-gradient(ellipse 50% 50% at 10% 90%, rgba(251, 146, 60, 0.12), transparent);
}

.product-hero.spotify-hero::before {
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(29, 185, 84, 0.18), transparent),
    radial-gradient(ellipse 50% 50% at 15% 85%, rgba(56, 189, 248, 0.1), transparent);
}

.product-hero.spotify-hero .hero-badge {
  border-color: rgba(29, 185, 84, 0.35);
  color: #86efac;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.product-hero.top5-hero > .container {
  width: min(100% - 2rem, 1240px);
}

.product-hero.top5-hero .product-hero-grid {
  grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  gap: 2.25rem;
}

.product-hero-stack {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

.product-hero.spinroom-hero {
  padding-bottom: 4rem;
}

.product-hero.spinroom-hero .product-hero-copy {
  max-width: 42rem;
}

.product-hero-lead--last {
  margin-bottom: 0;
}

.product-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.product-hero-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.platform-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.platform-badge {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

a.platform-badge {
  font-weight: 600;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.spinroom-hero a.platform-badge,
.spinroom-download a.platform-badge {
  color: #ffb380;
  border-color: rgba(255, 94, 25, 0.45);
  background: rgba(255, 94, 25, 0.14);
  box-shadow: 0 2px 12px rgba(255, 94, 25, 0.15);
}

.spinroom-hero a.platform-badge:hover,
.spinroom-download a.platform-badge:hover {
  color: #fff;
  border-color: rgba(255, 94, 25, 0.7);
  background: rgba(255, 94, 25, 0.28);
  box-shadow: 0 4px 16px rgba(255, 94, 25, 0.25);
}

.spotify-hero a.platform-badge,
.spotify-download a.platform-badge {
  color: #86efac;
  border-color: rgba(29, 185, 84, 0.45);
  background: rgba(29, 185, 84, 0.14);
  box-shadow: 0 2px 12px rgba(29, 185, 84, 0.15);
}

.spotify-hero a.platform-badge:hover,
.spotify-download a.platform-badge:hover {
  color: #fff;
  border-color: rgba(29, 185, 84, 0.7);
  background: rgba(29, 185, 84, 0.28);
  box-shadow: 0 4px 16px rgba(29, 185, 84, 0.25);
}

a.platform-badge:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.product-hero-image {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(0, 0, 0, 0.25);
}

.product-hero-image img {
  width: 100%;
  display: block;
}

.product-hero-image--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  background: linear-gradient(145deg, rgba(67, 56, 202, 0.15), rgba(0, 0, 0, 0.2));
}

.product-hero-image--logo img {
  width: auto;
  max-height: 200px;
  border-radius: 24px;
}

.product-hero-image--spinroom {
  background: linear-gradient(145deg, rgba(255, 94, 25, 0.12), rgba(0, 0, 0, 0.2));
}

.product-hero-collage {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.product-hero.spinroom-hero .product-hero-collage {
  position: relative;
  width: 100%;
  max-width: 1536px;
  margin-inline: auto;
  padding: 3px;
  overflow: visible;
  border: none;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(
    135deg,
    rgba(255, 94, 25, 0.65) 0%,
    rgba(251, 146, 60, 0.35) 35%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(251, 146, 60, 0.35) 65%,
    rgba(255, 94, 25, 0.55) 100%
  );
  box-shadow:
    0 0 0 1px rgba(255, 94, 25, 0.25),
    0 0 48px rgba(255, 94, 25, 0.14),
    0 32px 96px rgba(0, 0, 0, 0.55);
}

.product-hero.spinroom-hero .product-hero-collage::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.product-hero-collage img {
  width: 100%;
  height: auto;
  display: block;
}

.product-hero.spinroom-hero .product-hero-collage img {
  border-radius: var(--radius);
}

.product-hero-showcase {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.product-hero.top5-hero .product-hero-visual {
  position: relative;
}

.product-hero.top5-hero .product-hero-visual::before {
  content: "";
  position: absolute;
  inset: 5% -8%;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.28), transparent 70%);
  filter: blur(28px);
  pointer-events: none;
}

.product-hero.top5-hero .product-hero-showcase {
  position: relative;
  z-index: 1;
  padding: 3px;
  overflow: visible;
  border: none;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.65) 0%,
    rgba(129, 140, 248, 0.35) 35%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(67, 56, 202, 0.35) 65%,
    rgba(99, 102, 241, 0.55) 100%
  );
  box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.25),
    0 0 48px rgba(99, 102, 241, 0.16),
    0 32px 96px rgba(0, 0, 0, 0.55);
}

.product-hero.top5-hero .product-hero-showcase::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.product-hero-showcase img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}

.media-caption {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* Split sections */
.split-section {
  padding: 4rem 0;
}

.split-section:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-grid.reverse .split-media {
  order: 2;
}

.split-grid.reverse .split-content {
  order: 1;
}

.split-media img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* Album mockup fills the frame; log/browse have letterboxing — scale to match */
.spinroom-album-shot {
  display: flex;
  justify-content: flex-end;
}

.spinroom-album-shot img {
  width: auto;
  max-width: 100%;
  max-height: 26rem;
}

.split-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.split-content p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.split-content p:last-child {
  margin-bottom: 0;
}

.split-tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.split-tag.top5 {
  background: rgba(99, 102, 241, 0.15);
  color: #c7d2fe;
}

.split-tag.spinroom {
  background: rgba(255, 94, 25, 0.15);
  color: #fed7aa;
}

.split-tag.spotify {
  background: rgba(29, 185, 84, 0.15);
  color: #86efac;
}

.download-section.top5-download {
  background: linear-gradient(135deg, rgba(67, 56, 202, 0.12), rgba(99, 102, 241, 0.06));
}

.download-section.spinroom-download {
  background: linear-gradient(135deg, rgba(255, 94, 25, 0.1), rgba(251, 146, 60, 0.05));
}

.contact-section {
  padding: 3rem 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
}

.contact-section a {
  font-size: 1.1rem;
  font-weight: 500;
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-color: rgba(56, 189, 248, 0.25);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
}

.feature-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.spinroom-features .feature-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spinroom-features .feature-emoji {
  flex-shrink: 0;
  font-size: 1.15rem;
  line-height: 1;
}

.spinroom-features .feature-card:hover {
  border-color: rgba(255, 94, 25, 0.35);
}

.top5-features .feature-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top5-features .feature-emoji {
  flex-shrink: 0;
  font-size: 1.15rem;
  line-height: 1;
}

.top5-features .feature-card:hover {
  border-color: rgba(99, 102, 241, 0.35);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.925rem;
}

/* Screenshot band */
.screenshot-band {
  padding: 3rem 0;
  background: rgba(255, 255, 255, 0.02);
  border-block: 1px solid var(--border);
}

.screenshot-band-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  align-items: center;
}

.screenshot-band h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.75rem;
}

.screenshot-band p {
  color: var(--text-muted);
  margin: 0;
}

.screenshot-band img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.top5-scenes .scene-grid {
  margin-top: 1.5rem;
  grid-template-columns: 1fr;
}

.top5-scenes .scene-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
}

.top5-scenes .scene-card-image {
  width: 6.25rem;
  height: 6.25rem;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.top5-scenes .scene-card-body {
  min-width: 0;
  flex: 1;
}

.top5-scenes .scene-card h3 {
  margin: 0 0 0.5rem;
}

.top5-scenes .scene-card p {
  margin: 0;
}

.top5-scenes .scene-card:hover {
  border-color: rgba(99, 102, 241, 0.35);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.review-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.review-card blockquote {
  margin: 0 0 1rem;
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.review-author strong {
  display: block;
  font-size: 0.9rem;
}

.review-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FAQ accordion */
.faq-list {
  max-width: 720px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-bottom: 1.125rem;
  color: var(--text-muted);
  font-size: 0.925rem;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

.faq-answer li {
  margin-bottom: 0.35rem;
}

.faq-answer img {
  margin-top: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

/* Download section */
.download-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.08), rgba(56, 189, 248, 0.06));
  border-block: 1px solid var(--border);
}

.download-section.spotify-download {
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.12), rgba(56, 189, 248, 0.06));
}

.download-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
}

.download-grid img {
  max-width: 220px;
}

.download-section h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 1.25rem;
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--text);
  transition: background 0.2s, border-color 0.2s;
}

.store-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text);
}

.store-btn svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.store-btn small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.store-btn strong {
  display: block;
  font-size: 1rem;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--text);
}

/* Legal page wrapper */
.legal-page {
  padding: 2rem 0 4rem;
}

.legal-page .container {
  max-width: 800px;
}

.legal-nav {
  margin-bottom: 2rem;
}

.legal-content {
  background: #fff;
  color: #333;
  padding: 2rem;
  border-radius: var(--radius);
}

/* Strangeways page */
.external-hero {
  text-align: center;
  padding: 4rem 0;
}

.external-hero .product-card-visual {
  max-width: 400px;
  margin: 2rem auto 0;
  border-radius: var(--radius);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    display: none;
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a {
    padding: 0.75rem 1rem;
  }

  .product-hero-grid,
  .screenshot-band-inner,
  .download-grid,
  .split-grid,
  .hero-showcase {
    grid-template-columns: 1fr;
  }

  .product-hero.spinroom-hero .product-hero-collage {
    box-shadow:
      0 0 0 1px rgba(255, 94, 25, 0.2),
      0 0 32px rgba(255, 94, 25, 0.1),
      0 24px 64px rgba(0, 0, 0, 0.5);
  }

  .product-hero.top5-hero .product-hero-showcase {
    box-shadow:
      0 0 0 1px rgba(99, 102, 241, 0.2),
      0 0 32px rgba(99, 102, 241, 0.12),
      0 24px 64px rgba(0, 0, 0, 0.5);
  }

  .product-hero.top5-hero .product-hero-visual::before {
    inset: 0;
  }

  .split-grid.reverse .split-media,
  .split-grid.reverse .split-content {
    order: unset;
  }

  .spinroom-album-shot {
    justify-content: center;
  }

  .download-grid img {
    margin-inline: auto;
  }

  .hero {
    padding: 3rem 0 2rem;
  }
}
