/* Minimal modern reset */
* { box-sizing: border-box; }
html, body { height: 100%; max-width: 100%; overflow-x: hidden; }
body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; color: #0b0f17; background: #ffffff; -webkit-font-smoothing: antialiased; }
img, svg { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* Header removed (hidden) */
.site-header { display: none; top: 0; background: rgba(255,255,255,0.8); backdrop-filter: blur(6px); border-bottom: 1px solid #eef1f4; }
.header-inner { display: flex; align-items: center; height: 64px; }

/* Header logo */
.logo { width: 300px; height: auto; }

/* Big logo above the headline in the hero */
.logo-large {
  width: 110px;
  height: auto;
  margin-bottom: 16px;
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 1px, 1px); border: 0; }

.hero { padding: 56px 0 72px; }

/* Responsive hero layout using grid areas (mobile-first) */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "copy"
    "art"
    "form";
  gap: 32px;
  align-items: center;
}

.hero-copy { grid-area: copy; display: flex; flex-direction: column; gap: 16px; }
.hero-visual { grid-area: art; display: flex; justify-content: center; }
.hero-form-wrap { grid-area: form; display: flex; flex-direction: column; gap: 12px; }

.tagline { font-size: clamp(28px, 5vw, 44px); line-height: 1.12; margin: 0; letter-spacing: -0.01em; }
.tagline .sub { font-weight: 500; opacity: 0.9; }

/* Form styles */
.signup { display: grid; grid-template-columns: 1fr; gap: 12px; align-items: center; max-width: 560px; }
.signup input { height: 48px; padding: 0 14px; border: 1px solid #cfd6dd; border-radius: 12px; font-size: 16px; outline: none; }
.signup input:focus { border-color: #0ea5a5; box-shadow: 0 0 0 3px rgba(14,165,165,0.15); }
.signup button { height: 48px; border: 0; border-radius: 12px; font-weight: 600; font-size: 16px; padding: 0 18px; cursor: pointer; background: #0ea5a5; color: white; }
.signup button:focus-visible { outline: 3px solid rgba(14,165,165,0.35); outline-offset: 2px; }
.form-note { margin: 0; font-size: 14px; min-height: 20px; }

.badges-wrap { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.soon { margin: 0; font-size: 14px; opacity: 0.8; }
.badges { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.badge-link img { height: 40px; width: auto; display: block; }

/* Illustration */
.illustration {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Keep the old .hero-img safe */
.hero-img { max-width: 700px; width: 100%; height: auto; }

/* On wider screens, switch to two columns */
@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-areas:
      "copy art"
      "form art";
    gap: clamp(20px, 4vw, 48px);
    min-height: calc(100svh - var(--footer-h, 56px));
  }
  .signup { grid-template-columns: 1fr auto; }
  .illustration { max-width: min(46vw, 760px); height: auto; }
}

.site-footer { border-top: 1px solid #eef1f4; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 0; flex-wrap: wrap; }
.footer-inner .links { display: flex; gap: 16px; }
.footer-inner a[aria-disabled="true"] { pointer-events: none; opacity: .5; text-decoration: none; }

/* Footer always visible */
.site-footer { margin-top: auto; position: static; }

