/* ============================================================
   VANTAGE — design system
   palette scraped from space.com (blue #3669c9/#1a98ee, violet #9306f9,
   deep navy #2d1f6e) + stellarium.org (star gold #ffe67d, navy #2b2c3e)
   fonts: Sora / Inter / IBM Plex Mono
   ============================================================ */

:root {
  --accent: #ffd23e;  --accent-rgb: 255, 210, 62;
  --accent2: #7b5cff; --accent2-rgb: 123, 92, 255;
  --light: #45c4ff;   --light-rgb: 69, 196, 255;
  --danger: #ff5a6e;  --danger-rgb: 255, 90, 110;
  --ok: #45c4ff;      --ok-rgb: 69, 196, 255;
  --bg: #05070f;      --bg-rgb: 5, 7, 15;
  --bg2: #0a0d18;     --bg2-rgb: 10, 13, 24;
  --card: #10141f;    --card2: #161c2a;
  --ink: #e8ecf6;     --ink-rgb: 232, 236, 246;
  --muted: #9aa4bd;   --dim: #5b6478;
  --line: rgba(232, 236, 246, .12);
  --line2: rgba(232, 236, 246, .06);
  --scrim-rgb: 4, 6, 12;
  --light-text: #e8ecf6; --light-text-rgb: 232, 236, 246;

  --display: 'Sora', ui-sans-serif, system-ui, sans-serif;
  --body: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;

  --rad: 14px;
  --wrap: 1200px;
  --grad: linear-gradient(135deg, var(--accent), var(--accent2));
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: rgba(var(--accent-rgb), .3); }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
.wrap { width: min(var(--wrap), 100% - 48px); margin-inline: auto; }
.wrap-narrow { width: min(760px, 100% - 48px); margin-inline: auto; }
.hidden { display: none !important; }

/* ---------- background layers ---------- */
.sky { position: fixed; inset: 0; z-index: -3;
  background:
    radial-gradient(1200px 800px at 78% -10%, rgba(var(--accent2-rgb), .16), transparent 60%),
    radial-gradient(1000px 700px at 8% 110%, rgba(var(--light-rgb), .10), transparent 60%),
    var(--bg);
}
.grain { position: fixed; inset: 0; z-index: -2; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E"); }
#dust { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.cursor { position: fixed; top: 0; left: 0; width: 340px; height: 340px; z-index: -1; pointer-events: none;
  border-radius: 50%; background: radial-gradient(circle, rgba(var(--accent-rgb), .06), transparent 60%); }

/* ---------- intro: star warp ---------- */
#intro { position: fixed; inset: 0; z-index: 999; display: grid; place-items: center;
  background: var(--bg); transition: opacity .5s ease, visibility .5s; }
#intro.done { opacity: 0; visibility: hidden; pointer-events: none; }
.warp { position: relative; text-align: center; }
.warp-stars { position: absolute; inset: -60vh -60vw; pointer-events: none; }
.warp-stars i { position: absolute; left: 50%; top: 50%; margin: -1px 0 0 -1px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 6px var(--accent), 0 0 14px rgba(var(--accent2-rgb), .7);
  opacity: 0; animation: warp 1.9s ease-out infinite; }
.warp-stars i:nth-child(3n) { background: var(--light); box-shadow: 0 0 6px var(--light); }
.warp-stars i:nth-child(3n+2) { background: var(--accent2); box-shadow: 0 0 6px var(--accent2); }
@keyframes warp {
  0% { transform: translate(0,0) scale(.2); opacity: 0; }
  25% { opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) scale(1.7); opacity: 0; }
}
.int-word { font-family: var(--display); font-weight: 700; font-size: clamp(2.6rem, 7vw, 5.5rem);
  letter-spacing: -.03em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: wordIn .9s cubic-bezier(.2,.8,.2,1) both; }
.int-meta { margin-top: .6rem; font-family: var(--mono); font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--dim); animation: wordIn .9s .25s cubic-bezier(.2,.8,.2,1) both; }
@keyframes wordIn { from { opacity: 0; transform: translateY(12px); filter: blur(6px); } to { opacity: 1; transform: none; filter: none; } }

/* ---------- topbar + command palette ---------- */
.topbar { position: sticky; top: 0; z-index: 90; display: flex; align-items: center; gap: 20px;
  padding: 16px 24px; backdrop-filter: blur(14px); background: rgba(var(--bg-rgb), .7); border-bottom: 1px solid var(--line2); }
.logo { display: flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 700; letter-spacing: -.01em; }
.logo b { font-size: 1.05rem; }
.topbar-links { display: flex; gap: 4px; margin-inline: auto; }
.topbar-links a { padding: 7px 13px; border-radius: 9px; font-size: .9rem; color: var(--muted); transition: color .2s, background .2s; }
.topbar-links a:hover { color: var(--ink); background: rgba(var(--ink-rgb), .06); }
.cmdk { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 9px;
  border: 1px solid var(--line); background: var(--card); color: var(--muted); cursor: pointer; font-family: var(--body); font-size: .85rem; }
.cmdk:hover { color: var(--ink); border-color: rgba(var(--accent-rgb), .4); }
.kbd { font-family: var(--mono); font-size: .72rem; padding: 2px 6px; border-radius: 5px; border: 1px solid var(--line); background: var(--bg2); color: var(--dim); }

.palette { position: fixed; inset: 0; z-index: 200; display: grid; place-items: start center; padding-top: 14vh;
  background: rgba(4, 6, 12, .72); backdrop-filter: blur(8px); opacity: 0; visibility: hidden; transition: .2s; }
.palette.on { opacity: 1; visibility: visible; }
.palette-box { width: min(560px, 100% - 32px); background: var(--card); border: 1px solid var(--line);
  border-radius: var(--rad); box-shadow: 0 30px 80px rgba(0,0,0,.6); overflow: hidden; transform: translateY(-10px); transition: .2s; }
.palette.on .palette-box { transform: none; }
.palette-box input { width: 100%; padding: 16px 18px; background: transparent; border: none; border-bottom: 1px solid var(--line);
  color: var(--ink); font-family: var(--body); font-size: 1rem; outline: none; }
.palette-box input::placeholder { color: var(--dim); }
.palette-list { max-height: 55vh; overflow-y: auto; padding: 8px; }
.pl-item { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 9px; }
.pl-item:hover { background: rgba(var(--accent-rgb), .08); }
.pl-grp { font-family: var(--mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--dim); width: 90px; flex-shrink: 0; }
.pl-item span:last-child { color: var(--ink); }

/* ---------- footer: vertical directory ---------- */
.footer-index { margin-top: 40px; border-top: 1px solid var(--line); background: var(--bg2); }
.footer-index .wrap { padding: 56px 0 32px; }
.foot-dir { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.fc h5 { font-family: var(--mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .18em; color: var(--dim); margin-bottom: 14px; }
.fc a { display: block; padding: 5px 0; color: var(--muted); font-size: .92rem; transition: color .15s; }
.fc a:hover { color: var(--accent); }
.foot-bottom { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; padding-top: 24px; }
.brand { font-family: var(--display); font-weight: 700; font-size: 1.6rem; letter-spacing: -.02em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ca-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; border-radius: 9px; border: 1px solid var(--line); background: var(--card); }
.ca-label { font-family: var(--mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--dim); }
.ca-code { font-family: var(--mono); font-size: .78rem; color: var(--accent); }
.ca-copy { padding: 3px 8px; border-radius: 6px; border: 1px solid var(--line); background: transparent; color: var(--muted); font-size: .7rem; cursor: pointer; }
.ca-copy:hover { color: var(--ink); border-color: rgba(var(--accent-rgb), .4); }
.foot-meta { display: flex; gap: 16px; margin-left: auto; }
.foot-meta a { color: var(--muted); font-size: .85rem; }
.foot-meta a:hover { color: var(--ink); }
.foot-bottom > span:last-child { width: 100%; color: var(--dim); font-size: .78rem; }
.foot-oss { padding: 14px 0 20px; text-align: center; border-top: 1px solid var(--line2); color: var(--dim); font-family: var(--mono); font-size: .74rem; }
.foot-oss a { color: var(--muted); text-decoration: underline; }
.foot-oss a:hover { color: var(--accent); }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 9px; padding: 12px 20px; border-radius: 999px;
  font-family: var(--body); font-weight: 600; font-size: .92rem; border: 1px solid transparent; cursor: pointer; transition: transform .15s, box-shadow .2s, background .2s; }
.btn-lg { padding: 15px 26px; font-size: .98rem; }
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(var(--ink-rgb), .2); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: rgba(var(--accent-rgb), .5); color: var(--accent); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- section scaffolding ---------- */
.section { padding: 96px 0; }
.section-bleed { padding-inline: 0; }
.section-bleed .wrap { padding-inline: 24px; }
.sec-head { max-width: 760px; margin-bottom: 40px; }
.sec-head .top { display: flex; align-items: baseline; gap: 16px; }
.idx { font-family: var(--mono); font-size: .78rem; color: var(--accent); }
.sec-head h2 { font-family: var(--display); font-weight: 700; font-size: clamp(1.7rem, 3.4vw, 2.6rem); letter-spacing: -.02em; line-height: 1.1; }
.lead { color: var(--muted); font-size: 1.08rem; max-width: 56ch; }
.sec-head .lead { margin-top: 12px; }

/* ---------- hero ---------- */
.hero-split { padding: 72px 0 60px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: .76rem;
  text-transform: uppercase; letter-spacing: .18em; color: var(--muted); margin-bottom: 20px; }
.eyebrow i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: .4; } }
.h1-x { font-family: var(--display); font-weight: 700; font-size: clamp(3rem, 8vw, 6rem); line-height: .94; letter-spacing: -.04em; }
.h1-x .line { display: block; }
.h1-x .ac { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.h1-x .ch { display: inline-block; opacity: 0; }
body.on .h1-x .ch { animation: chIn .5s cubic-bezier(.2,.8,.2,1) forwards; }
@keyframes chIn { from { opacity: 0; transform: translateY(.5em); } to { opacity: 1; transform: none; } }
.hero-copy .lead { margin: 22px 0 26px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-family: var(--mono); font-size: .74rem; color: var(--dim); }
.hero-media { position: relative; }
.hm-big { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--rad); }
.hm-small { position: absolute; right: -8px; bottom: -24px; width: 46%; aspect-ratio: 1; object-fit: cover; border-radius: var(--rad); border: 3px solid var(--bg); }
.hm-badge { position: absolute; left: 14px; top: 14px; padding: 8px 13px; border-radius: 999px; background: rgba(var(--scrim-rgb), .55); backdrop-filter: blur(8px); font-family: var(--mono); font-size: .72rem; color: var(--light-text); }

/* ---------- ticker ---------- */
.ticker-section { border-block: 1px solid var(--line); padding: 16px 0; overflow: hidden; }
.ticker { display: flex; }
.tick-track { display: flex; gap: 0; white-space: nowrap; animation: tick 40s linear infinite; }
.tick-track span { font-family: var(--mono); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); padding: 0 18px; }
.tick-track i { color: var(--accent); font-style: normal; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- frows ---------- */
.frows { display: flex; flex-direction: column; }
.frow { display: grid; grid-template-columns: 80px 1fr auto; gap: 24px; align-items: start; padding: 28px 0; border-top: 1px solid var(--line); }
.frow .num { font-family: var(--mono); color: var(--accent); font-size: .85rem; }
.frow h3 { font-family: var(--display); font-weight: 600; font-size: 1.3rem; margin-bottom: 6px; }
.frow p { color: var(--muted); max-width: 62ch; }
.frow .ico { color: var(--accent2); }

/* ---------- features ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { padding: 26px; border: 1px solid var(--line); border-radius: var(--rad); background: var(--card); transition: transform .2s, border-color .2s; }
.feature:hover { transform: translateY(-4px); border-color: rgba(var(--accent-rgb), .4); }
.feature .ico { color: var(--accent); margin-bottom: 16px; }
.feature h3 { font-family: var(--display); font-weight: 600; font-size: 1.12rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: .93rem; }

/* ---------- gallery (edge-to-edge) ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 12px; padding-inline: 24px; }
.g-item { position: relative; overflow: hidden; border-radius: var(--rad); margin: 0; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.g-item:hover img { transform: scale(1.07); }
.g-item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 16px 12px;
  background: linear-gradient(transparent, rgba(var(--scrim-rgb), .75)); color: var(--light-text); font-size: .85rem; }
.g-item .credit { display: block; font-family: var(--mono); font-size: .68rem; color: rgba(var(--light-text-rgb), .6); }
.g-a { grid-row: span 2; } .g-b { grid-column: span 1; } .g-f { grid-column: span 1; }

/* ---------- constellation signature ---------- */
.const-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.const { position: relative; }
.const svg { width: 100%; max-width: 460px; }
.const-lines line { stroke: rgba(var(--accent-rgb), .5); stroke-width: 1.6; stroke-dasharray: 300; stroke-dashoffset: 300;
  animation: draw 2.4s ease forwards; }
.const-lines line:nth-child(2) { animation-delay: .4s; }
.const-lines line:nth-child(3) { animation-delay: .8s; }
.const-lines line:nth-child(4) { animation-delay: 1.2s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.cstar { fill: var(--accent); filter: drop-shadow(0 0 6px var(--accent)); }
.cname { font-family: var(--mono); font-size: 11px; fill: var(--muted); text-anchor: middle; }
.const-live { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-family: var(--mono); font-size: .76rem; color: var(--muted); }
.const-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 8px var(--ok); animation: pulse 2s infinite; }

/* ---------- film ---------- */
.film { padding-top: 0; }
.film-frame { position: relative; aspect-ratio: 16/8; overflow: hidden; border-radius: 0; }
.film-video { width: 100%; height: 100%; object-fit: cover; }
.film-video.still { object-fit: cover; }
.film-caption { position: absolute; left: 24px; bottom: 18px; font-family: var(--mono); font-size: .76rem; color: rgba(var(--light-text-rgb), .85); text-shadow: 0 1px 8px rgba(0,0,0,.6); }

/* ---------- stories ---------- */
.stories { padding-top: 20px; }
.stories-head { margin-bottom: 24px; }
.stories-track { display: flex; gap: 18px; width: max-content; padding-right: 40px; }
.story { width: 300px; flex-shrink: 0; }
.story-art { position: relative; border-radius: var(--rad); overflow: hidden; aspect-ratio: 4/5; margin-bottom: 14px; }
.story-img { width: 100%; height: 100%; object-fit: cover; }
.story-d { position: absolute; left: 12px; bottom: 12px; padding: 6px 11px; border-radius: 999px; background: rgba(var(--scrim-rgb), .6); font-family: var(--mono); font-size: .7rem; color: var(--light-text); }
.story h3 { font-family: var(--display); font-weight: 600; font-size: 1.2rem; }
.story p { color: var(--muted); font-size: .9rem; margin: 6px 0 8px; }
.story-who { font-family: var(--mono); font-size: .72rem; color: var(--accent); }

/* ---------- editorial ---------- */
.editorial { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.ed-photo { margin: 0; border-radius: var(--rad); overflow: hidden; }
.ed-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.ed-photo figcaption { padding: 8px 4px; font-family: var(--mono); font-size: .72rem; color: var(--dim); }
.ed-photo .credit { color: var(--dim); }
.ed-tag { font-family: var(--mono); font-size: .74rem; text-transform: uppercase; letter-spacing: .16em; color: var(--accent); }
.ed-body h2 { font-family: var(--display); font-weight: 700; font-size: clamp(1.5rem, 3vw, 2.2rem); letter-spacing: -.02em; margin: 14px 0 18px; line-height: 1.15; }
.ed-body p { color: var(--muted); margin-bottom: 14px; }
.ed-sign { margin-top: 24px; font-family: var(--display); font-weight: 600; }
.ed-sign span { display: block; font-family: var(--mono); font-size: .72rem; color: var(--dim); margin-top: 2px; }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { padding: 26px; border: 1px solid var(--line); border-radius: var(--rad); background: var(--card); }
.stat .v { font-family: var(--display); font-weight: 700; font-size: clamp(1.9rem, 4vw, 2.8rem); letter-spacing: -.02em; color: var(--accent); }
.stat .k { color: var(--muted); font-size: .9rem; margin-top: 4px; }

/* ---------- quotes ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { padding: 26px; border: 1px solid var(--line); border-radius: var(--rad); background: var(--card); }
.stars { color: var(--accent); letter-spacing: 2px; font-size: .85rem; margin-bottom: 12px; }
.quote p { color: var(--ink); font-size: .98rem; }
.quote .who { margin-top: 18px; font-size: .85rem; color: var(--muted); }
.quote .who b { display: block; color: var(--ink); }

/* ---------- roadmap ---------- */
.roadmap { display: flex; flex-direction: column; }
.rm-item { display: grid; grid-template-columns: 24px 130px 1fr; gap: 20px; align-items: start; padding: 20px 0; border-top: 1px solid var(--line); }
.dot { width: 12px; height: 12px; border-radius: 50%; margin-top: 5px; }
.dot.now { background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.dot.next { background: var(--accent2); }
.dot.later { border: 2px solid var(--line); }
.rm-date { font-family: var(--mono); font-size: .82rem; color: var(--accent); }
.rm-item p { color: var(--muted); }

/* ---------- faq ---------- */
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 4px; cursor: pointer; list-style: none; font-weight: 600; font-size: 1.02rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .x { color: var(--accent); font-weight: 400; transition: transform .25s; }
.faq details[open] summary .x { transform: rotate(45deg); }
.faq .a { padding: 0 4px 20px; color: var(--muted); max-width: 60ch; }

/* ---------- CTA ---------- */
.cta-img { position: relative; padding: 130px 0; overflow: hidden; }
.cta-img-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-img-scrim { position: absolute; inset: 0; background: rgba(var(--scrim-rgb), .72); }
.cta-img-inner { position: relative; text-align: center; }
.cta-img h2 { font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 5vw, 3.6rem); letter-spacing: -.03em; color: var(--light-text); }
.cta-img h2 em { font-style: normal; color: var(--accent); }
.cta-img p { color: rgba(var(--light-text-rgb), .85); margin: 12px 0 30px; }
.waitlist { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; }
.waitlist input { flex: 1; padding: 15px 20px; border-radius: 999px; border: 1px solid rgba(var(--light-text-rgb), .3); background: rgba(var(--scrim-rgb), .4); color: var(--light-text); font-family: var(--body); font-size: .96rem; outline: none; }
.waitlist input::placeholder { color: rgba(var(--light-text-rgb), .6); }
.cta-credit { margin-top: 22px; font-family: var(--mono); font-size: .72rem; color: rgba(var(--light-text-rgb), .6); }
.form-ok { display: none; margin-top: 16px; color: var(--ok); font-size: .9rem; }
.form-ok.show { display: block; }

/* ---------- page hero / breadcrumb ---------- */
.page-hero { padding: 64px 0 40px; border-bottom: 1px solid var(--line2); }
.breadcrumb { font-family: var(--mono); font-size: .78rem; color: var(--dim); margin-bottom: 20px; }
.breadcrumb a { color: var(--accent); }
.page-hero h1 { font-family: var(--display); font-weight: 700; font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -.03em; line-height: 1.05; }
.page-hero .lead { margin-top: 14px; }

/* ---------- prose ---------- */
.prose { max-width: 720px; }
.prose h1, .post-head h1 { font-family: var(--display); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -.02em; line-height: 1.12; margin-bottom: 20px; }
.prose h2 { font-family: var(--display); font-weight: 600; font-size: 1.35rem; margin: 32px 0 12px; }
.prose p { color: var(--muted); margin-bottom: 16px; font-size: 1.02rem; }
.prose pre { font-family: var(--mono); font-size: .82rem; line-height: 1.7; background: var(--card); border: 1px solid var(--line); border-radius: var(--rad); padding: 20px; margin: 20px 0; overflow-x: auto; color: var(--ink); }
.prose code { font-family: var(--mono); font-size: .82em; color: var(--accent); }
.prose em { color: var(--ink); font-style: italic; }

/* ---------- hub grid ---------- */
.hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hub-card { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: var(--rad); background: var(--card); transition: transform .2s, border-color .2s; display: block; }
.hub-card:hover { transform: translateY(-4px); border-color: rgba(var(--accent-rgb), .45); }
.hub-card .ico { color: var(--accent); margin-bottom: 16px; }
.hub-card h3 { font-family: var(--display); font-weight: 600; font-size: 1.2rem; margin-bottom: 8px; }
.hub-card p { color: var(--muted); font-size: .92rem; }
.hub-card .sub { display: block; margin-top: 12px; font-family: var(--mono); font-size: .72rem; color: var(--accent2); }
.hub-card .go { position: absolute; right: 20px; top: 20px; color: var(--dim); transition: color .2s, transform .2s; }
.hub-card:hover .go { color: var(--accent); transform: translateX(3px); }

/* ---------- related ---------- */
.related { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); }
.related h4 { font-family: var(--mono); font-size: .74rem; text-transform: uppercase; letter-spacing: .16em; color: var(--dim); margin-bottom: 14px; }
.related-links { display: flex; flex-wrap: wrap; gap: 12px; }
.related-links a { display: inline-flex; align-items: center; gap: 7px; padding: 9px 15px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .88rem; }
.related-links a:hover { color: var(--accent); border-color: rgba(var(--accent-rgb), .4); }

/* ---------- blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card { border: 1px solid var(--line); border-radius: var(--rad); overflow: hidden; background: var(--card); transition: transform .2s, border-color .2s; }
.post-card:hover { transform: translateY(-4px); border-color: rgba(var(--accent-rgb), .4); }
.pc-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.post-card .body { padding: 20px; }
.tag { font-family: var(--mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); }
.post-card h3 { font-family: var(--display); font-weight: 600; font-size: 1.1rem; margin: 8px 0 10px; line-height: 1.3; }
.meta { font-size: .8rem; color: var(--dim); }
.post-head { max-width: 720px; margin-bottom: 8px; }
.post-head .tag { display: inline-block; margin-bottom: 14px; }

/* ---------- timeline / status / roles ---------- */
.timeline { display: flex; flex-direction: column; }
.tl-item { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 22px 0; border-top: 1px solid var(--line); }
.tl-item .date { font-family: var(--mono); font-size: .82rem; color: var(--accent); }
.tl-item h3 { font-family: var(--display); font-weight: 600; font-size: 1.08rem; margin-bottom: 5px; }
.tl-item p { color: var(--muted); font-size: .92rem; }

.status-list { display: flex; flex-direction: column; gap: 14px; }
.status-row { display: grid; grid-template-columns: 130px 1fr auto; gap: 18px; align-items: center; padding: 18px; border: 1px solid var(--line); border-radius: var(--rad); background: var(--card); }
.svc { font-weight: 600; }
.bars { display: flex; gap: 2px; height: 26px; align-items: center; }
.bars i { width: 4px; border-radius: 2px; background: rgba(var(--ok-rgb), .6); animation: eq 1.1s ease-in-out infinite; }
@keyframes eq { 50% { transform: scaleY(.4); } }
.status-row .ok { font-family: var(--mono); font-size: .78rem; color: var(--ok); }
.status-row.down .ok { color: var(--danger); }
.status-row.down .bars i { background: rgba(var(--danger-rgb), .6); }
.status-note { margin-top: 16px; color: var(--dim); font-size: .85rem; }
.status-note a { color: var(--accent); }

.roles { display: flex; flex-direction: column; gap: 14px; }
.role { display: flex; justify-content: space-between; gap: 24px; padding: 24px; border: 1px solid var(--line); border-radius: var(--rad); background: var(--card); }
.role h3 { font-family: var(--display); font-weight: 600; font-size: 1.15rem; }
.role .meta { margin: 4px 0 10px; }
.role-desc { color: var(--muted); font-size: .92rem; }
.role .loc { font-family: var(--mono); font-size: .78rem; color: var(--dim); flex-shrink: 0; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .82rem; color: var(--muted); margin-bottom: 7px; }
.field input, .field textarea { width: 100%; padding: 13px 15px; border-radius: 10px; border: 1px solid var(--line); background: var(--card); color: var(--ink); font-family: var(--body); font-size: .95rem; outline: none; }
.field input:focus, .field textarea:focus { border-color: rgba(var(--accent-rgb), .5); }
.field textarea { min-height: 130px; resize: vertical; }
.checklist { list-style: none; }
.checklist li { display: flex; gap: 12px; padding: 12px 0; color: var(--muted); }
.checklist li svg { color: var(--accent); flex-shrink: 0; }
.checklist b { color: var(--ink); }
.contact-note { margin-top: 14px; color: var(--dim); font-size: .85rem; }

/* ---------- tilt / magnet ---------- */
.tilt { transition: transform .25s ease; transform-style: preserve-3d; will-change: transform; }
.magnet { transition: transform .2s ease; }

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .features, .stats, .quotes, .hub-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .editorial, .const-wrap, .contact-grid { grid-template-columns: 1fr; }
  .foot-dir { grid-template-columns: repeat(2, 1fr); }
  .topbar-links { display: none; }
}
@media (max-width: 560px) {
  .features, .stats, .quotes, .hub-grid, .blog-grid, .gallery { grid-template-columns: 1fr; }
  .foot-dir { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; gap: 10px; }
  .rm-item { grid-template-columns: 24px 1fr; }
  .rm-item .rm-date { grid-column: 2; }
  .tl-item { grid-template-columns: 1fr; gap: 8px; }
  .status-row { grid-template-columns: 1fr auto; }
  .bars { display: none; }
  .hm-small { right: 0; }
  .waitlist { flex-direction: column; }
}
