:root {
  color-scheme: light;
  --ink: #171825;
  --muted: #62667a;
  --primary: #5368b2;
  --primary-dark: #3f5197;
  --primary-soft: #eef1ff;
  --line: #e7e8ef;
  --surface: rgba(255, 255, 255, 0.92);
  --background: #f6f6fb;
  --success: #23885f;
  --shadow: 0 22px 60px rgba(49, 54, 93, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% -8%, rgba(114, 98, 239, 0.16), transparent 34rem),
    radial-gradient(circle at 95% 8%, rgba(83, 104, 178, 0.13), transparent 28rem),
    var(--background);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary-dark);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--primary);
}

.site-header,
.site-footer,
.page {
  width: min(100% - 32px, 960px);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(65, 78, 151, 0.22);
}

.language-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.language-nav a {
  min-width: 42px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.language-nav a[aria-current="page"] {
  color: #fff;
  background: var(--primary);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 7vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 34px;
  background: linear-gradient(145deg, #5368b2 0%, #6655db 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.hero::after {
  position: absolute;
  width: 280px;
  height: 280px;
  top: -140px;
  right: -80px;
  border: 52px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(40px, 8vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-copy {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2.4vw, 21px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

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

.button-primary {
  color: var(--primary-dark);
  background: #fff;
  box-shadow: 0 10px 24px rgba(30, 25, 88, 0.18);
}

.button-primary:hover {
  color: var(--primary);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.button-secondary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.section {
  padding-block: clamp(46px, 7vw, 72px) 0;
}

.section-heading {
  max-width: 660px;
  margin-bottom: 28px;
}

.section-heading .eyebrow {
  color: var(--primary);
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 39px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

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

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

.card,
.policy-card,
.contact-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(49, 54, 93, 0.055);
}

.card {
  padding: 26px;
  border-radius: 22px;
}

.card p {
  margin: 8px 0 0;
}

.card-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 14px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-size: 21px;
  font-weight: 800;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 46px);
  border-radius: 28px;
}

.contact-card p {
  max-width: 560px;
  margin: 8px 0 0;
  color: var(--muted);
}

.contact-card .button {
  flex: none;
  color: #fff;
  background: var(--primary);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--success);
  background: #eaf8f2;
  font-size: 14px;
  font-weight: 700;
}

.status-pill::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.policy-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
  gap: 24px;
  padding-top: 34px;
}

.policy-nav {
  position: sticky;
  top: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.policy-nav a {
  display: block;
  padding: 7px 9px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.policy-nav a:hover {
  color: var(--primary-dark);
  background: var(--primary-soft);
}

.policy-content {
  display: grid;
  gap: 16px;
}

.policy-card {
  padding: clamp(24px, 4vw, 38px);
  border-radius: 24px;
  scroll-margin-top: 20px;
}

.policy-card h2 {
  font-size: clamp(24px, 3vw, 30px);
}

.policy-card p:last-child,
.policy-card ul:last-child {
  margin-bottom: 0;
}

.policy-card li + li {
  margin-top: 8px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 72px;
  padding-block: 30px 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

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

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 18px;
  }

  .language-nav {
    align-self: stretch;
    justify-content: space-around;
  }

  .hero {
    border-radius: 26px;
  }

  .grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-nav {
    position: static;
    display: flex;
    overflow-x: auto;
    gap: 2px;
    scrollbar-width: none;
  }

  .policy-nav a {
    flex: none;
  }

  .contact-card,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-card .button {
    width: 100%;
  }
}

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

  .button {
    transition: none;
  }
}
