/* Minimal home gate — one product focus */
.gate-body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(900px 500px at 50% -20%, #e0f2fe 0%, transparent 60%),
    #f8fafc;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #0f172a;
}

.gate {
  width: min(440px, calc(100% - 2rem));
  padding: 2rem 0;
}

.gate-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
  padding: 2rem 1.75rem 1.5rem;
  text-align: center;
}

.gate-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0369a1;
}

.gate-card h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 4vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.gate-lead {
  margin: 0 auto 1.75rem;
  max-width: 28rem;
  color: #64748b;
  font-size: 1.02rem;
  line-height: 1.45;
}

.gate-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

.gate-btn-main {
  width: 100%;
  min-height: 3rem;
  font-size: 1.05rem;
  font-weight: 650;
  border-radius: 12px;
  text-decoration: none;
}

/* Invisible to visitors — still in DOM for founders (direct URL or reveal later) */
.gate-parking-lot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.gate-fine {
  margin: 1.25rem 0 0;
  font-size: 0.72rem;
  color: #94a3b8;
  line-height: 1.4;
}
