/* STRIQ — Privacy Policy page */

:root {
  --bg: #060a10;
  --bg-elevated: #0f1e32;
  --surface: #1c1c1e;
  --border: #2c2c2e;
  --text: #ffffff;
  --text-muted: #8b95a8;
  --gold: #d4a843;
  --gold-light: #f0d060;
  --primary: #1e3a5f;
  --max-width: 720px;
  --radius: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(30, 58, 95, 0.45), transparent),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(212, 168, 67, 0.08), transparent),
    var(--bg);
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 2rem 1.5rem 1rem;
  text-align: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--bg);
  font-weight: 800;
  font-size: 1.1rem;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.header-tagline {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.main {
  flex: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem;
}

.hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--text), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-meta {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  color: var(--gold);
  font-weight: 500;
}

.hero > p:last-child {
  margin: 0 0 2rem;
  color: var(--text-muted);
}

.policy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.375rem;
  margin-bottom: 1rem;
}

.policy-card h2 {
  margin: 0 0 0.875rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
}

.policy-card p {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.policy-card p:last-child {
  margin-bottom: 0;
}

.contact-note {
  margin-top: 2rem;
  padding: 1.25rem 1.375rem;
  background: rgba(30, 58, 95, 0.25);
  border: 1px solid rgba(30, 58, 95, 0.5);
  border-radius: var(--radius);
}

.contact-note h2 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.contact-note p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.contact-note a {
  color: var(--gold-light);
  text-decoration: none;
}

.contact-note a:hover {
  text-decoration: underline;
}

.footer {
  padding: 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.footer p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .header,
  .main {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
