:root {
  color-scheme: dark;
  --bg: #07090d;
  --panel: #101722;
  --panel-2: #151f2b;
  --text: #eef6ff;
  --muted: #9fb0c2;
  --line: #27394c;
  --accent: #4fe3ff;
  --accent-2: #ffcf5a;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 0%, rgba(79, 227, 255, 0.14), transparent 30rem),
    linear-gradient(180deg, #07090d 0%, #0a1018 48%, #07090d 100%);
  color: var(--text);
  font: 16px/1.58 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(1080px, calc(100% - 40px)); margin: 0 auto; }
header { border-bottom: 1px solid var(--line); background: rgba(7, 9, 13, 0.86); position: sticky; top: 0; backdrop-filter: blur(14px); }
.top { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 0; }
.brand { font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
nav { display: flex; flex-wrap: wrap; gap: 14px; font-size: 14px; }
nav a { color: var(--muted); }
.hero { padding: 54px 0 32px; }
.kicker { color: var(--accent-2); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; }
h1 { margin: 10px 0 12px; font-size: clamp(34px, 7vw, 70px); line-height: 0.96; letter-spacing: 0; }
.desc { max-width: 760px; color: var(--muted); font-size: 18px; }
main { padding-bottom: 60px; }
section { margin: 18px 0; padding: 24px; background: linear-gradient(180deg, rgba(16,23,34,0.96), rgba(10,16,24,0.96)); border: 1px solid var(--line); border-radius: 8px; }
h2 { margin: 0 0 12px; font-size: 22px; }
p { margin: 0 0 12px; }
p:last-child { margin-bottom: 0; }
.links { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 10px; margin-top: 12px; }
.link-card { display: block; padding: 14px 16px; background: var(--panel-2); border: 1px solid var(--line); border-radius: 6px; font-weight: 700; }
table { width: 100%; border-collapse: collapse; margin-top: 14px; overflow-wrap: anywhere; }
th, td { border: 1px solid var(--line); padding: 12px; text-align: left; vertical-align: top; }
th { color: var(--accent-2); background: rgba(255, 207, 90, 0.07); }
td { color: #dbe7f5; }
footer { border-top: 1px solid var(--line); color: var(--muted); padding: 24px 0 40px; font-size: 14px; }
.meta { color: var(--muted); font-size: 14px; margin-top: 18px; }
.support-form { display: grid; gap: 12px; margin-top: 16px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
label { display: grid; gap: 6px; color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #09111a;
  color: var(--text);
  padding: 12px 13px;
  font: inherit;
}
textarea { min-height: 140px; resize: vertical; }
.hidden-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.submit-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
button {
  border: 1px solid rgba(79, 227, 255, 0.58);
  border-radius: 6px;
  background: rgba(79, 227, 255, 0.12);
  color: var(--text);
  padding: 11px 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
button:disabled { cursor: wait; opacity: 0.55; }
.form-status { color: var(--accent-2); font-size: 14px; }
@media (max-width: 720px) {
  .wrap { width: min(100% - 24px, 1080px); }
  .top { align-items: flex-start; flex-direction: column; }
  section { padding: 18px; }
  table { display: block; overflow-x: auto; }
  .form-grid { grid-template-columns: 1fr; }
}