/* /venture investor portal — minimal v0 styles. Hardcoded colors so the
   instrument-paper / dark / pastel theme variables don't apply. */

body.venture-mode .app-container,
body.venture-mode #cosmicBgRoot,
body.venture-mode .splash-overlay,
body.venture-mode #jargan-splash,
body.venture-mode .right-panel,
body.venture-mode .auth-modal-overlay,
body.venture-mode .mobile-nav,
body.venture-mode .jargan-nav,
body.venture-mode .cta-hero-panel,
body.venture-mode .voice-pack-save-banner {
  display: none !important;
}

body.venture-mode {
  background: #f6f4ee;
  color: #1a1a1a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.venture-view {
  display: block;
  min-height: 100vh;
  padding: 48px 24px;
}
/* The display:block above wins over the user-agent `hidden` attribute style.
   Restore display:none for hidden sections. */
.venture-view[hidden] {
  display: none;
}

.venture-shell {
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e3dfd5;
  padding: 40px 48px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.venture-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid #e3dfd5;
  padding-bottom: 18px;
  margin-bottom: 28px;
}

.venture-brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.venture-brand__logo {
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 18px;
  color: #DD5100;
}
.venture-brand__sep { color: #999; }
.venture-brand__title {
  font-size: 14px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.venture-greeting {
  font-size: 14px;
  color: #555;
}
.venture-greeting span { color: #1a1a1a; font-weight: 600; }

.venture-section {
  margin-bottom: 32px;
}
.venture-section h2 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin: 0 0 14px 0;
  font-weight: 600;
}

.venture-shelf {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.venture-doc-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid #e3dfd5;
  background: #fafaf6;
  text-decoration: none;
  color: #1a1a1a;
  transition: background 0.15s, border-color 0.15s;
}
.venture-doc-card:hover {
  background: #ffffff;
  border-color: #DD5100;
}
.venture-doc-card__title {
  font-size: 15px;
  font-weight: 500;
}
.venture-doc-card__format {
  font-size: 11px;
  color: #888;
  letter-spacing: 0.06em;
}

.venture-btn {
  display: inline-block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  margin-right: 8px;
  background: #ffffff;
  color: #1a1a1a;
}
.venture-btn--primary {
  background: #DD5100;
  color: #ffffff;
  border-color: #DD5100;
}
.venture-btn--primary:hover { background: #c84800; }
.venture-btn--secondary {
  border-color: #DD5100;
  color: #DD5100;
}
.venture-btn--secondary:hover { background: #fff4ec; }
.venture-btn--ghost {
  border-color: #cccccc;
  color: #555;
}
.venture-btn--ghost:hover { border-color: #999; color: #1a1a1a; }
.venture-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.venture-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
  margin-top: 20px;
}
.venture-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.venture-field span {
  font-size: 12px;
  color: #555;
  letter-spacing: 0.04em;
}
.venture-field input {
  padding: 10px 12px;
  border: 1px solid #cccccc;
  font-size: 14px;
  background: #ffffff;
  color: #1a1a1a;
}
.venture-field input:focus {
  outline: none;
  border-color: #DD5100;
}

.venture-error:empty { display: none; }
.venture-error {
  margin-top: 10px;
  padding: 10px 12px;
  background: #fdecec;
  border: 1px solid #f5c6cb;
  font-size: 13px;
}

.venture-footer {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid #e3dfd5;
  font-size: 12px;
  color: #888;
}
.venture-footer a { color: #DD5100; }
