:root {
  color-scheme: light;
  font-family: "Fira Sans", "Helvetica Neue", Arial, sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
}

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

body {
  min-height: 100vh;
  background: #ffffff;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px clamp(20px, 4vw, 48px) 48px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  align-items: flex-start;
}

.logo {
  width: clamp(140px, 18vw, 220px);
  height: auto;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 36px;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #e0e0e0;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cta-link:hover,
.cta-link:focus-visible {
  border-color: #bdbdbd;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.cta-link--secondary {
  font-weight: 500;
  font-size: 0.95rem;
}

.cta-logo {
  width: 28px;
  height: auto;
}

.cta-subtext {
  font-size: 0.95rem;
  color: #4d4d4d;
}

.email-link {
  color: #1a1a1a;
  text-decoration: underline;
  font-size: 1rem;
}

@media (max-width: 600px) {
  .page {
    padding: 24px 20px 40px;
  }

  .content {
    gap: 18px;
  }

  .cta-link {
    padding: 10px 14px;
    font-size: 0.95rem;
  }
}
