:root {
  --bg: #0a0a0f;
  --surface: #111118;
  --surface2: #1a1a24;
  --border: #2a2a3a;
  --accent: #7c5cfc;
  --accent2: #00e5a0;
  --text: #e8e8f0;
  --muted: #6b6b8a;
}
/* Light theme — token values match dashboard/index.html so the toggle
   propagates the same look across home, pricing and every policy page. */
[data-theme="light"] {
  --bg: #f5f5f7;
  --surface: #ffffff;
  --surface2: #f0f0f4;
  --border: #e0e0e6;
  --accent: #6a4ceb;
  --accent2: #00b882;
  --text: #1a1a2e;
  --muted: #6b6b8a;
}
[data-theme="light"] .section { box-shadow: 0 2px 12px rgba(0,0,0,0.05); }

/* Floating theme toggle — matches the home-page button (40×40, rounded
   corner, accent border on hover). Fixed top-right so it never collides
   with page content. */
.theme-toggle-fixed {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 100;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: inherit;
  transition: border-color 0.2s, transform 0.2s;
}
.theme-toggle-fixed:hover { border-color: var(--accent); transform: translateY(-1px); }
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Syne', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px 0;
}
.logo {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 40px;
  cursor: pointer;
}
.logo span { color: var(--accent); }
.logo a { color: inherit; text-decoration: none; }
main {
  max-width: 760px;
  width: 100%;
}
h1 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}
h1 em { color: var(--accent); font-style: normal; }
.effective {
  font-size: 13px;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
  margin-bottom: 40px;
}
h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--text);
}
h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--accent2);
}
p, li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 12px;
}
ul, ol {
  padding-left: 22px;
  margin-bottom: 16px;
}
li { margin-bottom: 6px; }
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover { text-decoration: underline; }
code {
  background: var(--surface2);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--accent2);
}
.section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 20px;
}
.address-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text);
  margin: 16px 0;
}
