/* ============ StockSounds ============
   Palette: cyan accent, dark grey (not quite black), very light grey.
*/
:root {
  --dark: #17191d;          /* dark sections (hero, artists, track hero) */
  --dark-deep: #000000;     /* site chrome: header, footer, player bar */
  --dark-2: #1f2329;        /* raised dark surface */
  --dark-3: #262b33;        /* borders on dark */
  --cyan: #00c4d8;
  --cyan-bright: #2ee1f2;
  --cyan-deep: #00a3b4;
  --light: #f3f4f6;         /* page light background */
  --white-ish: #fafbfc;     /* cards on light */
  --ink: #22262b;           /* text on light */
  --muted: #6b7480;         /* secondary text on light */
  --muted-dark: #9aa3ad;    /* secondary text on dark */
  --line: #e2e5e9;          /* borders on light */
  --radius: 10px;
  --shadow: 0 6px 24px rgba(23, 25, 29, .08);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* keep scroll targets clear of the sticky header */
section[id], [id="browse"] { scroll-margin-top: 84px; }
body {
  font-family: var(--font);
  background: var(--light);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; }
.section-sub { color: var(--muted); max-width: 640px; margin: 10px 0 34px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: 600 15px/1 var(--font);
  padding: 13px 22px; border-radius: var(--radius);
  border: none; cursor: pointer; text-decoration: none;
  transition: background .15s, color .15s, border-color .15s, transform .1s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
/* Gumroad's overlay script injects its logo span into product links;
   hide it inside our buttons so all License buttons stay the same width. */
.btn .logo-full, .license-row .logo-full { display: none; }
.btn-cyan { background: var(--cyan); color: #08252a; }
.btn-cyan:hover { background: var(--cyan-bright); }
.btn-outline {
  background: transparent; color: var(--light);
  border: 1.5px solid var(--dark-3);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-ghost { background: transparent; color: var(--muted); border: 1.5px solid var(--line); }
.btn-ghost:hover { color: var(--ink); border-color: var(--muted); }
.btn-sm { padding: 9px 16px; font-size: 13.5px; border-radius: 8px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(0, 0, 0, .93);
  backdrop-filter: blur(12px);
  transition: background .3s ease;
}
/* Homepage header states (app.js swaps classes on scroll):
   header-clear = at the top, fully transparent;
   header-mid   = scrolling over the hero, translucent like the filter bar;
   neither      = past the hero, solid black. */
.site-header.header-clear {
  background: transparent;
  backdrop-filter: none;
}
.site-header.header-mid {
  background: rgba(8, 10, 12, .28);
  backdrop-filter: blur(10px);
}
.header-inner { display: flex; align-items: center; gap: 36px; height: 68px; }
.logo {
  display: flex; align-items: center; gap: 9px;
  color: var(--light); text-decoration: none;
}
/* Wordmark: Century Gothic as SVG outlines — identical on every device. */
.logo-word { height: 30px; width: auto; display: block; }
.logo-mark { width: 30px; height: 30px; color: var(--cyan); }
.main-nav { display: flex; gap: 26px; margin-left: auto; }
.main-nav a {
  color: #fff; text-decoration: none;
  font-size: 14.5px; font-weight: 500;
  white-space: nowrap;
  transition: color .15s;
}
.main-nav a:hover { color: var(--cyan); }
.btn.header-cta {
  margin-left: 4px;
  background: var(--cyan); color: #000;
  border: 1.5px solid var(--cyan);
}
.btn.header-cta:hover {
  background: transparent; color: var(--cyan);
  border-color: var(--cyan);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--dark) 30%, #10262b 80%, #093138 110%);
  color: var(--light);
  /* pull the hero up behind the (transparent) sticky header */
  margin-top: -68px;
  padding: 164px 0 0;
  text-align: center;
}
.hero-filterbar {
  position: relative;
  margin-top: 56px;
  padding: 20px 0;
  background: rgba(8, 10, 12, .28);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: opacity .9s ease;
}
.hero-video.hero-hidden { opacity: 0; }
.hero-overlay {
  position: absolute; inset: 0;
  /* same gradient as the hero's own background, with alpha so the video
     shows through — keeps the cyan tinge over any footage */
  background: linear-gradient(160deg,
    rgba(23, 25, 29, .82) 30%,
    rgba(16, 38, 43, .74) 80%,
    rgba(9, 49, 56, .66) 110%);
  pointer-events: none;
}
.hero-inner { position: relative; }
.hero h1 { font-size: clamp(34px, 5.4vw, 58px); font-weight: 800; }
.hero-sub {
  color: var(--muted-dark); font-size: clamp(15px, 1.8vw, 18px);
  max-width: 560px; margin: 18px auto 36px;
}
.hero-search {
  display: flex; align-items: center; gap: 10px;
  max-width: 680px; margin: 0 auto;
  background: var(--white-ish);
  border-radius: 14px; padding: 8px 8px 8px 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
}
.search-icon { width: 21px; height: 21px; color: var(--muted); flex: none; }
.hero-search input {
  flex: 1; min-width: 0; border: none; outline: none; background: none;
  font: 400 16px var(--font); color: var(--ink); padding: 10px 0;
}
.hero-search input::placeholder { color: #a0a7b0; }
.hero-chips {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 8px; margin-top: 22px;
}
.chips-label { color: var(--muted-dark); font-size: 13.5px; margin-right: 2px; }
.chip {
  background: rgba(250, 251, 252, .08); color: var(--light);
  border: 1px solid rgba(250, 251, 252, .18);
  border-radius: 100px; padding: 6px 14px;
  font: 500 13px var(--font); cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.chip:hover { background: rgba(0, 196, 216, .16); border-color: var(--cyan); color: var(--cyan-bright); }

/* ---------- Browse ---------- */
.browse { padding: 44px 0 80px; }

/* ---------- Pill filters & popovers ---------- */
.filter-pills { position: relative; }
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.pill-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font: 600 15px var(--font); color: var(--cyan);
  background: transparent;
  border: 1.5px solid var(--cyan); border-radius: 100px;
  padding: 13px 26px; cursor: pointer;
  transition: border-color .15s, color .15s, background .15s, box-shadow .15s;
}
.pill-btn:hover { background: var(--cyan); color: #08252a; }
.pill-btn:hover .pill-count { background: #08252a; color: var(--cyan); }
.pill-btn.active {
  box-shadow: 0 4px 18px rgba(0, 196, 216, .28);
}
.pill-count {
  background: var(--cyan); color: #08252a;
  font: 700 12px var(--font);
  border-radius: 100px; padding: 2px 8px;
}
.pill-ghost { background: transparent; color: var(--muted-dark); border-style: dashed; border-color: rgba(255, 255, 255, .25); }
.pill-ghost:hover, .pill-ghost.active { border-style: solid; color: var(--cyan); background: transparent; }

.popover {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%); z-index: 45;
  width: min(620px, calc(100vw - 32px));
  background: var(--white-ish);
  border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 18px 50px rgba(23, 25, 29, .18);
  padding: 16px 18px;
}
.pop-head {
  display: flex; align-items: center; justify-content: space-between;
  font: 700 12px var(--font); text-transform: uppercase; letter-spacing: .06em;
  color: var(--muted); margin-bottom: 12px;
}
.pop-clear {
  background: none; border: none; cursor: pointer;
  font: 600 12.5px var(--font); color: var(--cyan-deep);
  text-transform: none; letter-spacing: 0;
}
.pop-clear:hover { text-decoration: underline; }
.pop-chips { display: flex; flex-wrap: wrap; gap: 8px; max-height: 260px; overflow-y: auto; }
.pop-chip { font-size: 13px; padding: 7px 14px; }
.pop-chip.active {
  background: var(--cyan); color: #08252a; border-color: var(--cyan);
  font-weight: 600;
}

.filter-extra {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin: 0 0 26px;
}
.filter-extra[hidden] { display: none; }
.filter-extra input[type="search"] {
  font: 500 13.5px var(--font); color: var(--ink);
  background: var(--white-ish);
  border: 1.5px solid var(--line); border-radius: 9px;
  padding: 10px 14px; min-width: 200px;
  transition: border-color .15s;
}
.filter-extra input[type="search"]:hover,
.filter-extra input[type="search"]:focus { border-color: var(--cyan); outline: none; }
.filter-extra input[type="search"]::placeholder { color: #a0a7b0; }
.filter-extra select {
  appearance: none;
  font: 500 13.5px var(--font); color: var(--ink);
  background: var(--white-ish) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6' fill='none' stroke='%236b7480' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 12px center / 15px;
  border: 1.5px solid var(--line); border-radius: 9px;
  padding: 10px 36px 10px 14px; cursor: pointer;
  transition: border-color .15s;
}
.filter-extra select:hover, .filter-extra select:focus { border-color: var(--cyan); outline: none; }

/* ---------- Track rows ---------- */
.track-list { display: flex; flex-direction: column; gap: 10px; }
.track {
  display: grid;
  grid-template-columns: 52px minmax(150px, 1.1fr) minmax(140px, 220px) minmax(160px, 1fr) auto auto;
  align-items: center; gap: 18px;
  background: var(--white-ish);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
  transition: box-shadow .18s, border-color .18s;
}
.track:hover { box-shadow: var(--shadow); border-color: #d3d8dd; }
.track.playing { border-color: var(--cyan); box-shadow: 0 6px 24px rgba(0, 196, 216, .16); }

.play-btn {
  width: 46px; height: 46px; border-radius: 50%;
  border: none; cursor: pointer;
  background: var(--dark); color: var(--light);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
  flex: none;
}
.play-btn:hover { background: var(--cyan); color: #08252a; }
.track.playing .play-btn { background: var(--cyan); color: #08252a; }
.play-btn svg { width: 20px; height: 20px; }
.play-btn .icon-pause, .playing.audible .play-btn .icon-play { display: none; }
.playing.audible .play-btn .icon-pause { display: block; }

.track-meta { min-width: 0; }
.track-title {
  display: block;   /* required for ellipsis on the <a> title */
  font-weight: 700; font-size: 15.5px; letter-spacing: -0.01em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.track-artist { color: var(--muted); font-size: 13px; }
.track-artist a { color: inherit; text-decoration: none; }
.track-artist a:hover { color: var(--cyan-deep); }

.track-wave { width: 100%; height: 44px; cursor: pointer; display: block; }

.track-tags { display: flex; flex-wrap: wrap; gap: 6px; min-width: 0; }
.tag {
  background: var(--light); color: var(--muted);
  border: 1px solid var(--line);
  padding: 4px 10px; border-radius: 100px;
  font: 500 12px var(--font); cursor: pointer;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}
.tag:hover { color: var(--cyan-deep); border-color: var(--cyan); }

.track-stats {
  display: flex; gap: 14px; align-items: center;
  color: var(--muted); font-size: 12.5px; font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.track-stats b { color: var(--ink); font-weight: 600; }

.track-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 38px; height: 38px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--muted); background: transparent;
  border: 1.5px solid var(--line);
  cursor: pointer; text-decoration: none;
  transition: color .15s, border-color .15s;
}
.icon-btn:hover { color: var(--cyan-deep); border-color: var(--cyan); }
.icon-btn svg { width: 17px; height: 17px; }

.no-results { text-align: center; color: var(--muted); padding: 60px 0; }

/* ---------- Content ID band ---------- */
.cid-band { background: var(--dark); color: var(--light); padding: 76px 0; }
.cid-band .section-sub { color: var(--muted-dark); }
.cid-band h2 span { color: var(--cyan); }
.cid-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; margin-bottom: 30px;
}
.cid-card {
  background: var(--dark-2); border: 1px solid var(--dark-3);
  border-radius: 14px; padding: 26px 28px;
  transition: border-color .18s;
}
.cid-card:hover { border-color: var(--cyan); }
.cid-card h3 { font-size: 16.5px; margin-bottom: 10px; color: var(--cyan); }
.cid-card p { color: var(--muted-dark); font-size: 14px; line-height: 1.65; }

/* ---------- Licensing ---------- */
.licensing { padding: 76px 0; }
.license-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.license-card {
  position: relative;
  background: var(--white-ish); border: 1px solid var(--line);
  border-radius: 14px; padding: 30px;
}
.license-card.featured { border: 2px solid var(--cyan); box-shadow: 0 10px 34px rgba(0, 196, 216, .14); }
.license-flag {
  position: absolute; top: -12px; left: 26px;
  background: var(--cyan); color: #08252a;
  font: 700 11.5px var(--font); letter-spacing: .04em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
}
.license-card h3 { font-size: 17px; margin-bottom: 4px; }
.license-price { font-size: 34px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; }
.license-card ul { list-style: none; }
.license-card li {
  padding: 7px 0 7px 26px; font-size: 14px; color: var(--muted);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m5 13 4 4L19 7' fill='none' stroke='%2300a3b4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat left 10px / 15px;
}

/* ---------- FAQ ---------- */
.faq { background: var(--white-ish); border-top: 1px solid var(--line); padding: 76px 0; }
.faq h2 { margin-bottom: 30px; }
.faq-list { max-width: 780px; }
.faq-list details, .faq details {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--light); margin-bottom: 10px;
  padding: 0 20px;
}
.faq-list summary, .faq summary {
  cursor: pointer; font-weight: 600; font-size: 15px;
  padding: 16px 0; list-style: none; position: relative;
}
.faq-list summary::-webkit-details-marker, .faq summary::-webkit-details-marker { display: none; }
.faq-list summary::after, .faq summary::after {
  content: "+"; position: absolute; right: 2px; top: 50%;
  transform: translateY(-50%);
  color: var(--cyan-deep); font-size: 20px; font-weight: 500;
}
.faq-list details[open] summary::after, .faq details[open] summary::after { content: "–"; }
.faq-list details p, .faq details p { color: var(--muted); font-size: 14.5px; padding: 0 0 18px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark-deep); color: var(--muted-dark); padding: 40px 0; }
.footer-inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.footer-inner p { font-size: 13px; margin-right: auto; }
.footer-inner nav { display: flex; gap: 18px; }
.footer-inner nav a { color: var(--muted-dark); text-decoration: none; font-size: 13.5px; }
.footer-inner nav a:hover { color: var(--cyan); }

/* ---------- Bottom player ---------- */
.player-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; align-items: center; gap: 18px;
  background: rgba(0, 0, 0, .97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--dark-3);
  color: var(--light);
  padding: 12px 22px;
}
.player-bar[hidden] { display: none; }
.player-play {
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--cyan); color: #08252a;
  display: flex; align-items: center; justify-content: center; flex: none;
}
.player-play:hover { background: var(--cyan-bright); }
.player-play svg { width: 20px; height: 20px; }
.player-play .icon-pause { display: none; }
.player-bar.audible .player-play .icon-play { display: none; }
.player-bar.audible .player-play .icon-pause { display: block; }
.player-meta { min-width: 130px; max-width: 220px; overflow: hidden; }
.player-meta strong { display: block; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-meta span { color: var(--muted-dark); font-size: 12.5px; }
.player-wave { flex: 1; height: 40px; cursor: pointer; min-width: 100px; }
.player-time { font-size: 12.5px; color: var(--muted-dark); font-variant-numeric: tabular-nums; white-space: nowrap; }
.player-actions { display: flex; align-items: center; gap: 10px; }
.player-bar .icon-btn { border-color: var(--dark-3); color: var(--muted-dark); }
.player-bar .icon-btn:hover { color: var(--cyan); border-color: var(--cyan); }
body.has-player { padding-bottom: 76px; }

/* ---------- Generated subpages (track / genre / mood / concept) ---------- */
.page { padding: 34px 24px 80px; }
.page h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 8px; }
.page h2 { margin: 44px 0 18px; }
.h-small { font-size: 15px !important; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin: 0 0 14px !important; }

.breadcrumbs { font-size: 13.5px; color: var(--muted); margin-bottom: 26px; }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--cyan-deep); }
.breadcrumbs span[aria-current] { color: var(--ink); font-weight: 600; }
.crumb-sep { margin: 0 8px; color: var(--line); }

.track-hero {
  display: grid; grid-template-columns: auto minmax(180px, 320px) 1fr;
  align-items: center; gap: 26px;
  background: var(--dark); color: var(--light);
  border-radius: 16px; padding: 30px 34px;
}
.track-hero h1 { margin: 0; font-size: clamp(24px, 3vw, 34px); }
.track-hero-artist { color: var(--muted-dark); font-size: 15px; }
.play-btn-lg { width: 64px; height: 64px; }
.play-btn-lg svg { width: 26px; height: 26px; }
.track-hero .play-btn { background: var(--cyan); color: #08252a; }
.track-hero .play-btn:hover { background: var(--cyan-bright); }
.track-hero-wave { width: 100%; height: 64px; cursor: pointer; }

.track-columns {
  display: grid; grid-template-columns: 1.6fr 1fr;
  gap: 40px; margin-top: 40px; align-items: start;
}
.meta-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; margin-bottom: 34px;
}
.meta-grid > div {
  background: var(--white-ish); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 14px 16px;
}
.meta-grid dt { font-size: 11.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.meta-grid dd { font-weight: 700; font-size: 15.5px; margin-top: 2px; }
.meta-grid dd a { color: var(--cyan-deep); text-decoration: none; }
.meta-grid dd a:hover { text-decoration: underline; }

.kw-cloud { display: flex; flex-wrap: wrap; gap: 7px; }
.kw-cloud .tag { text-decoration: none; background: var(--white-ish); }

.license-box {
  background: var(--white-ish); border: 1px solid var(--line);
  border-radius: 14px; padding: 24px;
  position: sticky; top: 92px;
}
.license-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 13px 16px; margin-bottom: 10px;
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: 14.5px;
  transition: border-color .15s, box-shadow .15s;
}
.license-row em { display: block; font-style: normal; font-weight: 400; font-size: 12px; color: var(--muted); }
.license-row b { color: var(--cyan-deep); font-size: 16px; }
.license-row:hover { border-color: var(--cyan); box-shadow: 0 4px 16px rgba(0, 196, 216, .12); }
.btn-block { width: 100%; margin-top: 4px; }
.license-note { font-size: 12px; color: var(--muted); margin-top: 12px; }
.license-note a { color: var(--cyan-deep); }

.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 14px; }
.cat-card {
  background: var(--white-ish); border: 1px solid var(--line);
  border-radius: 12px; padding: 22px;
  text-decoration: none; color: var(--ink);
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.cat-card:hover { border-color: var(--cyan); box-shadow: var(--shadow); transform: translateY(-2px); }
.cat-card h2 { font-size: 17px; margin: 0 0 4px; }
.cat-card p { color: var(--muted); font-size: 13px; }

/* Artist page */
.artist-head { display: flex; align-items: center; gap: 20px; margin-bottom: 18px; }
.artist-head h1 { margin: 0; }
.artist-avatar-lg {
  width: 72px; height: 72px; border-radius: 50%; flex: none;
  background: linear-gradient(135deg, var(--cyan), #0a6d7a);
  color: #08252a; font-weight: 800; font-size: 26px;
  display: flex; align-items: center; justify-content: center;
}
.artist-count { color: var(--muted); font-size: 14.5px; margin-top: 4px; }
.artist-count a { color: var(--cyan-deep); text-decoration: none; }
.artist-count a:hover { text-decoration: underline; }
.artist-intro { max-width: 760px; }
.artist-intro strong { color: var(--ink); }
.track-hero-artist a { color: var(--cyan-bright); text-decoration: none; }
.track-hero-artist a:hover { text-decoration: underline; }

a.track-title { color: inherit; text-decoration: none; }
a.track-title:hover { color: var(--cyan-deep); }
.page-cta { margin-top: 30px; color: var(--muted); font-size: 14.5px; }
.page-cta a { color: var(--cyan-deep); }

/* Download interstitial page */
.page-narrow { max-width: 780px; }
.btn-lg { padding: 16px 30px; font-size: 16.5px; }
.notice-box {
  background: var(--white-ish); border: 1px solid var(--line);
  border-radius: 14px; padding: 26px 28px;
  margin-top: 28px;
}
.notice-box h2 { font-size: 18px !important; margin: 0 0 12px !important; }
.notice-box p { color: var(--muted); font-size: 14.5px; margin-bottom: 12px; }
.notice-box p:last-child { margin-bottom: 0; }
.notice-highlight {
  background: rgba(0, 196, 216, .08);
  border-left: 3px solid var(--cyan);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  color: var(--ink) !important;
}
.notice-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.notice-cols .notice-box { margin-top: 20px; }
.notice-steps { margin: 0 0 16px 18px; color: var(--muted); font-size: 14.5px; }
.notice-steps li { padding: 3px 0; }
.notice-actions { display: flex; flex-wrap: wrap; gap: 10px; }
@media (max-width: 720px) { .notice-cols { grid-template-columns: 1fr; } }

/* Contact / license request form */
.contact-form label {
  display: block; font-weight: 600; font-size: 13.5px;
  margin-bottom: 16px; color: var(--ink);
}
.contact-form input, .contact-form textarea {
  display: block; width: 100%; margin-top: 6px;
  font: 400 14.5px var(--font); color: var(--ink);
  background: var(--light); border: 1.5px solid var(--line);
  border-radius: 9px; padding: 11px 14px;
  transition: border-color .15s;
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--cyan);
}
.form-status { margin-top: 12px; font-size: 14px; color: var(--cyan-deep); font-weight: 600; }

/* Browse-by hub on the homepage */
.browse-by { background: var(--white-ish); border-top: 1px solid var(--line); padding: 56px 0 64px; }
.browse-by h2 { margin-bottom: 22px; }
.browse-by-group { margin-bottom: 22px; }
.browse-by-group h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.browse-by-group h3 a { color: var(--muted); text-decoration: none; }
.browse-by-group h3 a:hover { color: var(--cyan-deep); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .header-cta { display: none; }
  .header-inner { gap: 24px; }
  .track { grid-template-columns: 52px minmax(140px, 1.4fr) minmax(120px, 1fr) auto auto; }
  .track-tags { display: none; }
}
@media (max-width: 900px) {
  .track-columns { grid-template-columns: 1fr; }
  .license-box { position: static; }
  .track-hero { grid-template-columns: auto 1fr; }
  .track-hero-wave { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .main-nav, .header-cta { display: none; }
  .meta-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 132px 0 0; }
  .hero-filterbar { margin-top: 40px; }
  .hero-search { flex-wrap: nowrap; }
  .hero-search .btn { padding: 11px 16px; }
  .track { grid-template-columns: 46px minmax(0, 1fr) auto; gap: 12px; padding: 12px 14px; }
  .track-wave, .track-stats { display: none; }
  .track-title { font-size: 14.5px; }
  .player-bar { gap: 10px; padding: 10px 12px; }
  .player-meta { min-width: 76px; max-width: 120px; }
  .player-wave { min-width: 60px; }
  .player-time, #player-download { display: none; }
}
