/* ============================================================
   Lurelin Audio — site styles
   Design language: warm cream + ink + red, Inter Black for display,
   8px red spine on the left edge of every page.
   ============================================================ */

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #D6D0C2;
  color: #1A1A1A;
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-height: 100vh;
}

/* ---------- the red spine on the left edge of every page ---------- */
body::before {
  content: '';
  position: fixed;
  top: 0; bottom: 0; left: 0;
  width: 8px;
  background: #D40000;
  z-index: 100;
  pointer-events: none;
}

/* ---------- typography ---------- */
h1, h2, h3, h4 {
  font-family: "Inter", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: lowercase;
  margin: 0;
  line-height: 1;
}

a { color: inherit; text-decoration: none; }

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

.red-dot { color: #D40000; }

.eyebrow {
  font-family: "Inter", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 10.5px;
  color: #6A6A5A;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.eyebrow.dark { color: #B8B2A4; }
.eyebrow.red { color: #D40000; font-weight: 900; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  background: #1A1A1A;
  color: #F0EADC;
  border: none;
  padding: 14px 24px;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: background 0.15s ease, color 0.15s ease, transform 0.05s ease;
}
.btn:hover { background: #D40000; }
.btn:active { transform: scale(0.98); }
.btn.alt {
  background: transparent;
  color: #1A1A1A;
  border: 2px solid #1A1A1A;
  padding: 12px 22px;
}
.btn.alt:hover { background: #1A1A1A; color: #F0EADC; }
.btn.cream {
  background: #F0EADC;
  color: #1A1A1A;
  border: 2px solid #F0EADC;
  padding: 12px 22px;
}
.btn.cream:hover { background: #D40000; color: #F0EADC; border-color: #D40000; }
.btn.cream-alt {
  background: transparent;
  color: #F0EADC;
  border: 2px solid #F0EADC;
  padding: 12px 22px;
}
.btn.cream-alt:hover { background: #F0EADC; color: #1A1A1A; }
.btn:disabled,
.btn.disabled {
  background: #C8C2B6;
  color: #6A6A5A;
  cursor: not-allowed;
  pointer-events: none;
}

/* ---------- nav ---------- */
.nav {
  background: #D6D0C2;
  border-bottom: 2px solid #1A1A1A;
  padding: 18px 32px 18px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #1A1A1A;
  letter-spacing: -0.005em;
  text-transform: lowercase;
  line-height: 1;
  text-decoration: none;
}
.nav-items {
  display: flex;
  gap: 28px;
}
.nav-items a {
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1A1A1A;
  transition: color 0.15s ease;
}
.nav-items a:hover { color: #D40000; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1A1A1A;
}

/* ---------- coming-soon tag ---------- */
.coming-soon-tag {
  display: inline-block;
  background: #D40000;
  color: #F0EADC;
  padding: 4px 10px;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ---------- homepage hero ---------- */
.hero {
  padding: 56px 32px 40px 36px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}
.headline {
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 108px;
  font-weight: 900;
  line-height: 0.85;
  color: #1A1A1A;
  margin: 0 0 16px;
  letter-spacing: -0.045em;
  text-transform: lowercase;
}
.tagline {
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 13px;
  color: #1A1A1A;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 18px;
}
.hero-sub {
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #2C2C2C;
  margin: 0 0 26px;
  max-width: 440px;
  font-weight: 500;
}
.cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ---------- product photo (hero right column) ---------- */
.product-photo {
  background: #0A0E1C;
  border: 2px solid #F0EADC;
  overflow: hidden;
}
.product-photo img {
  display: block;
  width: 100%;
  height: auto;
}
.product-photo-meta {
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #F0EADC;
  font-family: "Inter", "Helvetica Neue", sans-serif;
}
.product-photo-meta .name {
  font-size: 12px;
  font-weight: 900;
  color: #F0EADC;
  text-transform: lowercase;
  letter-spacing: -0.01em;
}
.product-photo-meta .meta {
  font-size: 9px;
  color: #8FA3D6;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ---------- info strip (under hero on homepage) ---------- */
.info-strip {
  background: #1A1A1A;
  color: #F0EADC;
  padding: 16px 32px 16px 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.info-strip .info-label {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: #B8B2A4;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}
.info-strip .info-value {
  font-size: 13px;
  color: #F0EADC;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- generic section wrappers ---------- */
.section {
  padding: 64px 32px 64px 36px;
}
.section.dark {
  background: #1A1A1A;
  color: #F0EADC;
}
.section.deep-space {
  background: #0A0E1C;
  color: #F0EADC;
}
.section-narrow { max-width: 640px; }
.section-medium { max-width: 760px; }
.section-heading {
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 36px;
  font-weight: 900;
  margin: 0 0 32px;
  line-height: 0.95;
  text-transform: lowercase;
  letter-spacing: -0.025em;
  max-width: 600px;
}
.section-heading.cream { color: #F0EADC; }
.body-text {
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2C2C2C;
  font-weight: 500;
  max-width: 640px;
}
.body-text.cream { color: #B8B2A4; }
.body-text a { color: #1A1A1A; border-bottom: 1px solid #1A1A1A; font-weight: 700; }
.body-text a:hover { color: #D40000; border-bottom-color: #D40000; }
.body-text.cream a { color: #F0EADC; border-bottom-color: #F0EADC; }
.body-text.cream a:hover { color: #D40000; border-bottom-color: #D40000; }

/* ---------- audio block (homepage) ---------- */
.audio-block {
  background: #1A1A1A;
  border: 2px solid #1A1A1A;
  padding: 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}
.play-circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #D40000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.15s ease;
  border: none;
}
.play-circle:hover { background: #B00000; }
.play-circle::after {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 10px 0 10px 17px;
  border-color: transparent transparent transparent #F0EADC;
  margin-left: 4px;
}
.play-circle:disabled,
.play-circle.disabled {
  background: #555;
  cursor: not-allowed;
  pointer-events: none;
}
.audio-text { color: #F0EADC; }
.audio-label {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: #B8B2A4;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 700;
}
.audio-title {
  font-size: 22px;
  font-weight: 900;
  color: #F0EADC;
  margin: 0;
  letter-spacing: -0.01em;
  text-transform: lowercase;
}

/* ---------- brand paragraph (homepage) ---------- */
.brand-para {
  max-width: 560px;
  margin: 56px auto 0;
  text-align: center;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: #1A1A1A;
  font-weight: 500;
}

/* ---------- audio grid (4-up on /lush) ---------- */
.audio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 720px;
}
.audio-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1.5px solid #F0EADC;
  background: transparent;
}
.play-small {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #D40000;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border: none;
  transition: background 0.15s ease;
}
.play-small:hover { background: #B00000; }
.play-small.disabled { background: #555; cursor: not-allowed; pointer-events: none; }
.play-small::after {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent #F0EADC;
  margin-left: 3px;
}
.audio-row-text { flex: 1; color: #F0EADC; }
.audio-row-title {
  font-size: 14px;
  font-weight: 900;
  color: #F0EADC;
  margin: 0;
  text-transform: lowercase;
  letter-spacing: -0.005em;
}
.audio-row-sub {
  font-size: 10px;
  color: #B8B2A4;
  margin: 2px 0 0;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ---------- motion section (/lush) ---------- */
.motion-frame {
  background: #0A0E1C;
  border: 2px solid #F0EADC;
  overflow: hidden;
  position: relative;
}
.motion-shot {
  aspect-ratio: 16/9;
  background: #0A0E1C;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.motion-shot img {
  width: 110%;
  height: 110%;
  object-fit: cover;
  position: absolute;
  top: -5%; left: -5%;
  opacity: 0.4;
  animation: motion-drift 30s linear infinite;
}
@keyframes motion-drift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-2%, -1%) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}
.play-large {
  position: relative;
  z-index: 2;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: #D40000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: background 0.15s ease, transform 0.15s ease;
}
.play-large:hover { background: #B00000; transform: scale(1.05); }
.play-large.disabled { background: #555; cursor: not-allowed; pointer-events: none; }
.play-large::after {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent #F0EADC;
  margin-left: 6px;
}
.motion-label {
  position: absolute;
  bottom: 16px; left: 18px;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: #6B7A9E;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 2;
}

/* ---------- features grid (/lush) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 40px;
  max-width: 880px;
}
.feature {
  border-top: 2px solid #1A1A1A;
  padding-top: 18px;
}
.feature-number {
  font-size: 11px;
  font-weight: 900;
  color: #D40000;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.feature-heading {
  font-size: 22px;
  line-height: 1.1;
  color: #1A1A1A;
  margin: 0 0 12px;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: lowercase;
}
.feature-body {
  font-size: 14px;
  line-height: 1.6;
  color: #2C2C2C;
  margin: 0;
  font-weight: 500;
}

/* ---------- specs grid (/lush) ---------- */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 880px;
  margin-top: 20px;
}
.spec-item {
  background: #1A1A1A;
  color: #F0EADC;
  padding: 16px 18px;
}
.spec-label {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: #B8B2A4;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}
.spec-value {
  font-size: 13px;
  color: #F0EADC;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- pricing close (/lush) ---------- */
.price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 12px 0 18px;
}
.price-currency {
  font-size: 32px;
  font-weight: 900;
  color: #D40000;
  font-family: "Inter", "Helvetica Neue", sans-serif;
}
.price-number {
  font-size: 96px;
  font-weight: 900;
  color: #F0EADC;
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-family: "Inter", "Helvetica Neue", sans-serif;
}

/* ---------- page header (used on /downloads, /faq, /about) ---------- */
.page-header {
  padding: 72px 32px 56px 36px;
  border-bottom: 2px solid #1A1A1A;
}
.page-title {
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 88px;
  font-weight: 900;
  line-height: 0.9;
  color: #1A1A1A;
  margin: 0;
  letter-spacing: -0.045em;
  text-transform: lowercase;
}

/* ---------- plugin block (/downloads) ---------- */
.plugin-block {
  border: 2px solid #1A1A1A;
  background: #D6D0C2;
  padding: 28px;
  margin-bottom: 24px;
}
.plugin-block-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 6px;
  flex-wrap: wrap;
  gap: 12px;
}
.plugin-name {
  font-size: 40px;
  font-weight: 900;
  color: #1A1A1A;
  margin: 0;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  line-height: 1;
}
.plugin-version {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: #6A6A5A;
  text-transform: uppercase;
  font-weight: 700;
}
.plugin-tagline {
  font-size: 12.5px;
  letter-spacing: 0.18em;
  color: #1A1A1A;
  text-transform: uppercase;
  font-weight: 700;
  margin: 4px 0 22px;
}
.download-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.download-btn {
  background: #1A1A1A;
  color: #F0EADC;
  border: none;
  padding: 18px 22px;
  cursor: pointer;
  text-align: left;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  text-decoration: none;
  display: block;
  transition: background 0.15s ease;
}
.download-btn:hover { background: #D40000; }
.download-btn.disabled {
  background: #C8C2B6;
  color: #6A6A5A;
  cursor: not-allowed;
  pointer-events: none;
}
.download-btn-platform {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: #B8B2A4;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}
.download-btn.disabled .download-btn-platform { color: #888; }
.download-btn-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.download-btn-name {
  font-size: 14px;
  font-weight: 900;
  text-transform: lowercase;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---------- info blocks (/downloads) ---------- */
.info-section {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 2px solid #1A1A1A;
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.info-block-heading {
  font-size: 22px;
  font-weight: 900;
  color: #1A1A1A;
  margin: 0 0 10px;
  text-transform: lowercase;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.info-block-eyebrow {
  font-size: 10px;
  font-weight: 900;
  color: #D40000;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ---------- FAQ ---------- */
.faq-group { margin-bottom: 48px; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group-heading {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: #D40000;
  text-transform: uppercase;
  font-weight: 900;
  margin: 0 0 18px;
  font-family: "Inter", "Helvetica Neue", sans-serif;
}
details { border-bottom: 1px solid #1A1A1A; }
.faq-group details:first-of-type { border-top: 1px solid #1A1A1A; }
details summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 2px;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-weight: 900;
  font-size: 17px;
  color: #1A1A1A;
  letter-spacing: -0.01em;
  text-transform: lowercase;
  transition: color 0.15s ease;
}
details summary::-webkit-details-marker,
details summary::marker { display: none; }
details summary:hover { color: #D40000; }
.faq-icon {
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-left: 16px;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: #1A1A1A;
  top: 50%; left: 50%;
}
.faq-icon::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-icon::after  { width: 2px; height: 14px; transform: translate(-50%, -50%); transition: transform 0.2s ease, opacity 0.2s ease; }
details[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
details summary:hover .faq-icon::before,
details summary:hover .faq-icon::after { background: #D40000; }
.faq-answer {
  padding: 0 2px 22px;
  font-size: 14px;
  line-height: 1.65;
  color: #2C2C2C;
  max-width: 620px;
  font-weight: 500;
}
.faq-answer a {
  color: #1A1A1A;
  border-bottom: 1px solid #1A1A1A;
  font-weight: 700;
}
.faq-answer a:hover { color: #D40000; border-bottom-color: #D40000; }
.faq-answer p { margin: 0 0 10px; }
.faq-answer p:last-child { margin: 0; }

/* ---------- notify-me / signup form ---------- */
.notify-section {
  background: #1A1A1A;
  padding: 80px 32px 80px 36px;
  color: #F0EADC;
}
.notify-section .eyebrow { color: #B8B2A4; }
.notify-heading {
  font-size: 44px;
  font-weight: 900;
  color: #F0EADC;
  margin: 0 0 18px;
  line-height: 0.95;
  text-transform: lowercase;
  letter-spacing: -0.03em;
  max-width: 500px;
}
.notify-blurb {
  font-size: 15px;
  line-height: 1.55;
  color: #B8B2A4;
  margin: 0 0 28px;
  max-width: 480px;
  font-weight: 500;
}
.signup-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  flex-wrap: wrap;
}
.signup-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  background: transparent;
  border: 2px solid #F0EADC;
  color: #F0EADC;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 500;
  outline: none;
}
.signup-form input[type="email"]::placeholder {
  color: #6A6A5A;
  text-transform: lowercase;
}
.signup-form input[type="email"]:focus { border-color: #D40000; }
.signup-form button {
  background: #D40000;
  color: #F0EADC;
  border: 2px solid #D40000;
  padding: 14px 28px;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.signup-form button:hover { background: #F0EADC; color: #1A1A1A; border-color: #F0EADC; }
.form-status {
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  min-height: 18px;
}
.form-status.success { color: #F0EADC; }
.form-status.error { color: #FF6B6B; }

/* ---------- footer ---------- */
.footer {
  background: #D6D0C2;
  border-top: 2px solid #1A1A1A;
  padding: 56px 32px 24px 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.4fr;
  gap: 32px;
  margin-bottom: 44px;
}
.footer-brand-name {
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #1A1A1A;
  margin: 0 0 12px;
  letter-spacing: -0.005em;
  text-transform: lowercase;
}
.footer-brand-tag {
  font-size: 12.5px;
  color: #2C2C2C;
  margin: 0;
  line-height: 1.5;
  max-width: 220px;
  font-weight: 500;
}
.col-heading {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: #6A6A5A;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 16px;
  font-family: "Inter", "Helvetica Neue", sans-serif;
}
.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.link-list a {
  font-size: 13px;
  color: #1A1A1A;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  width: fit-content;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.link-list a:hover { border-bottom-color: #D40000; color: #D40000; }
.newsletter-blurb {
  font-size: 12.5px;
  color: #2C2C2C;
  line-height: 1.5;
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-form {
  display: flex;
  gap: 8px;
}
.footer-form input[type="email"] {
  flex: 1;
  padding: 11px 14px;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 13px;
  background: #F0EADC;
  border: 1.5px solid #1A1A1A;
  color: #1A1A1A;
  outline: none;
  min-width: 0;
  font-weight: 500;
}
.footer-form input[type="email"]::placeholder { color: #6A6A5A; }
.footer-form button {
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 11px;
  font-weight: 900;
  padding: 11px 18px;
  background: #1A1A1A;
  color: #F0EADC;
  border: none;
  cursor: pointer;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.15s ease;
}
.footer-form button:hover { background: #D40000; }
.footer-bottom {
  border-top: 1px solid #1A1A1A;
  padding-top: 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  color: #2C2C2C;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.footer-bottom .copyright { text-align: left; }
.footer-bottom .ig-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  color: #1A1A1A;
  transition: color 0.15s ease;
}
.footer-bottom .ig-link:hover { color: #D40000; }
.footer-bottom .ig-link svg {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.footer-bottom .legal { text-align: right; }
.footer-bottom .legal a {
  color: #1A1A1A;
  margin-left: 18px;
  font-weight: 500;
  transition: color 0.15s ease;
}
.footer-bottom .legal a:hover { color: #D40000; }

/* ---------- about page ---------- */
.about-content {
  max-width: 600px;
  padding: 64px 32px 80px 36px;
}
.about-content p {
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #1A1A1A;
  margin: 0 0 24px;
  font-weight: 500;
}
.about-content p:first-of-type {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: #1A1A1A;
  margin-bottom: 32px;
}

/* ---------- coming-soon override on /downloads ---------- */
.coming-soon-block {
  border: 2px solid #1A1A1A;
  padding: 48px 32px;
  text-align: center;
  background: #D6D0C2;
}
.coming-soon-heading {
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: #1A1A1A;
  margin: 0 0 14px;
  letter-spacing: -0.025em;
  text-transform: lowercase;
}
.coming-soon-body {
  font-size: 15px;
  color: #2C2C2C;
  margin: 0 auto;
  max-width: 440px;
  line-height: 1.6;
  font-weight: 500;
}

/* ============================================================
   Responsive — mobile breakpoint
   ============================================================ */
@media (max-width: 720px) {
  body::before { width: 6px; }

  .nav { padding: 16px 20px 16px 28px; }
  .nav-items { display: none; }
  .nav-items.open {
    display: flex;
    position: absolute;
    top: 60px;
    left: 0; right: 0;
    background: #D6D0C2;
    border-bottom: 2px solid #1A1A1A;
    flex-direction: column;
    gap: 0;
    padding: 0;
    z-index: 50;
  }
  .nav-items.open a {
    padding: 16px 28px;
    border-bottom: 1px solid #C8C2B6;
  }
  .menu-toggle { display: block; }

  .hero {
    grid-template-columns: 1fr;
    padding: 40px 24px 32px 28px;
    gap: 28px;
  }
  .headline { font-size: 72px; }
  .info-strip {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 24px 20px 28px;
  }

  .section { padding: 48px 24px 48px 28px; }
  .section-heading { font-size: 28px; }
  .audio-grid, .feature-grid, .info-grid, .specs-grid {
    grid-template-columns: 1fr;
  }
  .audio-block {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .audio-block .play-circle { margin: 0 auto; }

  .download-row { grid-template-columns: 1fr; }

  .page-header { padding: 48px 24px 36px 28px; }
  .page-title { font-size: 56px; }

  .footer { padding: 40px 24px 20px 28px; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
  }
  .footer-bottom .copyright, .footer-bottom .legal { text-align: center; }
  .footer-bottom .legal a:first-child { margin-left: 0; }

  .about-content { padding: 40px 24px 60px 28px; }
  .about-content p:first-of-type { font-size: 20px; }

  .notify-section { padding: 48px 24px 48px 28px; }
  .notify-heading { font-size: 32px; }
  .signup-form { flex-direction: column; }
  .signup-form button { width: 100%; }

  .price-number { font-size: 64px; }
  .plugin-name { font-size: 32px; }
}
