/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", sans-serif;
  color: #e0e0e0;
  background: #141414;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* ===== LP Hero ===== */
.lp-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #141414;
  background-image: radial-gradient(
      ellipse 120% 100% at 20% 15%,
      rgba(255, 87, 34, 0.15) 0%,
      rgba(20, 20, 20, 0) 70%
    ),
    radial-gradient(
      ellipse 70% 70% at 80% 75%,
      rgba(255, 87, 34, 0.08) 0%,
      rgba(20, 20, 20, 0) 70%
    );
}

.lp-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 800px;
  padding: 60px 24px;
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lp-logo img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
}

.lp-logo span {
  font-family: "Outfit", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
}

.lp-headline {
  font-family: "Outfit", sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -2px;
  line-height: 1.1;
  text-align: center;
}

.lp-subline {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  color: #888888;
  line-height: 1.6;
  text-align: center;
  max-width: 640px;
}

.lp-badges {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lp-badges a {
  display: block;
  transition: opacity 0.2s;
}

.lp-badges a:hover {
  opacity: 0.8;
}

.lp-badges img {
  height: 54px;
  width: auto;
}

.lp-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 24px;
}

.lp-footer-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.lp-footer-links a {
  font-size: 13px;
  font-weight: 500;
  color: #555555;
  transition: color 0.2s;
}

.lp-footer-links a:hover {
  color: #ff5722;
}

.lp-copyright {
  font-size: 12px;
  color: #444444;
}

/* ===== Shared Header (Legal Pages) ===== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 80px;
  background: #111111;
  border-bottom: 1px solid #222222;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header-logo img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.header-logo span {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

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

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #666666;
  transition: color 0.2s;
}

.header-nav a:hover {
  color: #ffffff;
}

.header-nav a.active {
  color: #ff5722;
  font-weight: 600;
}

/* ===== Legal Content ===== */
.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #141414;
}

.legal-content {
  flex: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px;
  width: 100%;
}

.legal-title {
  font-family: "Outfit", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.legal-meta {
  font-size: 14px;
  color: #555555;
  margin-bottom: 48px;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.legal-section p,
.legal-section ul,
.legal-section ol {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-section ul,
.legal-section ol {
  padding-left: 24px;
}

.legal-section li {
  margin-bottom: 6px;
}

.legal-intro {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: 48px;
}

.legal-section h3 {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #e0e0e0;
  margin-top: 20px;
  margin-bottom: 10px;
}

.legal-section a {
  color: #ff5722;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-section a:hover {
  opacity: 0.7;
}

/* ===== Tables ===== */
.table-wrapper {
  overflow-x: auto;
  margin-bottom: 16px;
}

.legal-section table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.6;
}

.legal-section th,
.legal-section td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid #222222;
  color: #b0b0b0;
}

.legal-section th {
  font-weight: 600;
  color: #ffffff;
  background: #1a1a1a;
  white-space: nowrap;
}

.legal-section td a {
  color: #ff5722;
}

.legal-divider {
  height: 1px;
  background: #1a1a1a;
  border: none;
  margin: 40px 0;
}

.legal-contact h2 {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.legal-contact p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-contact a {
  color: #ff5722;
  font-weight: 600;
  transition: opacity 0.2s;
}

.legal-contact a:hover {
  opacity: 0.7;
}

/* ===== Shared Footer (Legal Pages) ===== */
.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 80px;
  background: #0f0f0f;
  border-top: 1px solid #222222;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 500;
  color: #555555;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ff5722;
}

.footer-copyright {
  font-size: 12px;
  color: #444444;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .lp-logo span {
    font-size: 36px;
  }

  .lp-headline {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .lp-subline {
    font-size: 18px;
  }

  .lp-badges {
    flex-direction: column;
    gap: 16px;
  }

  .lp-badges img {
    height: 48px;
  }

  .lp-footer {
    position: relative;
    padding-top: 40px;
  }

  .lp-footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .site-header {
    padding: 0 20px;
  }

  .header-nav {
    gap: 20px;
  }

  .legal-content {
    padding: 40px 20px;
  }

  .legal-title {
    font-size: 30px;
  }

  .legal-section h2 {
    font-size: 19px;
  }

  .site-footer {
    padding: 24px 20px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .lp-logo img {
    width: 48px;
    height: 48px;
  }

  .lp-logo span {
    font-size: 28px;
  }

  .lp-headline {
    font-size: 28px;
  }

  .lp-subline {
    font-size: 16px;
  }

  .header-logo span {
    font-size: 18px;
  }

  .header-nav a {
    font-size: 13px;
  }

  .header-nav {
    gap: 16px;
  }
}
