@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/poppins-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter-500.woff2') format('woff2');
}

:root {
  --bg: #060608;
  --bg-alt: #0c0e13;
  --text: #f0f1f5;
  --text-muted: #96a0b0;
  --accent: #3457ea;
  --accent-soft: rgba(52, 87, 234, 0.14);
  --border: #1b1e26;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 960px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--text); text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Nav ---------- */
header.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.nav-mark { display: flex; align-items: center; }
.nav-mark svg {
  width: clamp(190px, 34vw, 320px);
  height: auto;
  flex-shrink: 0;
  display: block;
}

.nav {
  flex-wrap: wrap;
  row-gap: 12px;
}

.nav-links { display: flex; flex-wrap: wrap; gap: 22px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--text-muted); font-size: 15px; font-weight: 500; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--text); text-decoration: none; }

@media (max-width: 640px) {
  .nav { justify-content: center; text-align: center; }
  .nav-links { justify-content: center; gap: 16px; font-size: 14px; }
}

@media (max-width: 400px) {
  .wrap { padding: 0 16px; }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 640px) {
  .hero { padding-top: 32px; padding-bottom: 24px; }
  section.block { padding-top: 32px; padding-bottom: 32px; }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 5vw, 28px);
  letter-spacing: 0.3px;
  margin: 0 0 14px;
}

.hero p.lede {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 0 20px;
}

/* ---------- Product links (asymmetric, not identical cards) ---------- */
.product-links {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
  margin-top: 44px;
}

@media (max-width: 640px) {
  .product-links { grid-template-columns: 1fr; }
}

.product-link {
  display: block;
  border-left: 3px solid var(--accent);
  background: var(--bg-alt);
  padding: 26px 28px;
}

.product-link .kicker {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.product-link h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--text);
}

.product-link p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
}

/* ---------- Sections ---------- */
section.block { padding-top: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
section.block:last-of-type { border-bottom: none; }

.block h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 2.2vw, 20px);
  margin: 0 0 16px;
}

.block .prose { max-width: 68ch; color: var(--text-muted); font-size: 17px; }
.block .prose p { margin: 0 0 18px; }
.block .prose strong { color: var(--text); }

/* ---------- Spec list ---------- */
.speclist {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.speclist li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  font-size: 15px;
}

.speclist li:first-child { border-top: none; }
.speclist dt, .speclist .k { color: var(--text-muted); }
.speclist .v { color: var(--text); }

@media (max-width: 640px) {
  .speclist li { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------- Timeline (genuine chronology) ---------- */
.timeline {
  position: relative;
  margin-top: 32px;
  padding-left: 28px;
  border-left: 2px solid var(--border);
}

.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline-item .year {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent);
  font-size: 15px;
  margin-bottom: 6px;
}

.timeline-item p { color: var(--text-muted); margin: 0; max-width: 60ch; }

/* ---------- Footer ---------- */
footer.site-footer {
  padding-top: 40px;
  padding-bottom: 40px;
  color: var(--text-muted);
  font-size: 14px;
}

footer.site-footer .foot-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

footer.site-footer a { color: var(--text-muted); }
footer.site-footer a:hover { color: var(--text); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ---------- Handpan-Akkorde ---------- */
.chord-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.chord {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
}

.chord-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.chord-head h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  margin: 0;
  color: var(--text);
}

.chord-tones { font-size: 14px; color: var(--text-muted); }

.chord img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  background: #fff;
}

.dl {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 5px;
  padding: 8px 14px;
}

.dl:hover { background: var(--accent); color: #fff; }

.dl-main { margin-top: 4px; font-size: 15px; }
