/* ============================================================
   47 — landing styles.  Mobile first: base = phone, media
   queries only widen.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --surface: #f4f4f4;
  --border: rgba(0,0,0,0.08);
  --text: #111111;
  --muted: rgba(0,0,0,0.45);
  --soft: rgba(0,0,0,0.62);
  --red: #CC0000;
  --sh-s: 0 1px 2px rgba(0,0,0,0.04), 0 5px 14px rgba(0,0,0,0.05);
  --sh-m: 0 2px 4px rgba(0,0,0,0.04), 0 12px 32px rgba(0,0,0,0.08);
  --sh-l: 0 4px 10px rgba(0,0,0,0.05), 0 22px 56px rgba(0,0,0,0.13);
  --r-s: 14px;
  --r-m: 20px;
  --r-l: 28px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap { width: 100%; max-width: 880px; margin: 0 auto; padding: 0 18px; }

/* ---------- top bar ---------- */
.top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 16px 0 4px;
}
.top > img { width: 30px; height: auto; display: block; }
.back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  text-decoration: none;
  color: var(--text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--sh-s);
  transition: transform 0.15s, background 0.18s;
  -webkit-tap-highlight-color: transparent;
}
.back:hover { background: #ececec; transform: translateY(-1px); }
.back:active { transform: translateY(0) scale(0.98); }
.back svg { width: 11px; height: 11px; fill: none; stroke: #111; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- hero ---------- */
.hero { padding: 26px 0 0; text-align: center; }
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
/* transparent PNG — the render carries its own shadow, so no card behind it */
.box {
  display: block;
  width: 225px;
  max-width: 66%;
  height: auto;
  margin: 0 auto 18px;
}
h1 {
  font-size: clamp(21px, 6.6vw, 40px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.06;
  text-transform: uppercase;
  margin-bottom: 14px;
}
h1 span, .final h2 span { color: var(--red); }
.lead {
  max-width: 520px;
  margin: 0 auto;
  font-size: 14px;
  color: var(--soft);
}

/* ---------- cta ---------- */
.cta-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 26px; }
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 100%;
  max-width: 340px;
  padding: 19px 28px;
  background: var(--text);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--sh-l);
  cursor: pointer;
  transition: transform 0.16s, box-shadow 0.16s;
  -webkit-tap-highlight-color: transparent;
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(0,0,0,0.07), 0 28px 62px rgba(0,0,0,0.18); }
.cta:active { transform: translateY(0) scale(0.985); }
.cta svg { width: 16px; height: 16px; fill: #ffffff; flex-shrink: 0; }
.cta-note {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

/* ---------- trust strip ---------- */
.trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 26px;
}
.trust span {
  padding: 8px 13px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  box-shadow: var(--sh-s);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--soft);
}

/* ---------- stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-top: 30px;
}
.stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-s);
  box-shadow: var(--sh-s);
  padding: 15px 4px;
  text-align: center;
}
.stat b {
  display: block;
  font-size: clamp(19px, 5.4vw, 30px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat span {
  display: block;
  margin-top: 6px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- sections ---------- */
section { padding: 62px 0 0; }
.sec-head { margin-bottom: 22px; }
.sec-num {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
h2 {
  font-size: clamp(26px, 8vw, 46px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 12px;
}
.sec-lead { max-width: 560px; font-size: 14px; color: var(--soft); }
.note {
  margin-top: 16px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- compact tag row (drum kit categories) ---------- */
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  box-shadow: var(--sh-s);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--soft);
  transition: transform 0.14s, background 0.16s;
}
.tag:hover { transform: translateY(-1px); background: #efefef; }
.tag i { font-style: normal; font-weight: 900; color: var(--red); }

/* ---------- compatibility strip (slim: sits under the plugin slider) ---------- */
.compat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 22px 0 0;
  padding: 11px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  box-shadow: var(--sh-s);
}
.compat svg { width: 13px; height: 13px; fill: var(--red); flex-shrink: 0; }
.compat p {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--soft);
  line-height: 1.5;
}
.compat b { font-weight: 800; color: var(--text); }

/* ---------- video facade ---------- */
.frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-m);
  overflow: hidden;
  background: #ececec;
  border: 1px solid var(--border);
  box-shadow: var(--sh-m);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.18s, box-shadow 0.18s;
}
.frame:hover { transform: translateY(-2px); box-shadow: var(--sh-l); }
.frame img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity 0.25s; }
.frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 58px; height: 58px;
  border-radius: 50%;
  border: none;
  background: var(--red);
  box-shadow: 0 8px 24px rgba(204,0,0,0.34);
  display: grid;
  place-items: center;
  transition: transform 0.18s, opacity 0.25s;
}
.play svg { width: 20px; height: 20px; fill: #ffffff; margin-left: 3px; }
.frame:hover .play { transform: translate(-50%, -50%) scale(1.08); }
.frame.playing img, .frame.playing .play { opacity: 0; pointer-events: none; }
.frame.playing { cursor: default; transform: none; }
.frame.playing:hover { transform: none; box-shadow: var(--sh-m); }

.yt-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.16s;
}
.yt-link:hover { color: var(--red); }

/* ---------- plugin meta ---------- */
.meta { padding: 20px 2px 0; }
.meta h3 {
  font-size: clamp(24px, 7vw, 34px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.role {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.desc { margin-top: 14px; font-size: 13.5px; color: var(--soft); }
.specs { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.specs li {
  padding: 7px 13px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  box-shadow: var(--sh-s);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--soft);
}


/* ---------- projects ---------- */
.projects { display: flex; flex-direction: column; gap: 7px; }
.proj {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 15px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-s);
  box-shadow: var(--sh-s);
  transition: transform 0.16s, box-shadow 0.16s;
}
.proj:hover { transform: translateY(-2px); box-shadow: var(--sh-m); }
.proj em { font-style: normal; font-size: 11px; font-weight: 900; color: var(--red); min-width: 20px; line-height: 1.6; }
.pt { display: flex; flex-direction: column; gap: 1px; width: 100%; }
.pt strong { font-size: 14px; font-weight: 700; letter-spacing: -0.01em; }
.pt i { font-style: normal; font-size: 10px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }

/* ---------- faq ---------- */
.faq { display: flex; flex-direction: column; gap: 7px; }
.faq details {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-s);
  box-shadow: var(--sh-s);
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  -webkit-tap-highlight-color: transparent;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  color: var(--red);
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}
.faq details[open] summary::after { content: '–'; }
.faq p { padding: 0 18px 16px; font-size: 12.5px; color: var(--soft); }

/* ---------- final ---------- */
.final {
  margin-top: 72px;
  padding: 44px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  box-shadow: var(--sh-m);
  text-align: center;
}
.final h2 {
  margin-bottom: 10px;
  font-size: clamp(21px, 6.6vw, 40px);
  line-height: 1.06;
  text-transform: uppercase;
}
.final .sec-lead { margin: 0 auto; }

footer {
  padding: 44px 0 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
footer img { width: 26px; opacity: 0.9; }
footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.18s;
}
footer a:hover { color: var(--text); }

/* ---------- reveal ---------- */
.rv { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.rv.in { opacity: 1; transform: none; }

/* ============================================================
   wider screens
   ============================================================ */
@media (min-width: 560px) {
  .wrap { padding: 0 24px; }
  .hero { padding-top: 28px; }
  .box { width: 300px; max-width: 70%; }
  .lead, .sec-lead, .desc { font-size: 15px; }
  .stats { gap: 10px; }
  .stat { padding: 20px 8px; border-radius: var(--r-m); }
  .stat span { font-size: 9px; }
  .cta { width: auto; min-width: 300px; }
  section { padding-top: 78px; }
  .play { width: 70px; height: 70px; }
  .play svg { width: 24px; height: 24px; }
  .proj { align-items: center; padding: 17px 22px; }
  .pt { flex-direction: row; align-items: baseline; justify-content: space-between; gap: 14px; }
  .pt strong { font-size: 16px; }
  .final { padding: 58px 28px; }
}

@media (min-width: 860px) {
  .box { width: 340px; }
  .meta { padding-top: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
}
