עתיד NOW, INC. | Enterprise Portal
bolt Culture-Driven Enterprise
hub Multi-entity corporate structure
rocket_launch Minchyn launching Q4 2026
groups 137k+ verified waitlist signups
language U.S. Based · Global Reach
hub Multi-entity corporate structure
rocket_launch Minchyn launching Q4 2026
groups 137k+ verified waitlist signups
language U.S. Based · Global Reach
Waitlist 📋
bolt CULTURE-DRIVEN ENTERPRISE
"Building the Future of Culture-Driven Marketing"
hub Unified VisionSynthesizing specialized verticals into a cohesive cultural powerhouse.
language Digital EcosystemLeveraging tokenomics and proprietary data for creator monetization.
precision_manufacturing Actionable StructureDeconstructing complex silos into dynamic, collaborative nodes.
Organizational Structure
We operate through a multi-entity structure enabling focused innovation while maintaining strategic coherence.
Select a subsidiary node to explore its assets and strategy decks.
account_balance TINY NOW, INC.
domain
TINY NOW, INC. Holding Entity & Strategy Hub.
Directing capital and data flow across all subsidiaries.
Sector Corporate Governance
Revenue Stream Equity Management
layers Strategy Stack2026 Ecosystem Overview.
view_carousel View Deck
Corporate Overview
Company Snapshot
business Company
Tiny Now, Inc. Type Private
Founded 2026
Employees 3
psychology Leadership
Founding CEO, Chairman, President
explore Industry
Building the future of Culture-Driven Marketing TINY HOME
A Tiny Space Detroit, MI
inventory_2 Core Products
XP Minchyn Advertising DataPad Events
BREMS Model & SATX Framework
Tiny operates on a dynamic SATX framework — Subscriptions, Advertising, Transactions, and XP (Minchyn XP, the currency that powers engagement) — strategically embedded across our Family of entities. This framework powers the BREMS Stratagem : a unified approach to Business, Revenue, Economic, Monetization, and Sales architecture that scales across AI, digital, immersive, and real-world experiences.
rocket_launch Minchyn is Tiny Now's inaugural product set to activate Q4 2026.
account_balance Entity & CapitalizationTiny is privately held, with Tiny Now, Inc., a Delaware C corporation, as the primary central holding entity overseeing a multi-entity architecture for synchronized equity, innovation continuity, IP integrity, and optimized capitalization cycles.
gavel Corporate GovernanceKey filings and foundational documents shaping corporate architecture and ensuring compliance, structural integrity, and transparent direction.
T
Investor Relations Managed by Kristen Candler | TINY NOW
lightbulb Investment ThesisCapitalizing on unprecedented pre-launch demand. Tiny is positioned to disrupt the creator economy by solving core infrastructure gaps for a massive, verified audience ready for day-one adoption.
trending_up
target Target Round
$6.6M
Seeking Lead
groups Waitlist Traction
137k+
Verified Signups
grid_view All Assets
present_to_all Pitch
monitoring Market
account_balance_wallet Financials
gavel Legal
Global Brand Guidelines Standardized visual identity for all internal and external communications.
Big ideas start in tiny spaces. tiny, inc. is a U.S. based, global marketing powerhouse. Our name is a visual play on the Hebrew word for "Future" (עתיד).
Future Blue Growth Green Energy Orange Passion Red
palette Color System
Future Blue #0000FF
Growth Green #008000
Energy Orange #FF8C00
Passion Red #FF0000
Strategic Verticals Service Allocation Focus distribution for global operations.
Media & Entertainment Distributing high-impact narratives across global digital channels.
Creator Monetization Building financial tools for the new digital workforce.
Reward-Based Experiences Gamifying brand loyalty through tangible user incentives.
✕
Document Preview ✕
Download Close
mail
Investor Inquiry Submit to get info about Minchyn.
We respect your privacy.
Ready
';
document.getElementById('deckFrame').srcdoc = deckHTML;
document.getElementById('deckModal').classList.remove('hidden');
document.body.style.overflow = 'hidden';
}
function closeDeck() {
document.getElementById('deckModal').classList.add('hidden');
document.getElementById('deckFrame').srcdoc = '';
document.body.style.overflow = '';
}
// ==================== EXISTING FUNCTIONS ====================
function openPreview(doc){ previewDoc=doc; if(doc.status==='Restricted'&&!isUnlocked){ window.pendingPreviewDoc=doc; showRequestModal(); return; } renderPreview(doc); }
function renderPreview(doc){
var m=document.getElementById('previewModal');
document.getElementById('previewTitle').innerText='Preview: '+doc.name;
document.getElementById('previewContent').innerHTML='
'+doc.cat+' description '+doc.type+'
'+doc.name+' '+doc.desc+'
Preview (mock)
picture_as_pdf Document preview not available. Click "Download" to access.
';
document.getElementById('previewDownloadBtn').onclick=function(){ showToast('Downloading '+doc.name+'...'); };
m.classList.remove('hidden'); m.classList.add('flex');
}
function closePreview(){ document.getElementById('previewModal').classList.add('hidden'); previewDoc=null; }
function showInvestorModal(){ document.getElementById('investorModal').classList.remove('hidden'); document.getElementById('investorModal').classList.add('flex'); document.body.classList.add('modal-open'); }
function closeInvestorModal(){ document.getElementById('investorModal').classList.add('hidden'); document.getElementById('investorModal').classList.remove('flex'); document.getElementById('investorForm').reset(); document.querySelectorAll('.investor-type-btn').forEach(function(b){ b.classList.remove('bg-black','text-white'); b.classList.add('bg-white','text-black'); }); document.getElementById('investorType').value=''; document.body.classList.remove('modal-open'); }
function setupInvestorTypeButtons(){
document.querySelectorAll('.investor-type-btn').forEach(function(btn){
btn.addEventListener('click',function(){
document.querySelectorAll('.investor-type-btn').forEach(function(b){ b.classList.remove('bg-black','text-white'); b.classList.add('bg-white','text-black'); });
this.classList.add('bg-black','text-white'); this.classList.remove('bg-white','text-black');
document.getElementById('investorType').value=this.dataset.value;
});
});
}
async function collectInvestorData(event){
event.preventDefault();
var name=document.getElementById('investorName').value.trim(), email=document.getElementById('investorEmail').value.trim(), type=document.getElementById('investorType').value, firm=document.getElementById('investorFirm').value.trim();
if(!name||!email||!type){ showToast("Please fill in all required fields."); return; }
if(!email.includes('@')){ showToast("Please enter a valid email address."); return; }
try{
var response=await fetch(FLUENTCRM_BASE+'/subscribers',{ method:'POST', headers:{'Content-Type':'application/json','Authorization':FLUENTCRM_AUTH}, body:JSON.stringify({ email:email, first_name:name, last_name:'', lists:[FLUENTCRM_LIST_ID], tags:['investor'] }) });
if(!response.ok) throw new Error('FluentCRM API error ('+response.status+')');
localStorage.setItem('investorSubmitted','true');
showToast('Thank you '+name+'!');
closeInvestorModal();
} catch(error){
console.error('Submission error:',error);
showToast('Submission failed. Check console & CORS/hosting.');
}
}
function initUI(){
document.getElementById('ui-round-size').innerText=CONFIG.roundSize;
document.getElementById('ui-waitlist').innerText=CONFIG.waitlistCount;
document.getElementById('ui-committed-status').innerText=CONFIG.amountCommitted==="$0"?"Seeking Lead":CONFIG.amountCommitted+" Committed";
renderSubsidiaries(); renderChart(); renderDocs(currentFilter); selectSubsidiary('tiny',false);
setupInvestorTypeButtons();
document.getElementById('investorForm').addEventListener('submit',collectInvestorData);
if(!localStorage.getItem('investorSubmitted')){ setTimeout(function(){ showInvestorModal(); },500); }
}
function renderSubsidiaries(){
var c=document.getElementById('subsidiaryMap'); c.innerHTML='';
orgData.subsidiaries.forEach(function(sub){
var d=document.createElement('div');
d.className='p-6 bg-'+(colorMap[sub.color]||'memphis-yellow')+' border-black-3 rounded-2xl chunky-shadow chunky-shadow-hover memphis-press cursor-pointer group';
d.innerHTML='
'+sub.name+' '+sub.description+'
';
d.onclick=function(){ selectSubsidiary(sub.id); }; c.appendChild(d);
});
}
function selectSubsidiary(id, scroll){
if(typeof scroll==='undefined') scroll=true;
var sub=(id==='tiny')?orgData.parent:orgData.subsidiaries.find(function(s){ return s.id===id; });
if(!sub) return; currentSelection=sub;
var mColorClass=colorMap[sub.color]||'memphis-pink';
var dc=document.getElementById('deepDiveContent');
dc.className='mt-16 bg-'+mColorClass+' border-black-3 p-8 md:p-12 rounded-2xl chunky-shadow transition-opacity';
document.getElementById('subsidiaryMarker').innerHTML='
domain ';
document.getElementById('subsidiaryDeepTitle').textContent=sub.name;
document.getElementById('subsidiaryDeepDesc').textContent=sub.description;
document.getElementById('subsidiaryLongDesc').textContent=sub.longDesc;
document.getElementById('subsidiaryDeepReport').textContent=sub.deepReport;
document.getElementById('subsidiaryDeepMon').textContent=sub.monetization;
document.getElementById('deckFocus').textContent=sub.deckFocus;
var tags=document.getElementById('subsidiaryTags'); tags.innerHTML='';
sub.tags.forEach(function(t){ var s=document.createElement('span'); s.className="px-3 py-1 bg-black text-white rounded-md font-black text-[10px] uppercase tracking-widest border-black-2"; s.textContent=t; tags.appendChild(s); });
if(orgData.subSubsidiaries&&orgData.subSubsidiaries[sub.id]){
var ssDiv=document.createElement('div'); ssDiv.className='mt-4 w-full';
orgData.subSubsidiaries[sub.id].forEach(function(ss){
var ssCard=document.createElement('div'); ssCard.className='p-3 bg-white/50 rounded-xl border-black-2 flex items-center justify-between';
ssCard.innerHTML='
'+ss.name+' View Site ';
ssDiv.appendChild(ssCard);
});
tags.appendChild(ssDiv);
}
if(scroll) dc.scrollIntoView({ behavior:'smooth', block:'center' });
}
function renderDocs(filter){
var container=document.getElementById('document-grid'); if(!container) return; container.innerHTML='';
var filtered=filter==='all'?docs:docs.filter(function(d){ return d.cat===filter; });
filtered.forEach(function(doc){
var isRestricted=doc.status==='Restricted'&&!isUnlocked;
var card=document.createElement('div');
card.className=(isRestricted?'bg-memphis-bg':'bg-white')+' p-6 border-black-3 rounded-2xl chunky-shadow chunky-shadow-hover memphis-press transition-all flex flex-col justify-between';
var inner='
'+doc.cat+' '+(isRestricted?'lock':'check_circle')+' '+(isRestricted?'Locked':'Ready')+'
'+doc.name+' '+doc.desc+'
draft '+doc.type+'visibility Preview';
if(isRestricted){ inner+='
key Unlock'; }
else{ inner+='
Download download '; }
inner+='
'; card.innerHTML=inner; container.appendChild(card);
});
}
function switchTab(t,el){
currentFilter=t;
document.querySelectorAll('#investors button').forEach(function(b){ b.classList.remove('active-tab','bg-black','text-white'); b.classList.add('bg-white','text-black'); });
el.classList.remove('bg-white','text-black'); el.classList.add('active-tab');
renderDocs(t);
}
function showRequestModal(){ document.getElementById('modal-overlay').classList.remove('hidden'); }
function closeModal(){ document.getElementById('modal-overlay').classList.add('hidden'); window.pendingPreviewDoc=null; }
function checkPassword(){
if(document.getElementById('passwordInput').value===CONFIG.accessKey){ isUnlocked=true; closeModal(); renderDocs(currentFilter); showToast("ACCESS GRANTED"); if(window.pendingPreviewDoc){ openPreview(window.pendingPreviewDoc); window.pendingPreviewDoc=null; } }
else{ var i=document.getElementById('passwordInput'); i.classList.add('animate-shake','border-memphis-pink'); setTimeout(function(){ i.classList.remove('animate-shake','border-memphis-pink'); },500); }
}
function renderChart(){
var canvas=document.getElementById('companyFocusChart'); if(!canvas) return;
if(chartInstance) chartInstance.destroy();
chartInstance=new Chart(canvas.getContext('2d'),{ type:'doughnut', data:{ labels:['Ads','Creators','Data','Impact','Media','AI'], datasets:[{ data:[30,20,20,10,10,10], backgroundColor:['#6bbde0','#6dd4a8','#e0d240','#e8869a','#1a1a1a','#ec5b13'], borderWidth:3, borderColor:'#1a1a1a' }] }, options:{ responsive:true, maintainAspectRatio:false, cutout:'80%', plugins:{ legend:{ display:false } } } });
}
function initBrandGuidelines(){
var ctx=document.getElementById('focusChartBrand'); if(!ctx) return; ctx=ctx.getContext('2d');
new Chart(ctx,{ type:'doughnut', data:{ labels:['Media & Entertainment','Creator Monetization','Reward-Based Experiences','Emerging Tech'], datasets:[{ data:[35,30,25,10], backgroundColor:['#0000FF','#008000','#FF8C00','#FF0000'], borderWidth:0 }] }, options:{ cutout:'75%', plugins:{ legend:{ position:'bottom', labels:{ usePointStyle:true, padding:25, font:{ family:"'Noto Sans', sans-serif", weight:'bold' } } } } } });
var typeInput=document.getElementById('brandTypeTester');
if(typeInput){
var pSL=document.getElementById('previewSansL'), pSB=document.getElementById('previewSansB'), pML=document.getElementById('previewMonoL'), pMB=document.getElementById('previewMonoB');
var update=function(){ var v=typeInput.value; pSL.textContent=v; pSB.textContent=v; pML.textContent=v; pMB.textContent=v; };
typeInput.addEventListener('input',update); update();
}
}
function copyBrandColor(hex){ navigator.clipboard.writeText(hex).then(function(){ showToast(hex+" copied!"); }); }
function showToast(m){ var t=document.getElementById('toast'); t.innerText=m; t.classList.add('show'); setTimeout(function(){ t.classList.remove('show'); },2000); }
window.onload=function(){ initUI(); initBrandGuidelines(); };