:root {
  color-scheme: dark;
  --bg: #05040a;
  --panel: #0c0718;
  --panel-soft: #130a27;
  --text: #f8f4e8;
  --muted: #aaa4b7;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #ffb51b;
  --green: #35d36f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 70% 10%, rgba(75, 29, 155, 0.34), transparent 36rem),
    radial-gradient(circle at 20% 90%, rgba(255, 181, 27, 0.12), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.shell {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(53, 211, 111, 0.55);
  border-radius: 50%;
  color: var(--green);
  font-size: 20px;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--text);
}

main {
  padding: 88px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(46px, 9vw, 92px);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.6vw, 23px);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 64px;
}

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: linear-gradient(155deg, rgba(19, 10, 39, 0.9), rgba(7, 5, 13, 0.92));
}

.card h2,
.card h3 {
  margin: 0 0 14px;
  font-size: 27px;
  font-weight: 500;
}

.card p,
.card li,
.policy p,
.policy li {
  color: var(--muted);
}

.card ul,
.policy ul {
  padding-left: 20px;
}

.button {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 18px;
  background: var(--accent);
  color: #130b00;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.policy {
  max-width: 760px;
}

.policy h2 {
  margin: 58px 0 14px;
  font-size: 34px;
  font-weight: 500;
}

.language-separator {
  margin: 72px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 680px) {
  header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  header {
    justify-content: center;
    padding: 18px 0;
  }

  main {
    padding-top: 58px;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}
