:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #e9edf8;
  background: #070b17;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #070b17;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 50% -10%, rgba(88, 113, 192, 0.3), transparent 38rem),
    linear-gradient(180deg, #111a31 0, #080d1b 34rem, #070b17 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 65%);
}

main {
  width: min(100% - 32px, 880px);
  margin: 0 auto;
  padding: 72px 0 36px;
}

.hero {
  margin-bottom: 28px;
  text-align: center;
}

.brand {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  border: 1px solid rgba(238, 205, 115, 0.56);
  border-radius: 20px;
  background: linear-gradient(145deg, #f7df91, #b7822e);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35), inset 0 1px rgba(255, 255, 255, 0.75);
  color: #17101f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.05em;
  place-items: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: #e8c66d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}

.updated {
  margin: 16px 0 0;
  color: #aab3c9;
  font-size: 14px;
}

.policy {
  overflow: hidden;
  border: 1px solid rgba(189, 202, 237, 0.14);
  border-radius: 24px;
  background: rgba(15, 22, 42, 0.84);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

section {
  padding: 34px 42px;
  border-bottom: 1px solid rgba(189, 202, 237, 0.1);
}

section:last-child {
  border-bottom: 0;
}

h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: -0.02em;
}

p,
li,
address {
  color: #c6cddd;
  font-size: 16px;
  line-height: 1.72;
}

p {
  margin: 0 0 14px;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding-left: 22px;
}

li::marker {
  color: #e8c66d;
}

strong {
  color: #f4f6fb;
}

a {
  color: #f0ce76;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #ffe6a5;
}

a:focus-visible {
  border-radius: 3px;
  outline: 3px solid rgba(240, 206, 118, 0.4);
  outline-offset: 3px;
}

address {
  margin-top: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(232, 198, 109, 0.22);
  border-radius: 14px;
  background: rgba(232, 198, 109, 0.06);
  font-style: normal;
}

footer {
  padding: 28px 12px 0;
  text-align: center;
}

footer p {
  color: #7f899f;
  font-size: 13px;
}

@media (max-width: 600px) {
  main {
    width: min(100% - 20px, 880px);
    padding-top: 42px;
  }

  .brand {
    width: 58px;
    height: 58px;
    border-radius: 17px;
    font-size: 21px;
  }

  section {
    padding: 26px 22px;
  }

  p,
  li,
  address {
    font-size: 15px;
  }
}

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