:root {
  --black: #0a0a0a;
  --off-black: #111111;
  --dark: #1a1a1a;
  --border: #2a2e2e;
  --muted: #7a8585;
  --text-dim: #b0b8b8;
  --text: #e2e8e8;
  --text-bright: #f2f7f7;
  --white: #ffffff;
  --accent: #3aa3a3;
  --accent-bright: #5cc4c4;
  --accent-dim: #1f5f5f;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }

/* Smoke background — lighter, no animation for policy pages */
.smoke-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(31,95,95,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(58,163,163,0.18) 0%, transparent 55%),
    linear-gradient(180deg, #061616 0%, #0a1c1c 50%, #061212 100%);
}
.smoke-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}
.blob-a {
  width: 70vw; height: 70vw;
  top: -20%; left: -25%;
  background: radial-gradient(circle, rgba(58,163,163,0.42) 0%, transparent 70%);
}
.blob-b {
  width: 60vw; height: 60vw;
  bottom: -25%; right: -20%;
  background: radial-gradient(circle, rgba(92,196,196,0.36) 0%, transparent 70%);
}

nav, .policy-page, footer { position: relative; z-index: 1; }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(10,10,10,0.92), rgba(10,10,10,0));
  backdrop-filter: blur(2px);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 64px; width: auto; display: block; }
.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-bright);
  text-decoration: none;
  border: 1px solid var(--accent-dim);
  padding: 10px 24px;
  transition: all 0.3s ease;
}
.nav-cta:hover {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}

/* POLICY PAGE */
.policy-page {
  background: rgba(10,12,12,0.55);
  padding: 180px 48px 120px;
  min-height: 100vh;
}
.policy-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--accent-bright); }
.back-link svg { width: 14px; height: 14px; }

.policy-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(42px, 5.5vw, 68px);
  color: var(--white);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.policy-title em {
  font-style: italic;
  color: var(--accent-bright);
}
.policy-subtitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
}

.policy-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 26px;
  color: var(--white);
  margin: 40px 0 14px;
  letter-spacing: -0.01em;
}
.policy-wrap h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 32px 0 12px;
}
.policy-wrap p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 18px;
}
.policy-wrap p:last-child { margin-bottom: 0; }
.policy-wrap strong { color: var(--text-bright); font-weight: 600; }
.policy-wrap ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.policy-wrap li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
}
.policy-wrap li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 1px;
  background: var(--accent);
}
.policy-wrap a {
  color: var(--accent-bright);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-dim);
  transition: border-color 0.2s;
}
.policy-wrap a:hover { border-color: var(--accent-bright); }

.policy-divider {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 32px 0;
  opacity: 0.6;
}

/* FOOTER */
footer {
  background: rgba(10,12,12,0.66);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid var(--border);
  gap: 24px;
}
.footer-logo { justify-self: start; }
.footer-logo img { height: 28px; width: auto; opacity: 0.8; }
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
  justify-self: center;
  justify-content: center;
}
.footer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 12px; color: var(--muted); justify-self: end; }

@media (max-width: 900px) {
  nav { padding: 14px 20px; }
  .nav-logo img { height: 52px; }
  .nav-cta { padding: 9px 18px; font-size: 10px; }
  .policy-page { padding: 140px 20px 80px; }
  .policy-wrap p, .policy-wrap li { font-size: 15px; }
  footer {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    padding: 40px 20px;
  }
  .footer-logo, .footer-copy { justify-self: center; }
  .footer-links { justify-content: center; gap: 18px; }
}
