/* ========== MINTAKA SHARED STYLES ========== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --black: #0a0a0a;
  --white: #fafafa;
  --gray-50: #f5f5f5;
  --gray-100: #e8e8e8;
  --gray-200: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-800: #262626;
  --gray-900: #171717;
}

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

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ========== NAV ========== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--black);
}

.logo-dots { display: flex; gap: 4px; align-items: center; }
.logo-dots span { display: block; background: var(--black); border-radius: 50%; }
.logo-dots span:nth-child(1) { width: 10px; height: 10px; }
.logo-dots span:nth-child(2) { width: 12px; height: 12px; }
.logo-dots span:nth-child(3) { width: 10px; height: 10px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--black); }
.nav-links a.active { color: var(--black); font-weight: 500; }

.nav-links a.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--black);
  color: var(--white);
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-links a.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

@media (max-width: 640px) {
  .nav-links a:not(.nav-cta) { display: none; }
  nav { padding: 1rem 1.25rem; }
}

/* ========== FOOTER ========== */
footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--gray-500);
}

.footer-links { display: flex; gap: 1.5rem; }

.footer-links a {
  font-size: 0.82rem;
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--black); }

/* ========== LEGAL PAGE STYLES ========== */
.legal-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
}

.legal-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.legal-page .last-updated {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-100);
}

.legal-page h2 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-page p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-page ul {
  margin: 0.5rem 0 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.legal-page li {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.legal-page a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--black);
  color: var(--white);
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
