:root {
  --bg: #09090b; /* zinc-950 */
  --surface: rgba(255, 255, 255, 0.03);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(229, 185, 62, 0.3);
  --gold: #E5B93E;
  --lime: #84CC16;
  --white: #FAFAFA;
  --muted: #a1a1aa; /* zinc-400 */
  --radius: 0.75rem;
}

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ── Navbar ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: #09090b;
  padding: 0.55rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn:hover {
  background-color: #e4e4e7;
}

.btn-gold {
  background: var(--gold);
  color: #09090B;
}

.btn-gold:hover {
  opacity: 0.9;
  box-shadow: 0 0 20px rgba(229, 185, 62, 0.25);
}

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

.btn-outline:hover {
  background: var(--surface);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ── Mobile Nav Toggle ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Container Layout ── */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 24px 100px;
  flex: 1;
  width: 100%;
}

.glass {
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 32px;
}

/* ── Typography & Legal Document Styling ── */
.page-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}

.page-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 32px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  color: #d4d4d8;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-content ul {
  margin-left: 20px;
  margin-bottom: 20px;
  color: #d4d4d8;
  font-size: 0.95rem;
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-content a {
  color: var(--gold);
  text-decoration: underline;
}

.legal-content a:hover {
  color: #fef08a;
}

.contact-box {
  background: rgba(229, 185, 62, 0.04);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 24px;
}

/* ── Footer Global (Paddle Compliance) ── */
footer {
  border-top: 1px solid var(--border);
  background: rgba(9, 9, 11, 0.95);
  padding: 48px;
  color: var(--muted);
  font-size: 0.875rem;
  margin-top: auto;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  text-align: left;
}

.footer-brand h4 {
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 320px;
}

.footer-col h5 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  font-size: 0.8rem;
}

.mor-disclaimer {
  color: #a1a1aa;
  font-size: 0.8rem;
  max-width: 700px;
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.02);
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(9, 9, 11, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 16px;
  }
  .nav-links.open { display: flex; }
  
  .container { padding: 40px 16px 60px; }
  .glass { padding: 24px 20px; }
  .page-title { font-size: 1.8rem; }
  
  footer { padding: 32px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
.disclaimer {
  font-size: 0.65rem;
  opacity: 0.7;
  max-width: 700px;
  margin: 0 auto 12px;
  text-align: center;
  line-height: 1.4;
}
