:root {
  --c1: #7A91B3;
  --c2: #B0B5CB;
  --c3: #C8C0D2;
  --c4: #DCC2D0;
  --c5: #EFC5B0;
  --c6: #EFB070;

  --ink: #1a1f2e;
  --ink-soft: rgba(26, 31, 46, 0.62);
  --ink-faint: rgba(26, 31, 46, 0.38);
  --accent: #2B185A;
  --paper: #fbfaf6;

  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  background: #fff;
  min-height: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.canvas {
  background:
    linear-gradient(
      180deg,
      var(--c1) 0%,
      var(--c2) 18%,
      var(--c3) 38%,
      var(--c4) 58%,
      var(--c5) 80%,
      var(--c6) 100%
    );
  min-height: 100vh;
}

.canvas::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.24;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.45 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.static-canvas {
  background: var(--paper);
  min-height: 100vh;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark img {
  width: 36px;
  height: 36px;
  border-radius: 8.5px;
  display: block;
}

.brand-mark span {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  width: 172px;
  text-decoration: none;
  transition: transform 200ms cubic-bezier(.2,.7,.2,1);
}

.app-store-badge:hover {
  transform: translateY(-2px);
}

.app-store-badge img {
  display: block;
  width: 100%;
  height: auto;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 0;
  color: rgba(26, 31, 46, 0.52);
  font-size: 13px;
}

footer nav {
  display: flex;
  gap: 22px;
}

footer a {
  color: inherit;
  text-decoration: none;
  transition: opacity 160ms ease;
}

footer a:hover {
  opacity: 0.65;
}

.static-page {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 32px 0;
}

.static-header {
  margin: 0 0 28px;
}

.static-card {
  background: #fff;
  border: 1px solid rgba(26, 31, 46, 0.08);
  border-radius: 18px;
  box-shadow:
    0 1px 2px rgba(26, 31, 46, 0.04),
    0 16px 42px rgba(26, 31, 46, 0.08);
  padding: 38px;
  line-height: 1.62;
}

.static-card h1 {
  margin: 0 0 6px;
  font-size: clamp(32px, 5vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.static-card h2 {
  margin: 34px 0 10px;
  font-size: 17px;
  line-height: 1.25;
}

.static-card p {
  margin: 0 0 14px;
  color: rgba(26, 31, 46, 0.78);
}

.static-card ul {
  margin: 0 0 18px;
  padding-left: 1.25rem;
  color: rgba(26, 31, 46, 0.78);
}

.static-card li {
  margin-bottom: 0.4rem;
}

.static-card a {
  color: var(--accent);
  font-weight: 650;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.effective,
.updated {
  color: rgba(26, 31, 46, 0.55);
  margin-bottom: 28px;
  font-size: 14px;
  font-weight: 600;
}

.lang-picker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(43, 24, 90, 0.12);
  color: rgba(26, 31, 46, 0.6);
  font-size: 14px;
}

.lang-picker label {
  font-weight: 650;
}

.lang-picker select {
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(26, 31, 46, 0.16);
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
}

.language-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 18px;
}

.language-links a {
  color: var(--accent);
  font-weight: 650;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 720px) {
  .brand-mark img {
    width: 32px;
    height: 32px;
    border-radius: 7.5px;
  }

  .brand-mark span {
    font-size: 17px;
  }

  .app-store-badge {
    width: 164px;
  }

  .static-page {
    padding: 24px 18px 0;
  }

  .static-header {
    margin-bottom: 20px;
  }

  .static-card {
    padding: 26px 20px;
    border-radius: 18px;
  }

  footer {
    flex-direction: column;
    gap: 10px;
    text-align: left;
  }
}
