/* Astrorane Cosmic — front-end system */
:root {
  --void: #070914;
  --void-soft: #0c1020;
  --ink: #12182b;
  --ink-2: #18213a;
  --paper: #f2f3f7;
  --paper-2: #e7e9f1;
  --white: #f8faff;
  --muted: #aab2ca;
  --muted-dark: #5d6578;
  --cyan: #77e8ff;
  --cyan-2: #38bdda;
  --violet: #8b70ff;
  --magenta: #d66cff;
  --gold: #f3cb73;
  --red: #ff6f82;
  --border: rgba(255, 255, 255, 0.14);
  --border-dark: rgba(14, 22, 45, 0.13);
  --shadow: 0 34px 90px rgba(4, 8, 24, 0.28);
  --font-display: "Segoe UI Variable Display", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --font-text: "Segoe UI Variable Text", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell: min(1280px, calc(100vw - 72px));
  --header-h: 88px;
  --radius: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--void); }
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: #131827;
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--cyan); color: var(--void); }

h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin-top: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 670;
  line-height: 1.02;
  letter-spacing: -0.045em;
}
h1 em, h2 em, h3 em { font-style: normal; font-weight: 360; }

.shell { width: var(--shell); margin-inline: auto; }
.shell--wide { --shell: min(1440px, calc(100vw - 72px)); }
.site-main { position: relative; z-index: 1; }
.section { position: relative; padding: clamp(96px, 11vw, 176px) 0; background: var(--paper); }
.section--intro { padding-top: clamp(110px, 13vw, 190px); }
.section--ink { background: var(--void-soft); color: var(--white); }

.skip-link {
  position: fixed;
  z-index: 99999;
  left: 16px;
  top: -100px;
  padding: 12px 18px;
  background: var(--white);
  color: var(--void);
  border-radius: 4px;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }

.scroll-progress { position: fixed; inset: 0 0 auto; height: 2px; z-index: 10000; pointer-events: none; }
.scroll-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--cyan), var(--violet), var(--magenta)); box-shadow: 0 0 14px rgba(119,232,255,.7); }
.pointer-aura { position: fixed; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(105, 205, 255, .105), rgba(132, 88, 255, .035) 45%, transparent 72%); transform: translate(-50%, -50%); z-index: 0; pointer-events: none; opacity: 0; transition: opacity .4s; mix-blend-mode: screen; }
body.has-pointer .pointer-aura { opacity: 1; }

/* Typography helpers */
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 24px; color: var(--cyan); font-family: var(--font-mono); font-size: .72rem; font-weight: 600; letter-spacing: .18em; line-height: 1.3; text-transform: uppercase; }
.eyebrow > span, .eyebrow > i { width: 28px; height: 1px; background: currentColor; flex: 0 0 auto; }
.eyebrow--dark { color: #3b6171; }
.lead-copy { font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.48; letter-spacing: -.025em; color: #182038; }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 18px; font-size: .92rem; font-weight: 700; letter-spacing: .02em; }
.text-link svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; transition: transform .35s var(--ease); }
.text-link:hover svg { transform: translateX(6px); }

.button { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 58px; padding: 0 26px; border: 1px solid transparent; overflow: hidden; font-size: .88rem; font-weight: 720; letter-spacing: .025em; transition: transform .35s var(--ease), border-color .35s, background .35s, color .35s; }
.button span, .button svg { position: relative; z-index: 2; }
.button svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.button::before { content: ""; position: absolute; inset: 0; transform: translateX(-102%); background: linear-gradient(110deg, rgba(255,255,255,.18), rgba(255,255,255,0)); transition: transform .65s var(--ease); }
.button:hover { transform: translateY(-3px); }
.button:hover::before { transform: translateX(102%); }
.button--primary { background: var(--cyan); color: #07101a; box-shadow: 0 14px 44px rgba(71, 207, 235, .18); }
.button--primary:hover { background: #a2f1ff; }
.button--ghost { color: var(--white); border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.04); backdrop-filter: blur(10px); }
.button--ghost:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.08); }
.button--dark { background: var(--void); color: var(--white); }
.button--dark:hover { background: var(--ink-2); }
.button--line { color: var(--white); border-color: rgba(119,232,255,.45); background: transparent; }
.button--line:hover { border-color: var(--cyan); background: rgba(119,232,255,.08); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--hero { transform: translateY(22px); transition-duration: 1.15s; }

/* Header and brand */
.site-header { position: fixed; z-index: 1000; inset: 0 0 auto; height: var(--header-h); color: var(--white); transition: background .4s, height .4s, border-color .4s, backdrop-filter .4s; border-bottom: 1px solid transparent; }
.admin-bar .site-header { top: 32px; }
.site-header.is-scrolled { height: 72px; background: rgba(6, 8, 18, .78); border-color: rgba(255,255,255,.1); backdrop-filter: blur(20px) saturate(130%); }
.site-header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.site-header__brand { position: relative; z-index: 2; display: inline-flex; align-items: center; }
.site-header__brand .custom-logo, .site-footer__brand .custom-logo { width: auto; max-width: 260px; max-height: 62px; object-fit: contain; }
.brand { display: inline-flex; align-items: center; gap: 13px; min-width: 220px; }
.brand__symbol { position: relative; display: grid; place-items: center; width: 52px; height: 58px; }
.brand__symbol img { position: relative; z-index: 2; width: 42px; max-height: 57px; object-fit: contain; filter: drop-shadow(0 5px 14px rgba(0,0,0,.3)); }
.brand__orbit { position: absolute; inset: 6px 3px 5px; border: 1px solid rgba(119,232,255,.42); border-radius: 50%; transform: rotate(-25deg); box-shadow: inset 0 0 18px rgba(119,232,255,.08); }
.brand__orbit::after { content: ""; position: absolute; width: 5px; height: 5px; right: 2px; top: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.brand__word { display: flex; flex-direction: column; line-height: 1; }
.brand__word strong { font-size: 1.08rem; letter-spacing: .19em; font-weight: 720; }
.brand__word small { margin-top: 7px; color: rgba(255,255,255,.55); font-family: var(--font-mono); font-size: .55rem; letter-spacing: .11em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav__list { display: flex; align-items: center; gap: clamp(18px, 2.3vw, 38px); list-style: none; margin: 0; padding: 0; }
.site-nav__list a { position: relative; display: block; padding: 10px 0; color: rgba(255,255,255,.76); font-size: .79rem; font-weight: 650; letter-spacing: .025em; transition: color .25s; white-space: nowrap; }
.site-nav__list a::after { content: ""; position: absolute; left: 0; bottom: 4px; width: 0; height: 1px; background: var(--cyan); transition: width .35s var(--ease); }
.site-nav__list a:hover, .site-nav__list .current-menu-item > a, .site-nav__list .current_page_item > a { color: #fff; }
.site-nav__list a:hover::after, .site-nav__list .current-menu-item > a::after, .site-nav__list .current_page_item > a::after { width: 100%; }
.site-nav__list .sub-menu { position: absolute; list-style: none; margin: 0; padding: 14px; min-width: 210px; background: rgba(8,11,24,.96); border: 1px solid var(--border); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .25s; }
.site-nav__list li { position: relative; }
.site-nav__list li:hover > .sub-menu, .site-nav__list li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.site-nav__cta { display: inline-flex; align-items: center; gap: 12px; padding: 12px 17px; border: 1px solid rgba(119,232,255,.42); color: #fff; font-size: .75rem; font-weight: 700; white-space: nowrap; transition: .3s; }
.site-nav__cta svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.site-nav__cta:hover { background: var(--cyan); color: var(--void); border-color: var(--cyan); }
.nav-toggle { display: none; align-items: center; gap: 12px; padding: 8px 0; border: 0; background: none; color: #fff; cursor: pointer; }
.nav-toggle__label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.nav-toggle__icon { display: grid; gap: 6px; width: 26px; }
.nav-toggle__icon i { display: block; height: 1px; background: currentColor; transition: transform .3s, width .3s; }
.nav-toggle__icon i:last-child { width: 17px; justify-self: end; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon i:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon i:last-child { width: 26px; transform: translateY(-3.5px) rotate(-45deg); }

/* Home hero */
.hero { position: relative; min-height: 100svh; display: grid; align-items: center; overflow: hidden; background: var(--void); color: var(--white); }
.hero__media, .hero__media-overlay, .hero__stars, .hero__geometry { position: absolute; inset: 0; }
.hero__media { transform: scale(1.07); will-change: transform; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 46%; filter: saturate(.88) contrast(1.04) brightness(.78); }
.hero__media-overlay { background: linear-gradient(90deg, rgba(5,7,17,.96) 0%, rgba(5,7,17,.78) 43%, rgba(5,7,17,.24) 73%, rgba(5,7,17,.42) 100%), linear-gradient(0deg, rgba(5,7,17,.82) 0%, transparent 42%); }
.hero__stars { width: 100%; height: 100%; opacity: .82; }
.hero__geometry { pointer-events: none; }
.hero__orbit { position: absolute; border: 1px solid rgba(119,232,255,.16); border-radius: 50%; box-shadow: inset 0 0 50px rgba(119,232,255,.018); }
.hero__orbit::after { content: ""; position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }
.hero__orbit--one { width: 44vw; height: 44vw; min-width: 550px; min-height: 550px; right: -10vw; top: 6vh; transform: rotate(19deg); }
.hero__orbit--one::after { left: 9%; top: 17%; }
.hero__orbit--two { width: 30vw; height: 30vw; min-width: 360px; min-height: 360px; right: 2vw; top: 20vh; transform: rotate(-38deg); border-color: rgba(214,108,255,.15); }
.hero__orbit--two::after { right: 12%; bottom: 15%; background: var(--magenta); box-shadow: 0 0 18px var(--magenta); }
.hero__orbit--three { width: 14vw; height: 14vw; min-width: 170px; min-height: 170px; right: 11vw; top: 34vh; border-color: rgba(243,203,115,.2); }
.hero__orbit--three::after { left: 48%; top: -4px; background: var(--gold); box-shadow: 0 0 18px var(--gold); }
.hero__constellation { position: absolute; right: 4vw; bottom: 4vh; width: min(36vw, 550px); opacity: .35; }
.hero__constellation path { fill: none; stroke: rgba(255,255,255,.5); stroke-width: 1; stroke-dasharray: 5 8; }
.hero__constellation circle { fill: #fff; filter: drop-shadow(0 0 7px rgba(119,232,255,.8)); }
.hero__inner { position: relative; z-index: 3; display: grid; grid-template-columns: minmax(0, 1fr) 310px; align-items: end; gap: clamp(60px, 8vw, 130px); padding-top: calc(var(--header-h) + 70px); padding-bottom: 11vh; }
.hero__content { max-width: 880px; }
.hero h1 { margin: 0; font-size: clamp(3.7rem, 7.6vw, 8.8rem); line-height: .88; letter-spacing: -.065em; }
.hero h1 span, .hero h1 em { display: block; text-wrap: balance; }
.hero h1 em { margin-top: .08em; background: linear-gradient(105deg, #f8fbff 0%, #bceeff 43%, #b99eff 78%, #f2b8ff 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { max-width: 680px; margin: 34px 0 0; color: rgba(239,244,255,.72); font-size: clamp(1.05rem, 1.45vw, 1.3rem); line-height: 1.62; letter-spacing: -.015em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero__facts { display: grid; border-top: 1px solid var(--border); }
.hero__facts > div { display: grid; grid-template-columns: 72px 1fr; grid-template-rows: auto auto; column-gap: 12px; padding: 21px 0; border-bottom: 1px solid var(--border); }
.hero__facts small { grid-row: 1 / 3; align-self: center; color: var(--cyan); font-family: var(--font-mono); font-size: .58rem; letter-spacing: .14em; }
.hero__facts strong { font-size: 1.05rem; letter-spacing: -.02em; }
.hero__facts span { color: rgba(255,255,255,.46); font-size: .74rem; }
.hero__scroll { position: absolute; z-index: 5; left: 50%; bottom: 24px; display: flex; align-items: center; gap: 12px; transform: translateX(-50%); color: rgba(255,255,255,.55); font-family: var(--font-mono); font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; }
.hero__scroll i { position: relative; width: 34px; height: 1px; background: rgba(255,255,255,.3); overflow: hidden; }
.hero__scroll i::after { content: ""; position: absolute; inset: 0; background: var(--cyan); transform: translateX(-100%); animation: scrollLine 2.2s infinite; }
@keyframes scrollLine { 0% { transform: translateX(-100%); } 50%,100% { transform: translateX(100%); } }

/* Section headings and intro */
.section-index { display: flex; align-items: center; gap: 15px; align-self: start; font-family: var(--font-mono); color: #5f687d; font-size: .7rem; letter-spacing: .14em; writing-mode: vertical-rl; }
.section-index span { color: #171e31; font-size: 1rem; font-weight: 700; }
.section-index i { width: 1px; height: 72px; background: #aab1c0; }
.intro-grid { display: grid; grid-template-columns: 42px minmax(0, 1.12fr) minmax(360px, .76fr); gap: clamp(40px, 7vw, 115px); }
.intro-grid__title h2, .section-heading h2, .editorial-heading h2 { margin: 0; font-size: clamp(3rem, 5.6vw, 6.5rem); }
.intro-grid__title h2 em, .section-heading h2 em, .editorial-heading h2 em { color: #687187; }
.intro-grid__copy { padding-top: 66px; }
.intro-grid__copy p:not(.lead-copy) { color: #5a6274; }
.section-heading { max-width: 1000px; margin-bottom: clamp(56px, 7vw, 100px); }
.section-heading > p:last-child { max-width: 620px; margin: 26px 0 0; color: #646d7f; font-size: 1.05rem; }
.section-heading--light h2 em { color: #8c95aa; }
.section-heading--light > p:last-child { color: var(--muted); }
.editorial-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(310px, .55fr); gap: clamp(60px, 10vw, 150px); align-items: end; margin-bottom: clamp(56px, 8vw, 110px); }
.editorial-heading > div:last-child { padding-bottom: 8px; color: #626b7d; }
.editorial-heading > div:last-child > p { margin-bottom: 0; }

/* Disciplines */
.disciplines { background: linear-gradient(180deg, var(--paper) 0%, #e8eaf1 100%); }
.discipline-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--border-dark); border-left: 1px solid var(--border-dark); }
.discipline-card { display: grid; grid-template-columns: minmax(170px, .86fr) 1.2fr; min-height: 390px; border-right: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark); overflow: hidden; background: rgba(255,255,255,.15); transition: background .4s, transform .4s var(--ease), box-shadow .4s; }
.discipline-card:hover { position: relative; z-index: 2; transform: translateY(-8px); background: rgba(255,255,255,.7); box-shadow: var(--shadow); }
.discipline-card__visual { position: relative; min-height: 100%; overflow: hidden; background: var(--void); }
.discipline-card__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,9,20,.65), transparent 65%); }
.discipline-card__visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.05); transition: transform .8s var(--ease), filter .5s; }
.discipline-card:hover .discipline-card__visual img { transform: scale(1.06); filter: saturate(1.05); }
.discipline-card__visual--spectrum img { object-fit: contain; padding: 18px; background: #fff; }
.discipline-card__icon { position: absolute; z-index: 2; left: 22px; bottom: 20px; display: grid; place-items: center; width: 58px; height: 58px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: rgba(7,9,20,.38); backdrop-filter: blur(8px); color: #fff; }
.discipline-card__icon svg { width: 30px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linejoin: round; stroke-linecap: round; }
.discipline-card__body { position: relative; display: flex; flex-direction: column; padding: clamp(32px, 4vw, 60px); }
.discipline-card__body > span { font-family: var(--font-mono); color: #8b93a4; font-size: .65rem; letter-spacing: .16em; }
.discipline-card__body h3 { margin: auto 0 20px; font-size: clamp(2rem, 3vw, 3.4rem); }
.discipline-card__body p { margin: 0; color: #626b7e; line-height: 1.62; }
.discipline-card__body > i { display: grid; place-items: center; width: 40px; height: 40px; margin-top: 24px; border: 1px solid #c3c8d3; border-radius: 50%; transition: background .3s, border-color .3s, transform .3s; }
.discipline-card__body > i svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.discipline-card:hover .discipline-card__body > i { background: var(--void); border-color: var(--void); color: #fff; transform: translateX(5px); }

/* Cosmic chapter */
.cosmic-chapter { position: relative; min-height: 920px; display: grid; align-items: center; overflow: hidden; background: var(--void); color: var(--white); }
.cosmic-chapter__media, .cosmic-chapter__veil { position: absolute; inset: 0; }
.cosmic-chapter__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) brightness(.58); transform: scale(1.08); }
.cosmic-chapter__veil { background: linear-gradient(90deg, rgba(5,7,16,.94), rgba(5,7,16,.58) 55%, rgba(5,7,16,.15)), linear-gradient(0deg, rgba(5,7,16,.85), transparent 60%); }
.cosmic-chapter__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 100px minmax(0, .92fr) minmax(300px, .56fr); gap: clamp(40px, 7vw, 110px); align-items: end; padding-block: 140px; }
.cosmic-chapter__number { align-self: start; color: rgba(255,255,255,.12); font-family: var(--font-mono); font-size: clamp(4rem, 8vw, 9rem); line-height: 1; writing-mode: vertical-rl; }
.cosmic-chapter__copy h2 { margin: 0; font-size: clamp(4rem, 7.5vw, 8.8rem); }
.cosmic-chapter__copy h2 em { color: #a9b1c7; }
.cosmic-chapter__copy > p { max-width: 680px; margin: 32px 0 0; color: rgba(241,245,255,.67); font-size: 1.08rem; }
.cosmic-chapter__coordinates { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 38px; color: var(--cyan); font-family: var(--font-mono); font-size: .66rem; letter-spacing: .13em; }
.cosmic-chapter__coordinates i { width: 22px; height: 1px; background: rgba(119,232,255,.4); }
.cosmic-chapter__quote { margin: 0 0 20px; padding: 30px 0 0 30px; border-top: 1px solid rgba(255,255,255,.22); border-left: 1px solid rgba(255,255,255,.22); }
.cosmic-chapter__quote p { margin: 0; color: rgba(255,255,255,.78); font-size: clamp(1.25rem, 2vw, 1.8rem); line-height: 1.45; letter-spacing: -.025em; }

/* Image mosaic */
.sky-gallery-preview { background: #eceef4; }
.mosaic { display: grid; grid-template-columns: 1.5fr .9fr .8fr; grid-template-rows: 340px 300px; gap: 14px; }
.mosaic__item { position: relative; overflow: hidden; background: var(--void); }
.mosaic__item--wide { grid-column: 1 / 2; grid-row: 1 / 3; }
.mosaic__item--tall { grid-column: 2 / 3; grid-row: 1 / 3; }
.mosaic__item--planet { background: #03040a; }
.mosaic__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .85s var(--ease), filter .5s; }
.mosaic__item--planet img { object-fit: contain; padding: 25%; }
.mosaic__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,5,13,.85), transparent 55%); }
.mosaic__item span { position: absolute; z-index: 2; left: 22px; bottom: 18px; color: #fff; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .15em; }
.mosaic__item:hover img { transform: scale(1.045); filter: saturate(1.08) brightness(1.08); }

/* Spectrum story */
.spectrum-story { position: relative; overflow: hidden; background: var(--void); color: var(--white); padding: clamp(110px, 13vw, 190px) 0; }
.spectrum-story::before { content: ""; position: absolute; width: 62vw; height: 62vw; left: -24vw; top: -18vw; border-radius: 50%; background: radial-gradient(circle, rgba(139,112,255,.18), transparent 68%); }
.spectrum-story__beam { position: absolute; z-index: 0; inset: 0; pointer-events: none; overflow: hidden; }
.spectrum-story__beam::before { content: ""; position: absolute; left: 42%; top: -15%; width: 1px; height: 140%; transform: rotate(22deg); background: linear-gradient(transparent, rgba(255,255,255,.55), transparent); box-shadow: 0 0 26px rgba(255,255,255,.3); }
.spectrum-story__beam span { position: absolute; left: 43%; top: -10%; width: 26px; height: 130%; transform: rotate(22deg); background: linear-gradient(90deg, rgba(255,50,80,.12), rgba(255,180,70,.12), rgba(100,255,180,.12), rgba(80,180,255,.12), rgba(150,90,255,.12)); filter: blur(5px); }
.spectrum-story__inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(420px, .76fr); gap: clamp(65px, 10vw, 160px); align-items: center; }
.spectrum-story__visual { position: relative; min-height: 660px; }
.spectrum-orb { position: absolute; left: 0; top: 0; width: min(540px, 86%); aspect-ratio: 1; border-radius: 50%; overflow: hidden; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 40px 100px rgba(0,0,0,.5), 0 0 90px rgba(95,80,255,.12); }
.spectrum-orb img { width: 100%; height: 100%; object-fit: cover; }
.spectrum-orb::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(circle at 30% 25%, transparent 40%, rgba(4,6,16,.55)); }
.spectrum-orb > span { position: absolute; z-index: 2; inset: 8%; border: 1px solid rgba(119,232,255,.26); border-radius: 50%; }
.spectrum-chart { position: absolute; z-index: 3; right: 0; bottom: 0; width: 58%; padding: 12px; background: rgba(255,255,255,.92); box-shadow: 0 28px 70px rgba(0,0,0,.45); }
.spectrum-chart img { width: 100%; }
.spectrum-story__copy h2 { margin: 0; font-size: clamp(3.3rem, 5.7vw, 6.7rem); }
.spectrum-story__copy h2 em { color: #a8b1c8; }
.spectrum-story__copy > p { margin: 32px 0 0; color: var(--muted); font-size: 1.05rem; }
.feature-list { list-style: none; margin: 36px 0; padding: 0; border-top: 1px solid var(--border); }
.feature-list li { display: grid; grid-template-columns: 54px 1fr; gap: 16px; padding: 17px 0; border-bottom: 1px solid var(--border); color: rgba(255,255,255,.75); }
.feature-list span { color: var(--cyan); font-family: var(--font-mono); font-size: .68rem; }

/* Events */
.events-section { background: var(--paper); }
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.event-card { min-width: 0; background: #fff; border: 1px solid var(--border-dark); transition: transform .45s var(--ease), box-shadow .45s; }
.event-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.event-card__media { position: relative; display: block; aspect-ratio: 1.28; overflow: hidden; background: var(--void); }
.event-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s var(--ease); }
.event-card:hover .event-card__media img { transform: scale(1.055); }
.event-card__status { position: absolute; left: 16px; top: 16px; padding: 7px 10px; background: rgba(7,9,20,.78); backdrop-filter: blur(8px); color: #fff; font-family: var(--font-mono); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; }
.event-card__status--upcoming { background: var(--cyan); color: var(--void); }
.event-card__body { padding: 28px 28px 30px; }
.event-card__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; min-height: 32px; margin-bottom: 18px; color: #6e7687; font-family: var(--font-mono); font-size: .61rem; letter-spacing: .06em; text-transform: uppercase; }
.event-card__meta i { width: 4px; height: 4px; border-radius: 50%; background: var(--cyan-2); }
.event-card h3 { margin-bottom: 16px; font-size: clamp(1.65rem, 2.3vw, 2.35rem); }
.event-card h3 a:hover { color: #3b6b78; }
.event-card__body > p:not(.event-card__meta) { color: #626b7d; }
.event-card__link { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 26px; padding-top: 17px; border-top: 1px solid #e5e7ed; font-size: .78rem; font-weight: 700; }
.event-card__link svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform .3s; }
.event-card:hover .event-card__link svg { transform: translateX(5px); }

/* Territory network */
.territory-network { padding: clamp(110px, 13vw, 190px) 0; background: #0a0d1b; color: var(--white); overflow: hidden; }
.territory-network::before { content: ""; position: absolute; inset: auto -20vw -40vw auto; width: 70vw; height: 70vw; border-radius: 50%; background: radial-gradient(circle, rgba(214,108,255,.12), transparent 68%); }
.territory-network .shell { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(330px, .6fr) minmax(0, 1.3fr); gap: clamp(60px, 9vw, 140px); align-items: center; }
.territory-network__heading h2 { margin: 0; font-size: clamp(3.6rem, 6.2vw, 7rem); }
.territory-network__heading h2 em { color: #aab3ca; }
.territory-network__heading > p:last-child { margin-top: 30px; color: var(--muted); }
.flyer-rail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; align-items: end; }
.flyer-rail figure { position: relative; margin: 0; background: #11162a; box-shadow: 0 28px 70px rgba(0,0,0,.32); transition: transform .5s var(--ease); }
.flyer-rail figure:nth-child(1) { transform: rotate(-2deg) translateY(18px); }
.flyer-rail figure:nth-child(2) { transform: rotate(1.5deg) translateY(-22px); }
.flyer-rail figure:nth-child(3) { transform: rotate(-1deg) translateY(10px); }
.flyer-rail figure:hover { transform: translateY(-12px) rotate(0); z-index: 2; }
.flyer-rail img { width: 100%; aspect-ratio: .69; object-fit: cover; }
.flyer-rail figcaption { padding: 18px; }
.flyer-rail strong, .flyer-rail span { display: block; }
.flyer-rail strong { font-size: .92rem; }
.flyer-rail span { margin-top: 4px; color: #808ba5; font-size: .7rem; }

/* Equipment */
.equipment-section { background: #eceef3; }
.equipment-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(390px, .75fr); gap: clamp(60px, 9vw, 140px); align-items: center; }
.equipment-grid__media { position: relative; overflow: hidden; box-shadow: var(--shadow); }
.equipment-grid__media::before { content: ""; position: absolute; z-index: 2; inset: 18px; border: 1px solid rgba(255,255,255,.35); pointer-events: none; }
.equipment-grid__media img { width: 100%; min-height: 660px; object-fit: cover; }
.equipment-grid__tag { position: absolute; z-index: 3; left: 32px; bottom: 30px; padding: 10px 12px; background: rgba(7,9,20,.76); color: #fff; font-family: var(--font-mono); font-size: .58rem; letter-spacing: .13em; }
.equipment-grid__copy h2 { margin: 0; font-size: clamp(3.3rem, 5.2vw, 6rem); }
.equipment-grid__copy h2 em { color: #687187; }
.equipment-grid__copy > p { margin: 30px 0 0; color: #626b7c; }
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); margin: 38px 0 22px; border-top: 1px solid #cfd3dd; border-left: 1px solid #cfd3dd; }
.spec-grid div { padding: 22px; border-right: 1px solid #cfd3dd; border-bottom: 1px solid #cfd3dd; }
.spec-grid strong, .spec-grid span { display: block; }
.spec-grid strong { font-size: 1.8rem; letter-spacing: -.04em; }
.spec-grid span { margin-top: 5px; color: #6f7788; font-size: .78rem; }

/* Places story */
.places-story { display: grid; grid-template-columns: 1.25fr .75fr; background: var(--void); }
.places-story__panel { position: relative; min-height: 740px; overflow: hidden; color: #fff; }
.places-story__panel img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.65) saturate(.82); transition: transform 1s var(--ease), filter .5s; }
.places-story__panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,7,16,.94) 0%, rgba(5,7,16,.15) 67%); }
.places-story__panel > div { position: absolute; z-index: 2; left: clamp(28px, 5vw, 70px); right: clamp(28px, 5vw, 70px); bottom: clamp(40px, 6vw, 80px); }
.places-story__panel span { color: var(--cyan); font-family: var(--font-mono); font-size: .61rem; letter-spacing: .16em; }
.places-story__panel h3 { margin: 15px 0 18px; font-size: clamp(2.7rem, 5vw, 5.7rem); }
.places-story__panel p { max-width: 550px; color: rgba(255,255,255,.67); }
.places-story__panel:hover img { transform: scale(1.04); filter: brightness(.75) saturate(1); }
.places-story__panel--tower h3 { font-size: clamp(2.35rem, 4vw, 4.6rem); }

/* Education */
.education-section { background: linear-gradient(135deg, #f3f4f7 0%, #e8eaf1 100%); }
.education-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(500px, 1.05fr); gap: clamp(70px, 10vw, 160px); align-items: center; }
.education-grid__copy h2 { margin: 0; font-size: clamp(3.4rem, 5.7vw, 6.5rem); }
.education-grid__copy h2 em { color: #667086; }
.education-grid__copy > p { margin: 30px 0; color: #626b7d; }
.education-grid__visual { position: relative; min-height: 590px; display: grid; place-items: center; color: var(--void); }
.education-orbit { position: absolute; inset: 8%; border: 1px solid rgba(18,24,43,.16); border-radius: 50%; }
.education-orbit::before, .education-orbit::after, .education-orbit i { content: ""; position: absolute; inset: 14%; border: 1px solid rgba(18,24,43,.13); border-radius: 50%; transform: rotate(38deg); }
.education-orbit::after { inset: 28%; transform: rotate(-48deg); }
.education-orbit i:nth-child(1) { inset: 46% auto auto -4px; width: 8px; height: 8px; background: var(--cyan-2); border: 0; box-shadow: 0 0 14px var(--cyan); }
.education-orbit i:nth-child(2) { inset: 12% 20% auto auto; width: 7px; height: 7px; background: var(--magenta); border: 0; box-shadow: 0 0 14px var(--magenta); }
.education-orbit i:nth-child(3) { inset: auto 24% 13% auto; width: 7px; height: 7px; background: var(--gold); border: 0; box-shadow: 0 0 14px var(--gold); }
.education-grid__icon { position: relative; z-index: 2; display: grid; place-items: center; width: 140px; height: 140px; border-radius: 50%; background: var(--void); color: #fff; box-shadow: 0 25px 70px rgba(7,9,20,.28); }
.education-grid__icon svg { width: 70px; fill: none; stroke: currentColor; stroke-width: 1.35; }
.education-grid__visual > strong { position: absolute; font-family: var(--font-mono); font-size: .65rem; letter-spacing: .13em; }
.education-grid__visual > strong:nth-of-type(1) { left: 3%; top: 23%; }
.education-grid__visual > strong:nth-of-type(2) { right: 2%; top: 30%; }
.education-grid__visual > strong:nth-of-type(3) { left: 9%; bottom: 17%; }
.education-grid__visual > strong:nth-of-type(4) { right: 8%; bottom: 18%; }

/* CTA */
.home-cta { position: relative; min-height: 720px; display: grid; place-items: center; overflow: hidden; background: var(--void); color: #fff; }
.home-cta__media, .home-cta__overlay { position: absolute; inset: 0; }
.home-cta__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.58) saturate(.85); transform: scale(1.05); }
.home-cta__overlay { background: radial-gradient(circle at 70% 30%, transparent, rgba(5,7,16,.46) 55%), linear-gradient(90deg, rgba(5,7,16,.92), rgba(5,7,16,.35)); }
.home-cta__inner { position: relative; z-index: 2; max-width: 980px; text-align: center; padding-block: 110px; }
.home-cta__inner .eyebrow { justify-content: center; }
.home-cta h2 { margin: 0; font-size: clamp(3.5rem, 7vw, 8.2rem); }
.home-cta h2 em { color: #c4caDA; }
.home-cta__inner > p:not(.eyebrow) { max-width: 690px; margin: 30px auto 0; color: rgba(255,255,255,.68); font-size: 1.08rem; }
.home-cta .hero__actions { justify-content: center; }
.home-cta--compact { min-height: 620px; }
.home-cta--compact h2 { font-size: clamp(3.4rem, 6vw, 6.8rem); }

/* Footer */
.site-footer { position: relative; overflow: hidden; padding: 90px 0 28px; background: #050711; color: #fff; }
.site-footer__sky { position: absolute; inset: 0; opacity: .45; pointer-events: none; }
.site-footer__sky::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.65) 0 1px, transparent 1.5px); background-size: 86px 86px; mask-image: linear-gradient(to bottom, #000, transparent); }
.site-footer__sky i { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.site-footer__sky i:nth-child(1) { left: 12%; top: 18%; }.site-footer__sky i:nth-child(2) { left: 33%; top: 9%; }.site-footer__sky i:nth-child(3) { right: 23%; top: 22%; }.site-footer__sky i:nth-child(4) { right: 7%; top: 12%; }.site-footer__sky i:nth-child(5) { left: 58%; top: 6%; }
.site-footer .shell { position: relative; z-index: 2; }
.site-footer__top { display: grid; grid-template-columns: minmax(350px, 1.2fr) .55fr .72fr; gap: clamp(50px, 8vw, 120px); padding-bottom: 70px; }
.site-footer__identity > p { max-width: 530px; margin: 28px 0 0; color: #8c96ae; }
.site-footer__socials { display: flex; gap: 10px; margin-top: 28px; }
.site-footer__socials a { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; transition: .3s; }
.site-footer__socials a:hover { background: var(--cyan); color: var(--void); border-color: var(--cyan); }
.site-footer__socials svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.footer-label { margin-bottom: 24px; color: var(--cyan); font-family: var(--font-mono); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; }
.footer-menu, .site-footer__contact { display: flex; flex-direction: column; gap: 10px; }
.footer-menu { list-style: none; margin: 0; padding: 0; }
.footer-menu a, .site-footer__contact a, .site-footer__contact span { color: #9ba5bb; font-size: .83rem; transition: color .25s; }
.footer-menu a:hover, .site-footer__contact a:hover { color: #fff; }
.site-footer__contact strong { color: #fff; font-size: .66rem; letter-spacing: .08em; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: #68728a; font-family: var(--font-mono); font-size: .57rem; letter-spacing: .05em; }
.site-footer__bottom p { margin: 0; }

/* Inner page hero */
.inner-page { background: var(--paper); }
.page-hero { position: relative; min-height: min(820px, 84svh); display: grid; align-items: end; overflow: hidden; background: var(--void); color: #fff; }
.page-hero__media, .page-hero__overlay { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) brightness(.65); transform: scale(1.04); }
.page-hero__overlay { background: linear-gradient(90deg, rgba(5,7,17,.94), rgba(5,7,17,.43) 62%, rgba(5,7,17,.25)), linear-gradient(0deg, rgba(5,7,17,.88), transparent 52%); }
.page-hero__inner { position: relative; z-index: 2; padding-top: calc(var(--header-h) + 80px); padding-bottom: clamp(72px, 9vw, 130px); }
.page-hero h1 { max-width: 1160px; margin: 0; font-size: clamp(4rem, 8vw, 9.3rem); line-height: .9; }
.page-hero h1 em { color: #bdc4d7; }
.page-hero__lead { max-width: 720px; margin: 30px 0 0; color: rgba(255,255,255,.7); font-size: clamp(1.05rem, 1.5vw, 1.3rem); }
.page-hero--activities .page-hero__media img { object-fit: contain; object-position: 76% 50%; background: #020307; }
.page-hero--activities .page-hero__overlay { background: linear-gradient(90deg, rgba(5,7,17,.98) 0%, rgba(5,7,17,.84) 49%, rgba(5,7,17,.14)); }
.page-hero--gallery .page-hero__media img { object-position: 60% 45%; }
.page-hero--school .page-hero__media img { object-position: center 60%; }
.page-hero--events .page-hero__media img { object-position: center 45%; }
.page-hero--contact .page-hero__media img { object-position: 56% 40%; }
.page-hero--generic { min-height: 620px; }

/* Association page */
.values-section { padding-bottom: clamp(110px, 13vw, 190px); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.value-card { min-height: 340px; padding: 36px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.value-card > span { color: var(--cyan); font-family: var(--font-mono); font-size: .65rem; }
.value-card h3 { margin: 110px 0 18px; font-size: 2rem; }
.value-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.timeline-section { background: #eceef3; }
.timeline { border-top: 1px solid #c9ced8; }
.timeline__item { display: grid; grid-template-columns: 190px 1fr; gap: clamp(30px, 7vw, 100px); padding: 45px 0; border-bottom: 1px solid #c9ced8; }
.timeline__item time { color: #43516a; font-family: var(--font-mono); font-size: clamp(1.5rem, 3vw, 2.7rem); }
.timeline__item h3 { margin-bottom: 12px; font-size: clamp(1.8rem, 3vw, 3rem); }
.timeline__item p { max-width: 720px; margin: 0; color: #616a7c; }
.association-document { padding: clamp(100px, 12vw, 180px) 0; background: var(--paper); }
.association-document__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(390px, .75fr); gap: clamp(60px, 9vw, 140px); align-items: center; }
.association-document__visual { position: relative; }
.association-document__visual img { width: 100%; min-height: 620px; object-fit: cover; box-shadow: var(--shadow); }
.association-document__seal { position: absolute; right: -24px; bottom: 30px; display: grid; place-items: center; width: 160px; height: 160px; border-radius: 50%; background: var(--void); color: #fff; text-align: center; box-shadow: 0 20px 55px rgba(7,9,20,.3); }
.association-document__seal strong, .association-document__seal span { display: block; }
.association-document__seal strong { color: var(--cyan); font-size: 2.4rem; line-height: 1; }
.association-document__seal span { max-width: 90px; font-size: .65rem; line-height: 1.3; }
.association-document__copy h2 { font-size: clamp(3rem, 5vw, 5.5rem); }
.legal-data { border-top: 1px solid #c9ced8; }
.legal-data > div { display: grid; grid-template-columns: 130px 1fr; gap: 25px; padding: 17px 0; border-bottom: 1px solid #c9ced8; }
.legal-data dt { color: #737c8e; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.legal-data dd { margin: 0; font-weight: 650; }

/* Activities */
.activity-chapter { padding: clamp(100px, 12vw, 180px) 0; }
.activity-chapter--light { background: var(--paper); }
.activity-chapter--dark { background: #0a0d1b; color: #fff; }
.activity-chapter--spectrum { position: relative; overflow: hidden; background: linear-gradient(120deg, #0a0d1b, #12112b); color: #fff; }
.activity-chapter--spectrum::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 46%, rgba(255,50,50,.04), rgba(255,190,60,.04), rgba(70,240,180,.04), rgba(80,170,255,.04), transparent); pointer-events: none; }
.activity-chapter__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(390px, .72fr) minmax(0, 1.12fr); gap: clamp(60px, 9vw, 140px); align-items: center; }
.activity-chapter__grid--reverse { grid-template-columns: minmax(0, 1.12fr) minmax(390px, .72fr); }
.activity-chapter__grid--reverse .activity-chapter__copy { order: 2; }
.activity-chapter__copy { position: relative; }
.activity-chapter__number { position: absolute; right: 0; top: -70px; color: rgba(18,24,43,.07); font-family: var(--font-mono); font-size: 8rem; line-height: 1; }
.activity-chapter--dark .activity-chapter__number, .activity-chapter--spectrum .activity-chapter__number { color: rgba(255,255,255,.07); }
.activity-chapter__copy h2 { margin: 0; font-size: clamp(3.4rem, 5.7vw, 6.5rem); }
.activity-chapter__copy h2 em { color: #687187; }
.activity-chapter--dark h2 em, .activity-chapter--spectrum h2 em { color: #a1aac0; }
.activity-chapter__copy > p { margin: 30px 0; color: #626b7d; }
.activity-chapter--dark .activity-chapter__copy > p, .activity-chapter--spectrum .activity-chapter__copy > p { color: var(--muted); }
.activity-chapter__visual { position: relative; min-height: 680px; overflow: hidden; box-shadow: var(--shadow); }
.activity-chapter__visual img { width: 100%; height: 100%; min-height: 680px; object-fit: cover; }
.activity-chapter__visual > span { position: absolute; left: 25px; bottom: 24px; padding: 9px 11px; background: rgba(7,9,20,.78); color: #fff; font-family: var(--font-mono); font-size: .58rem; letter-spacing: .12em; }
.activity-chapter__visual--planet { background: #020307; }
.activity-chapter__visual--planet img { object-fit: contain; padding: 18%; }
.activity-chapter__visual--chart { background: #fff; }
.activity-chapter__visual--chart img { object-fit: contain; padding: 5%; }
.check-list { list-style: none; margin: 34px 0 0; padding: 0; border-top: 1px solid #d2d6df; }
.check-list li { position: relative; padding: 15px 0 15px 26px; border-bottom: 1px solid #d2d6df; color: #3e475a; }
.check-list li::before { content: ""; position: absolute; left: 2px; top: 24px; width: 8px; height: 8px; border: 1px solid var(--cyan-2); border-radius: 50%; }
.mini-specs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 35px; }
.mini-specs span { min-width: 130px; padding: 18px; border: 1px solid var(--border); color: #8994ab; font-size: .7rem; }
.mini-specs strong { display: block; color: var(--cyan); font-size: 1.2rem; }
.equipment-catalog { background: #eceef3; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #cdd2dc; border-left: 1px solid #cdd2dc; }
.catalog-card { min-height: 280px; padding: 34px; border-right: 1px solid #cdd2dc; border-bottom: 1px solid #cdd2dc; background: rgba(255,255,255,.24); transition: background .3s, transform .3s; }
.catalog-card:hover { background: #fff; transform: translateY(-6px); }
.catalog-card > span { color: #447384; font-family: var(--font-mono); font-size: 1.2rem; }
.catalog-card h3 { margin: 80px 0 15px; font-size: 1.9rem; }
.catalog-card p { margin: 0; color: #626b7d; font-size: .9rem; }

/* Astrophotography gallery */
.gallery-intro { background: var(--paper); }
.astro-gallery { padding: 20px 0 clamp(110px, 13vw, 190px); background: #080b16; }
.astro-gallery__grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 92px; gap: 14px; }
.astro-gallery__item { position: relative; grid-column: span 4; grid-row: span 5; overflow: hidden; background: #02030a; color: #fff; }
.astro-gallery__item--1 { grid-column: span 8; grid-row: span 7; }
.astro-gallery__item--2 { grid-column: span 4; grid-row: span 7; }
.astro-gallery__item--3 { grid-column: span 5; grid-row: span 6; }
.astro-gallery__item--4 { grid-column: span 3; grid-row: span 6; }
.astro-gallery__item--5 { grid-column: span 4; grid-row: span 6; }
.astro-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .85s var(--ease), filter .5s; }
.astro-gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,5,13,.92), transparent 56%); }
.astro-gallery__item > span { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 18px; }
.astro-gallery__item small, .astro-gallery__item strong, .astro-gallery__item em { display: block; }
.astro-gallery__item small { color: var(--cyan); font-family: var(--font-mono); font-size: .57rem; letter-spacing: .14em; }
.astro-gallery__item strong { margin-top: 6px; font-size: 1.1rem; }
.astro-gallery__item em { color: #9aa5bc; font-size: .7rem; font-style: normal; }
.astro-gallery__item:hover img { transform: scale(1.045); filter: saturate(1.12) brightness(1.08); }
.process-section { background: #eceef3; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #cbd0da; border-left: 1px solid #cbd0da; }
.process-grid article { min-height: 320px; padding: 34px; border-right: 1px solid #cbd0da; border-bottom: 1px solid #cbd0da; }
.process-grid span { color: #50798a; font-family: var(--font-mono); font-size: .67rem; }
.process-grid h3 { margin: 110px 0 16px; font-size: 1.8rem; }
.process-grid p { color: #626b7d; font-size: .9rem; }

/* Spectroscopy page */
.page-hero--spectrum .spectrum-ribbon { position: absolute; z-index: 1; left: 54%; top: -10%; width: 34px; height: 125%; transform: rotate(24deg); background: linear-gradient(90deg, rgba(255,60,80,.18), rgba(255,190,70,.18), rgba(70,240,170,.18), rgba(70,170,255,.18), rgba(160,90,255,.18)); filter: blur(3px); }
.spectrum-explain { background: var(--paper); }
.spectrum-explain__grid { display: grid; grid-template-columns: minmax(370px, .72fr) minmax(0, 1.15fr); gap: clamp(60px, 10vw, 150px); align-items: center; }
.spectrum-explain__copy h2 { margin: 0; font-size: clamp(3.4rem, 5.8vw, 6.7rem); }
.spectrum-explain__copy h2 em { color: #687187; }
.spectrum-explain__copy > p { color: #626b7d; }
.spectrum-explain__visual { position: relative; padding: 26px; background: #fff; box-shadow: var(--shadow); overflow: hidden; }
.spectrum-explain__visual img { width: 100%; }
.spectrum-explain__scan { position: absolute; top: 0; bottom: 0; left: 0; width: 2px; background: var(--cyan); box-shadow: 0 0 22px var(--cyan); animation: scanSpectrum 4.6s ease-in-out infinite alternate; }
@keyframes scanSpectrum { to { left: calc(100% - 2px); } }
.spectral-steps { overflow: hidden; }
.spectral-steps__grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.spectral-steps__grid article { min-height: 360px; padding: 32px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.spectral-steps__grid article > span { display: grid; place-items: center; width: 62px; height: 62px; border: 1px solid rgba(119,232,255,.35); border-radius: 50%; color: var(--cyan); font-size: 2rem; }
.spectral-steps__grid svg { width: 31px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.spectral-steps__grid small { display: block; margin-top: 70px; color: #6f7a94; font-family: var(--font-mono); }
.spectral-steps__grid h3 { margin: 8px 0 14px; font-size: 1.9rem; }
.spectral-steps__grid p { color: var(--muted); font-size: .9rem; }
.spectrum-case { padding: clamp(110px, 13vw, 190px) 0; background: #eceef3; }
.spectrum-case__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(390px, .72fr); gap: clamp(60px, 9vw, 140px); align-items: center; }
.spectrum-case__visual { padding: 26px; background: #fff; box-shadow: var(--shadow); }
.spectrum-case__copy h2 { margin: 0; font-size: clamp(3.2rem, 5.3vw, 6rem); }
.spectrum-case__copy h2 em { color: #687187; }
.spectrum-case__copy > p { margin: 30px 0; color: #626b7d; }

/* Schools */
.school-intro { background: var(--paper); }
.school-formats { background: #eceef3; }
.school-formats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.school-formats__grid article { min-height: 330px; padding: 34px; background: rgba(255,255,255,.55); border: 1px solid #d2d6df; transition: .4s; }
.school-formats__grid article:hover { transform: translateY(-7px); background: #fff; box-shadow: var(--shadow); }
.school-formats__grid article > span { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; background: var(--void); color: #fff; }
.school-formats__grid svg { width: 31px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.school-formats__grid h3 { margin: 80px 0 16px; font-size: 1.8rem; }
.school-formats__grid p { color: #626b7d; }
.school-path { padding: clamp(110px, 13vw, 190px) 0; background: #0a0d1b; color: #fff; }
.school-path__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(480px, 1fr); gap: clamp(60px, 10vw, 150px); align-items: center; }
.school-path__copy h2 { margin: 0; font-size: clamp(3.3rem, 5.6vw, 6.3rem); }
.school-path__copy h2 em { color: #a6afc5; }
.school-path__copy ol { list-style: none; margin: 40px 0 0; padding: 0; border-top: 1px solid var(--border); }
.school-path__copy li { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.school-path__copy li > span { color: var(--cyan); font-family: var(--font-mono); font-size: .65rem; }
.school-path__copy li strong { display: block; }
.school-path__copy li p { margin: 2px 0 0; color: #8590a8; font-size: .82rem; }
.school-path__visual { position: relative; min-height: 570px; display: grid; place-items: center; }
.school-path__visual > span { position: relative; z-index: 2; display: grid; place-items: center; width: 150px; height: 150px; border-radius: 50%; background: var(--cyan); color: var(--void); }
.school-path__visual svg { width: 72px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.school-path__visual > strong { position: absolute; font-family: var(--font-mono); color: #9ca7be; font-size: .65rem; letter-spacing: .13em; }
.school-path__visual > strong:nth-of-type(1) { left: 4%; top: 24%; }.school-path__visual > strong:nth-of-type(2) { right: 1%; top: 33%; }.school-path__visual > strong:nth-of-type(3) { left: 16%; bottom: 15%; }
.school-path .education-orbit { border-color: rgba(255,255,255,.15); }.school-path .education-orbit::before, .school-path .education-orbit::after { border-color: rgba(255,255,255,.1); }

/* Contact */
.contact-main { padding: clamp(110px, 13vw, 190px) 0; background: var(--paper); }
.contact-main__grid { display: grid; grid-template-columns: minmax(0, .84fr) minmax(480px, .8fr); gap: clamp(60px, 10vw, 150px); align-items: start; }
.contact-main__intro h2 { margin: 0; font-size: clamp(3.2rem, 5.2vw, 6rem); }
.contact-main__intro h2 em { color: #687187; }
.contact-main__intro > p { margin: 30px 0; color: #626b7d; }
.contact-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.contact-tags span { padding: 9px 13px; border: 1px solid #cbd0da; color: #4e586c; font-size: .73rem; }
.contact-card { background: #0a0d1b; color: #fff; box-shadow: var(--shadow); }
.contact-card > a, .contact-card > div { display: grid; grid-template-columns: 54px 1fr; grid-template-rows: auto auto; column-gap: 18px; padding: 25px 30px; border-bottom: 1px solid var(--border); transition: background .3s; }
.contact-card > a:hover { background: rgba(119,232,255,.08); }
.contact-card > a > span, .contact-card > div > span { grid-row: 1 / 3; display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(119,232,255,.3); border-radius: 50%; color: var(--cyan); }
.contact-card svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.contact-card small { color: #6f7b96; font-family: var(--font-mono); font-size: .58rem; letter-spacing: .12em; }
.contact-card strong { align-self: end; font-size: .96rem; overflow-wrap: anywhere; }
.contact-brief { padding: clamp(110px, 13vw, 190px) 0; background: #0a0d1b; color: #fff; }
.brief-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.brief-grid article { min-height: 300px; padding: 32px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.brief-grid span { color: var(--cyan); font-family: var(--font-mono); font-size: .65rem; }
.brief-grid h3 { margin: 100px 0 14px; font-size: 1.7rem; }
.brief-grid p { color: var(--muted); font-size: .88rem; }
.contact-legal { padding: 100px 0; background: #eceef3; }
.contact-legal__grid { display: grid; grid-template-columns: .8fr 1fr; gap: clamp(60px, 10vw, 150px); align-items: start; }
.contact-legal h2 { font-size: clamp(2.6rem, 4vw, 4.4rem); }


/* Join Astrorane */
.page-hero--join .page-hero__media img { object-position: center 38%; }
.page-hero--join .page-hero__overlay { background: linear-gradient(90deg, rgba(5,7,17,.96), rgba(5,7,17,.48) 62%, rgba(5,7,17,.24)), linear-gradient(0deg, rgba(5,7,17,.88), transparent 50%); }
.page-hero--join .hero__actions { margin-top: 36px; }

.join-reasons { overflow: hidden; }
.join-reasons::before { content: ""; position: absolute; width: 720px; height: 720px; right: -280px; top: -240px; border: 1px solid rgba(119,232,255,.08); border-radius: 50%; box-shadow: 0 0 0 90px rgba(119,232,255,.018), 0 0 0 180px rgba(139,112,255,.012); pointer-events: none; }
.join-reasons__grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 70px; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.join-reason { position: relative; min-height: 390px; padding: 34px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.join-reason > span { color: rgba(255,255,255,.32); font-family: var(--font-mono); font-size: .64rem; letter-spacing: .14em; }
.join-reason__icon { display: grid; place-items: center; width: 74px; height: 74px; margin-top: 74px; border: 1px solid rgba(119,232,255,.23); border-radius: 50%; color: var(--cyan); background: rgba(119,232,255,.035); }
.join-reason__icon svg { width: 34px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.join-reason h3 { margin: 28px 0 12px; font-size: 2rem; color: #fff; }
.join-reason p { margin: 0; color: #a6aec1; font-size: .92rem; }
.join-reason::after { content: ""; position: absolute; width: 160px; height: 160px; right: -90px; bottom: -90px; border-radius: 50%; background: radial-gradient(circle, rgba(119,232,255,.12), transparent 68%); transition: transform .5s var(--ease); }
.join-reason:hover::after { transform: scale(1.6); }

.join-life { padding: clamp(100px, 12vw, 180px) 0; background: #e8eaf0; }
.join-life__grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr); gap: clamp(55px, 9vw, 135px); align-items: center; }
.join-life__media { position: relative; min-height: 680px; overflow: hidden; background: #111827; box-shadow: var(--shadow); }
.join-life__media img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; filter: saturate(.82) contrast(1.03); }
.join-life__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,7,17,.55), transparent 45%); }
.join-life__tag { position: absolute; z-index: 2; left: 28px; bottom: 28px; padding: 10px 13px; color: #fff; border: 1px solid rgba(255,255,255,.25); background: rgba(5,7,17,.5); backdrop-filter: blur(9px); font-family: var(--font-mono); font-size: .62rem; letter-spacing: .12em; }
.join-life__copy h2 { margin: 0; font-size: clamp(3.2rem, 5vw, 6rem); }
.join-life__copy h2 em { color: #687187; }
.join-life__copy > p:not(.eyebrow) { margin: 30px 0; color: #5a6374; font-size: 1.02rem; }
.join-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.join-tags span { padding: 9px 12px; border: 1px solid #c6cbd5; color: #4e586a; background: rgba(255,255,255,.42); font-size: .72rem; font-weight: 700; }

.join-process { background: var(--paper); }
.join-process__grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 72px; border-top: 1px solid var(--border-dark); border-left: 1px solid var(--border-dark); }
.join-process__grid article { min-height: 330px; padding: 32px; border-right: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark); }
.join-process__grid article > span { color: #418398; font-family: var(--font-mono); font-size: .65rem; letter-spacing: .14em; }
.join-process__grid h3 { margin: 100px 0 14px; font-size: 1.8rem; }
.join-process__grid p { color: #687083; font-size: .9rem; }
.join-process__note { max-width: 850px; margin: 30px 0 0 auto; color: #70788a; font-size: .84rem; }

.join-quote { position: relative; min-height: 620px; display: grid; place-items: center; overflow: hidden; background: var(--void); color: #fff; }
.join-quote__media, .join-quote__overlay { position: absolute; inset: 0; }
.join-quote__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.42) saturate(.78); transform: scale(1.06); }
.join-quote__overlay { background: radial-gradient(circle at 68% 42%, rgba(119,232,255,.08), transparent 34%), linear-gradient(90deg, rgba(5,7,17,.92), rgba(5,7,17,.52)); }
.join-quote__inner { position: relative; z-index: 2; padding-block: 120px; }
.join-quote__inner p { max-width: 1060px; margin: 0; font-family: var(--font-display); font-size: clamp(2.8rem, 5.1vw, 6.5rem); font-weight: 360; line-height: 1.03; letter-spacing: -.045em; }
.join-quote__inner span { display: block; margin-top: 35px; color: var(--cyan); font-family: var(--font-mono); font-size: .66rem; letter-spacing: .18em; }

.join-form-section { padding: clamp(110px, 13vw, 190px) 0; background: #e9ebf1; }
.join-form-section__grid { display: grid; grid-template-columns: minmax(330px, .72fr) minmax(520px, 1fr); gap: clamp(55px, 9vw, 135px); align-items: start; }
.join-form-section__intro { position: sticky; top: calc(var(--header-h) + 42px); }
.join-form-section__intro h2 { margin: 0; font-size: clamp(3.2rem, 5.2vw, 6.3rem); }
.join-form-section__intro h2 em { color: #687187; }
.join-form-section__intro > p:not(.eyebrow) { margin: 30px 0; color: #5d6678; font-size: 1.02rem; }
.join-form-section__direct { margin-top: 55px; padding-top: 24px; border-top: 1px solid #cbd0d9; }
.join-form-section__direct small { display: block; color: #7a8291; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.join-form-section__direct a { display: inline-block; margin-top: 8px; color: #1a3140; font-weight: 750; text-decoration: underline; text-decoration-color: rgba(56,189,218,.5); text-underline-offset: 5px; }

.membership-card { padding: clamp(28px, 4vw, 54px); background: #fff; border: 1px solid #d4d8e0; box-shadow: 0 28px 80px rgba(10,17,35,.11); }
.membership-form { display: grid; gap: 25px; }
.membership-form label > span, .membership-form legend { display: block; margin-bottom: 9px; color: #374154; font-size: .76rem; font-weight: 750; letter-spacing: .025em; }
.membership-form input[type="text"], .membership-form input[type="email"], .membership-form input[type="tel"], .membership-form textarea, .membership-form select { width: 100%; min-height: 54px; padding: 13px 15px; border: 1px solid #cbd0d9; border-radius: 0; background: #f8f9fb; color: #161d2d; transition: border-color .25s, background .25s, box-shadow .25s; }
.membership-form textarea { min-height: 145px; resize: vertical; }
.membership-form input:focus, .membership-form textarea:focus, .membership-form select:focus { outline: 0; border-color: #5baabd; background: #fff; box-shadow: 0 0 0 3px rgba(119,232,255,.12); }
.form-row { display: grid; gap: 18px; }
.form-row--2 { grid-template-columns: 1fr 1fr; }
.interest-fieldset { margin: 0; padding: 0; border: 0; }
.interest-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.interest-grid label { position: relative; display: flex; align-items: center; min-height: 46px; margin: 0; cursor: pointer; }
.interest-grid input { position: absolute; opacity: 0; pointer-events: none; }
.interest-grid label span { display: flex; align-items: center; width: 100%; height: 100%; min-height: 46px; margin: 0; padding: 11px 13px; border: 1px solid #d1d5dd; background: #f8f9fb; color: #5c6575; font-size: .73rem; font-weight: 680; transition: .25s; }
.interest-grid input:checked + span { border-color: #5aaec1; background: rgba(119,232,255,.12); color: #173541; box-shadow: inset 3px 0 0 var(--cyan-2); }
.interest-grid input:focus-visible + span { outline: 2px solid var(--cyan-2); outline-offset: 2px; }
.consent-field { display: grid !important; grid-template-columns: 20px 1fr; gap: 11px; align-items: start; cursor: pointer; }
.consent-field input { margin-top: 5px; accent-color: #267d95; }
.consent-field span { margin: 0 !important; color: #666f80 !important; font-size: .72rem !important; font-weight: 500 !important; line-height: 1.55; }
.consent-field a { color: #256a7d; text-decoration: underline; text-underline-offset: 3px; }
.membership-form__submit { width: 100%; margin-top: 3px; cursor: pointer; }
.membership-form__meta { margin: -8px 0 0; color: #858c99; font-size: .7rem; line-height: 1.55; }
.membership-form__honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-message { margin-bottom: 28px; padding: 18px 20px; border-left: 3px solid; }
.form-message strong { display: block; margin-bottom: 5px; }
.form-message p { margin: 0; font-size: .85rem; }
.form-message--success { border-color: #2ca982; background: #edf9f5; color: #1f6d59; }
.form-message--error { border-color: #d35c70; background: #fff1f3; color: #8f3444; }

.join-faq { background: var(--paper); }
.join-faq__grid { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(0, 1fr); gap: clamp(55px, 9vw, 135px); align-items: start; }
.join-faq h2 { margin: 0; font-size: clamp(3.1rem, 5vw, 5.8rem); }
.join-faq h2 em { color: #687187; }
.join-faq__items { border-top: 1px solid #c8cdd7; }
.join-faq details { border-bottom: 1px solid #c8cdd7; }
.join-faq summary { position: relative; list-style: none; padding: 26px 48px 26px 0; cursor: pointer; color: #20283a; font-size: 1rem; font-weight: 750; }
.join-faq summary::-webkit-details-marker { display: none; }
.join-faq summary::before, .join-faq summary::after { content: ""; position: absolute; right: 8px; top: 50%; width: 15px; height: 1px; background: #415062; transition: transform .25s; }
.join-faq summary::after { transform: rotate(90deg); }
.join-faq details[open] summary::after { transform: rotate(0); }
.join-faq details p { max-width: 700px; margin: -5px 0 28px; color: #697284; }

.home-join { position: relative; min-height: 700px; display: grid; align-items: center; overflow: hidden; background: #050711; color: #fff; }
.home-join__media, .home-join__shade { position: absolute; inset: 0; }
.home-join__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 46%; filter: brightness(.5) saturate(.72); }
.home-join__shade { background: linear-gradient(90deg, rgba(5,7,17,.96) 0%, rgba(5,7,17,.75) 52%, rgba(5,7,17,.23)), radial-gradient(circle at 77% 35%, rgba(119,232,255,.12), transparent 30%); }
.home-join__inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) minmax(350px, .7fr); gap: clamp(60px, 10vw, 150px); align-items: center; padding-block: 120px; }
.home-join__copy h2 { margin: 0; font-size: clamp(3.8rem, 6.8vw, 8rem); }
.home-join__copy h2 em { color: #c1c8d8; }
.home-join__copy > p:not(.eyebrow) { max-width: 680px; margin: 30px 0 36px; color: #a7b0c5; font-size: 1.05rem; }
.home-join__manifesto { display: grid; border-top: 1px solid rgba(255,255,255,.2); }
.home-join__manifesto span { display: flex; align-items: center; justify-content: space-between; min-height: 84px; border-bottom: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.75); font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em; }
.home-join__manifesto span::after { content: "↗"; color: var(--cyan); font-size: 1.15rem; }

/* Event archive and single */
.events-archive__section { background: #eceef3; }
.events-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 44px; }
.events-filter button { padding: 10px 15px; border: 1px solid #c8cdd7; background: transparent; cursor: pointer; color: #535d70; font-size: .74rem; font-weight: 700; }
.events-filter button.is-active, .events-filter button:hover { background: var(--void); color: #fff; border-color: var(--void); }
.event-grid--archive { row-gap: 34px; }
.event-grid--archive > div.is-filtered-out { display: none; }
.pagination { margin-top: 60px; }
.pagination .nav-links { display: flex; justify-content: center; gap: 8px; }
.pagination .page-numbers { display: grid; place-items: center; min-width: 42px; height: 42px; border: 1px solid #c8cdd7; }
.pagination .current { background: var(--void); color: #fff; }
.empty-state { padding: 80px; border: 1px solid #cbd0da; text-align: center; }
.single-event__hero { position: relative; min-height: 84svh; display: grid; align-items: end; overflow: hidden; background: var(--void); color: #fff; }
.single-event__media, .single-event__overlay { position: absolute; inset: 0; }
.single-event__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.55) saturate(.78); }
.single-event__overlay { background: linear-gradient(90deg, rgba(5,7,17,.94), rgba(5,7,17,.4)), linear-gradient(0deg, rgba(5,7,17,.92), transparent 60%); }
.single-event__hero-inner { position: relative; z-index: 2; padding: calc(var(--header-h) + 90px) 0 100px; }
.single-event__hero h1 { max-width: 1100px; margin: 0; font-size: clamp(4rem, 8vw, 9rem); }
.single-event__meta { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 34px; }
.single-event__meta > span { display: grid; grid-template-columns: 32px auto; column-gap: 10px; align-items: center; padding: 13px 16px; border: 1px solid rgba(255,255,255,.18); background: rgba(7,9,20,.4); backdrop-filter: blur(8px); }
.single-event__meta svg { grid-row: 1 / 3; width: 22px; fill: none; stroke: var(--cyan); stroke-width: 1.7; }
.single-event__meta strong { font-size: .82rem; }.single-event__meta small { color: #98a3ba; font-size: .68rem; }
.single-event__content { padding: clamp(100px, 12vw, 170px) 0; background: var(--paper); }
.single-event__content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: clamp(60px, 10vw, 140px); }
.prose { max-width: 760px; font-size: 1.05rem; }
.prose h2 { margin-top: 2em; font-size: 2.5rem; }.prose h3 { margin-top: 1.7em; font-size: 1.8rem; }.prose p, .prose li { color: #4f586b; }.prose a { color: #2d7084; text-decoration: underline; text-underline-offset: 3px; }.prose img { margin: 2rem 0; }
.single-event__aside { align-self: start; padding: 16px; background: #fff; border: 1px solid #d3d7df; box-shadow: var(--shadow); }
.single-event__aside img { width: 100%; aspect-ratio: .75; object-fit: cover; }
.single-event__aside > div { padding: 22px 12px; }
.single-event__aside small, .single-event__aside strong { display: block; }.single-event__aside small { color: #778093; font-family: var(--font-mono); font-size: .58rem; text-transform: uppercase; }.single-event__aside strong { margin-top: 8px; }
.single-event__aside .button { width: 100%; }
.event-back { padding: 0 0 90px; background: var(--paper); }

/* Generic content, posts, 404 */
.generic-content { padding: 100px 0 150px; background: var(--paper); }
.post-summary { max-width: 820px; padding: 50px 0; border-bottom: 1px solid #ccd1da; }
.post-summary h2 { font-size: 2.6rem; }
.post-summary p { color: #626b7d; }
.not-found { position: relative; min-height: 100svh; display: grid; place-items: center; overflow: hidden; background: var(--void); color: #fff; }
.not-found__media, .not-found__overlay { position: absolute; inset: 0; }.not-found__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.5); }.not-found__overlay { background: rgba(5,7,17,.62); }
.not-found__inner { position: relative; z-index: 2; text-align: center; padding: 130px 0; }.not-found__inner > span { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); color: rgba(255,255,255,.06); font-size: min(35vw, 500px); font-weight: 800; line-height: 1; }.not-found .eyebrow { justify-content: center; }.not-found h1 { position: relative; margin: 0; font-size: clamp(3.5rem, 8vw, 8rem); }.not-found h1 em { color: #b7bfd2; }.not-found__inner > p:not(.eyebrow) { position: relative; color: #a3adc3; }.not-found .button { margin-top: 25px; }

/* Lightbox */
.ar-lightbox { position: fixed; z-index: 100000; inset: 0; display: grid; place-items: center; padding: 36px; background: rgba(3,5,13,.94); backdrop-filter: blur(16px); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.ar-lightbox.is-open { opacity: 1; visibility: visible; }
.ar-lightbox__figure { position: relative; max-width: min(1320px, 92vw); max-height: 88vh; margin: 0; }
.ar-lightbox__figure img { max-width: 100%; max-height: 82vh; object-fit: contain; box-shadow: 0 30px 90px rgba(0,0,0,.55); }
.ar-lightbox__figure figcaption { margin-top: 12px; color: #aeb8ce; font-size: .78rem; text-align: center; }
.ar-lightbox__close, .ar-lightbox__prev, .ar-lightbox__next { position: absolute; z-index: 2; display: grid; place-items: center; width: 50px; height: 50px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: rgba(255,255,255,.06); color: #fff; cursor: pointer; }
.ar-lightbox__close { right: 22px; top: 22px; }.ar-lightbox__prev { left: 22px; top: 50%; transform: translateY(-50%); }.ar-lightbox__next { right: 22px; top: 50%; transform: translateY(-50%); }
.ar-lightbox button:hover { background: var(--cyan); color: var(--void); }.ar-lightbox svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; }.ar-lightbox__prev svg { transform: rotate(180deg); }

/* Responsive */
@media (max-width: 1280px) {
  :root { --shell: min(1180px, calc(100vw - 56px)); }
  .shell--wide { --shell: min(1280px, calc(100vw - 56px)); }
  .site-nav__list { gap: 18px; }
  .site-nav__cta { display: none; }
  .hero__inner { grid-template-columns: 1fr 270px; gap: 60px; }
  .discipline-card { min-height: 360px; }
}

@media (max-width: 1040px) {
  :root { --header-h: 78px; }
  .admin-bar .site-header { top: 32px; }
  .nav-toggle { display: inline-flex; position: relative; z-index: 1002; }
  .site-nav { position: fixed; z-index: 1001; inset: 0; display: grid; align-content: center; justify-items: start; padding: 120px max(30px, 7vw) 60px; background: rgba(5,7,17,.97); backdrop-filter: blur(22px); transform: translateX(100%); opacity: 0; visibility: hidden; transition: transform .55s var(--ease), opacity .35s, visibility .35s; }
  .site-nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .site-nav__list { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
  .site-nav__list a { color: #fff; font-size: clamp(1.7rem, 5vw, 3.4rem); font-weight: 500; letter-spacing: -.04em; }
  .site-nav__list a::after { bottom: 0; }
  .site-nav__cta { display: inline-flex; margin-top: 25px; }
  .site-nav__list .sub-menu { position: static; display: none; opacity: 1; visibility: visible; transform: none; border: 0; padding: 0 0 0 20px; background: transparent; }
  .hero__inner { grid-template-columns: 1fr; align-items: center; padding-bottom: 110px; }
  .hero__content { padding-top: 60px; }
  .hero__facts { grid-template-columns: repeat(4, 1fr); }
  .hero__facts > div { display: block; padding: 15px; border-right: 1px solid var(--border); }
  .hero__facts small, .hero__facts strong, .hero__facts span { display: block; }
  .hero__facts small { margin-bottom: 8px; }
  .hero__orbit--one { right: -28vw; }
  .intro-grid { grid-template-columns: 36px 1fr; }
  .intro-grid__copy { grid-column: 2; padding-top: 0; }
  .discipline-grid { grid-template-columns: 1fr; }
  .discipline-card { grid-template-columns: .8fr 1.2fr; }
  .cosmic-chapter__inner { grid-template-columns: 70px 1fr; }
  .cosmic-chapter__quote { grid-column: 2; max-width: 660px; }
  .editorial-heading { grid-template-columns: 1fr; gap: 35px; }
  .mosaic { grid-template-columns: 1.25fr .75fr; grid-template-rows: 400px 280px; }
  .mosaic__item--wide { grid-column: 1; grid-row: 1 / 3; }
  .mosaic__item--tall { grid-column: 2; grid-row: 1; }
  .mosaic__item:nth-child(3) { grid-column: 2; grid-row: 2; }
  .mosaic__item--planet { display: none; }
  .spectrum-story__inner, .equipment-grid, .association-document__grid, .spectrum-explain__grid, .spectrum-case__grid, .contact-main__grid { grid-template-columns: 1fr; }
  .spectrum-story__visual { max-width: 720px; }
  .event-grid { grid-template-columns: repeat(2, 1fr); }
  .territory-network .shell { grid-template-columns: 1fr; }
  .flyer-rail { max-width: 850px; }
  .places-story { grid-template-columns: 1fr 1fr; }
  .education-grid, .school-path__grid { grid-template-columns: 1fr; }
  .education-grid__visual, .school-path__visual { max-width: 700px; width: 100%; margin-inline: auto; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .site-footer__identity { grid-column: 1 / -1; }
  .values-grid, .process-grid, .spectral-steps__grid, .brief-grid, .join-reasons__grid, .join-process__grid { grid-template-columns: repeat(2, 1fr); }
  .join-life__grid, .join-form-section__grid, .join-faq__grid, .home-join__inner { grid-template-columns: 1fr; }
  .join-life__media { min-height: 620px; }
  .join-form-section__intro { position: static; }
  .home-join__manifesto { max-width: 720px; }
  .activity-chapter__grid, .activity-chapter__grid--reverse { grid-template-columns: 1fr; }
  .activity-chapter__grid--reverse .activity-chapter__copy { order: 0; }
  .catalog-grid, .school-formats__grid { grid-template-columns: repeat(2, 1fr); }
  .astro-gallery__grid { grid-auto-rows: 80px; }
  .astro-gallery__item, .astro-gallery__item--1, .astro-gallery__item--2, .astro-gallery__item--3, .astro-gallery__item--4, .astro-gallery__item--5 { grid-column: span 6; grid-row: span 6; }
  .contact-legal__grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100vw - 36px); --header-h: 70px; --radius: 18px; }
  .shell--wide { --shell: calc(100vw - 36px); }
  .pointer-aura { display: none; }
  .brand { min-width: auto; }.brand__word small { display: none; }.brand__symbol { width: 44px; height: 50px; }.brand__symbol img { width: 36px; }.brand__word strong { font-size: .95rem; letter-spacing: .14em; }
  .site-header.is-scrolled { height: 64px; }
  .hero { min-height: 920px; }
  .hero__inner { padding-top: 130px; padding-bottom: 130px; }
  .hero h1 { font-size: clamp(3.6rem, 16vw, 6rem); }
  .hero__lead { font-size: 1rem; }
  .hero__facts { grid-template-columns: repeat(2, 1fr); }
  .hero__facts > div:nth-child(2n) { border-right: 0; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .button { width: 100%; }
  .hero__orbit--one { width: 600px; height: 600px; right: -390px; top: 120px; }
  .hero__orbit--two { right: -240px; top: 220px; }
  .hero__constellation { display: none; }
  .hero__scroll { bottom: 18px; }
  .section { padding: 90px 0; }
  .section--intro { padding-top: 100px; }
  .intro-grid { grid-template-columns: 1fr; gap: 30px; }
  .section-index { display: none; }
  .intro-grid__copy { grid-column: auto; }
  .intro-grid__title h2, .section-heading h2, .editorial-heading h2 { font-size: clamp(2.65rem, 12vw, 4.5rem); }
  .discipline-card { grid-template-columns: 1fr; min-height: 0; }
  .discipline-card__visual { min-height: 300px; }
  .discipline-card__body { min-height: 300px; }
  .discipline-card__body h3 { margin-top: 60px; }
  .cosmic-chapter { min-height: 820px; }
  .cosmic-chapter__inner { grid-template-columns: 1fr; gap: 45px; padding-block: 105px; }
  .cosmic-chapter__number { display: none; }
  .cosmic-chapter__copy h2 { font-size: clamp(3.7rem, 16vw, 6.2rem); }
  .cosmic-chapter__quote { grid-column: auto; }
  .mosaic { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(3, 330px); }
  .mosaic__item--wide, .mosaic__item--tall, .mosaic__item:nth-child(3) { grid-column: 1; grid-row: auto; }
  .spectrum-story { padding: 100px 0; }
  .spectrum-story__inner { grid-template-columns: 1fr; gap: 60px; }
  .spectrum-story__visual { min-height: 500px; }
  .spectrum-orb { width: 90%; }
  .spectrum-chart { width: 64%; }
  .spectrum-story__copy h2 { font-size: clamp(3rem, 13vw, 5rem); }
  .event-grid { grid-template-columns: 1fr; }
  .territory-network { padding: 100px 0; }
  .territory-network__heading h2 { font-size: clamp(3rem, 13vw, 5rem); }
  .flyer-rail { grid-template-columns: 1fr; gap: 24px; max-width: 430px; margin-inline: auto; }
  .flyer-rail figure:nth-child(n) { transform: none; }
  .equipment-grid__media img { min-height: 480px; }
  .equipment-grid__copy h2 { font-size: clamp(3rem, 13vw, 5rem); }
  .places-story { grid-template-columns: 1fr; }
  .places-story__panel { min-height: 650px; }
  .education-grid { grid-template-columns: 1fr; }
  .education-grid__visual { min-height: 450px; }
  .home-cta { min-height: 680px; }
  .home-cta h2 { font-size: clamp(3.2rem, 14vw, 5.6rem); }
  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__identity { grid-column: auto; }
  .site-footer__bottom { flex-direction: column; }
  .page-hero { min-height: 730px; }
  .page-hero h1 { font-size: clamp(3.7rem, 16vw, 6.4rem); }
  .values-grid, .process-grid, .spectral-steps__grid, .brief-grid, .catalog-grid, .school-formats__grid, .join-reasons__grid, .join-process__grid { grid-template-columns: 1fr; }
  .join-reason { min-height: 310px; }
  .join-reason__icon { margin-top: 45px; }
  .join-life__media { min-height: 520px; }
  .join-quote { min-height: 520px; }
  .join-form-section__grid, .join-faq__grid, .home-join__inner { grid-template-columns: 1fr; }
  .form-row--2, .interest-grid { grid-template-columns: 1fr; }
  .home-join { min-height: 780px; }
  .home-join__inner { padding-block: 95px; }
  .timeline__item { grid-template-columns: 1fr; gap: 15px; }
  .association-document__seal { width: 125px; height: 125px; right: -8px; }.association-document__seal strong { font-size: 1.8rem; }
  .activity-chapter { padding: 90px 0; }
  .activity-chapter__copy h2 { font-size: clamp(3rem, 13vw, 5rem); }
  .activity-chapter__visual, .activity-chapter__visual img { min-height: 500px; }
  .astro-gallery__grid { display: grid; grid-template-columns: 1fr; grid-auto-rows: auto; }
  .astro-gallery__item, .astro-gallery__item--1, .astro-gallery__item--2, .astro-gallery__item--3, .astro-gallery__item--4, .astro-gallery__item--5 { grid-column: 1; grid-row: auto; aspect-ratio: 1.05; }
  .spectrum-explain__copy h2, .spectrum-case__copy h2 { font-size: clamp(3rem, 13vw, 5rem); }
  .school-path__visual { min-height: 450px; }
  .contact-main__grid { grid-template-columns: 1fr; }.contact-main__intro h2 { font-size: clamp(3rem, 13vw, 5rem); }
  .single-event__hero h1 { font-size: clamp(3.7rem, 15vw, 6.4rem); }
  .single-event__content-grid { grid-template-columns: 1fr; }
  .single-event__aside { max-width: 440px; }
  .ar-lightbox { padding: 18px; }.ar-lightbox__prev, .ar-lightbox__next { top: auto; bottom: 22px; }.ar-lightbox__prev { left: calc(50% - 60px); }.ar-lightbox__next { right: calc(50% - 60px); }
}

@media (max-width: 480px) {
  .hero { min-height: 860px; }
  .hero__facts { display: none; }
  .hero__inner { align-items: center; }
  .hero h1 { font-size: clamp(3rem, 14.2vw, 4.4rem); line-height: .91; }
  .hero__content { padding-top: 40px; }
  .discipline-card__visual { min-height: 240px; }
  .spec-grid { grid-template-columns: 1fr; }
  .places-story__panel { min-height: 560px; }
  .page-hero { min-height: 670px; }
  .page-hero__inner { padding-bottom: 70px; }
  .page-hero h1 { font-size: clamp(3.1rem, 16vw, 5.2rem); }
  .legal-data > div { grid-template-columns: 1fr; gap: 5px; }
  .activity-chapter__visual, .activity-chapter__visual img { min-height: 420px; }
  .contact-card > a, .contact-card > div { grid-template-columns: 45px 1fr; padding: 22px; }
  .school-formats__grid article, .catalog-card, .value-card, .brief-grid article { min-height: 280px; }
  .join-life__media { min-height: 430px; }
  .membership-card { padding: 24px 18px; }
  .join-quote__inner p { font-size: clamp(2.25rem, 10.7vw, 3.7rem); }
  .home-join__copy h2 { font-size: clamp(3rem, 14vw, 5rem); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .pointer-aura, .hero__stars { display: none; }
}
