:root { color-scheme: dark; --bg: #050606; --panel: #101315; --line: #2b3237; --text: #f5f7f4; --muted: #a3aaa6; --green: #86ff74; --cyan: #54f0d1; }
* { box-sizing: border-box; }
html, body { min-height: 100%; margin: 0; background: var(--bg); color: var(--text); }
body { font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; letter-spacing: 0; }
a { color: inherit; }
.shell { width: min(1080px, calc(100% - 32px)); margin: 0 auto; }
.bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 68px; border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.back { color: var(--muted); text-decoration: none; }
main { padding: clamp(42px, 7vw, 76px) 0; }
.eyebrow { display: inline-block; margin-bottom: 16px; color: var(--green); font-size: 12px; font-weight: 800; text-transform: uppercase; }
h1 { max-width: 680px; margin: 0; font-size: clamp(38px, 8vw, 68px); line-height: 1; }
.lede { max-width: 640px; margin: 20px 0 36px; color: var(--muted); font-size: 18px; line-height: 1.55; }
.grid, .feedback-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.card { padding: 20px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); }
.card h2 { margin: 0 0 8px; font-size: 17px; }
.card p { margin: 0; color: var(--muted); line-height: 1.55; }
.action { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; margin-top: 16px; padding: 0 18px; border-radius: 999px; background: linear-gradient(135deg, #c9ff6d, var(--cyan)); color: #07110b; font-weight: 800; text-decoration: none; }
.form-card { scroll-margin-top: 20px; padding: 24px; }
.form-heading { min-height: 116px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.form-heading h2 { margin: 10px 0 7px; font-size: 22px; }
.form-type { display: inline-flex; min-height: 26px; align-items: center; padding: 0 9px; border: 1px solid #435148; border-radius: 999px; color: #dce5de; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.bug-type { border-color: #664139; color: #ffc3b7; background: #241411; }
.idea-type { border-color: #31644e; color: #a4ffd1; background: #0e2119; }
.feedback-form { display: grid; gap: 15px; margin-top: 20px; }
.feedback-form label { display: grid; gap: 7px; color: #e4e8e5; font-size: 13px; font-weight: 700; }
.feedback-form label span { color: var(--muted); font-weight: 500; }
.feedback-form input, .feedback-form textarea {
  width: 100%;
  border: 1px solid #363f44;
  border-radius: 6px;
  outline: none;
  color: var(--text);
  background: #080b0c;
  font: inherit;
  letter-spacing: 0;
}
.feedback-form input { min-height: 44px; padding: 0 12px; }
.feedback-form textarea { min-height: 152px; padding: 12px; resize: vertical; line-height: 1.5; }
.feedback-form input:focus, .feedback-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(134, 255, 116, .1); }
.feedback-form input::placeholder, .feedback-form textarea::placeholder { color: #68706c; }
.submit-action { width: 100%; margin-top: 1px; border: 0; cursor: pointer; font: inherit; }
.submit-action:disabled { cursor: wait; opacity: .62; }
.form-status { min-height: 20px; margin: 0; color: var(--muted); font-size: 12px; }
.form-status.success { color: #8dff9d; }
.form-status.error { color: #ffaaa0; }
.website-field { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.support-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.support-item h2 { margin: 0 0 6px; font-size: 15px; }
.support-item p { margin: 0 0 8px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.support-item a { color: var(--green); font-size: 13px; font-weight: 750; text-decoration: none; }
footer { padding: 24px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
@media (max-width: 760px) {
  .grid, .feedback-grid, .support-row { grid-template-columns: 1fr; }
  .bar { min-height: 60px; }
  .form-heading { min-height: 0; }
}
