:root {
  --bg: #05060A;
  --surface: #0E1020;
  --text: #EDE9FE;
  --muted: #A1A1AA;
  --primary: #22D3EE;
  --secondary: #A3E635;
  --accent: #F472B6;
  --border: rgba(237, 233, 254, 0.12);
  --nav-bg: rgba(15, 15, 25, 0.75);
  --nav-height: 56px;
  --max-w: 1200px;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  background-image: linear-gradient(160deg, var(--bg) 0%, rgba(34, 211, 238, 0.04) 45%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(34, 211, 238, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(163, 230, 53, 0.05) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

.compliance-banner {
  width: 100%;
  background: rgba(237, 233, 254, 0.08);
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  padding: 8px 16px;
  border-top: 1px dotted rgba(161, 161, 170, 0.5);
  border-bottom: 1px dotted rgba(161, 161, 170, 0.5);
  line-height: 1.45;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: var(--nav-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px 24px;
  height: 100%;
}

.header-logo img {
  max-height: 28px;
  width: auto;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-nav a {
  color: rgba(237, 233, 254, 0.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s, text-shadow 0.2s;
}

.header-nav a:hover {
  color: var(--primary);
  text-shadow: 0 0 8px var(--accent);
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.burger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 199;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-overlay.open {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
  transition: text-shadow 0.2s;
}

.mobile-nav a:hover {
  text-shadow: 0 0 12px var(--accent);
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  color: var(--muted);
  padding: 48px 24px 32px;
  margin-top: auto;
  flex-shrink: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  max-width: var(--max-w);
  margin: 0 auto 32px;
}

.footer-brand img {
  max-height: 28px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

.footer-links h4,
.footer-legal h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 14px;
}

.footer-links ul,
.footer-legal ul {
  list-style: none;
}

.footer-links li,
.footer-legal li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-legal a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--text);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: 900px;
  margin: 0 auto;
}

.footer-badges a {
  display: block;
}

.footer-badges img {
  height: 40px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-badges a:hover img {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  padding-top: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.footer-cookie-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--secondary);
  cursor: pointer;
  text-decoration: underline;
  font-size: 12px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 10, 0.85);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.hidden {
  display: none;
}

.modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
}

.modal-box h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text);
}

.modal-box p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg);
  font-weight: 600;
}

.btn-primary:hover {
  background: #06b6d4;
}

.btn-secondary {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 18px 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--muted);
  flex: 1;
  min-width: 200px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.legal-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.legal-page h1 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: var(--text);
}

.legal-page h2 {
  font-size: 1.15rem;
  margin: 28px 0 12px;
  color: var(--text);
}

.legal-page h3 {
  font-size: 1rem;
  margin: 20px 0 10px;
}

.legal-page p {
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--muted);
}

.legal-page ul {
  margin: 0 0 14px 24px;
}

.legal-page li {
  margin-bottom: 6px;
  font-size: 15px;
  color: var(--muted);
}

.legal-page a {
  color: var(--primary);
}

.medical-trust-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary);
}

.clinical-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 4px;
  font-size: 11px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.health-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.clean-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

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

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .legal-page {
    padding: 32px 20px 48px;
  }
}

.pari-hero {
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.12), rgba(14, 16, 32, 0.95));
  padding: 56px 24px;
  text-align: center;
}

.pari-hero h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text);
  margin-bottom: 12px;
}

.pari-hero p {
  font-size: 15px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.pari-columns {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.pari-col p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.pari-col h2 {
  font-size: 1.15rem;
  color: var(--text);
  margin: 24px 0 12px;
}

.pari-visual-band {
  max-width: var(--max-w);
  margin: 0 auto 48px;
  padding: 0 24px;
  overflow: hidden;
}

.pari-visual-band img {
  width: 100%;
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.pari-tools {
  list-style: none;
  margin: 16px 0;
}

.pari-tools li {
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--muted);
}

.pari-pullquote {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 8px;
  margin: 24px 0;
  font-size: 16px;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .pari-columns {
    grid-template-columns: 1fr;
  }

  .pari-visual-band img {
    max-height: 200px;
  }
}
