/* Vineyard Icon — private preview gate (pre-launch) */
html.vi-gated body {
  overflow: hidden;
}

#vi-preview-gate {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(ellipse 80% 60% at 20% 15%, rgba(123, 158, 199, 0.28), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 85%, rgba(201, 168, 76, 0.18), transparent 50%),
    linear-gradient(165deg, #121f38 0%, #1a2b4a 48%, #0f1828 100%);
  font-family: Inter, system-ui, sans-serif;
}

.vi-gate-card {
  width: 100%;
  max-width: 420px;
  background: #fdfaf5;
  border: 1px solid #e4ddc9;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.vi-gate-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #e4ddc9;
}

.vi-gate-brand__type {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a2b4a;
}

.vi-gate-brand__sub {
  margin: 2px 0 0;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4a4a4a;
}

.vi-gate-card h1 {
  margin: 0 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a2b4a;
}

.vi-gate-lede {
  margin: 0 0 20px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #4a4a4a;
}

.vi-gate-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.vi-gate-field span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4a4a4a;
}

.vi-gate-field input {
  padding: 12px 14px;
  border: 1px solid #e4ddc9;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
}

.vi-gate-field input:focus {
  outline: none;
  border-color: #7b9ec7;
  box-shadow: 0 0 0 3px rgba(123, 158, 199, 0.22);
}

.vi-gate-error {
  display: none;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(155, 35, 53, 0.08);
  border: 1px solid rgba(155, 35, 53, 0.22);
  color: #7a1a28;
  font-size: 0.88rem;
}

.vi-gate-error.is-visible {
  display: block;
}

.vi-gate-submit {
  width: 100%;
  padding: 13px 16px;
  border: none;
  border-radius: 10px;
  background: #1a2b4a;
  color: #fdfaf5;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

.vi-gate-submit:hover {
  background: #243a63;
}

.vi-gate-foot {
  margin: 16px 0 0;
  text-align: center;
  font-size: 0.75rem;
  color: #4a4a4a;
}

html.vi-gated .site-header,
html.vi-gated main,
html.vi-gated .site-footer,
html.vi-gated .disclosure {
  visibility: hidden;
}
