:root {
  color-scheme: dark;
  --ink: #f4f5f7;
  --muted: #a9afbc;
  --surface: #12141b;
  --line: #2a2e39;
  --accent: #a5ff5a;
  --accent-ink: #12170e;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at 87% 5%, #283433 0, transparent 29rem), var(--surface);
  font: 16px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

main, footer { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
nav { display: flex; justify-content: space-between; align-items: center; padding: 28px 0; }
a { color: inherit; }
.brand { font-weight: 800; letter-spacing: .14em; text-decoration: none; }
.operator { color: var(--muted); font-size: .9rem; }
.hero { max-width: 850px; padding: 115px 0 140px; }
.eyebrow { margin: 0 0 20px; color: var(--accent); font-size: .78rem; font-weight: 750; letter-spacing: .14em; }
h1 { max-width: 800px; margin: 0; font-size: clamp(2.9rem, 7vw, 6.8rem); line-height: .97; letter-spacing: -.065em; }
.lead { max-width: 660px; margin: 32px 0; color: var(--muted); font-size: clamp(1.1rem, 2vw, 1.35rem); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-block; padding: 12px 18px; border: 1px solid var(--line); border-radius: 999px; font-weight: 700; text-decoration: none; }
.primary { border-color: var(--accent); color: var(--accent-ink); background: var(--accent); }
.secondary:hover, .operator:hover, footer a:hover { color: var(--accent); }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.principles article { min-height: 260px; padding: 30px 28px 30px 0; border-right: 1px solid var(--line); }
.principles article + article { padding-left: 28px; }
.principles article:last-child { border-right: 0; }
.principles span { color: var(--accent); font-weight: 750; }
h2 { margin: 58px 0 12px; font-size: 1.4rem; line-height: 1.15; }
.principles p, .status p:last-child { color: var(--muted); }
.status { max-width: 650px; padding: 120px 0; }
.status p:last-child { margin: 0; font-size: 1.35rem; }
footer { display: flex; justify-content: space-between; gap: 20px; padding: 25px 0 36px; border-top: 1px solid var(--line); color: var(--muted); font-size: .86rem; }
footer a { text-align: right; }
.analytics-consent { position: fixed; z-index: 10; right: 20px; bottom: 20px; width: min(440px, calc(100% - 40px)); padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: #1b1e27; box-shadow: 0 18px 55px #0008; }
.analytics-consent p { margin: 0 0 14px; color: var(--muted); font-size: .88rem; }
.analytics-consent div { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.analytics-consent button { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: transparent; font: inherit; font-size: .85rem; cursor: pointer; }
.analytics-consent .consent-accept { border-color: var(--accent); color: var(--accent-ink); background: var(--accent); }
.analytics-consent a { color: var(--muted); font-size: .85rem; }
.privacy-page section { max-width: 720px; padding: 80px 0 130px; }
.privacy-page section > p:not(.eyebrow) { max-width: 680px; color: var(--muted); }

@media (max-width: 720px) {
  main, footer { width: min(100% - 32px, 1120px); }
  nav { align-items: flex-start; gap: 16px; }
  .operator { text-align: right; }
  .hero { padding: 80px 0 100px; }
  .principles { grid-template-columns: 1fr; }
  .principles article, .principles article + article { min-height: auto; padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  h2 { margin-top: 34px; }
  .status { padding: 84px 0; }
  footer { flex-direction: column; }
  footer a { text-align: left; }
  .analytics-consent { right: 16px; bottom: 16px; width: calc(100% - 32px); }
}
