

  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-card: var(--card);
  --color-card-foreground: var(--card-foreground);
  --color-primary: var(--primary);
  --color-primary-foreground: var(--primary-foreground);
  --color-muted: var(--muted);
  --color-muted-foreground: var(--muted-foreground);
  --color-border: var(--border);
  --color-ring: var(--ring);
  --radius-lg: var(--radius);
}

:root {
  color-scheme: light;
  --background: #f5f6f8;
  --foreground: #1f2933;
  --card: #ffffff;
  --card-foreground: #1f2933;
  --primary: #1f2933;
  --primary-foreground: #ffffff;
  --muted: #68727e;
  --muted-foreground: #68727e;
  --border: #e5e8ec;
  --ring: #9aa5b1;
  --radius: 1.125rem;
}

* { box-sizing: border-box; }
html { background: var(--background); }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
}
button, a { font: inherit; }

.privacy-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.25rem 8.5rem;
  position: relative;
}
.consent-card {
  width: min(100%, 31rem);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgba(31, 41, 51, 0.08);
  padding: 2.5rem;
  text-align: center;
}
.privacy-mark {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1.5rem;
  display: grid;
  place-items: center;
  color: #526170;
  background: #eef1f4;
  border-radius: 50%;
}
.privacy-mark svg { width: 1.65rem; height: 1.65rem; }
.eyebrow {
  margin: 0 0 .75rem;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  color: var(--foreground);
  font-size: clamp(1.65rem, 5vw, 2.05rem);
  line-height: 1.18;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.consent-copy {
  max-width: 26rem;
  margin: 1.25rem auto 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.5;
}
.consent-note {
  margin: 1rem 0 0;
  color: #8a949e;
  font-size: .82rem;
  line-height: 1.5;
}
.consent-actions { display: flex; flex-direction: column; gap: .75rem; margin-top: 2rem; }
.button {
  flex: 1;
  min-height: 2.9rem;
  border: 1px solid transparent;
  border-radius: .65rem;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 700;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.button:focus-visible, a:focus-visible { outline: 3px solid rgba(82, 97, 112, .28); outline-offset: 3px; }
.button:hover { transform: translateY(-1px); }
.button-secondary { background: #fff; border-color: #dfe3e8; color: #526170; }
.button-secondary:hover { background: #f7f8f9; }
.button-primary {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
}
.button-primary:hover { background: #1d4ed8; }
.site-footer {
  position: absolute;
  right: 1.25rem;
  bottom: 1.5rem;
  left: 1.25rem;
  color: #a1a9b1;
  font-size: .68rem;
  line-height: 1.7;
  text-align: center;
}
.site-footer p { margin: 0; }
.site-footer .company-name { color: #7e8994; font-weight: 700; letter-spacing: .04em; }
.footer-links { display: flex; justify-content: center; gap: .4rem; margin-top: .35rem; }
.footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}
.footer-links button:hover { color: #68727e; text-decoration: underline; }
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(31, 41, 51, .42);
}
.legal-modal {
  position: relative;
  width: min(100%, 31rem);
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 22px 70px rgba(31, 41, 51, .2);
  text-align: left;
}
.legal-modal h2 { margin: 0; font-size: 1.35rem; letter-spacing: -.02em; }
.legal-modal p:not(.eyebrow) { margin: 1rem 0 0; color: var(--muted); font-size: .88rem; line-height: 1.6; }
.modal-close { position: absolute; top: .75rem; right: 1rem; border: 0; background: transparent; color: var(--muted); font-size: 1.5rem; line-height: 1; cursor: pointer; }
.modal-action { width: 100%; margin-top: 1.5rem; }
.hidden{display:none;}

@media (max-width: 30rem) {
  .consent-card { padding: 2rem 1.25rem; }
  .consent-actions { flex-direction: column; }
}