:root{
  /* Match TitanVX landing page (dark) */
  --navy:#60a5fa;

  --bg0:#000000;
  --card:rgba(255,255,255,.045);
  --card2:rgba(255,255,255,.06);
  --stroke:rgba(255,255,255,.10);
  --stroke2:rgba(255,255,255,.14);

  --text:#f3f2ff;
  --muted:rgba(243,242,255,.72);
  --muted2:rgba(243,242,255,.56);

  --accent: var(--navy);
  --glow:rgba(96,165,250,.22);
  --glow2:rgba(96,165,250,.14);

  --radius:18px;
  --shadow: 0 18px 80px rgba(0,0,0,.55);
  --max: 980px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background: var(--bg0);
  overflow-x:hidden;
}

a{ color: inherit; }
.wrap{ width:min(var(--max), calc(100% - 40px)); margin:0 auto; }

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,.72);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbarInner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:900; letter-spacing:.01em;
  text-decoration:none;
  color: rgba(243,242,255,.95);
}
.brandMark{
  width:34px; height:34px; border-radius:10px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 12px 40px rgba(0,0,0,.55);
  display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.14);
}
.brandLogo{
  width:100%;
  height:100%;
  border-radius:10px;
  object-fit:cover;
  display:block;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(243,242,255,.92);
  font-weight:800;
  font-size:13px;
  text-decoration:none;
  white-space:nowrap;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover{
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-1px);
}
.btnPrimary{
  border-color: rgba(96,165,250,.38);
  background: linear-gradient(135deg, rgba(96,165,250,.22), rgba(255,255,255,.04));
  box-shadow: 0 0 0 1px rgba(96,165,250,.10), 0 18px 70px rgba(0,0,0,.52);
}

main{ padding:42px 0 54px; }
.card{
  background: var(--card);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 22px;
}
h1{ margin:0 0 10px; font-size: clamp(28px, 3.6vw, 40px); letter-spacing:-.02em; }
h2{ margin:22px 0 10px; font-size: 18px; letter-spacing:-.01em; color: rgba(243,242,255,.92); }
p,li{ color: var(--muted); line-height:1.65; }
li + li{ margin-top:6px; }
.meta{ color: rgba(243,242,255,.60); font-weight:800; font-size:13px; margin:0 0 18px; }

/* Legal content blocks: preserve author formatting */
.legalText{
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--muted);
  line-height: 1.7;
  font-family: inherit;
  font-size: 15px;
}

@media (min-width: 860px){
  .card{ padding: 32px; }
  h2{ font-size: 19px; }
}
pre{
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--muted);
  line-height: 1.65;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 13px;
}

.form{
  display:grid; gap:12px; margin-top: 14px;
}
label{ display:grid; gap:6px; font-weight:800; color: rgba(243,242,255,.86); font-size:13px; }
input, textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(243,242,255,.92);
  padding: 12px 14px;
  font: inherit;
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(96,165,250,.34);
  box-shadow: 0 0 0 3px rgba(96,165,250,.14);
}
textarea{ min-height: 140px; resize: vertical; }
.formRow{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
@media (max-width: 720px){ .formRow{ grid-template-columns: 1fr; } }
.actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 6px; }
.note{ margin-top: 10px; font-size: 13px; color: rgba(243,242,255,.60); }

.footer{
  padding: 28px 0 40px;
  color: rgba(243,242,255,.60);
}
.footerLinks{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top: 10px;
}
.footerLinks a{
  padding:8px 10px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  text-decoration:none;
  color: rgba(243,242,255,.78);
  font-weight:750;
  font-size:13px;
  transition: background .18s ease, border-color .18s ease;
}
.footerLinks a:hover{
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
}
