@font-face {
  font-family: 'Inter';
  src: url('/fonts/Coinbase-Sans-Regular.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'Inter Bold';
  src: url('/fonts/Coinbase-Sans-Medium.woff2') format('woff2');
  font-display: swap;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  color: white;
}

h1,
h2,
h3 {
  font-family: 'Inter Bold', -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

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

.nav {
  background: white;
  padding: 8px;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-inner .logo {
  display: block;
  margin-top: 8px;
  margin-bottom: 8px;
}

.nav-inner .logo img {
  display: block;
  height: 42px;
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.nav-action {
  background: #211552;
  padding: 10px 22px;
  border-radius: 32px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  box-shadow: rgba(50, 50, 105, 0.15) 0 2px 5px 0, rgba(0, 0, 0, 0.05) 0 1px 1px 0;
  font-size: 14px;
}

.nav-action.secondary {
  background: transparent;
  color: #211552;
}

.section-cta {
  text-align: center;
  padding: 40px 0;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.cta-button {
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 32px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.cta-button.primary {
  background: #211552;
  color: white;
  box-shadow: rgba(50, 50, 105, 0.15) 0 2px 5px 0, rgba(0, 0, 0, 0.05) 0 1px 1px 0;
}

.cta-button.secondary {
  background: white;
  color: #211552;
  box-shadow: rgba(50, 50, 105, 0.15) 0 2px 5px 0, rgba(0, 0, 0, 0.05) 0 1px 1px 0;
}

@media (max-width: 884px) {
  .nav {
    padding: 14px 0;
  }

  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 12px;
  }

  .nav-action {
    padding: 8px 14px;
    font-size: 14px;
    text-align: center;
    width: calc(100% - 28px);
  }

  .section-cta {
    flex-direction: column;
    padding: 20px;
  }
}
