:root {
  color-scheme: dark;
  --background: #101113;
  --surface: #1a1b1d;
  --surface-raised: #202225;
  --text: #eaeaec;
  --muted: #9a9ca0;
  --line: rgba(255, 255, 255, 0.11);
  --accent: #fe5000;
  --accent-soft: rgba(254, 80, 0, 0.12);
  --max-width: 980px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 8%, rgba(254, 80, 0, 0.09), transparent 30rem),
    var(--background);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

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

.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.wordmark span {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.31em;
  margin-right: -0.31em;
}

.wordmark small {
  margin-top: 6px;
  font-size: 7px;
  letter-spacing: 0.4em;
  margin-right: -0.4em;
  color: var(--muted);
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 160ms ease;
}

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

.hero {
  padding: 108px 0 94px;
  max-width: 780px;
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.hero h1,
.policy-header h1 {
  margin: 20px 0 24px;
  font-size: clamp(46px, 8vw, 78px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 610;
}

.lead {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2.4vw, 20px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: transform 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--accent);
  color: white;
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  min-height: 220px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
}

.number {
  color: var(--accent);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.card h2 {
  margin: 54px 0 8px;
  font-size: 20px;
}

.card p,
.support-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.support-panel {
  margin: 90px 0 38px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.support-panel h2 {
  margin: 8px 0 6px;
  font-size: 28px;
}

.email-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

footer {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

footer a {
  color: var(--muted);
  text-decoration: none;
}

.policy-shell {
  max-width: 780px;
}

.policy-header {
  padding: 86px 0 58px;
  border-bottom: 1px solid var(--line);
}

.policy-header h1 {
  font-size: clamp(44px, 7vw, 66px);
}

.policy-summary {
  margin: 0 0 10px;
  font-size: 20px;
}

.updated {
  color: var(--muted);
  font-size: 13px;
}

.policy-content {
  padding: 32px 0 50px;
}

.policy-content section {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.policy-content h2 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.4;
}

.policy-content p {
  margin: 0;
  color: #c3c4c7;
  font-size: 15px;
}

.policy-content a {
  color: var(--accent);
  text-underline-offset: 3px;
}

.language-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.language-divider::before,
.language-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.english-header {
  padding: 34px 0 12px;
}

.english-header h2 {
  font-size: 34px;
}

.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;
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .topbar {
    min-height: 76px;
  }

  .hero {
    padding: 76px 0 68px;
  }

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

  .card {
    min-height: 170px;
  }

  .card h2 {
    margin-top: 32px;
  }

  .support-panel {
    margin-top: 60px;
    padding: 26px;
    align-items: flex-start;
    flex-direction: column;
  }

  .policy-header {
    padding: 66px 0 44px;
  }
}

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

  .button,
  .nav-link {
    transition: none;
  }
}
