/* Shared design system — LIGHT. Clean white canvas, glossy acid white-pink accents.
   Music-rights visitka for artists. Edit the system here once → every page updates. */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Onest:wght@400;500;600;700&display=swap');

:root {
  /* color — light */
  --color-void: #ffffff;          /* page base */
  --bg: #faf8fb;
  --surface: #ffffff;             /* cards */
  --surface-2: #f5f2f7;           /* card hover / insets */
  --color-bone: #161220;          /* primary text (dark) */
  --color-ash: #54505f;           /* secondary text */
  --color-smoke: #8b8794;         /* muted text */
  --accent: #C7E86B;              /* acid pink */
  --accent-2: #dcf2a3;            /* lighter pink (highlights / em) */
  --accent-ink: #04140c;          /* text on the pink fill */
  --line: rgba(20,16,30,0.10);
  --line-2: rgba(20,16,30,0.16);

  /* type */
  --font: "Onest", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-display: "Space Grotesk", "Onest", ui-sans-serif, system-ui, sans-serif;

  /* shape */
  --max: 1180px;
  --radius: 14px;
  --radius-btn: 11px;
  --radius-sm: 10px;
  --spacing-24: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--color-void); color: var(--color-bone);
  font-family: var(--font); font-weight: 400; font-size: 16px; line-height: 1.55; letter-spacing: 0;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; position: relative; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; color: var(--accent); }

/* type primitives */
.kicker { font-family: var(--font-display); font-weight: 600; font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin: 0 0 16px; }
h1, h2, h3 { font-family: var(--font-display); color: var(--color-bone); margin: 0; }
h1 { font-weight: 600; font-size: clamp(2.6rem, 6.6vw, 5.2rem); line-height: 1.02; letter-spacing: -0.03em; }
h2 { font-weight: 600; font-size: clamp(1.9rem, 4.2vw, 3.1rem); line-height: 1.06; letter-spacing: -0.025em; max-width: 20ch; }
.lead { color: var(--color-ash); font-size: 18px; line-height: 1.55; max-width: 58ch; margin: 16px 0 0; }

/* buttons — sentence-case, comfortable, one filled accent */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: var(--radius-btn); font-family: var(--font); font-weight: 600; font-size: 15px; letter-spacing: 0; text-transform: none; padding: 12px 20px; cursor: pointer; border: 1px solid transparent; transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease; }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: #d3ed85; transform: translateY(-1px); box-shadow: 0 10px 26px rgba(199,232,107,0.28); }
.btn-ghost { background: rgba(20,16,30,0.03); border-color: var(--line-2); color: var(--color-bone); }
.btn-ghost:hover { background: rgba(20,16,30,0.06); border-color: rgba(20,16,30,0.26); }

/* nav */
header.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.78); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav-in { display: flex; align-items: center; gap: 30px; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: 0.01em; color: var(--color-bone); }
.brand svg { width: 21px; height: 21px; stroke: var(--accent); fill: none; stroke-width: 1.6; }
.nav-links { display: flex; gap: 26px; margin-left: 12px; }
.nav-links a { color: var(--color-ash); font-size: 14.5px; font-weight: 500; transition: color .18s; }
.nav-links a:hover, .nav-links a.active { color: var(--color-bone); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.nav .btn { padding: 9px 16px; font-size: 14px; }

/* sections + cards */
section.block { padding: 104px 0; }
.section-top { border-top: 1px solid var(--line); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { padding: 26px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.card:hover { background: var(--surface); border-color: var(--line-2); box-shadow: 0 12px 30px rgba(20,16,30,0.07); }
.card .ic { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: rgba(199,232,107,0.10); border: 1px solid rgba(199,232,107,0.22); margin-bottom: 20px; }
.card .ic svg { width: 21px; height: 21px; stroke: var(--accent); fill: none; stroke-width: 1.7; }
.card h3 { font-weight: 600; font-size: 18px; letter-spacing: -0.01em; margin: 0 0 9px; color: var(--color-bone); }
.card p { color: var(--color-ash); font-size: 14.5px; line-height: 1.55; margin: 0; }

/* footer */
footer.site { border-top: 1px solid var(--line); padding: 40px 0; }
.foot { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: space-between; color: var(--color-smoke); font-size: 14px; }

/* reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .cards { grid-template-columns: 1fr; }
  section.block { padding: 76px 0; }
}
