:root {
  --bg: #050508;
  --bg-2: #090912;
  --surface: #111119;
  --surface-2: #181824;
  --text: #f4f1ea;
  --muted: #a9a6b3;
  --red: #e63946;
  --gold: #d6a84f;
  --violet: #7a5cff;
  --blue: #00b7ff;
  --border: rgba(244, 241, 234, 0.12);
  --glow: rgba(122, 92, 255, 0.34);
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 4%, rgba(230, 57, 70, 0.18), transparent 28rem),
    radial-gradient(circle at 82% 12%, rgba(122, 92, 255, 0.2), transparent 32rem),
    radial-gradient(circle at 50% 90%, rgba(214, 168, 79, 0.09), transparent 30rem),
    linear-gradient(180deg, var(--bg), var(--bg-2) 55%, #040407);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.08;
  background-image: url("/releases/thechain/thechain-cover.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(44px) saturate(1.25);
  transform: scale(1.08);
}

a {
  color: inherit;
}

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

.shell {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px) saturate(1.2);
  background: rgba(5, 5, 8, 0.78);
  border-bottom: 1px solid rgba(244, 241, 234, 0.08);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 34px rgba(214, 168, 79, 0.22);
  background: #101010;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.mobile-toggle {
  display: none;
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  font-size: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid rgba(244, 241, 234, 0.14);
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.9), rgba(122, 92, 255, 0.82));
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(122, 92, 255, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(230, 57, 70, 0.18);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  box-shadow: none;
}

.hero {
  min-height: auto;
  display: grid;
  align-items: center;
  padding: 56px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  align-items: center;
  gap: 40px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Saira Condensed", Oswald, Impact, sans-serif;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(42px, 8vw, 96px);
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-copy {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
}

.hero-copy h1 {
  color: var(--text);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(244, 241, 234, 0.16);
  box-shadow: var(--shadow);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-art {
  position: relative;
  min-height: 480px;
}

.cover-stack {
  position: absolute;
  inset: 0;
}

.cover-card {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(244, 241, 234, 0.16);
  box-shadow: var(--shadow);
  background: #101018;
}

.cover-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-card.main {
  inset: 8% 7% 5% 7%;
  z-index: 2;
  animation: float 7s ease-in-out infinite;
}

.cover-card.back {
  inset: 0 18% 22% 0;
  opacity: 0.54;
  transform: rotate(-8deg);
  filter: saturate(0.82);
}

.cover-card.side {
  inset: 45% 0 0 42%;
  z-index: 3;
  transform: rotate(7deg);
  border-radius: 22px;
}

.waveform {
  display: flex;
  gap: 5px;
  align-items: end;
  height: 54px;
  margin-top: 28px;
}

.waveform span {
  width: 5px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(var(--blue), var(--red));
  animation: pulse 1.4s ease-in-out infinite;
  animation-delay: calc(var(--i) * 80ms);
}

.section {
  padding: 82px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 36px;
  margin-bottom: 28px;
}

.section-head h2,
.page-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.94;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-head p,
.lead {
  margin: 0;
  max-width: 610px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.panel {
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(17, 17, 25, 0.82);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.release-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.release-feature::before {
  content: "";
  position: absolute;
  inset: -20%;
  background-image: url("/releases/thechain/thechain-cover.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.13;
  filter: blur(38px) saturate(1.2);
}

.release-feature > * {
  position: relative;
  z-index: 1;
}

.feature-cover {
  border-radius: 22px;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
}

.meta {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.release-feature h3 {
  margin: 12px 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.9;
  text-transform: uppercase;
}

.release-feature p,
.card p,
.project-card p,
.quote p {
  color: var(--muted);
  line-height: 1.68;
}

.streaming {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.streaming a,
.tag,
.filter-button {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.release-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-family: "Saira Condensed", Inter, sans-serif;
  max-width: 14ch;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 0.96;
  text-transform: uppercase;
  text-wrap: balance;
}

.text-link {
  color: var(--gold);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.card,
.release-card,
.project-card,
.video-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(17, 17, 25, 0.78);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover,
.release-card:hover,
.project-card:hover,
.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 168, 79, 0.44);
}

.card img,
.release-card img,
.video-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.card-main {
  display: block;
  color: inherit;
  text-decoration: none;
}

.video-card img {
  aspect-ratio: 16 / 10;
}

.card:hover img,
.release-card:hover img,
.video-card:hover img {
  transform: scale(1.045);
}

.card-body,
.project-card,
.video-body {
  padding: 20px;
}

.release-card h3 {
  margin: 10px 0 0;
  font-family: "Saira Condensed", Inter, sans-serif;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  min-height: 2.1em;
}

.platform-buttons {
  display: grid;
  grid-template-columns: repeat(7, 38px);
  gap: 8px;
  padding: 0 20px 20px;
  margin-top: 2px;
}

.platform-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(244, 241, 234, 0.13);
  background: rgba(17, 21, 36, 0.76);
  color: rgba(244, 241, 234, 0.88);
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.platform-button:hover {
  transform: translateY(-1px);
  border-color: rgba(244, 241, 234, 0.28);
  background: rgba(24, 28, 47, 0.96);
  color: var(--text);
}

.platform-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

.platform-button.sp { color: #eafaf0; background: rgba(29, 185, 84, 0.16); border-color: rgba(29, 185, 84, 0.34); }
.platform-button.sp svg { color: #1db954; }
.platform-button.ap { color: #f4f1ea; background: rgba(244, 241, 234, 0.12); }
.platform-button.ym,
.platform-button.yt { background: rgba(255, 52, 52, 0.15); border-color: rgba(255, 52, 52, 0.32); }
.platform-button.ym svg,
.platform-button.yt svg { color: #ff3434; }
.platform-button.am { background: rgba(108, 200, 255, 0.14); border-color: rgba(108, 200, 255, 0.32); }
.platform-button.am svg { color: #6cc8ff; }
.platform-button.dz { background: rgba(215, 107, 114, 0.15); border-color: rgba(215, 107, 114, 0.32); }
.platform-button.dz svg { color: #d76b72; }
.platform-button.td { background: rgba(0, 191, 255, 0.12); border-color: rgba(0, 191, 255, 0.3); }
.platform-button.td svg { color: #00bfff; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-feedback-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.site-feedback-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-feedback-form input,
.site-feedback-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font: 600 16px/1.45 Inter, system-ui, sans-serif;
  padding: 13px 14px;
  outline: none;
}

.site-feedback-form textarea {
  resize: vertical;
  min-height: 150px;
}

.site-feedback-form input:focus,
.site-feedback-form textarea:focus {
  border-color: rgba(214, 168, 79, 0.55);
  box-shadow: 0 0 0 4px rgba(214, 168, 79, 0.1);
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.feedback-status {
  min-height: 22px;
  margin: 0;
  color: var(--gold);
  font-weight: 800;
}

.software-feature {
  max-width: 860px;
}

.feedwatch-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 34px;
  background:
    radial-gradient(circle at 72% 28%, rgba(0, 113, 255, 0.32), transparent 34%),
    linear-gradient(135deg, #02040a 0%, #07101f 46%, #02040a 100%);
  border-bottom: 1px solid rgba(244, 241, 234, 0.1);
}

.feedwatch-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: 42px;
  align-items: center;
  max-width: 100%;
}

.feedwatch-copy {
  max-width: 610px;
  min-width: 0;
}

.feedwatch-icon {
  width: 86px;
  height: 86px;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 0 34px rgba(0, 113, 255, 0.42);
}

.feedwatch-copy h1 {
  margin: 0;
  font-size: clamp(54px, 8vw, 116px);
  line-height: 0.9;
  letter-spacing: 0;
  color: #fff;
}

.feedwatch-copy p {
  color: rgba(244, 241, 234, 0.78);
  font-size: 18px;
  line-height: 1.65;
}

.feedwatch-tagline {
  margin: 18px 0 8px;
  color: #fff !important;
  font-size: clamp(28px, 4vw, 58px) !important;
  font-weight: 900;
  line-height: 1.02 !important;
}

.feedwatch-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.feedwatch-meta span {
  padding: 8px 10px;
  border: 1px solid rgba(0, 113, 255, 0.38);
  border-radius: 8px;
  background: rgba(0, 113, 255, 0.12);
  color: rgba(244, 241, 234, 0.86);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.feedwatch-beta-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.feedwatch-beta-note span {
  padding: 8px 10px;
  border: 1px solid rgba(244, 241, 234, 0.12);
  border-radius: 999px;
  background: rgba(17, 17, 25, 0.74);
  color: rgba(244, 241, 234, 0.88);
  font-size: 12px;
  font-weight: 900;
}

.feedwatch-device {
  margin: 0;
  min-width: 0;
}

.feedwatch-device img,
.feedwatch-wide img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.feedwatch-section {
  padding-top: 64px;
}

.feedwatch-story-band {
  position: relative;
  margin-top: 18px;
  padding: 72px 0 84px;
  background:
    radial-gradient(circle at 88% 14%, rgba(86, 133, 255, 0.12), transparent 26rem),
    radial-gradient(circle at 78% 74%, rgba(74, 194, 118, 0.08), transparent 24rem),
    linear-gradient(180deg, #050608 0%, #040506 100%);
  border-top: 1px solid rgba(244, 241, 234, 0.06);
  border-bottom: 1px solid rgba(244, 241, 234, 0.06);
}

.feedwatch-story-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 56px 56px;
}

.feedwatch-control-section,
.feedwatch-platform-section {
  position: relative;
  z-index: 1;
  padding-top: 0;
}

.feedwatch-feature-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  max-width: 100%;
}

.feedwatch-platform-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.feedwatch-platform-intro h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(48px, 6.4vw, 78px);
  line-height: 0.9;
  text-transform: none;
}

.feedwatch-platform-intro p:last-child {
  margin: 0;
  max-width: 500px;
  color: rgba(244, 241, 234, 0.78);
  font-size: 19px;
  line-height: 1.5;
}

.feedwatch-control-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 72px;
}

.feedwatch-control-card,
.feedwatch-platform-grid {
  min-width: 0;
}

.feedwatch-control-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(244, 241, 234, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(103, 183, 84, 0.08), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(7, 8, 11, 0.94)),
    rgba(11, 12, 16, 0.98);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.feedwatch-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(113, 143, 255, 0.38);
  background: rgba(49, 67, 117, 0.62);
  color: rgba(244, 241, 234, 0.95);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.feedwatch-control-card h3,
.feedwatch-platform-card h3 {
  margin: 18px 0 12px;
  font-size: 26px;
  line-height: 1.02;
}

.feedwatch-control-card p:last-child,
.feedwatch-platform-card p:last-child {
  margin: 0;
  color: rgba(244, 241, 234, 0.76);
  line-height: 1.68;
}

.feedwatch-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feedwatch-app-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: 18px;
  align-items: stretch;
  margin: 0 0 72px;
}

.feedwatch-phone-shot {
  margin: 0;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 234, 0.12);
  border-radius: 30px;
  background: rgba(10, 12, 18, 0.96);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
}

.feedwatch-phone-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.feedwatch-copy-panel {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border: 1px solid rgba(244, 241, 234, 0.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 10%, rgba(88, 125, 255, 0.13), transparent 30rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(8, 9, 12, 0.94)),
    rgba(11, 12, 16, 0.98);
}

.feedwatch-copy-panel h2,
.feedwatch-developer-card h2,
.feedwatch-stack-card h2,
.feedwatch-beta-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 0.94;
  text-transform: none;
}

.feedwatch-copy-panel p,
.feedwatch-developer-card p,
.feedwatch-stack-card p,
.feedwatch-beta-copy p {
  margin: 0;
  color: rgba(244, 241, 234, 0.76);
  font-size: 18px;
  line-height: 1.65;
}

.feedwatch-chips,
.feedwatch-stack-list,
.feedwatch-version-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.feedwatch-chip,
.feedwatch-stack-pill,
.feedwatch-version-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(244, 241, 234, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(244, 241, 234, 0.86);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
}

.feedwatch-quote {
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(244, 241, 234, 0.12);
  color: rgba(244, 241, 234, 0.92);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.02;
}

.feedwatch-developer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  margin: 72px 0 0;
}

.feedwatch-developer-card,
.feedwatch-stack-card,
.feedwatch-beta-panel {
  padding: 34px;
  border: 1px solid rgba(244, 241, 234, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(7, 8, 11, 0.94)),
    rgba(11, 12, 16, 0.98);
}

.feedwatch-beta-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: 72px;
  background:
    radial-gradient(circle at 0 0, rgba(191, 91, 140, 0.18), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(7, 8, 11, 0.94)),
    rgba(11, 12, 16, 0.98);
}

.feedwatch-feature-panel {
  padding: 26px;
}

.feedwatch-feature-panel ul,
.feedwatch-steps {
  margin: 0;
  padding-left: 20px;
  color: rgba(244, 241, 234, 0.78);
  line-height: 1.7;
}

.feedwatch-feature-panel li + li,
.feedwatch-steps li + li {
  margin-top: 12px;
}

.feedwatch-wide {
  margin: 0;
  min-width: 0;
}

.feedwatch-platform-card {
  min-height: 280px;
  padding: 26px;
  border: 1px solid rgba(244, 241, 234, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(7, 8, 11, 0.94)),
    rgba(11, 12, 16, 0.98);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.feedwatch-platform-card.tone-1 {
  background:
    radial-gradient(circle at top left, rgba(103, 183, 84, 0.14), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(7, 8, 11, 0.94)),
    rgba(11, 12, 16, 0.98);
}

.feedwatch-platform-card.tone-2 {
  background:
    radial-gradient(circle at top left, rgba(214, 168, 79, 0.16), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(7, 8, 11, 0.94)),
    rgba(11, 12, 16, 0.98);
}

.feedwatch-platform-card.tone-3 {
  background:
    radial-gradient(circle at top left, rgba(122, 92, 255, 0.18), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(7, 8, 11, 0.94)),
    rgba(11, 12, 16, 0.98);
}

.feedwatch-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.feedwatch-highlight-card {
  display: grid;
  gap: 18px;
  overflow: hidden;
  padding: 18px;
}

.feedwatch-highlight-card figure,
.feedwatch-gallery-shot {
  margin: 0;
}

.feedwatch-highlight-card img,
.feedwatch-gallery-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.feedwatch-highlight-copy h3 {
  margin: 6px 0 10px;
  font-size: 28px;
  line-height: 1.05;
}

.feedwatch-highlight-copy p:last-child {
  margin: 0;
  color: rgba(244, 241, 234, 0.78);
  line-height: 1.7;
}

.feedwatch-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feedwatch-gallery-shot {
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(244, 241, 234, 0.1);
  border-radius: 14px;
  background: rgba(12, 16, 24, 0.8);
}

.feedwatch-gallery-shot figcaption {
  margin-top: 10px;
  color: rgba(244, 241, 234, 0.7);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feedwatch-beta-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  max-width: 100%;
}

.beta-copy-panel,
.beta-form-panel {
  min-width: 0;
}

.beta-bullets {
  margin: 16px 0 0;
  padding-left: 20px;
  color: rgba(244, 241, 234, 0.78);
  line-height: 1.7;
}

.beta-bullets li + li {
  margin-top: 12px;
}

.beta-invite-form {
  display: grid;
  gap: 14px;
}

.beta-invite-form label {
  display: grid;
  gap: 6px;
  color: rgba(244, 241, 234, 0.92);
  font-size: 14px;
  font-weight: 700;
}

.beta-invite-form input,
.beta-invite-form textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(244, 241, 234, 0.12);
  border-radius: 8px;
  background: rgba(10, 12, 19, 0.9);
  color: #fff;
  font: inherit;
}

.beta-invite-form textarea {
  min-height: 156px;
  resize: vertical;
}

.beta-invite-form input:focus,
.beta-invite-form textarea:focus {
  outline: none;
  border-color: rgba(0, 113, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(0, 113, 255, 0.16);
}

.beta-invite-form ::placeholder {
  color: rgba(244, 241, 234, 0.42);
}

.feedback-status {
  margin: 0;
  color: rgba(244, 241, 234, 0.76);
  font-size: 14px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.card h3,
.project-card h3,
.video-card h3 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 0.98;
  text-transform: uppercase;
}

.tags,
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.listen-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin: -34px 0 24px;
}

.listen-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(244, 241, 234, 0.12);
  background: rgba(17, 17, 25, 0.86);
  color: rgba(244, 241, 234, 0.88);
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.listen-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 241, 234, 0.28);
  background: rgba(24, 24, 36, 0.96);
}

.listen-pill span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 18px currentColor;
}

.listen-pill.spotify span { background: #1db954; color: #1db954; }
.listen-pill.apple span { background: #f4f1ea; color: #f4f1ea; }
.listen-pill.youtube span,
.listen-pill.ytmusic span { background: #ff3434; color: #ff3434; }
.listen-pill.amazon span { background: #6cc8ff; color: #6cc8ff; }
.listen-pill.deezer span { background: #d76b72; color: #d76b72; }

.filter-button {
  cursor: pointer;
  color: var(--muted);
}

.filter-button.active {
  color: var(--text);
  border-color: rgba(230, 57, 70, 0.55);
  background: rgba(230, 57, 70, 0.14);
}

.worlds {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 80% 16%, rgba(122, 92, 255, 0.22), transparent 14rem),
    rgba(17, 17, 25, 0.78);
}

.mood {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: center;
  padding: 28px;
}

.about img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
}

.about ul {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.quote {
  padding: 46px;
  text-align: center;
}

.quote p {
  margin: 0 auto;
  max-width: 920px;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.05;
}

.follow {
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.site-footer {
  padding: 46px 0;
  color: var(--muted);
  border-top: 1px solid rgba(244, 241, 234, 0.08);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.page-hero {
  padding: 76px 0 38px;
}

.page-hero .lead {
  margin-top: 18px;
}

.content-panel {
  padding: 34px;
  max-width: 920px;
}

.content-panel p,
.content-panel li {
  color: var(--muted);
  line-height: 1.78;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-list a {
  color: var(--text);
  text-decoration: none;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }
  50% {
    transform: translateY(-16px) rotate(-1deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    height: 14px;
    opacity: 0.5;
  }
  50% {
    height: 48px;
    opacity: 1;
  }
}

@media (max-width: 940px) {
  .hero,
  .release-feature,
  .about,
  .follow {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .grid,
  .release-grid,
  .project-grid,
  .worlds {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .listen-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: -18px;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, 1240px);
  }

  .nav {
    min-height: 68px;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(10, 10, 16, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links .button {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding: 36px 0 22px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 13vw, 58px);
    line-height: 0.98;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.55;
  }

  .section {
    padding: 52px 0;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2,
  .page-title {
    max-width: 100%;
    font-size: clamp(24px, 11vw, 42px);
    line-height: 1;
  }

  .feedwatch-section .section-heading h2 {
    font-size: clamp(28px, 9vw, 36px);
    overflow-wrap: anywhere;
  }

  .section-heading .text-link {
    display: inline-flex;
    margin-top: 14px;
  }

  .grid,
  .release-grid,
  .project-grid,
  .worlds,
  .feedwatch-hero-grid,
  .feedwatch-feature-grid,
  .feedwatch-control-grid,
  .feedwatch-platform-intro,
  .feedwatch-platform-grid,
  .feedwatch-highlight-grid,
  .feedwatch-app-showcase,
  .feedwatch-developer-grid,
  .feedwatch-beta-panel,
  .feedwatch-beta-grid {
    grid-template-columns: 1fr;
  }

  .feedwatch-hero {
    padding: 48px 0 22px;
    overflow-x: hidden;
  }

  .feedwatch-story-band {
    padding: 52px 0 64px;
  }

  .feedwatch-copy,
  .feedwatch-device,
  .feedwatch-wide,
  .feedwatch-hero-grid,
  .feedwatch-feature-grid,
  .feedwatch-control-grid,
  .feedwatch-platform-intro,
  .feedwatch-platform-grid,
  .feedwatch-highlight-grid,
  .feedwatch-app-showcase,
  .feedwatch-developer-grid,
  .feedwatch-beta-panel,
  .feedwatch-beta-grid {
    width: 100%;
    max-width: min(330px, calc(100vw - 28px));
    overflow: hidden;
  }

  .feedwatch-platform-intro h2 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .feedwatch-control-grid {
    margin-bottom: 52px;
  }

  .feedwatch-platform-intro p:last-child,
  .feedwatch-control-card p:last-child,
  .feedwatch-platform-card p:last-child {
    font-size: 14px;
  }

  .feedwatch-control-card,
  .feedwatch-platform-card {
    min-height: 0;
  }

  .feedwatch-phone-shot,
  .feedwatch-copy-panel {
    min-height: 0;
  }

  .feedwatch-copy-panel,
  .feedwatch-developer-card,
  .feedwatch-stack-card,
  .feedwatch-beta-panel {
    padding: 22px;
    border-radius: 22px;
  }

  .feedwatch-copy-panel h2,
  .feedwatch-developer-card h2,
  .feedwatch-stack-card h2,
  .feedwatch-beta-copy h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .feedwatch-control-card h3,
  .feedwatch-platform-card h3 {
    font-size: 24px;
  }

  .feedwatch-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feedwatch-copy p {
    font-size: 14px;
    overflow-wrap: anywhere;
  }

  .feedwatch-copy h1 {
    font-size: clamp(38px, 13vw, 54px);
  }

  .feedwatch-tagline {
    font-size: clamp(21px, 6.2vw, 29px) !important;
  }

  .feedwatch-device img,
  .feedwatch-wide img {
    width: 100%;
  }

  .feedwatch-meta span {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .feedwatch-highlight-copy h3 {
    font-size: 22px;
  }

  .listen-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -8px;
  }

  .platform-buttons {
    grid-template-columns: repeat(7, 34px);
    gap: 6px;
  }

  .card-body,
  .project-card,
  .video-body {
    padding: 18px;
  }

  .release-card h3 {
    min-height: 0;
    font-size: 18px;
    line-height: 1.04;
  }

  .platform-button {
    width: 36px;
    height: 36px;
  }

  .footer-grid {
    display: block;
  }
}

@media (max-width: 640px) {
  .feedwatch-gallery {
    grid-template-columns: 1fr;
  }
}
