/* static.css — shared style for landing, privacy, terms */

/* Match app font setup (Trade Gothic Next) */
@import url('https://fonts.googleapis.com/css2?family=Trade+Gothic+Next:wght@400;500;600;700&display=swap');

:root {
  --bg: #0b1220;          /* deep slate-ish */
  --panel: rgba(255,255,255,0.06);
  --panel-border: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --link: #93c5fd;        /* soft blue */
  --link-hover: #bfdbfe;
  --accent: #fb923c;      /* orange-ish accent similar to your theme focus */
}

* {
  font-family: "Trade Gothic Next", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(1200px 800px at 20% 0%, rgba(37,99,235,0.18), transparent 60%),
              radial-gradient(900px 700px at 90% 10%, rgba(249,115,22,0.16), transparent 55%),
              var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hover); text-decoration: underline; }

.page {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 16px;
}

.card {
  width: 100%;
  max-width: 860px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.nav a {
  margin-left: 14px;
  font-weight: 600;
  color: var(--muted);
}
.nav a:hover { color: var(--text); }

h1 {
  margin: 8px 0 10px;
  font-size: 32px;
  line-height: 1.15;
}

h2 {
  margin: 20px 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
}

p, li { color: var(--muted); font-size: 16px; }
ul { padding-left: 22px; }

.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 6px 10px;
  margin-bottom: 10px;
}

.footer {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
  font-weight: 700;
  text-decoration: none;
}
.button:hover {
  background: rgba(255,255,255,0.12);
  text-decoration: none;
}
