:root {
  --ink: #22242a;
  --muted: #667085;
  --line: #dde3ea;
  --paper: #ffffff;
  --soft: #f5f7fa;
  --green: #0f766e;
  --coral: #e85d4f;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a { color: var(--green); text-underline-offset: 3px; }

.policy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 850;
  text-decoration: none;
}

.brand img { width: 36px; height: 36px; border-radius: 8px; }

.back-link { font-weight: 750; text-decoration: none; }

.policy-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.28fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 56px 0 80px;
}

.policy-nav { position: sticky; top: 28px; align-self: start; display: grid; gap: 8px; }
.policy-nav strong { margin-bottom: 6px; }
.policy-nav a { color: var(--muted); font-size: 0.94rem; text-decoration: none; }
.policy-nav a:hover { color: var(--green); }

.policy-document {
  padding: clamp(24px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 18px 45px rgba(25, 32, 44, 0.08);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 { margin: 0; font-size: clamp(2.2rem, 5vw, 4.2rem); line-height: 1; letter-spacing: -0.04em; }
h2 { margin: 42px 0 12px; font-size: 1.45rem; line-height: 1.25; }
h3 { margin: 24px 0 8px; font-size: 1.05rem; }
p, li { color: #3d4652; }
.updated { margin: 14px 0 28px; color: var(--muted); font-weight: 700; }
.lead { font-size: 1.08rem; }

.callout {
  margin: 28px 0;
  padding: 16px 18px;
  border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0;
  background: #eef8f5;
}

.warning { border-left-color: var(--coral); background: #fff4f1; }
ul { padding-left: 22px; }
li + li { margin-top: 7px; }

.policy-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 28px;
  color: white;
  background: #17211f;
}

.policy-footer a { color: white; font-weight: 750; }

@media (max-width: 760px) {
  .policy-layout { grid-template-columns: 1fr; padding-top: 28px; }
  .policy-nav { position: static; grid-template-columns: repeat(2, 1fr); }
  .policy-nav strong { grid-column: 1 / -1; }
  .policy-document { padding: 24px 20px; }
}
