/* Vitrine overrides — make landing fluid, full-viewport instead of 1440x900 canvas */

#root { min-height: 100vh; display: flex; flex-direction: column; background: var(--bg1); }
#root > div { min-height: 100vh; flex: 1; }

html, body { background: var(--bg1); }

.landing {
  height: auto;
  min-height: 0;
  padding: 56px 64px 72px;
  overflow: visible;
}

@media (min-width: 1280px) {
  .landing { padding: 72px 96px 96px; }
}
@media (max-width: 720px) {
  .landing { padding: 36px 20px 56px; }
  .topbar { padding: 0 18px; }
  .topbar .brand-kicker { display: none; }
}

/* ── Hero microcopy under CTA ─────────────────────────────────── */
.hero-microcopy {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg3);
}
.hmc-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(214, 64, 69, 0.18);
  animation: hmc-pulse 2.4s ease-in-out infinite;
}
@keyframes hmc-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(214, 64, 69, 0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(214, 64, 69, 0.05); }
}

/* ── Notify modal ─────────────────────────────────────────────── */
.notify-overlay {
  position: fixed; inset: 0;
  background: rgba(10, 9, 8, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: notify-fade 180ms ease-out;
}
@keyframes notify-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.notify-modal {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--bg1);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 36px 32px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.32);
  animation: notify-rise 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes notify-rise {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.notify-close {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  border: none; background: transparent;
  font-size: 22px; line-height: 1;
  color: var(--fg3);
  border-radius: 6px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.notify-close:hover { background: var(--bg2); color: var(--fg1); }

.notify-eyebrow {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.notify-title {
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--fg1);
}

.notify-lead {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg2);
  margin: 0 0 22px;
}

.notify-form {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 22px;
}

.notify-input {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg2);
  color: var(--fg1);
  outline: none;
  transition: border-color 120ms ease;
}
.notify-input:focus {
  border-color: var(--accent);
  background: var(--bg1);
}
.notify-input::placeholder { color: var(--fg3); }
.notify-input.invalid { border-color: var(--danger); }
.notify-input:disabled { opacity: 0.6; cursor: not-allowed; }

.notify-error {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--danger);
  margin: -4px 0 0;
  letter-spacing: 0.02em;
}

.notify-form .btn { justify-content: center; }
.notify-form .btn:disabled { opacity: 0.7; cursor: progress; }

.notify-bullets {
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
}
.notify-bullets li {
  font-size: 12px;
  color: var(--fg3);
  padding-left: 14px;
  position: relative;
}
.notify-bullets li::before {
  content: '·';
  position: absolute; left: 4px; top: -2px;
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
}

.notify-success {
  text-align: center;
  padding: 12px 0 0;
}
.notify-check {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg1);
  font-size: 28px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.notify-success .notify-title { margin-bottom: 8px; }
.notify-success .notify-lead { margin-bottom: 22px; }
.notify-success .btn { margin: 0 auto; }
