:root {
  color-scheme: dark;
  --bg: #0b0f14;
  --bg-2: #101720;
  --surface: #151d27;
  --surface-2: #1d2733;
  --text: #f2f6f8;
  --muted: #a8b4c0;
  --soft: #d8e2e8;
  --cyan: #1fd6ff;
  --accent-readable: var(--cyan);
  --amber: #ffb547;
  --mint: #7df0bd;
  --coral: #ff6f61;
  --white-rgb: 255, 255, 255;
  --ink-rgb: 17, 24, 33;
  --cyan-rgb: 31, 214, 255;
  --amber-rgb: 255, 181, 71;
  --line: rgba(var(--white-rgb), 0.14);
  --line-strong: rgba(var(--white-rgb), 0.24);
  --max: 920px;
  --radius: 8px;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  line-height: 1.65;
  letter-spacing: 0;
}

a {
  color: var(--accent-readable);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-shell {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.trust-header,
.trust-footer {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.trust-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  margin-top: 56px;
  padding: 26px 0;
  color: var(--muted);
}

.trust-nav,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.trust-nav {
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
}

.brand img {
  width: 32px;
  height: 32px;
}

.nav-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nav-links a,
.footer-links a {
  color: var(--soft);
  font-weight: 700;
}

main {
  padding: 52px 0 0;
}

.eyebrow {
  color: var(--amber);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  margin-top: 10px;
  font-size: clamp(2rem, 5vw, 4rem);
}

h2 {
  font-size: 1.35rem;
  margin-top: 28px;
}

p,
li {
  color: var(--soft);
}

.lead {
  color: var(--soft);
  font-size: 1.04rem;
  max-width: 760px;
}

.panel {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
  margin-top: 22px;
}

.panel strong {
  color: var(--text);
}

.warning {
  border-color: rgba(var(--amber-rgb), 0.42);
  background: rgba(var(--amber-rgb), 0.08);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 9px 15px;
  color: var(--text);
  font-weight: 800;
  background: var(--surface-2);
}

.btn:hover {
  border-color: var(--cyan);
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid rgba(var(--cyan-rgb), 0.48);
  outline-offset: 2px;
}

@media (prefers-color-scheme: light) {
  :root {
    color-scheme: light;
    --bg: #ffffff;
    --bg-2: #eef3f6;
    --surface: #ffffff;
    --surface-2: #eef3f6;
    --text: #111821;
    --muted: #526170;
    --soft: #243140;
    --accent-readable: #007c91;
    --line: rgba(var(--ink-rgb), 0.12);
    --line-strong: rgba(var(--ink-rgb), 0.24);
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 20px, var(--max));
  }

  .trust-nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0;
  }

  .button-row,
  .btn {
    width: 100%;
  }
}
