:root {
  color-scheme: dark;
  --bg: #070a12;
  --surface: #10131d;
  --surface-strong: #151925;
  --line: #292e3c;
  --text: #f7f8fc;
  --muted: #a7adbc;
  --cyan: #00e5f5;
  --blue: #168bff;
  --green: #25e6a4;
  --purple: #a83ffc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(7, 10, 18, 0.92);
  backdrop-filter: blur(14px);
}

.header-inner,
.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Sora", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.footer-links a:hover {
  color: var(--text);
}

.nav-links .page-language-link {
  display: inline-flex;
  min-width: 34px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--blue);
  border-radius: 7px;
  background: var(--blue);
  color: white !important;
  font-weight: 700;
  text-decoration: none;
}

.button:hover {
  background: #0878e8;
}

main {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0 96px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Sora", system-ui, sans-serif;
  line-height: 1.2;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 3.2rem;
}

h2 {
  margin-bottom: 18px;
  font-size: 1.65rem;
}

h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.lead {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.updated {
  margin: 18px 0 0;
  color: #7f8798;
  font-size: 0.85rem;
}

.trust-section {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.trust-section > p,
.trust-section > ul {
  color: var(--muted);
}

.steps,
.summary-grid {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.steps {
  counter-reset: step;
}

.step,
.summary-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.step {
  position: relative;
  padding: 24px 24px 24px 70px;
  counter-increment: step;
}

.step::before {
  content: counter(step);
  position: absolute;
  top: 23px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(22, 139, 255, 0.14);
  color: #7bc1ff;
  font-weight: 800;
}

.step p,
.summary-item p {
  margin: 0;
  color: var(--muted);
}

.summary-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.summary-item {
  padding: 22px;
}

.plain-list {
  margin: 20px 0 0;
  padding-left: 22px;
}

.plain-list li + li {
  margin-top: 12px;
}

.callout {
  margin-top: 30px;
  padding: 20px 22px;
  border-left: 3px solid var(--green);
  background: var(--surface-strong);
  color: var(--muted);
}

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

.contact-link {
  color: #79c5ff;
}

.final-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 72px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.final-action h2,
.final-action p {
  margin-bottom: 0;
}

.final-action p {
  margin-top: 8px;
  color: var(--muted);
}

footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 760px) {
  .header-inner,
  .footer-inner,
  main {
    width: min(100% - 32px, 900px);
  }

  .nav-links a:not(.button):not(.page-language-link) {
    display: none;
  }

  main {
    padding: 52px 0 72px;
  }

  h1 {
    font-size: 2.25rem;
  }

  .lead {
    font-size: 1.02rem;
  }

  .trust-section {
    margin-top: 54px;
    padding-top: 38px;
  }

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

  .final-action,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-action .button {
    width: 100%;
  }

  .footer-inner {
    padding: 26px 0;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
