:root {
  --bg: #080a09;
  --surface: #131715;
  --surface-elevated: #1a1f1c;
  --border: #2a322e;
  --text: #f4f7f5;
  --text-secondary: #9aa39e;
  --text-muted: #6f7873;
  --accent: #3dff7a;
  --accent-dim: #163322;
  --radius: 16px;
  --max: 1080px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-thickness: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 20;
  background: var(--accent);
  color: var(--bg);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.site-header,
.site-footer {
  border-color: var(--border);
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding: 32px 20px;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  min-height: 72px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: inherit;
  text-decoration: none;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.brand-by {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: var(--surface);
  color: var(--accent);
}

main {
  padding: 48px 0 72px;
}

.hero {
  padding: 24px 0 16px;
}

.kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.lede {
  max-width: 42rem;
  color: var(--text-secondary);
  font-size: 1.125rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.card h2 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.card p {
  margin: 0;
  color: var(--text-secondary);
}

.privacy-first {
  margin-top: 48px;
  background: var(--accent-dim);
  border-color: #245536;
}

.disclaimer {
  margin-top: 48px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a,
.site-footer p {
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.page-meta {
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.lang-switch {
  margin: 0 0 24px;
}

.policy h2 {
  margin-top: 40px;
  font-size: 1.35rem;
}

.policy p,
.policy li {
  color: var(--text-secondary);
}

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

.policy ul {
  padding-left: 1.2rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

th,
td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

th {
  background: var(--surface-elevated);
  color: var(--text);
  font-size: 0.85rem;
}

td {
  color: var(--text-secondary);
}

.contact-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.contact-block p {
  margin: 0 0 8px;
}

.note {
  color: var(--text-muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
