:root {
  --bg: #050505;
  --panel: #0d0d0d;
  --panel-soft: #121212;
  --text: #f2f2f2;
  --muted: #8f8f8f;
  --line: #242424;
  --accent: #ff2525;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background: var(--bg) !important;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-transform: lowercase;
}

a,
button {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header,
main,
footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  background: var(--bg);
}

.brand {
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.nav a,
.audio-toggle,
.quick-links a,
.feature-row,
.contact-grid a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  cursor: pointer;
  font: 600 0.82rem Inter, sans-serif;
  padding: 9px 12px;
  text-decoration: none;
  text-transform: lowercase;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease, background 160ms ease;
}

.nav a:hover,
.audio-toggle:hover,
.quick-links a:hover,
.feature-row:hover,
.contact-grid a:hover {
  border-color: rgba(255, 37, 37, 0.72);
  color: var(--accent);
  transform: translateY(-1px);
}

.audio-toggle {
  appearance: none;
}

.hero {
  min-height: 70vh;
  display: grid;
  align-content: center;
  padding: 96px 0 84px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(4.8rem, 17vw, 13rem);
  line-height: 0.82;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.statement {
  max-width: 760px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.quick-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  border-radius: 18px;
  padding: 14px;
}

.quick-links span {
  color: var(--muted);
  font-size: 0.76rem;
}

.archive-panel {
  border-top: 1px solid var(--line);
  padding: 44px 0;
}

.section-label {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: baseline;
  margin-bottom: 18px;
}

.section-label > span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.feature-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-radius: 22px;
  padding: 18px;
}

.feature-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-row > span {
  flex: 0 0 auto;
  color: var(--accent);
  font-weight: 700;
}

.kit-grid,
.vst-grid,
.contact-grid {
  display: grid;
  gap: 10px;
}

.kit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kit-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px;
  background: var(--panel);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.kit-card:hover {
  border-color: rgba(255, 37, 37, 0.72);
  transform: translateY(-2px);
}

.kit-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  object-fit: cover;
}

.kit-card span,
figcaption {
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
}

.vst-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

figure {
  display: grid;
  align-content: space-between;
  min-height: 154px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  background: var(--panel-soft);
}

figure img {
  width: 100%;
  max-height: 104px;
  margin: auto;
  object-fit: contain;
  filter: saturate(0.92) brightness(0.9);
}

figcaption {
  margin-top: 9px;
  color: var(--muted);
}

.contact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-grid a {
  display: grid;
  min-height: 62px;
  place-items: center;
  border-radius: 18px;
  overflow-wrap: anywhere;
}

footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 40px;
  color: var(--muted);
}

footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .quick-links,
  .kit-grid,
  .vst-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-label {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .site-header,
  main,
  footer {
    width: min(100% - 20px, 1120px);
  }

  h1 {
    font-size: 4.7rem;
  }

  .quick-links,
  .kit-grid,
  .vst-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-row {
    flex-direction: column;
  }
}
