:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1d2b3a;
  background: #f7fafc;
  --blue: #1686d9;
  --green: #4fb84f;
  --ink: #16283a;
  --muted: #637286;
  --line: #dce7ef;
  --panel: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 252, 0.98)),
    url('/images/hero-pattern.png');
  background-size: auto, 900px auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 0 5vw;
  border-bottom: 1px solid rgba(220, 231, 239, 0.9);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand__yovo {
  color: var(--blue);
}

.brand__ads {
  color: var(--green);
}

.site-nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #40546a;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--blue);
}

.policy-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 24px 84px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 52px;
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-top: 38px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

p,
li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.64;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
}

.notice,
.policy-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 16px 36px rgba(44, 67, 89, 0.08);
}

.notice {
  margin: 28px 0;
  padding: 22px;
}

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

.policy-card {
  padding: 20px;
}

.check-list {
  padding-left: 20px;
}

.link-list {
  display: grid;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.link-list a {
  color: var(--blue);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 5vw;
  border-top: 1px solid var(--line);
  color: #637286;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  h1 {
    font-size: 38px;
  }

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

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
