* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #111827;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

:root {
  --teal: #0F6E56;
  --teal-dark: #0a5241;
  --teal-light: #e6f4f0;
  --amber: #EF9F27;
  --grey-50: #f9fafb;
  --grey-100: #f3f4f6;
  --grey-200: #e5e7eb;
  --grey-400: #9ca3af;
  --grey-500: #6b7280;
  --grey-700: #374151;
  --grey-900: #111827;
}

.container { width: 100%; max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-200);
  padding: 0 24px;
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  overflow: visible;
  height: 88px; max-width: 800px; margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  overflow: visible;
}
/* .nav-logo img {
  height: 80px; width: auto;
  display: block; max-width: none;
  overflow: visible; object-fit: contain;
} */

.nav-logo img {
  height: 85px;
  width: auto;
  display: block;
}
.nav-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .875rem; font-weight: 500;
  color: var(--teal); text-decoration: none;
  padding: 8px 14px; border-radius: 8px;
  border: 1.5px solid var(--teal);
  transition: background .15s;
}
.nav-back:hover { background: var(--teal-light); }

/* Policy layout */
.policy-hero {
  background: linear-gradient(135deg, var(--teal) 0%, #1a9e7a 100%);
  padding: 56px 24px 48px;
  text-align: center;
}
.policy-hero-label {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  font-size: .75rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 16px;
}
.policy-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900; color: #fff;
  letter-spacing: -.02em; margin-bottom: 12px;
}
.policy-hero-meta {
  font-size: .875rem; color: rgba(255,255,255,.7);
}
.version-chip {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  font-size: .75rem; font-weight: 600;
  padding: 3px 10px; border-radius: 100px;
  margin-top: 8px;
}

/* Content */
.policy-content {
  padding: 48px 0 80px;
}
.policy-section {
  margin-bottom: 36px;
}
.policy-section h2 {
  font-size: 1.1rem; font-weight: 700;
  color: var(--teal); margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--teal-light);
}
.policy-section p {
  font-size: .9375rem; color: var(--grey-700);
  line-height: 1.75; margin-bottom: 12px;
}
.policy-section ul {
  list-style: none; padding: 0; margin-bottom: 12px;
}
.policy-section ul li {
  font-size: .9375rem; color: var(--grey-700);
  line-height: 1.75; padding-left: 20px;
  position: relative; margin-bottom: 6px;
}
.policy-section ul li::before {
  content: '•'; position: absolute; left: 0;
  color: var(--teal); font-weight: 700;
}
.policy-section a { color: var(--teal); text-decoration: underline; }
.policy-section a:hover { color: var(--teal-dark); }

/* Info box */
.info-box {
  background: var(--teal-light);
  border: 1.5px solid rgba(15,110,86,.2);
  border-radius: 12px; padding: 16px 20px;
  margin-bottom: 16px;
}
.info-box p { color: var(--teal) !important; margin-bottom: 0 !important; }

/* Footnote */
.footnote {
  background: var(--grey-50);
  border: 1.5px solid var(--grey-200);
  border-radius: 12px; padding: 16px 20px;
  margin-top: 40px;
}
.footnote p {
  font-size: .825rem !important;
  color: var(--grey-500) !important;
  margin-bottom: 0 !important;
}

/* Footer */
.footer {
  background: var(--grey-900); color: #fff;
  padding: 40px 24px 0;
}
.footer-inner {
  max-width: 800px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo img {
  height: 52px; width: auto;
  display: block; filter: none;
}
.footer-tagline {
  font-size: .875rem; color: rgba(255,255,255,.7);
  margin-top: 8px;
}
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
  font-size: .875rem; color: rgba(255,255,255,.75);
  text-decoration: none; transition: color .15s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 16px 0;
  display: flex; flex-direction: column; gap: 4px;
}
.footer-copy {
  width: 100%;
  font-size: .8rem; color: rgba(255,255,255,.5);
}
.footer-disclaimer {
  font-size: .75rem; color: rgba(255,255,255,.35);
}

@media (max-width: 600px) {
  .policy-hero { padding: 40px 20px 36px; }
  .footer-inner { flex-direction: column; }
  .nav-inner { height: 64px; }
  .nav-logo img { height: 52px; }
}
