:root {
  --dark: #1b1c1d;
  --dark-2: #272a2c;
  --dark-3: #2e3234;
  --accent: #879c9d;
  --accent-d: #6a8081;
  --muted: #6b7280;
  --border: #e5e7eb;
  --light: #f9fafb;
  --white: #ffffff;
  --font: "Inter", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--light);
  line-height: 1.7;
}

.container {
  width: min(1060px, 92vw);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 88px;
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 64px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.92rem;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--accent-d);
}

/* Hero */
.hero {
  margin-top: 88px;
  background: linear-gradient(120deg, #171919 0%, #272a2c 100%);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-inner {
  padding: 3rem 0 2.2rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero h1 {
  margin: 0 0 0.6rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  max-width: 70ch;
}

/* Policy content */
.policy-wrap {
  padding: 2rem 0 4rem;
}

.policy-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.policy-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.3rem;
  font-size: 0.95rem;
}

.policy-meta a {
  color: var(--accent-d);
  text-decoration: none;
  font-weight: 600;
}

.policy-meta a:hover {
  color: var(--dark);
}

.policy-meta .dot {
  color: #9ca3af;
}

.policy-meta time {
  color: var(--muted);
}

.policy-card h2 {
  margin: 1.8rem 0 0.7rem;
  font-size: 1.5rem;
  line-height: 1.25;
}

.policy-card p {
  margin: 0 0 1rem;
  color: #374151;
}

.note-box {
  margin: 1.2rem 0 1.4rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--accent);
  background: #f3f4f6;
  border-radius: 8px;
}

.note-box h3 {
  margin: 0 0 0.4rem;
  font-size: 1.04rem;
}

.note-box ul {
  margin: 0;
  padding-left: 1rem;
}

.note-box li {
  margin: 0.15rem 0;
}

.policy-cta {
  margin-top: 2.4rem;
  border-radius: 12px;
  padding: 1.5rem;
  background: var(--dark);
  color: var(--white);
}

.policy-cta h3 {
  margin: 0 0 0.45rem;
  font-size: 1.3rem;
}

.policy-cta p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.policy-cta a {
  display: inline-block;
  text-decoration: none;
  color: var(--white);
  background: var(--accent);
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-weight: 600;
}

.policy-cta a:hover {
  background: var(--accent-d);
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 6vw 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.f-brand img,
.footer-brand img {
  height: 48px;
  width: auto;
  opacity: 0.6;
}

.f-brand p,
.footer-brand p {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.28);
  line-height: 1.7;
  max-width: 26ch;
  margin: 0.75rem 0 0;
}

.f-brand a {
  font-size: 0.77rem;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
}

.f-col h4,
.footer-col h4 {
  margin: 0 0 0.8rem;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.22);
}

.f-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.f-col a,
.footer-col a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.15s;
}

.f-col a:hover,
.footer-col a:hover {
  color: rgba(255,255,255,0.75);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
}

.footer-bottom span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.18);
}

.site-footer .container {
  width: auto;
  margin: 0;
}

@media (max-width: 900px) {
  .nav-links {
    gap: 1rem;
    font-size: 0.85rem;
  }

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

  .policy-card {
    padding: 1.2rem;
  }
}
