/* ───────────────────── Header ───────────────────── */
const hdr = {
bar:{display:'flex',alignItems:'center',gap:24,padding:'18px 40px',background:'#fff',borderBottom:'1px solid var(--ms-line)',position:'sticky',top:0,zIndex:50},
inner:{display:'flex',alignItems:'center',gap:24,maxWidth:1280,width:'100%',margin:'0 auto'},
links:{display:'flex',gap:28,flex:1,marginLeft:20},
link:{fontSize:14,fontWeight:500,color:'var(--ms-navy)',textDecoration:'none',border:0,cursor:'pointer'},
price:{fontSize:13,fontWeight:700,color:'var(--ms-navy-ink)',background:'var(--ms-bg)',padding:'8px 14px',borderRadius:999,whiteSpace:'nowrap'},
cta:{background:'var(--ms-mint)',color:'var(--ms-navy-ink)',border:0,padding:'12px 20px',borderRadius:12,fontWeight:700,fontSize:13,cursor:'pointer',fontFamily:'inherit',boxShadow:'var(--ms-shadow-mint)'}
};
function Header(){
return (
);
}
/* ───────────────────── Iceberg illustration (hero art) ───────────────────── */
/* Reflects the core thesis of the course: what you see (events) is a tiny
slice above the waterline; the real structure, patterns and mental models
sit below. Uses the brand palette (navy / mint / orange) exactly. */
function Iceberg({ style }){
return (
{/* soft sky glow */}
{/* WATERLINE — dashed, brand mint */}
ВИДИМОЕ 10%
{/* Iceberg TOP — above water */}
{/* shadow on water */}
{/* top face (lit) */}
{/* front face */}
{/* highlight ridge */}
{/* WATER band */}
{/* Iceberg BOTTOM — below water, the big one */}
{/* faceted highlights */}
{/* accent edge light */}
{/* Layer labels INSIDE the submerged iceberg */}
ПАТТЕРНЫ СТРУКТУРЫ МЕНТАЛЬНЫЕ МОДЕЛИ
{/* "events" tag with arrow, on top of visible tip */}
События
{/* deep marker */}
ГЛУБИНА СИСТЕМЫ · 90%
{/* small bubbles for life */}
);
}