/* DryShot — legal page styles (Privacy Policy / Terms of Service)
   Mirrors the landing page palette + typography. */
:root {
  --bg: #0A0A0B;
  --surface: #15151A;
  --surface-2: #1B1B22;
  --line: #25252C;
  --line-2: #34343C;
  --text: #F5F5F2;
  --muted: #8E8E94;
  --muted-2: #5B5B61;
  --accent: #FF4D2E;
  --accent-rgb: 255, 77, 46;
  --accent-2: #FF6B4D;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); }
body {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 500;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; transition: opacity 140ms ease; }
a:hover { opacity: 0.78; }

/* ===== Nav (shared with main page) ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 10, 11, 0.85);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 18px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav .brand { display: inline-flex; align-items: center; line-height: 1; }
.nav .brand-png { height: 36px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted);
  transition: color 160ms ease;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent); color: var(--text) !important;
  padding: 10px 18px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-cta:hover { background: var(--accent-2); opacity: 1; }
@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ===== Legal page layout ===== */
.legal { padding: 60px 28px 100px; }
.legal-container { max-width: 760px; margin: 0 auto; }

.legal-head { margin-bottom: 56px; }
.back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted) !important;
  margin-bottom: 32px;
  transition: color 160ms ease;
}
.back:hover { color: var(--text) !important; opacity: 1; }
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.legal-title {
  font-weight: 900; font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.0; letter-spacing: -0.025em;
  margin: 0;
  font-style: italic;
}

/* ===== Body content ===== */
.legal-body { font-size: 15.5px; }
.legal-body p {
  color: rgba(245, 245, 242, 0.82);
  margin: 0 0 16px;
  text-wrap: pretty;
}
.legal-body p strong { color: var(--text); font-weight: 700; }
.legal-body ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
.legal-body ul li {
  position: relative;
  padding-left: 24px;
  color: rgba(245, 245, 242, 0.82);
  margin-bottom: 8px;
}
.legal-body ul li::before {
  content: '';
  position: absolute; left: 6px; top: 0.6em;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.legal-body code {
  background: var(--surface);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px;
  color: var(--text);
}
.legal-body hr {
  display: none;
}
.legal-body p:first-child { color: var(--muted); }
.legal-body p:first-child strong { color: var(--text); }

/* Numbered sections */
.legal-section {
  margin: 48px 0 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.legal-section:first-of-type { margin-top: 36px; }
.legal-section .legal-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-style: italic;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.legal-section h2 {
  font-weight: 800; font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.15; letter-spacing: -0.015em;
  margin: 0 0 20px;
  color: var(--text);
}
.legal-section h3 {
  font-weight: 700; font-size: 17px;
  letter-spacing: -0.01em;
  margin: 24px 0 12px;
  color: var(--text);
}

/* Sub-numbered subsections (e.g. "3.1 Information You Provide…") */
.legal-subhead {
  display: flex; align-items: baseline; gap: 12px;
  margin: 32px 0 12px;
}
.legal-subnum {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-style: italic;
  font-size: 12px; letter-spacing: 0.04em;
  color: var(--accent);
  flex-shrink: 0;
  min-width: 28px;
}
.legal-subhead h3 {
  font-weight: 700; font-size: 17px;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
}

/* Non-numbered h1 (rare) */
.legal-body > h1 {
  font-weight: 800; font-size: clamp(24px, 3vw, 32px);
  margin: 48px 0 20px;
  letter-spacing: -0.02em;
}

/* ===== Foot pointer to the other document ===== */
.legal-foot {
  margin-top: 80px; padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  font-size: 14px; color: var(--muted);
}
.other-link {
  color: var(--text) !important;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.005em;
  transition: color 160ms ease;
}
.other-link:hover { color: var(--accent) !important; opacity: 1; }

/* ===== Footer ===== */
footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 56px;
}
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; flex-wrap: wrap;
}
.footer-inner .brand-png { height: 64px; width: auto; display: block; }
.footer-meta {
  font-size: 12px; color: var(--muted-2);
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
  line-height: 1.6;
}
.footer-meta a { color: var(--muted); font-weight: 600; }
.footer-meta a:hover { color: var(--accent); opacity: 1; }
.footer-links { display: inline-flex; gap: 10px; align-items: center; margin-top: 4px; }
.footer-links .sep { color: var(--muted-2); }

@media (max-width: 720px) {
  .footer-meta { align-items: flex-start; }
}
