/* base — shared with andrewralon.github.io/op1-lfo-hero */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: #111111;
  color: #d8d8d8;
  font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
  font-size: 13px;
  line-height: 1.7;
  padding: 28px 24px;
  max-width: 680px;
  margin: 0 auto;
}
h1 { color: #ffffff; font-size: 28px; font-weight: bold; margin-bottom: 4px; display: flex; align-items: center; gap: 10px; }
h1 a { color: inherit; text-decoration: none; }
.mark { width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0; }
.tagline, .meta { color: #d8d8d8; font-size: 12px; margin-bottom: 28px; }
.tagline { margin-bottom: 14px; }
.tagline-highlight { color: #ff6a00; }
/* multicolour lfo wave — cropped from the op1 lfo hero splash screen */
.wave-band { display: block; width: 100%; max-width: 375px; height: auto; margin: 0 auto 24px; }
h2 {
  font-size: 17px;
  font-weight: bold;
  border-bottom: 1px solid #2a2a2a;
  padding-bottom: 6px;
  margin-top: 24px;
  margin-bottom: 12px;
}
p { margin-bottom: 12px; }
ul { padding-left: 20px; margin-bottom: 12px; }
li { margin-bottom: 10px; }
strong { color: #ffffff; }
code {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 3px;
  padding: 1px 5px;
  font-size: 12px;
  font-family: inherit;
  color: #ff6a00;
}
a { color: #4ec94e; text-decoration: none; }
a:hover { text-decoration: underline; }
footer .here { color: #d8d8d8; }
footer .sep { margin: 0 8px; }
footer {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid #2a2a2a;
  color: #666666;
  font-size: 12px;
}

/* projects */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}
.project-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 3px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
}
.project-card h3, .release-info h3 { font-size: 14px; font-weight: bold; margin-bottom: 6px; }
.project-card h3 a, .release-info h3 a { color: #4ec94e; }
.project-card h3 a:hover, .release-info h3 a:hover { text-decoration: underline; }
.project-card p { font-size: 12px; margin-bottom: 10px; flex-grow: 1; }

/* music releases */
.release-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 12px; }
.release-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 3px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.release-cover { width: 64px; height: 64px; border-radius: 3px; flex-shrink: 0; object-fit: cover; }
.release-info { min-width: 0; }
.release-info h3 { display: flex; align-items: baseline; gap: 8px; }
.release-info h3 .lang { font-size: 11px; font-weight: normal; }
.release-info h3 .lang::before { content: "\00b7"; color: #666666; margin-right: 6px; }

.card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #666666;
}
.lang { color: #ff6a00; }
.card-meta .sep { color: #666666; }

/* contact form */
form { margin-bottom: 12px; }
.field { margin-bottom: 10px; }
label { display: block; font-size: 12px; color: #666666; margin-bottom: 4px; }
input[type="text"], input[type="email"], textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 3px;
  padding: 8px 10px;
  color: #d8d8d8;
  font-family: inherit;
  font-size: 13px;
  line-height: 1.5;
}
input:focus, textarea:focus { outline: none; border-color: #454545; }
textarea { resize: vertical; min-height: 110px; }
button {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 3px;
  padding: 8px 18px;
  color: #4ec94e;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
}
button:hover { border-color: #4ec94e; }
button:disabled { color: #666666; border-color: #2a2a2a; cursor: default; }
/* hcaptcha widget — only present on /contact */
.h-captcha { margin-bottom: 12px; }
/* honeypot — hidden from humans, irresistible to bots */
.botcheck { display: none !important; }
#form-status { font-size: 12px; min-height: 1.7em; }
.ok { color: #4ec94e; }
.err { color: #ff6a00; }
