:root {
  --bg: #000000;
  --surface: #0D0D0D;
  --border: rgba(255,255,255,0.08);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255,255,255,0.6);
  --text-muted: rgba(255,255,255,0.4);
  --green: #16EC93;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
}

.topglow {
  position: fixed;
  top: -200px;
  left: 0;
  right: 0;
  height: 400px;
  background: radial-gradient(ellipse at top, rgba(29,158,117,0.35) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wordmark {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  line-height: 1.3;
  display: block;
}
.wordmark .hybrid { color: #fff; display: block; }
.wordmark .trakr { color: var(--green); display: block; font-size: 10px; letter-spacing: 3px; }

nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  margin-left: 24px;
  transition: color 150ms ease-out;
}
nav a:hover, nav a.active { color: var(--text-primary); }

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 80px;
  position: relative;
  z-index: 1;
}

h1 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

h2 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

p, li {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

ul {
  padding-left: 20px;
  margin-bottom: 14px;
}
li { margin-bottom: 8px; }

.highlight-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  margin: 20px 0;
}
.highlight-box p:last-child { margin-bottom: 0; }

a.inline-link {
  color: var(--green);
  text-decoration: none;
}
a.inline-link:hover { text-decoration: underline; }

footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  margin-top: 40px;
}
.footer-wrap {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-wrap p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
  margin-left: 16px;
}
.footer-links a:hover { color: var(--text-secondary); }

.contact-hero {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.contact-hero .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.contact-hero h1 {
  margin-bottom: 12px;
}
.contact-hero .updated {
  margin-bottom: 0;
  font-size: 15px;
  color: var(--text-secondary);
}

.form-card {
  max-width: 440px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.form-card h2 {
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 6px;
}
.form-card .required-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.field label .req { color: #E24B4A; }
.field input,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text-primary);
  font-family: inherit;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-muted); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
}
.field textarea { min-height: 110px; resize: vertical; }

.btn-submit {
  background: var(--green);
  color: #04140D;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}
.btn-submit:hover { opacity: 0.9; }

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
  margin-bottom: 0;
}

.form-status {
  font-size: 13px;
  color: var(--green);
  margin-top: 14px;
  margin-bottom: 0;
  display: none;
}

@media (max-width: 600px) {
  .form-card { padding: 24px 20px; }
  nav a { margin-left: 14px; font-size: 12px; }
  h1 { font-size: 26px; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
  .footer-links a { margin-left: 0; margin-right: 16px; }
}
