/* CSS for Privacy Policy and Terms of Use Pages */

.legal-main {
  padding: 160px 24px 128px;
  background: var(--color-midnight, #080D14);
  min-height: 100vh;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
}

.legal-header {
  margin-bottom: 64px;
}

.legal-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(202, 255, 112, 0.1);
  border: 1px solid rgba(202, 255, 112, 0.2);
  color: var(--color-lime, #CAFF70);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: 4px;
  margin-bottom: 24px;
}

.legal-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.legal-last-updated {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Legal Content Body */
.legal-content {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.8;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content p {
  margin-bottom: 24px;
}

.legal-content ul {
  margin-bottom: 32px;
  padding-left: 24px;
  list-style-type: none;
}

.legal-content li {
  position: relative;
  margin-bottom: 12px;
}

.legal-content li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-lime, #CAFF70);
}

.legal-content a {
  color: var(--color-lime, #CAFF70);
  text-decoration: none;
  border-bottom: 1px solid rgba(202, 255, 112, 0.3);
  transition: all 0.3s ease;
}

.legal-content a:hover {
  border-bottom-color: var(--color-lime, #CAFF70);
  background: rgba(202, 255, 112, 0.1);
}

/* Company Information — definition list */
.company-dl {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0;
}

.company-dl dt {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  letter-spacing: 0.02em;
}

.company-dl dd {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 0;
  line-height: 1.8;
}

.company-dl dd ul {
  margin-top: 4px;
  margin-bottom: 0;
}

.company-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 767px) {
  .company-dl {
    grid-template-columns: 1fr;
  }
  .company-dl dt {
    padding-bottom: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }
  .company-dl dd {
    border-top: none;
    padding-top: 0;
    padding-bottom: 24px;
  }
}
