@import url('https://fonts.cdnfonts.com/css/google-sans');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  color-scheme: dark !important;
}

* {
  box-sizing: border-box;
}

html, body {
  background-color: #060709 !important;
  color: #e2e8f0 !important;
  font-family: 'Google Sans', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  margin: 0;
  padding: 0;
}

::selection {
  background-color: #ffb400;
  color: #060709;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #060709;
}
::-webkit-scrollbar-thumb {
  background: #222938;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ffb400;
}

.bg-gold-gradient {
  background: linear-gradient(135deg, #ffee7b 0%, #ffb400 100%);
}

.text-gold-gradient {
  background: linear-gradient(135deg, #fff5ab 0%, #ffee7b 40%, #ffb400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glow-gold-sm {
  box-shadow: 0 0 15px -3px rgba(255, 180, 0, 0.35);
}

.glow-gold-md {
  box-shadow: 0 0 35px -5px rgba(255, 180, 0, 0.45);
}

.glow-gold-lg {
  box-shadow: 0 0 70px -10px rgba(255, 180, 0, 0.55);
}

.btn-gold {
  background: linear-gradient(135deg, #ffee7b 0%, #ffb400 100%);
  color: #0a0c10 !important;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(255, 180, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 180, 0, 0.55);
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:active {
  transform: translateY(1px);
}

.glass-pill {
  background: rgba(15, 18, 24, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px -10px rgba(0, 0, 0, 0.8), 0 0 20px -8px rgba(255, 180, 0, 0.2);
}

.glass-card {
  background: rgba(15, 18, 24, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 238, 123, 0.15);
}

.legalese-doc h1 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #ffee7b;
  letter-spacing: -0.02em;
}

.legalese-doc h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #ffb400;
  border-bottom: 1px solid rgba(255, 238, 123, 0.15);
  padding-bottom: 0.5rem;
}

.legalese-doc h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #ffee7b;
}

.legalese-doc p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #cbd5e1;
  margin-bottom: 1.25rem;
  text-align: justify;
}

.legalese-doc ul, .legalese-doc ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: #cbd5e1;
}

.legalese-doc li {
  margin-bottom: 0.65rem;
  line-height: 1.65;
}

.legalese-doc ul {
  list-style-type: disc;
}

.legalese-doc ol {
  list-style-type: decimal;
}

.legalese-doc code {
  font-family: 'JetBrains Mono', monospace;
  background: rgba(255, 238, 123, 0.08);
  color: #ffee7b;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.85em;
  border: 1px solid rgba(255, 238, 123, 0.2);
}

.legalese-clause-number {
  color: #ffee7b;
  font-weight: 800;
  margin-right: 0.35rem;
}

.bg-mesh-pattern {
  background-image: radial-gradient(rgba(255, 238, 123, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
}
