@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/inter-latin-variable.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --page-bg: #f3f7f5;
  --page-bg-soft: #e7f0eb;
  --surface: #ffffff;
  --border: #c6dace;
  --text-1: #0f1f18;
  --text-2: #2f463a;
  --text-3: #5d7668;
  --accent: #16a34a;
  --accent-strong: #15803d;
  --shadow-panel: 0 16px 42px -28px rgba(0, 0, 0, 0.72),
    0 4px 16px rgba(0, 0, 0, 0.35);
  --glow-a: rgba(34, 197, 94, 0.2);
  --glow-b: rgba(74, 222, 128, 0.12);
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --page-bg: #090c11;
    --page-bg-soft: #11151b;
    --surface: #161b22;
    --border: #2a333f;
    --text-1: #e8edf3;
    --text-2: #bcc5cf;
    --text-3: #8f9aa8;
    --accent: #4ade80;
    --accent-strong: #22c55e;
    --glow-a: rgba(148, 163, 184, 0.12);
    --glow-b: rgba(51, 65, 85, 0.2);
  }
}

html[data-theme="light"] {
  color-scheme: light;
}

html[data-theme="dark"] {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  background-color: var(--page-bg);
  background-image:
    radial-gradient(50rem 28rem at 4% -6%, var(--glow-a), transparent 58%),
    radial-gradient(34rem 24rem at 100% 0%, var(--glow-b), transparent 62%),
    linear-gradient(180deg, var(--page-bg-soft) 0%, var(--page-bg) 46%);
  background-attachment: fixed;
  color: var(--text-1);
  font-family: "Inter", "Segoe UI", "Avenir Next", "Helvetica Neue", sans-serif;
}

a {
  color: inherit;
}

.static-page {
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
  padding: 24px;
}

.static-page--centered {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.static-card {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-panel);
}

.static-card--hero {
  max-width: 56rem;
  padding: 48px 32px 72px;
  text-align: center;
}

.static-card--document {
  max-width: 56rem;
  padding: 32px;
}

.static-logo {
  width: 120px;
  height: 120px;
}

.static-copy {
  max-width: 42rem;
  margin: 0 auto;
}

.static-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.static-copy p {
  margin: 12px 0 0;
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.65;
}

.static-copy .static-copy__fine {
  color: var(--text-3);
  font-size: 0.95rem;
}

.static-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  flex-direction: column;
  align-items: center;
}

.static-button {
  display: inline-flex;
  min-width: 120px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--accent-strong);
  border-radius: 10px;
  background: var(--accent-strong);
  color: var(--page-bg);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}

.static-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  color: var(--text-2);
  font-size: 0.85rem;
  text-decoration: none;
}

.static-link:hover,
.static-link:focus-visible {
  color: var(--text-1);
  text-decoration: underline;
}

.static-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.static-meta {
  color: var(--text-3);
  font-size: 0.95rem;
}

.static-document {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.7;
}

.static-document section + section {
  margin-top: 28px;
}

.static-document h2 {
  margin: 0 0 10px;
  color: var(--text-1);
  font-size: 1.25rem;
}

.static-document p,
.static-document ul {
  margin: 0;
}

.static-document ul {
  padding-left: 20px;
}

.static-document li + li,
.static-document p + p {
  margin-top: 8px;
}

@media (max-width: 640px) {
  .static-page {
    padding: 16px;
  }

  .static-card--hero,
  .static-card--document {
    padding: 28px 20px;
    border-radius: 20px;
  }
}
