/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #0A1929;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
}

/* ===== HEADER ===== */
header {
  width: 100%;
  max-width: 1440px;
  height: 77px;
  margin: 0 auto;
  background: #0A1929;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}
.nav-container {
  max-width: 1196px;
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  width: 166px;
  height: 32px;
  border-radius: 10px;
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}
.nav a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}
.nav a:hover {
  color: #FFFFFF;
}
.nav-cta-btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #FFFFFF;
  background: #0EA5E9;
  padding: 10px 22px;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.nav-cta-btn:hover {
  background: #38BDF8;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
}

/* ===== POLICY PAGE ===== */
.policy-page {
  max-width: 1440px;
  margin: 77px auto 0;
  background: #F8FAFC;
  padding: 60px 20px 80px;
}
.policy-container {
  max-width: 720px;
  margin: 0 auto;
}
.policy-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  color: #334155;
}
.policy-updated {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #94A3B8;
  margin-top: 8px;
}
.policy-intro {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: #64748B;
  margin-top: 24px;
}
.policy-section {
  margin-top: 36px;
}
.policy-section-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #334155;
  margin-bottom: 12px;
}
.policy-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 26px;
  color: #475569;
}
.policy-text + .policy-text {
  margin-top: 12px;
}
.policy-list {
  list-style: none;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.policy-list li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: #475569;
  padding-left: 20px;
  position: relative;
}
.policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: #0EA5E9;
  border-radius: 50%;
}
.policy-email {
  color: #0EA5E9;
  font-weight: 500;
  transition: color 0.2s ease;
}
.policy-email:hover {
  color: #38BDF8;
}

/* ===== FOOTER ===== */
.footer {
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px 122px 36px;
  background: #0A1929;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-logo img {
  width: 166px;
  height: 32px;
  border-radius: 10px;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: #FFFFFF;
}
.footer-links span {
  color: rgba(255, 255, 255, 0.3);
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer-socials a:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}
.footer-copyright {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #6A7282;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .nav {
    display: none;
  }
  .nav.nav-open {
    display: block;
    position: absolute;
    top: 77px;
    left: 0;
    right: 0;
    background: #0A1929;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 32px;
  }
  .nav.nav-open .nav-buttons {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .nav-cta-btn {
    display: none;
  }
  .nav-container {
    padding: 0 20px;
  }
  .policy-title {
    font-size: 28px;
    line-height: 34px;
  }
  .footer {
    padding: 40px 20px 30px;
  }
}
