:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  --bg: #050806;
  --panel: #0b110d;
  --panel-2: #101713;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.13);
  --text: #f7fbf8;
  --text-soft: #98a59d;
  --green: #5bff8a;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--bg); color: var(--text); }
body { min-width: 320px; -webkit-font-smoothing: antialiased; }
.page { min-height: 100vh; display: grid; place-items: center; padding: 32px 18px; }
.support-card { width: min(100%, 520px); padding: 30px; background: var(--panel); border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 16px 46px rgba(0,0,0,.28); }

.brand-row {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -18px 0 2px;
  overflow: hidden;
}

.here-logo {
  width: min(360px, 82vw);
  height: auto;
  display: block;
}

.eyebrow { margin: 0 0 8px; color: var(--green); font-size: .72rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
h1 { margin: 0; font-size: clamp(2rem, 8vw, 2.65rem); line-height: 1.02; letter-spacing: -.05em; }
.intro { margin: 12px 0 24px; color: var(--text-soft); line-height: 1.55; }
form { display: grid; gap: 16px; }
label { display: grid; gap: 8px; font-size: .9rem; font-weight: 800; }
input, textarea { width: 100%; border: 1px solid var(--line-strong); border-radius: 14px; background: #090e0b; color: #fff; padding: 14px 15px; outline: none; font: inherit; }
input { min-height: 52px; }
textarea { min-height: 140px; resize: vertical; }
input:focus, textarea:focus { border-color: rgba(91,255,138,.52); box-shadow: 0 0 0 3px rgba(91,255,138,.07); }
button { min-height: 54px; border: 0; border-radius: 14px; background: var(--green); color: #06140a; font: inherit; font-weight: 900; cursor: pointer; }
.direct-email { display: grid; gap: 6px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--text-soft); font-size: .86rem; }
.direct-email a { width: fit-content; color: var(--green); font-weight: 800; text-decoration: none; }
.footer { margin: 28px 0 0; color: #68736c; font-size: .76rem; text-align: center; }
.hidden-field { display: none !important; }

@media (max-width: 520px) {
  .page { align-items: start; padding-top: 28px; }
  .support-card { padding: 24px 20px; border-radius: 18px; }
  .brand-row { height: 165px; margin: -16px 0 2px; }
  .here-logo { width: min(320px, 84vw); }
}