* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1f2933;
  background: #fafafa;
  line-height: 1.5;
}

.page {
  max-width: 880px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}

.brand {
  margin-bottom: 2.5rem;
}

.logo {
  max-width: 160px;
  height: auto;
}

h1 {
  font-size: 2rem;
  font-weight: 500;
  margin: 0 0 1.25rem;
}

.lead {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.privacy-note {
  color: #4b5563;
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
}

.subtle {
  color: #4b5563;
  font-size: 0.8rem;
  margin-bottom: 2.5rem;
}

.signup {
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 1.5rem 0;
}

.signup-intro {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: #374151;
}

/* Buttondown form */
.embeddable-buttondown-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.embeddable-buttondown-form input[type="email"] {
  padding: 0.6rem;
  font-size: 0.95rem;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  min-width: 220px;
}

.embeddable-buttondown-form input[type="submit"] {
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  border-radius: 4px;
  border: 1px solid #111827;
  background: #2F6E93;
  color: #ffffff;
  cursor: pointer;
}

.embeddable-buttondown-form input[type="submit"]:hover {
  background: #000000;
}

.embeddable-buttondown-form label {
  font-size: 0.85rem;
  color: #374151;
}

.cta-text {
  font-size: 0.8rem;
  /*margin-bottom: 2.5rem;*/
  color: #777777;
}

.hero {
  display: flex;
  align-items: stretch; /* Ensures the right div matches the left's height */
  gap: 3rem;
  margin-bottom: 2rem;
}

.hero-left {
  flex: 1.25;
}

.hero-right {
  flex: 1;
  position: relative; /* Essential: creates a boundary for the image */
  min-height: 200px;  /* Optional: ensures image doesn't vanish if text is tiny */
}

.hero-right img.hero {
  position: absolute; /* Removes image from flow so it can't drive height */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  padding: 0 2rem;
}

.strong {
  font-weight: bold;
}

.hero-action {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.hero-promise {
  font-size: 1.35rem;
  font-weight: 400;
  color: #374151;
  margin: 0 0 1.5rem;
  line-height: 1.35;
  max-width: 420px;
}

.hero-explain {
  font-size: 1rem;
  color: #4b5563;
  margin: 0;
  max-width: 420px;
}