                                                                               
                                                          
                                                                               
                                                                         
                                                                            
                                                                                

:root {
               
  --ink: #140d26;                            
  --ink-2: #1b1030;                                          
  --ink-3: #241740;                            
  --violet: #5f378a;
  --violet-mid: #8a63c0;
  --violet-light: #a07ecc;
  --lavender: #c9b6ec;
  --lavender-bright: #e9dcff;
  --cream: #f6f1e6;
  --cream-dim: rgba(246, 241, 230, 0.62);
  --cream-faint: rgba(246, 241, 230, 0.38);

                                          
  --glass-bg: linear-gradient(155deg, rgba(233, 220, 255, 0.10), rgba(95, 55, 138, 0.10) 58%, rgba(27, 16, 48, 0.16));
  --glass-border: 1px solid rgba(233, 220, 255, 0.22);
  --glass-highlight: inset 0 1px 0 rgba(246, 241, 230, 0.18);
  --glass-shadow: 0 24px 60px rgba(10, 6, 22, 0.45);
  --glass-blur: blur(18px);

                                         
  --fz-hero: clamp(56px, 7vw, 104px);
  --fz-h2: clamp(36px, 4vw, 56px);
  --fz-h3: clamp(22px, 2vw, 28px);
  --fz-body: 18px;
  --fz-small: 15px;
  --fz-eyebrow: 12.5px;

               
  --sec-pad: clamp(96px, 12vw, 168px);
  --gutter: clamp(20px, 4vw, 48px);
  --content-w: 1240px;
  --text-w: 68ch;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: var(--fz-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.serif { font-family: 'Fraunces', serif; }

                                                                                    
                                                                                             
                                                                                          
                                                                                           
                                                                                             
                                                                                      
                                                                                         
                                                                                        
                                                                                        
                                                                                           
                                                                                        
                                                 
                                                                                          
                                                                                           
                                                                                         
                                                                                      
                                                                           
.atmos {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(88% 117% at 0% 1.4%, rgba(17, 10, 40, .9) 0%, rgba(16, 10, 36, .9) 26%, rgba(11, 6, 23, .9) 40%, rgba(6, 4, 15, .9) 63%),
    linear-gradient(195deg, #0B0617 0%, #070417 80%, #12142a 100%);
}
.atmos .bloom {
  position: absolute; inset: 0;
  background: radial-gradient(50% 75% at 50% 84%, rgba(126, 84, 172, .5) 0%, rgba(126, 84, 172, .3) 33%, rgba(126, 84, 172, 0) 100%);
  animation: mgw-bloom 14s ease-in-out infinite alternate;
}
@keyframes mgw-bloom {
  from { opacity: .78; }
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .atmos .bloom, .atmos .stratum { animation: none; } }
.atmos::before {                                                                                      
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(130% 100% at 50% 40%, transparent 58%, rgba(8, 4, 18, 0.5) 100%);
}
.atmos::after {                                                 
  content: ""; position: absolute; inset: -50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.5;
}

                                                                                              
                                                               
.atmos .stratum { position: absolute; inset: -12% -6%; pointer-events: none; will-change: transform; }
.atmos .stratum--a {
  background:
    radial-gradient(820px 560px at 22% 30%, rgba(138, 99, 192, 0.3), transparent 64%),
    radial-gradient(640px 460px at 84% 68%, rgba(95, 55, 138, 0.26), transparent 60%);
}
                                                                       
                                                                                           
                                                                                                    
.atmos .stratum--b {
  background:
    radial-gradient(520px 380px at 68% 18%, rgba(233, 220, 255, 0.1), transparent 58%),
    radial-gradient(720px 520px at 12% 86%, rgba(201, 182, 236, 0.11), transparent 62%);
}

main { position: relative; z-index: 1; }

                                                                                        
                                                                                            
.draw-glyph path, .draw-glyph circle, .draw-glyph rect, .draw-glyph line, .draw-glyph polyline, .draw-glyph ellipse {
  stroke-dasharray: 1; stroke-dashoffset: 1; fill: none;
  transition: stroke-dashoffset 1100ms cubic-bezier(0.4, 0, 0.2, 1);
}
.in .draw-glyph path, .in .draw-glyph circle, .in .draw-glyph rect, .in .draw-glyph line, .in .draw-glyph polyline, .in .draw-glyph ellipse,
.draw-glyph.in path, .draw-glyph.in circle, .draw-glyph.in rect, .draw-glyph.in line, .draw-glyph.in polyline, .draw-glyph.in ellipse {
  stroke-dashoffset: 0;
}
.in .draw-glyph .d1, .draw-glyph.in .d1 { transition-delay: 180ms; }
.in .draw-glyph .d2, .draw-glyph.in .d2 { transition-delay: 360ms; }
.in .draw-glyph .d3, .draw-glyph.in .d3 { transition-delay: 540ms; }
@media (prefers-reduced-motion: reduce) {
  .draw-glyph path, .draw-glyph circle, .draw-glyph rect, .draw-glyph line, .draw-glyph polyline, .draw-glyph ellipse {
    stroke-dasharray: none; stroke-dashoffset: 0; transition: none;
  }
}

                                                                                             
.ghost-rownum {
  position: absolute; pointer-events: none; user-select: none; z-index: 0;
  font-family: 'Fraunces', serif; font-weight: 500; line-height: 0.85;
  color: transparent; -webkit-text-stroke: 1.2px rgba(201, 182, 236, 0.16);
}

                                                                              
.mg-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; gap: 28px;
  padding: 14px clamp(20px, 3vw, 40px);
  background: rgba(20, 13, 38, 0.72);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(233, 220, 255, 0.10);
}
.mg-brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--cream); text-decoration: none; margin-right: auto;
}
.mg-brand svg { width: 30px; height: 26px; }
.mg-brand .word { font-family: 'Fraunces', serif; font-size: 19px; letter-spacing: 0.01em; }
.mg-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.mg-nav a {
  color: var(--cream-dim); text-decoration: none;
  font-size: 14.5px; font-weight: 500; letter-spacing: 0.01em;
  transition: color 160ms ease;
  padding: 6px 2px;
}
.mg-nav a:hover, .mg-nav a:focus-visible { color: var(--cream); }
.mg-nav a[aria-current="page"] { color: var(--cream); position: relative; }
.mg-nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px;
  background: linear-gradient(90deg, var(--violet-light), var(--lavender-bright));
  border-radius: 2px;
}
.mg-cta {
  display: inline-block; padding: 10px 22px; border-radius: 999px;
  background: linear-gradient(135deg, #7b50b4, #5f378a);
  color: var(--cream); text-decoration: none; font-size: 14.5px; font-weight: 600;
  border: 1px solid rgba(233, 220, 255, 0.28);
  box-shadow: 0 6px 22px rgba(95, 55, 138, 0.45);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.mg-cta:hover, .mg-cta:focus-visible { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(122, 80, 180, 0.55); }

                
.mg-menu-btn { display: none; }
@media (max-width: 1100px) {
                                                                                     
                                                                                  
  .mg-nav {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 49;
    flex-direction: column; align-items: stretch; gap: 2px;
    padding: 14px 0 22px;
    background: rgba(16, 10, 30, 0.97);
    border-bottom: 1px solid rgba(233, 220, 255, 0.12);
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 220ms;
  }
  .mg-nav.open { opacity: 1; visibility: visible; transform: none; transition: opacity 220ms ease, transform 220ms ease; }
  .mg-nav a { font-size: 19px; font-family: 'Fraunces', serif; padding: 12px clamp(20px, 6vw, 40px); }
  .mg-nav a[aria-current="page"]::after { display: none; }
  .mg-nav a[aria-current="page"] { background: rgba(160, 126, 204, 0.12); }
  .mg-header { gap: 12px; }
  .mg-brand .word { white-space: nowrap; font-size: 17px; }
  .mg-cta { white-space: nowrap; padding: 9px 16px; font-size: 13.5px; }
  .mg-menu-btn {
    display: inline-flex; flex-direction: column; gap: 5px; margin-left: 8px;
    background: none; border: 0; padding: 10px; cursor: pointer;
  }
  .mg-menu-btn span { width: 22px; height: 1.6px; background: var(--cream); transition: transform 200ms ease, opacity 200ms ease; }
  .mg-menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
  .mg-menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .mg-menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }
}

                                                                               
.wrap { max-width: var(--content-w); margin: 0 auto; padding: 0 var(--gutter); }

                                                                                          
.page-hero { padding-top: calc(96px + var(--sec-pad) * 0.72); padding-bottom: calc(var(--sec-pad) * 0.5); }
.sec { padding-top: calc(var(--sec-pad) * 0.62); padding-bottom: calc(var(--sec-pad) * 0.62); }
.sec--tight { padding-top: calc(var(--sec-pad) * 0.4); padding-bottom: calc(var(--sec-pad) * 0.4); }

.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: var(--fz-eyebrow); font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--lavender);
}
.eyebrow .num { color: var(--cream-faint); font-weight: 500; }
.eyebrow::after { content: ""; width: 44px; height: 1px; background: rgba(201, 182, 236, 0.4); }

h1.display, .display {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: var(--fz-hero); line-height: 1.04; letter-spacing: -0.015em;
  margin: 22px 0 0; color: var(--cream);
}
.display .em { font-style: italic; color: var(--lavender-bright); }
h2.title {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: var(--fz-h2); line-height: 1.08; letter-spacing: -0.01em;
  margin: 20px 0 0; color: var(--cream);
}
h3.sub { font-family: 'Fraunces', serif; font-weight: 500; font-size: var(--fz-h3); line-height: 1.2; margin: 0; }

.lead {
  max-width: var(--text-w); font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.6; color: var(--cream-dim); margin: 26px 0 0;
}
.body-copy { max-width: var(--text-w); color: var(--cream-dim); }
.body-copy strong { color: var(--cream); font-weight: 600; }

                                  
.glass {
  background: var(--glass-bg);
  border: var(--glass-border);
  border-radius: 22px;
  box-shadow: var(--glass-shadow), var(--glass-highlight);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

                          
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.btn-primary {
  display: inline-block; padding: 14px 30px; border-radius: 999px;
  background: linear-gradient(135deg, #8255bd, #5f378a);
  color: var(--cream); text-decoration: none; font-weight: 600; font-size: 16px;
  border: 1px solid rgba(233, 220, 255, 0.3);
  box-shadow: 0 10px 30px rgba(95, 55, 138, 0.5);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.btn-primary:hover, .btn-primary:focus-visible { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(130, 85, 189, 0.6); }
.btn-ghost {
  display: inline-block; padding: 14px 30px; border-radius: 999px;
  background: rgba(246, 241, 230, 0.04); color: var(--cream); text-decoration: none;
  font-weight: 500; font-size: 16px; border: 1px solid rgba(246, 241, 230, 0.22);
  transition: background 160ms ease, border-color 160ms ease;
}
.btn-ghost:hover, .btn-ghost:focus-visible { background: rgba(246, 241, 230, 0.09); border-color: rgba(246, 241, 230, 0.4); }

                                                               
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 640ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 640ms cubic-bezier(0.22, 0.61, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 90ms; }
.reveal[data-d="2"] { transition-delay: 180ms; }
.reveal[data-d="3"] { transition-delay: 270ms; }
.reveal[data-d="4"] { transition-delay: 360ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

                                                                            
.cta-band { padding-top: calc(var(--sec-pad) * 0.55); padding-bottom: calc(var(--sec-pad) * 0.7); text-align: center; }
.cta-band .eyebrow { justify-content: center; }
.cta-band .eyebrow::after { display: none; }
.cta-band .title { margin-top: 18px; }
.cta-band .lead { margin-left: auto; margin-right: auto; text-align: center; }
.cta-band .btn-row { justify-content: center; }

                                                                            
.mg-footer {
  border-top: 1px solid rgba(233, 220, 255, 0.10);
  padding: 56px 0 44px; position: relative; z-index: 1;
  background: rgba(15, 9, 28, 0.6);
}
.mg-footer .foot-grid { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; justify-content: space-between; }
.foot-brand { display: inline-flex; align-items: center; gap: 12px; color: var(--cream); }
.foot-brand svg { width: 26px; height: 22px; opacity: 0.9; }
.foot-brand .word { font-family: 'Fraunces', serif; font-size: 17px; }
.foot-links { display: flex; gap: 22px; }
.foot-links a { color: var(--cream-dim); text-decoration: none; font-size: 14px; transition: color 160ms ease; }
.foot-links a:hover { color: var(--cream); }
.foot-legal { width: 100%; margin-top: 18px; color: rgba(246, 241, 230, 0.58); font-size: 13px; }

                                                                                     
                                                                                   
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .glass:has(a.c-link, a.p-link) {
    transition: transform 220ms cubic-bezier(0.22, 0.61, 0.36, 1), border-color 220ms ease, box-shadow 220ms ease;
  }
  .glass:has(a.c-link, a.p-link):hover {
    transform: translateY(-3px);
    border-color: rgba(233, 220, 255, 0.4);
    box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(246, 241, 230, 0.3);
  }
}

                                                  
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

                             
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--lavender-bright); outline-offset: 3px; border-radius: 4px;
}

::selection { background: rgba(160, 126, 204, 0.45); color: var(--cream); }

                                                                               
                                                                     
                                                                            
                                                                           
                                                                                
                                                                    
                                                                              
                                                                               
                                                                                 
                                                                           
                                                                               
                                                                                

                                                                                  
.world { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
  background:
    radial-gradient(115% 64% at 50% -12%, rgba(108, 74, 162, 0.30), transparent 60%),
    radial-gradient(82% 52% at 84% 6%, rgba(95, 55, 138, 0.16), transparent 64%),
    linear-gradient(180deg, #0c0a1c 0%, #0a0913 46%, #0b0a18 100%); }

                                                                                          
.world .aurora { position: absolute; left: -10%; right: -10%; top: -22%; height: 80vh;
  background:
    radial-gradient(58% 70% at 30% 2%, rgba(150, 110, 210, 0.22), transparent 70%),
    radial-gradient(52% 62% at 72% 8%, rgba(120, 90, 200, 0.17), transparent 72%),
    radial-gradient(38% 48% at 54% 0%, rgba(126, 226, 168, 0.045), transparent 72%);
  mix-blend-mode: screen; filter: blur(30px); opacity: 0.92;
  will-change: transform; animation: world-drift 36s ease-in-out infinite alternate; }
@keyframes world-drift { from { transform: translate3d(-3%, 0, 0) scale(1.02); } to { transform: translate3d(3%, 1.4%, 0) scale(1.06); } }
@media (prefers-reduced-motion: reduce) { .world .aurora { animation: none; } }

                                                                           
                                                                              
.world .struct { position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%);
  width: min(calc(100% - 2 * var(--gutter)), var(--content-w));
  background-image: repeating-linear-gradient(90deg,
    rgba(201, 182, 236, 0.052) 0, rgba(201, 182, 236, 0.052) 1px,
    transparent 1px, transparent calc(100% / 12));
  border-right: 1px solid rgba(201, 182, 236, 0.052);
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 7%, #000 93%, transparent 100%); }

                                                                
.world::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(135% 104% at 50% 34%, transparent 55%, rgba(6, 4, 14, 0.64) 100%); }
.world::after { content: ""; position: absolute; inset: -50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.42; }

body.night { background: #0a0913; }
body.night main { position: relative; z-index: 1; }

                                                                                   

                                                                                  
                                                                
.night .surface { position: relative;
  background: linear-gradient(165deg, rgba(27, 18, 50, 0.74), rgba(14, 9, 26, 0.90));
  border: 1px solid rgba(233, 220, 255, 0.11); border-radius: 20px;
  box-shadow: 0 24px 60px rgba(8, 5, 20, 0.5), inset 0 1px 0 rgba(246, 241, 230, 0.08); }
.night .surface--flush { overflow: hidden; }

                                                                     
.night .panel-head { display: flex; align-items: center; gap: 10px; padding: 14px 22px;
  border-bottom: 1px solid rgba(233, 220, 255, 0.10);
  font-family: ui-monospace, 'Cascadia Code', Consolas, 'SF Mono', monospace;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-faint); }
.night .panel-head .live { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; color: var(--lavender); }
.night .panel-head .pulse { width: 7px; height: 7px; border-radius: 50%; background: #7ee2a8; box-shadow: 0 0 10px rgba(126, 226, 168, 0.8); animation: night-pulse 2.2s ease-in-out infinite; }
@keyframes night-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
@media (prefers-reduced-motion: reduce) { .night .panel-head .pulse { animation: none; } }

                                                                             
.night .spine { position: absolute; top: 0; bottom: 0; width: 1.5px;
  background: linear-gradient(180deg, var(--lavender-bright), var(--violet-mid) 55%, rgba(138, 99, 192, 0.22));
  opacity: 0.72; }
.night .spine-node { position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: var(--lavender-bright); box-shadow: 0 0 9px rgba(233, 220, 255, 0.6); transform: translate(-50%, -50%); }

                                         
.night .meter { height: 5px; border-radius: 3px; background: rgba(233, 220, 255, 0.12); overflow: hidden; }
.night .meter > i { display: block; height: 100%; border-radius: 3px; transform-origin: left;
  background: linear-gradient(90deg, var(--violet-mid), var(--lavender-bright)); }

                                                              
.night .mono { font-family: ui-monospace, 'Cascadia Code', Consolas, 'SF Mono', monospace; }
.night .spec { font-family: ui-monospace, 'Cascadia Code', Consolas, 'SF Mono', monospace; font-size: 13px;
  color: var(--cream-faint); white-space: nowrap; border: 1.1px dashed rgba(233, 220, 255, 0.18);
  border-radius: 3px; padding: 7px 12px; }

                                                                             
.night .rule { border: 0; border-top: 1px solid rgba(233, 220, 255, 0.10); margin: 0; }
.night .col12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gutter); }
