*,*::before,*::after{box-sizing:border-box}
html{overflow-y:scroll;scrollbar-gutter:stable}
body{margin:0;padding:0;background:#0a0e14}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.landing-page {
  --bg: #0a0e14;
  --text: #e2e8f0;
  --accent-blue: #3b82f6;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(circle at 20% -20%, rgba(59,130,246,.25), transparent 40%),
              radial-gradient(circle at 90% 10%, rgba(139,92,246,.22), transparent 35%),
              radial-gradient(circle at 80% 70%, rgba(34,197,94,.13), transparent 35%),
              var(--bg);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.landing-page a { color: inherit; text-decoration: none; }
.container { width: min(1100px, calc(100% - 2rem)); margin: 0 auto; }

/* Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(30,42,58,.6);
  background: rgba(10, 14, 20, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.landing-logo {
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 1.2rem;
  color: #fff;
  text-shadow: 0 0 16px rgba(59,130,246,.6);
  text-decoration: none;
}

.nav-right { display: flex; align-items: center; gap: .9rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: .74rem 1.1rem;
  font-weight: 700;
  font-size: .94rem;
  transition: all .2s ease;
  cursor: pointer;
  font-family: inherit;
}

.btn-ghost {
  border-color: rgba(71, 85, 105, .7);
  color: #dbe7ff;
  background: rgba(19,25,32,.45);
}

.btn-ghost:hover { border-color: #6186d6; color: #fff; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue), #2563eb);
  color: #fff;
  box-shadow: none;
  padding: .54rem .95rem;
  font-size: .88rem;
}

.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.05); }

.btn-nav-start {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
}

/* Breadcrumb */
.breadcrumb-bar {
  padding: .75rem 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 0.8rem;
  color: #475569;
  max-width: 780px;
  margin: 0 auto;
}

.breadcrumb a {
  color: #64748b;
  transition: color .15s ease;
}

.breadcrumb a:hover { color: #94a3b8; }

.breadcrumb .sep { color: #334155; }

.breadcrumb .current { color: #e2e8f0; font-weight: 500; }

/* Legal Card */
.legal-main {
  flex: 1;
  padding: 2rem 0 3rem;
}

.legal-card {
  max-width: 780px;
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: 20px;
  background: #0c1118;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(148,163,184,0.16);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  animation: fadeInUp 0.4s ease-out;
}

/* Kicker Badge */
.legal-kicker {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.25);
  color: #60a5fa;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  line-height: 1;
}

/* H1 */
.legal-card h1 {
  margin: 0 0 .5rem;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}

/* Last Updated */
.legal-updated {
  margin: 0 0 2rem;
  color: #a9b7ca;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Sections */
.legal-section {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(148, 163, 184, .08);
}

.legal-section:last-of-type {
  padding-bottom: .5rem;
}

.legal-section h2 {
  margin: 0 0 .65rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: #f1f5f9;
  display: flex;
  align-items: center;
  gap: .65rem;
}

.legal-section h2::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 1.15em;
  border-radius: 3px;
  background: #3b82f6;
  flex-shrink: 0;
}

.legal-section p {
  margin: 0;
  color: #d1dbea;
  font-size: 15px;
  line-height: 1.8;
}

.legal-section p a { color: #e2eaff; font-weight: 800; }
.legal-section p a:hover { color: #fff; }

/* Footer Note */
.legal-note {
  margin: 1.75rem 0 0;
  padding: 1rem 1.25rem;
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.12);
  border-radius: 12px;
  color: rgba(245,158,11,0.85);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.6;
}

.landing-page .footer {
  padding: 2rem 0 2.2rem;
  text-align: center;
  color: #7f91ab;
  font-size: .88rem;
}

.landing-page .footer-links { margin: .55rem 0; display: flex; justify-content: center; flex-wrap: wrap; gap: .85rem; }

/* Responsive */
@media (max-width: 767px) {
  .landing-page .nav-right .btn { padding: .4rem .7rem; font-size: .75rem; }
}

@media (max-width: 640px) {
  .legal-card {
    padding: 1.5rem;
    border-radius: 16px;
  }
  .legal-section { padding: 1.25rem 0; }
  .legal-card h1 { font-size: 1.75rem; }
}
