:root {
  --pink-050: #fff7fb;
  --pink-100: #fde8f1;
  --pink-200: #f8c7dc;
  --pink-300: #f3a9cc;
  --pink-500: #ef4aa6;
  --pink-600: #d9288e;
  --peach: #f6c7aa;
  --cream: #fff3e7;
  --blue: #4d58cc;
  --blue-deep: #252b78;
  --ink: #21172c;
  --muted: #6a5a72;
  --white: #ffffff;
  --line: rgba(33,23,44,.12);
  --shadow: 0 28px 80px rgba(83,46,92,.18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255,255,255,.88), transparent 34%),
    radial-gradient(circle at 84% 14%, rgba(78,88,204,.13), transparent 28%),
    linear-gradient(180deg, #fbd9e8 0%, #f8c7dc 38%, #fbe4ec 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    repeating-radial-gradient(ellipse at 20% 0%, transparent 0 20px, rgba(77,88,204,.16) 21px 22px, transparent 23px 38px),
    repeating-radial-gradient(ellipse at 85% 30%, transparent 0 28px, rgba(239,74,166,.14) 29px 30px, transparent 31px 48px);
  mix-blend-mode: multiply;
  z-index: -1;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 12px 16px;
  background: var(--ink);
  color: white;
  border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 28px), 1220px);
  margin: 14px auto 0;
  padding: 12px 14px 12px 22px;
  border: 1px solid rgba(255,255,255,.56);
  border-radius: 999px;
  background: rgba(255,239,247,.72);
  box-shadow: 0 14px 40px rgba(64,35,72,.12);
  backdrop-filter: blur(18px);
}
.wordmark {
  text-decoration: none;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.52rem);
  letter-spacing: .035em;
  white-space: nowrap;
}
.wordmark span { color: var(--pink-600); }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
  text-decoration: none;
  padding: 10px 13px;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 750;
}
.site-nav a:hover { background: rgba(255,255,255,.72); }
.site-nav .nav-cta { background: var(--ink); color: white; padding-inline: 18px; }
.site-nav .nav-cta:hover { background: var(--blue-deep); }
.menu-toggle {
  display: none;
  border: 0;
  background: var(--ink);
  color: white;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
}

.section-shell { width: min(calc(100% - 36px), var(--max)); margin: 0 auto; }
.hero {
  min-height: 780px;
  display: grid;
  grid-template-columns: .93fr 1.07fr;
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
  padding: 70px 0 82px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-deep);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: .93; }
h1, h2 { font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; letter-spacing: .015em; }
h1 { font-size: clamp(5rem, 10.5vw, 9.4rem); }
h1 span { color: var(--pink-600); text-shadow: 5px 5px 0 rgba(77,88,204,.2); }
.hero-lede { max-width: 570px; margin: 24px 0 0; font-size: clamp(1.05rem, 1.6vw, 1.35rem); color: #423448; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: linear-gradient(135deg, var(--pink-600), var(--pink-500)); box-shadow: 0 14px 30px rgba(217,40,142,.28); }
.button-primary:hover { box-shadow: 0 20px 36px rgba(217,40,142,.34); }
.button-secondary { background: rgba(255,255,255,.64); border-color: rgba(33,23,44,.14); }
.button-secondary:hover { background: white; }
.full-width { width: 100%; margin-top: 20px; }
.hero-mini-links { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; }
.hero-mini-links a { color: var(--blue-deep); font-weight: 850; text-underline-offset: 5px; }

.hero-art { position: relative; min-height: 650px; }
.hero-texture {
  position: absolute;
  inset: 22px 0 52px 30px;
  border-radius: 50% 46% 42% 52%;
  background: url('assets/tspmoney-cover.jpg') center/cover;
  opacity: .25;
  filter: saturate(1.15) blur(.2px);
  transform: rotate(-4deg);
}
.photo-card {
  position: absolute;
  inset: 18px 22px 26px 42px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 42% 42% 35% 43% / 29% 33% 42% 46%;
  box-shadow: var(--shadow), inset 0 0 0 9px rgba(255,255,255,.13);
  transform: rotate(1.2deg);
  background: #d9b6ca;
}
.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(255,255,255,.28), transparent 32%, transparent 72%, rgba(77,88,204,.24));
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; object-position: 61% center; filter: saturate(1.08) contrast(1.02); }

section:not(.hero) { padding: 92px 0; }
.section-heading { max-width: 740px; margin-bottom: 38px; }
.section-heading h2, .about-copy h2, .connect-card h2 { font-size: clamp(3.2rem, 7vw, 6.7rem); }
.section-heading > p:last-child { max-width: 650px; margin: 18px 0 0; color: var(--muted); font-size: 1.05rem; }

.featured-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 36px; align-items: stretch; }
.cover-wrap { position: relative; min-height: 500px; padding: 22px; border-radius: var(--radius-xl); background: rgba(255,255,255,.4); border: 1px solid rgba(255,255,255,.7); box-shadow: var(--shadow); }
.album-cover { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; }
.cover-stamp { position: absolute; top: 35px; left: 35px; padding: 8px 12px; color: white; background: var(--ink); border-radius: 999px; font-size: .7rem; font-weight: 900; letter-spacing: .14em; }
.stream-panel { padding: clamp(26px, 5vw, 54px); border-radius: var(--radius-xl); background: rgba(255,245,250,.7); border: 1px solid rgba(255,255,255,.76); box-shadow: var(--shadow); backdrop-filter: blur(16px); }
.panel-label { margin: 0 0 18px; font-size: .83rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; color: var(--blue-deep); }
.platform-grid { display: grid; gap: 12px; }
.platform-grid a { display: flex; align-items: center; gap: 11px; min-height: 54px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.66); text-decoration: none; font-weight: 850; transition: transform .2s ease, background .2s ease; }
.platform-grid a:hover { transform: translateY(-2px); background: white; }
.platform-grid a span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; color: white; background: linear-gradient(135deg, var(--pink-600), var(--blue)); font-size: .7rem; }
.featured-platforms { grid-template-columns: repeat(2, minmax(0,1fr)); }

.catalog-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.release-card { position: relative; min-height: 265px; overflow: hidden; padding: 26px; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,.58); box-shadow: 0 18px 44px rgba(55,32,67,.12); display: flex; align-items: flex-end; }
.release-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 20%, rgba(33,23,44,.82) 100%); }
.release-card > * { position: relative; z-index: 1; }
.release-card p { margin: 0 0 6px; color: rgba(255,255,255,.74); font-size: .73rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.release-card h3 { color: white; font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1; }
.release-card a { display: inline-block; margin-top: 16px; color: white; font-weight: 850; text-underline-offset: 4px; }
.release-feature { grid-column: span 6; min-height: 420px; }
.release-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.release-gradient-one, .release-gradient-two, .release-gradient-three, .release-gradient-four, .release-gradient-five, .release-gradient-six, .release-gradient-seven, .release-gradient-ten, .release-gradient-eleven, .release-gradient-twelve, .release-gradient-thirteen { grid-column: span 3; }
.release-gradient-one { background: radial-gradient(circle at 20% 20%, #ffb3d8, transparent 32%), linear-gradient(135deg, #c82488, #3e3d9d); }
.release-gradient-two { background: radial-gradient(circle at 80% 20%, #ffe7c7, transparent 30%), linear-gradient(135deg, #f080a8, #5c5dd1); }
.release-gradient-three { background: radial-gradient(circle at 30% 30%, #f9d3ea, transparent 28%), linear-gradient(135deg, #5e4fc2, #e44c9d); }
.release-gradient-four { background: radial-gradient(circle at 70% 18%, #ffeadb, transparent 24%), linear-gradient(135deg, #f4a9c8, #b12f82); }
.release-gradient-five { background: radial-gradient(circle at 18% 22%, #ffe4f1, transparent 28%), linear-gradient(135deg, #d44f9e, #424db2); }
.release-gradient-six { background: radial-gradient(circle at 82% 18%, #ffd5e9, transparent 26%), linear-gradient(135deg, #7864d8, #e86ba8); }
.release-gradient-seven { background: radial-gradient(circle at 28% 18%, #ffe9d9, transparent 24%), linear-gradient(135deg, #e68ab5, #7a3fa7); }
.release-gradient-eight, .release-gradient-nine { grid-column: span 6; min-height: 320px; }
.release-gradient-eight { background: radial-gradient(circle at 22% 22%, #ffe5f0, transparent 30%), linear-gradient(135deg, #ef77b0, #4b52b9); }
.release-gradient-nine { background: radial-gradient(circle at 80% 22%, #fff0df, transparent 30%), linear-gradient(135deg, #d966a9, #7058c8); }
.release-gradient-ten { background: radial-gradient(circle at 18% 18%, #ffe1ef, transparent 26%), linear-gradient(135deg, #cb3d8e, #5554bd); }
.release-gradient-eleven { background: radial-gradient(circle at 80% 18%, #ffe7cf, transparent 28%), linear-gradient(135deg, #ee78a8, #414bab); }
.release-gradient-twelve { background: radial-gradient(circle at 25% 20%, #fbd8ec, transparent 28%), linear-gradient(135deg, #6049b6, #e24898); }
.release-gradient-thirteen { background: radial-gradient(circle at 75% 18%, #ffe4d8, transparent 26%), linear-gradient(135deg, #f09cb9, #9a3e99); }
.release-group { margin-top: 58px; }
.section-heading + .release-group { margin-top: 0; }
.release-group-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid rgba(33,23,44,.12); }
.release-group-heading .eyebrow { margin: 0 0 8px; }
.release-group-heading h3 { font-size: clamp(2.4rem, 6vw, 5rem); line-height: .92; }
.catalog-cta { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 22px; padding: 22px 26px; border-radius: 20px; background: rgba(255,255,255,.48); border: 1px solid rgba(255,255,255,.62); }
.catalog-cta p { margin: 0; }

.everywhere { border-top: 1px solid rgba(255,255,255,.55); border-bottom: 1px solid rgba(255,255,255,.55); }
.all-platforms { grid-template-columns: repeat(4, minmax(0,1fr)); }
.small-note { margin: 18px 0 0; color: var(--muted); font-size: .9rem; }

.video-banner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; min-height: 190px; padding: clamp(28px, 5vw, 48px); border-radius: var(--radius-xl); text-decoration: none; color: white; background: linear-gradient(120deg, rgba(33,23,44,.95), rgba(68,50,118,.92)), url('assets/tspmoney-cover.jpg') center/cover; box-shadow: var(--shadow); }
.play-button { display: grid; place-items: center; width: 72px; height: 72px; border-radius: 50%; color: var(--pink-600); background: white; font-size: 1.5rem; padding-left: 4px; }
.video-banner p { margin: 0 0 4px; color: rgba(255,255,255,.68); font-weight: 800; }
.video-banner h3 { font-size: clamp(2rem, 5vw, 4.4rem); }
.video-banner > span { font-weight: 900; }

.about { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(36px, 7vw, 88px); }
.about-art { position: relative; min-height: 560px; }
.about-art::before { content: ""; position: absolute; inset: 36px -20px -8px 24px; border-radius: 55% 45% 45% 55%; background: url('assets/tspmoney-cover.jpg') center/cover; opacity: .25; transform: rotate(-7deg); }
.about-photo { position: absolute; inset: 0 32px 30px 0; overflow: hidden; border-radius: 48% 40% 50% 40%; box-shadow: var(--shadow); transform: rotate(2deg); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 63% center; }
.about-copy p:not(.eyebrow) { color: #4f4055; font-size: 1.04rem; }

.connect-card { display: grid; grid-template-columns: 1.1fr .9fr; gap: 42px; align-items: center; padding: clamp(32px, 6vw, 70px); border-radius: var(--radius-xl); color: white; background: linear-gradient(135deg, rgba(217,40,142,.95), rgba(77,88,204,.94)), url('assets/tspmoney-cover.jpg') center/cover; box-shadow: var(--shadow); }
.connect-card .eyebrow { color: rgba(255,255,255,.72); }
.connect-card p { max-width: 560px; }
.connect-actions { display: grid; gap: 12px; }
.connect-card .button-secondary { color: var(--ink); }

.site-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; width: min(calc(100% - 36px), var(--max)); margin: 0 auto; padding: 38px 0 48px; border-top: 1px solid rgba(33,23,44,.14); }
.site-footer p { margin: 8px 0 0; color: var(--muted); font-size: .9rem; }
.footer-center { text-align: center; }
.footer-center a { font-weight: 800; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  .site-header { border-radius: 24px; }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: calc(100% + 10px); left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; padding: 12px; border-radius: 20px; background: rgba(255,239,247,.96); box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { text-align: center; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 56px; }
  .hero-art { min-height: 720px; }
  .featured-grid, .about, .connect-card { grid-template-columns: 1fr; }
  .about-art { min-height: 640px; }
  .all-platforms { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 660px) {
  .section-shell { width: min(calc(100% - 24px), var(--max)); }
  .site-header { width: calc(100% - 18px); margin-top: 9px; padding-left: 15px; }
  h1 { font-size: clamp(4.2rem, 22vw, 6.3rem); }
  .hero { padding-bottom: 52px; }
  .hero-art { min-height: 530px; }
  .photo-card { inset: 20px 10px 20px 30px; }
  section:not(.hero) { padding: 70px 0; }
  .featured-platforms, .all-platforms { grid-template-columns: 1fr; }
  .cover-wrap { min-height: auto; }
  .release-feature, .release-gradient-one, .release-gradient-two, .release-gradient-three, .release-gradient-four, .release-gradient-five, .release-gradient-six, .release-gradient-seven, .release-gradient-eight, .release-gradient-nine, .release-gradient-ten, .release-gradient-eleven, .release-gradient-twelve, .release-gradient-thirteen { grid-column: span 12; min-height: 280px; }
  .release-feature { min-height: 390px; }
  .catalog-cta { align-items: stretch; flex-direction: column; }
  .catalog-cta .button { width: 100%; }
  .video-banner { grid-template-columns: auto 1fr; }
  .video-banner > span { grid-column: 1 / -1; }
  .about-art { min-height: 520px; }
  .connect-card { padding-inline: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
