/* LATITUDE 40° — Landing */
:root {
  --navy: #1d2951;
  --cream: #f8f7f3;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  color: var(--navy);
  background-color: #122952;
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* Logo — image asset */
.brand {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: -4rem;
}

.logo {
  margin: 0;
  line-height: 0;
}

.logo-img {
  display: block;
  width: clamp(220px, 42vw, 380px);
  height: auto;
  object-fit: contain;
}

/* CTA — centred under logo, Avenir Next, all lowercase */
.cta {
  position: relative;
  z-index: 1;
  margin-top: 1in;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Avenir Next", "Avenir", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-transform: lowercase;
}

.cta-label {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.btn-connect {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  font-family: "Avenir Next", "Avenir", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-connect:hover {
  background: #fff;
  color: #122952;
}

@media (max-width: 480px) {
  .cta {
    margin-top: 1.5rem;
  }

  .cta-label {
    font-size: 1.5rem;
  }

  .btn-connect {
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
  }
}
