@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #17231f;
  --muted: #64716b;
  --line: #d8e1db;
  --paper: #f6f8f3;
  --white: #ffffff;
  --green: #176b4d;
  --green-dark: #0c4935;
  --lime: #d9f36b;
  --warm: #f2ede2;
  --shadow: 0 24px 70px rgba(34, 56, 42, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Manrope', sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
.site-header {
  background: var(--green-dark);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.header-inner, .page-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--lime);
  color: var(--green-dark);
  font-weight: 800;
  letter-spacing: -.04em;
}
.brand strong, .brand small { display: block; line-height: 1.2; }
.brand strong { font-size: 15px; letter-spacing: -.02em; }
.brand small { margin-top: 4px; color: #b9d7c6; font-size: 11px; font-family: 'DM Mono', monospace; }
.secure-label { color: #b9d7c6; font-size: 12px; font-family: 'DM Mono', monospace; }
.intro { padding: 82px 0 46px; max-width: 700px; }
.eyebrow { margin: 0 0 10px; color: var(--green); font: 500 11px 'DM Mono', monospace; letter-spacing: .12em; }
.site-header .eyebrow { color: var(--lime); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 18px; font-size: clamp(42px, 7vw, 78px); line-height: .98; letter-spacing: -.07em; font-weight: 800; }
.intro-copy { max-width: 570px; margin-bottom: 18px; color: var(--muted); font-size: 18px; }
.updated { margin: 0; color: var(--green); font: 500 12px 'DM Mono', monospace; }
.policy-tabs { display: flex; gap: 8px; margin-bottom: 20px; }
.tab-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 19px;
  color: var(--muted);
  background: transparent;
  font: 600 13px 'Manrope', sans-serif;
  cursor: pointer;
  transition: .2s ease;
}
.tab-button:hover { border-color: var(--green); color: var(--green); }
.tab-button.active { border-color: var(--green); background: var(--green); color: var(--white); }
.policy-panel { padding: 42px; background: var(--white); border: 1px solid var(--line); border-radius: 4px; box-shadow: var(--shadow); animation: rise .35s ease both; }
.hidden { display: none; }
.panel-heading { display: flex; align-items: flex-start; gap: 18px; padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.panel-icon { display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 42px; border-radius: 50%; background: var(--warm); color: var(--green); font: 500 12px 'DM Mono', monospace; }
h2 { margin: 0; font-size: clamp(28px, 4vw, 44px); line-height: 1.05; letter-spacing: -.055em; }
.policy-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 40px; }
.policy-section { padding: 30px 0; border-bottom: 1px solid var(--line); }
.policy-section.wide { grid-column: 1 / -1; }
.policy-section h3 { margin-bottom: 9px; font-size: 17px; letter-spacing: -.02em; }
.policy-section p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.policy-section ol { margin: 14px 0; padding-left: 20px; color: var(--muted); font-size: 14px; }
.policy-section li { padding: 3px 0; }
.deletion { border-left: 3px solid var(--lime); padding-left: 22px; }
.contact-block { border-bottom: 0; padding-bottom: 8px; }
.contact-link { display: inline-flex; gap: 8px; margin-top: 18px; color: var(--green); font: 500 13px 'DM Mono', monospace; text-decoration: none; border-bottom: 1px solid var(--green); }
.site-footer { display: flex; justify-content: space-between; gap: 20px; padding: 26px 0 42px; color: var(--muted); font: 500 11px 'DM Mono', monospace; }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 680px) {
  .header-inner, .page-shell { width: min(100% - 28px, 1120px); }
  .header-inner { min-height: 72px; }
  .secure-label { display: none; }
  .intro { padding: 58px 0 34px; }
  h1 { font-size: 51px; }
  .intro-copy { font-size: 16px; }
  .policy-tabs { display: grid; grid-template-columns: 1fr 1fr; }
  .tab-button { padding: 11px 8px; font-size: 12px; }
  .policy-panel { padding: 25px 20px; }
  .policy-grid { display: block; }
  .panel-heading { padding-bottom: 25px; }
  .policy-section { padding: 24px 0; }
  .deletion { padding-left: 16px; }
  .site-footer { display: block; line-height: 2; }
  .site-footer span { display: block; }
}
