* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color: #101828;
  background: #ffffff;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navigation */

.nav {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

  padding: 28px 32px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 22px;
  font-weight: 800;
  color: #101828;
  text-decoration: none;
}

.nav nav {
  display: flex;
  gap: 28px;
}

.nav nav a {
  color: #667085;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.nav nav a:hover {
  color: #101828;
}

/* Hero */

.hero {
  flex: 1;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  padding: 100px 24px 140px;
}

.badge {
  color: #208AEF;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;

  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1.03;
  letter-spacing: -3px;

  max-width: 1000px;
}

.subtitle {
  margin-top: 30px;

  max-width: 620px;

  color: #667085;

  font-size: 20px;
  line-height: 1.6;
}

.coming-soon {
  margin-top: 42px;

  background: #208AEF;
  color: white;

  padding: 15px 24px;

  border-radius: 14px;

  font-size: 15px;
  font-weight: 700;
}

/* Footer */

footer {
  border-top: 1px solid #eaecf0;

  padding: 28px 32px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  color: #98a2b3;

  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #667085;
  text-decoration: none;
}

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

/* Mobile */

@media (max-width: 700px) {

  .nav {
    padding: 22px 20px;
  }

  .nav nav {
    gap: 16px;
  }

  .hero {
    padding: 80px 20px 100px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .subtitle {
    font-size: 18px;
  }

  footer {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }
}

/* Legal Pages */

.legal {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 32px 120px;
}

.legal-header {
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid #eaecf0;
}

.legal-header .badge {
  margin-bottom: 18px;
}

.legal-header h1 {
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.legal-header p {
  color: #667085;
  font-size: 15px;
}

.legal-content {
  color: #344054;
  font-size: 16px;
  line-height: 1.75;
}

.legal-content h2 {
  color: #101828;
  font-size: 25px;
  line-height: 1.3;
  margin-top: 52px;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.legal-content h3 {
  color: #101828;
  font-size: 18px;
  line-height: 1.4;
  margin-top: 30px;
  margin-bottom: 12px;
}

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

.legal-content ul {
  margin: 8px 0 24px 24px;
}

.legal-content li {
  margin-bottom: 8px;
  padding-left: 4px;
}

.legal-content a {
  color: #208AEF;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .legal {
    padding: 55px 20px 80px;
  }

  .legal-header {
    margin-bottom: 44px;
    padding-bottom: 36px;
  }

  .legal-content {
    font-size: 15px;
  }

  .legal-content h2 {
    font-size: 22px;
    margin-top: 42px;
  }
}

/* Email Verification */

.verify-page {
  flex: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 80px 24px 120px;
}

.verify-card {
  width: 100%;
  max-width: 560px;

  text-align: center;

  padding: 56px 48px;

  border: 1px solid #eaecf0;
  border-radius: 24px;

  box-shadow:
    0 4px 8px -2px rgba(16, 24, 40, 0.05),
    0 12px 24px -4px rgba(16, 24, 40, 0.08);
}

.verify-icon {
  width: 64px;
  height: 64px;

  margin: 0 auto 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #eaf5ff;
  color: #208AEF;

  font-size: 30px;
  font-weight: 700;
}

.verify-card .badge {
  margin-bottom: 18px;
}

.verify-card h1 {
  color: #101828;

  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -1.5px;

  margin-bottom: 20px;
}

.verify-message {
  max-width: 440px;

  margin: 0 auto;

  color: #667085;

  font-size: 17px;
  line-height: 1.65;
}

.verify-button {
  display: inline-block;

  margin-top: 34px;

  padding: 15px 24px;

  background: #208AEF;
  color: #ffffff;

  border-radius: 14px;

  font-size: 15px;
  font-weight: 700;

  text-decoration: none;
}

.verify-button:hover {
  opacity: 0.9;
}

.verify-help {
  margin-top: 24px;

  color: #98a2b3;

  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 700px) {

  .verify-page {
    padding: 50px 20px 80px;
  }

  .verify-card {
    padding: 44px 24px;
  }

  .verify-card h1 {
    font-size: 34px;
  }
}