/* Vibe Vault FM — /media/ press & brand page stylesheet.
   Deliberately separate from the main app's styles.css: that stylesheet
   locks the document (overflow:hidden, no text selection, no image drag)
   for the single-page player shell. This page is a normal, scrollable,
   selectable article — press contacts need to select text and download
   images, not operate a player. Colors/typography are matched to the main
   site so the two feel like one brand. */

:root{
  --base: #0a0b0d;
  --panel: #111318;
  --ink: #f4f5f7;
  --muted: rgba(244,245,247,0.62);
  --faint: rgba(244,245,247,0.40);
  --accent: rgb(249,182,60);
  --accent-rgb: 249,182,60;
  --glass: rgba(255,255,255,0.055);
  --glass-line: rgba(255,255,255,0.10);
  --radius: 18px;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--base);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a{ color: var(--accent); }

.wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

/* ---------- Top bar ---------- */
.topbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  max-width: 980px;
  margin: 0 auto;
}
.topbar .home-link{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.2px;
}
.topbar .home-link img{ width: 30px; height: 30px; display:block; }
.topbar .home-link .fm{ color: var(--accent); }
.topbar nav a{
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  margin-left: 18px;
}
.topbar nav a:hover{ color: var(--ink); }

/* ---------- Hero ---------- */
.hero{
  text-align: center;
  padding: 40px 0 32px;
}
.hero img.mark{
  display: block;
  width: 104px;
  height: 104px;
  margin: 0 auto 22px;
}
.hero .eyebrow{
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.hero h1{
  font-size: clamp(28px, 5vw, 42px);
  margin: 0 0 14px;
  letter-spacing: -0.02px;
}
.hero h1 .fm{ color: var(--accent); }
.hero p.tagline{
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 28px;
}
.hero .cta-row{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  border: 1px solid var(--glass-line);
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{
  background: var(--accent);
  color: #171006;
  border-color: transparent;
}
.btn-primary:hover{ background: #ffc667; }
.btn-ghost{
  background: var(--glass);
  color: var(--ink);
}
.btn-ghost:hover{ background: rgba(255,255,255,0.09); }

/* ---------- Section shell ---------- */
section{ margin-top: 56px; }
section h2{
  font-size: 22px;
  margin: 0 0 6px;
}
section .section-sub{
  color: var(--muted);
  font-size: 14.5px;
  margin: 0 0 22px;
}

.panel{
  background: var(--panel);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius);
  padding: 26px;
}

/* ---------- Fact sheet ---------- */
.facts{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px 28px;
}
.fact dt{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--faint);
  margin-bottom: 5px;
}
.fact dd{
  margin: 0;
  font-size: 15.5px;
  font-weight: 600;
}
.fact dd a{ font-weight: 600; }

/* ---------- Boilerplate ---------- */
.boilerplate-box{
  position: relative;
}
.boilerplate-box p{ margin: 0; color: var(--ink); font-size: 15.5px; }
.copy-btn{
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--glass);
  border: 1px solid var(--glass-line);
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
}
.copy-btn:hover{ color: var(--ink); }

/* ---------- Asset grid ---------- */
.asset-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}
.asset-card{
  background: var(--panel);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.asset-thumb{
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.asset-thumb.on-dark{ background: #06070a; }
.asset-thumb.on-light{ background: #e9eaec; }
.asset-thumb img{
  max-width: 78%;
  max-height: 78%;
  object-fit: contain;
}
.asset-card .asset-name{ font-weight: 700; font-size: 14.5px; }
.asset-card .asset-meta{ color: var(--muted); font-size: 12.5px; }
.asset-card .asset-dl{
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  color: var(--accent);
}
.asset-card .asset-dl:hover{ text-decoration: underline; }

/* ---------- Screenshot ---------- */
.screenshot{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-line);
}
.screenshot img{ display: block; width: 100%; height: auto; }

/* ---------- Colors ---------- */
.swatches{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}
.swatch{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--glass-line);
}
.swatch .chip{ height: 72px; }
.swatch .label{
  padding: 10px 12px;
  background: var(--panel);
  font-size: 13px;
}
.swatch .label .name{ font-weight: 700; display: block; }
.swatch .label .hex{ color: var(--muted); font-family: 'Space Mono', monospace; font-size: 12px; }

/* ---------- Guidelines list ---------- */
ul.guidelines{ margin: 0; padding-left: 20px; color: var(--muted); font-size: 14.5px; }
ul.guidelines li{ margin-bottom: 8px; }
ul.guidelines strong{ color: var(--ink); }

/* ---------- Contact ---------- */
.contact-row{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
footer{
  margin-top: 70px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-line);
  color: var(--faint);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
footer a{ color: var(--faint); }
footer a:hover{ color: var(--muted); }

@media (max-width: 560px){
  .topbar{ padding: 16px; }
  .topbar nav a{ margin-left: 12px; }
  .wrap{ padding: 0 16px 60px; }
}
