:root {
  color-scheme: light;
  --ink: #151515;
  --muted: #62676f;
  --line: #d9dde2;
  --surface: #ffffff;
  --soft: #f3f5f7;
  --accent: #c82128;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
}

a {
  color: inherit;
}

.policy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.policy-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.policy-brand span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: white;
  background: linear-gradient(135deg, var(--accent), #2a2a2a);
  font-weight: 900;
}

.policy-header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 20px;
  color: #333942;
  font-size: 0.9rem;
}

.policy-header nav a {
  text-decoration: none;
}

.policy-main {
  width: min(100% - 36px, 1120px);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 92px) 0;
}

.policy-hero {
  max-width: 820px;
  margin-bottom: clamp(42px, 6vw, 72px);
}

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

.policy-hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.98;
}

.policy-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.updated {
  font-size: 0.82rem !important;
  font-weight: 800;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 90px);
}

.policy-nav {
  position: sticky;
  top: 24px;
  align-self: start;
  display: grid;
  gap: 10px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.policy-nav strong {
  margin-bottom: 4px;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.policy-nav a {
  color: var(--muted);
  font-size: 0.9rem;
}

.policy-content {
  min-width: 0;
}

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

.policy-content section:last-child {
  border: 0;
  margin-bottom: 0;
}

.policy-content h2 {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.policy-content h3 {
  margin: 24px 0 10px;
  font-size: 1.05rem;
}

.policy-content p,
.policy-content li {
  color: #424850;
  line-height: 1.7;
}

.policy-content ul,
.policy-content ol {
  padding-left: 22px;
}

.policy-content a {
  color: var(--accent);
  font-weight: 800;
}

.notice {
  padding: 18px;
  border-left: 4px solid var(--accent);
  background: #fff5f5;
}

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

.contact-block {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.contact-block h2,
.contact-block h3 {
  margin-top: 0;
}

.policy-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.68);
  background: #030303;
}

.policy-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 18px;
}

.policy-footer a {
  color: white;
}

@media (max-width: 760px) {
  .policy-header {
    align-items: flex-start;
  }

  .policy-brand strong {
    display: none;
  }

  .policy-header nav {
    gap: 12px;
    font-size: 0.8rem;
  }

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

  .policy-nav {
    position: static;
  }

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

  .policy-footer {
    display: grid;
  }

  .policy-footer nav {
    justify-content: start;
  }
}
