:root {
  --ink: #111122;
  --night: #1a1a2e;
  --panel: #16162a;
  --panel-soft: rgba(22, 22, 42, 0.78);
  --cream: #f0ece0;
  --soft-cream: #d9d4c8;
  --soft-text: #d8d8e6;
  --muted: #8a8aaa;
  --gold: #edc136;
  --gold-pale: #edc136;
  --gold-line: rgba(237, 193, 54, 0.24);
  --border: rgba(240, 236, 224, 0.11);
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --max: 1240px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(255,255,255,.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.014) 1px, transparent 1px),
    var(--ink);
  background-size: 72px 72px;
  color: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(620px circle at var(--pointer-x, 72%) var(--pointer-y, 20%), rgba(237, 193, 54, .065), transparent 60%);
  opacity: .9;
}

[data-site-header],
main,
[data-site-footer] { position: relative; z-index: 2; }

.gold-dust {
  position: fixed;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .58;
}

.scroll-progress {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(237,193,54,.72);
}

a { color: inherit; }

img { max-width: 100%; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 6px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  transition: top .2s ease;
}

.skip-link:focus { top: 16px; }

.site-header {
  position: relative;
  z-index: 20;
  width: min(calc(100% - 48px), var(--max));
  min-height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--gold-line);
}

.brand {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
}

.brand img {
  width: 58px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(237, 193, 54, .16));
  transition: filter .35s ease, transform .35s ease;
}

.brand:hover img,
.brand:focus-visible img { transform: translateY(-2px) rotate(1.5deg); filter: drop-shadow(0 0 20px rgba(237,193,54,.42)); }

.desktop-nav { display: flex; gap: 34px; }

.desktop-nav a,
.text-link {
  position: relative;
  text-decoration: none;
  color: var(--soft-cream);
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after { right: 0; }

.site-header > .button { justify-self: end; }

.button {
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: -.01em;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease;
}

.button:hover,
.button:focus-visible { transform: translateY(-2px); }

.button-primary {
  background: var(--gold);
  color: #16162a;
  box-shadow: 0 0 42px rgba(237, 193, 54, .24), 0 18px 44px rgba(0, 0, 0, .28);
}

.button-primary:hover,
.button-primary:focus-visible { box-shadow: 0 0 54px rgba(237, 193, 54, .34), 0 20px 50px rgba(0, 0, 0, .34); }

.button-outline { border-color: var(--gold-line); background: rgba(237, 193, 54, .035); }
.button-outline:hover,
.button-outline:focus-visible { border-color: rgba(237, 193, 54, .55); background: rgba(237, 193, 54, .08); }
.button-small { min-height: 44px; padding: 0 17px; }

.hero {
  position: relative;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.home-hero {
  min-height: calc(100vh - 92px);
  padding: 56px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(460px, .82fr);
  align-items: center;
  gap: clamp(42px, 5vw, 72px);
}

.hero-copy { position: relative; z-index: 3; min-width: 0; max-width: 690px; }

.eyebrow {
  margin: 0 0 25px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--gold-pale);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow span { width: 28px; height: 1px; background: var(--gold); box-shadow: 0 0 10px rgba(237,193,54,.5); }

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -.045em;
}

h1 { font-size: clamp(57px, 6.6vw, 95px); line-height: .98; }
h1 em { color: var(--gold); font-weight: inherit; }
.home-hero h1 { font-size: clamp(57px, 5.8vw, 82px); line-height: .95; }

.hero-lede {
  max-width: 610px;
  margin: 30px 0 0;
  color: var(--soft-cream);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.7;
  letter-spacing: -.015em;
}

.home-hero .hero-lede { margin-top: 24px; }
.home-hero .hero-actions { margin-top: 30px; }
.home-hero .hero-note { margin-top: 23px; }

.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-note { margin: 30px 0 0; color: var(--muted); font-size: 12px; line-height: 1.6; }

.ambient { display: none; }

.hero-visual { position: relative; z-index: 2; }

.constellation {
  position: relative;
  min-height: 610px;
  border: 1px solid rgba(237, 193, 54, .18);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 47%, rgba(237, 193, 54, .12), transparent 29%),
    linear-gradient(145deg, rgba(26,26,46,.82), rgba(17,17,34,.72));
  box-shadow: inset 0 0 80px rgba(0,0,0,.35), 0 40px 100px rgba(0,0,0,.36);
  isolation: isolate;
  transition: transform .45s cubic-bezier(.2,.7,.2,1), border-color .45s ease, box-shadow .45s ease;
}

.constellation:hover { border-color: rgba(237,193,54,.34); box-shadow: inset 0 0 100px rgba(0,0,0,.4), 0 48px 120px rgba(0,0,0,.42), 0 0 70px rgba(237,193,54,.08); }

.constellation::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(245,223,134,.5) .7px, transparent .7px);
  background-size: 38px 38px;
  opacity: .22;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}

.constellation-grid {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255,255,255,.045);
  transform: perspective(700px) rotateX(59deg) translateY(38%);
  background:
    linear-gradient(rgba(237,193,54,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237,193,54,.08) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .45;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(237,193,54,.17);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one { width: 430px; height: 430px; animation: orbit-pulse 7s ease-in-out infinite; }
.orbit-two { width: 290px; height: 290px; border-color: rgba(243,239,228,.1); }

.orbit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(237,193,54,.9);
}

.orbit-one::before { animation: orbit-marker 13s linear infinite; transform-origin: 219px 0; }
.orbit-two::before { animation: orbit-marker-small 9s linear infinite reverse; transform-origin: 149px 0; }

.signal-core {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 184px;
  height: 184px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(237,193,54,.42);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle, rgba(237,193,54,.14), rgba(22,22,42,.94) 68%);
  box-shadow: 0 0 54px rgba(237,193,54,.16), inset 0 0 32px rgba(237,193,54,.08);
}

.signal-core small,
.signal-node small { color: var(--muted); font-size: 10px; line-height: 1.35; }
.signal-core strong { margin-top: 5px; max-width: 110px; font-family: var(--serif); font-size: 18px; line-height: 1.08; }
.signal-star { color: var(--gold); font-size: 31px; filter: drop-shadow(0 0 13px rgba(237,193,54,.72)); animation: star-breathe 3.8s ease-in-out infinite; }

.signal-mark {
  width: 57px;
  height: 57px;
  margin-bottom: 2px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(237,193,54,.42));
  animation: star-breathe 3.8s ease-in-out infinite;
}

.signal-node {
  position: absolute;
  width: 158px;
  padding: 14px 15px;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 2px 8px;
  background: rgba(22,22,42,.86);
  box-shadow: 0 18px 34px rgba(0,0,0,.25);
  backdrop-filter: blur(12px);
}

.signal-node > span { grid-row: 1 / 3; color: var(--gold); font-size: 10px; font-weight: 900; }
.signal-node strong { font-size: 12px; }
.node-one { left: 5%; top: 14%; }
.node-two { right: 4%; top: 22%; }
.node-three { right: 7%; bottom: 16%; }
.node-four { left: 4%; bottom: 21%; }

.signal-node::after {
  content: "";
  position: absolute;
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-line), transparent);
}
.node-one::after { right: -65px; bottom: 10px; transform: rotate(25deg); transform-origin: left; }
.node-two::after { left: -65px; bottom: 4px; transform: rotate(-28deg); transform-origin: right; }
.node-three::after { left: -62px; top: 4px; transform: rotate(28deg); transform-origin: right; }
.node-four::after { right: -64px; top: 1px; transform: rotate(-22deg); transform-origin: left; }

.constellation-caption {
  position: absolute;
  left: 22px;
  bottom: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }

.recognition-band {
  padding: 34px max(24px, calc((100vw - var(--max))/2));
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  background: rgba(22,22,42,.74);
  text-align: center;
}

.recognition-band p { margin: 0 0 18px; color: var(--muted); font-family: var(--serif); font-size: 13px; font-style: italic; }
.system-wordmarks { display: flex; justify-content: center; gap: 20px; align-items: center; flex-wrap: wrap; color: var(--soft-cream); }
.system-wordmarks strong { font-size: 12px; }
.system-wordmarks span { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); opacity: .65; }

.preview-section {
  width: min(calc(100% - 48px), 900px);
  margin: 0 auto;
  padding: 140px 0;
  text-align: center;
}

.preview-section .eyebrow { justify-content: center; }
.preview-section h2 { font-size: clamp(42px, 6vw, 72px); line-height: 1.06; }
.preview-section > p:last-child { max-width: 640px; margin: 26px auto 0; color: var(--soft-cream); font-size: 18px; line-height: 1.7; }
.preview-section-compact { border-top: 1px solid var(--border); }
.preview-section-compact .text-link { display: inline-block; margin-top: 32px; }

.desktop-nav a[aria-current="page"] { color: var(--cream); }
.desktop-nav a[aria-current="page"]::after { right: 0; }

.site-header.is-scrolled {
  position: sticky;
  top: 0;
  width: 100%;
  padding-left: max(24px, calc((100vw - var(--max))/2));
  padding-right: max(24px, calc((100vw - var(--max))/2));
  background: rgba(17, 17, 34, .88);
  border-bottom-color: rgba(237, 193, 54, .3);
  backdrop-filter: blur(18px);
}

.menu-toggle,
.mobile-menu { display: none; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1);
}

.reveal.is-visible { opacity: 1; transform: none; }

.section {
  position: relative;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 130px 0;
}

.section-line { border-top: 1px solid var(--border); }

.section-soft {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--max))/2));
  padding-right: max(24px, calc((100vw - var(--max))/2));
  background: linear-gradient(180deg, rgba(26,26,46,.8), rgba(17,17,34,.2));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-heading { max-width: 830px; margin-bottom: 62px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading h2 { font-size: clamp(43px, 5.5vw, 72px); line-height: 1.05; }
.section-heading p { max-width: 650px; margin: 24px 0 0; color: var(--soft-cream); font-size: 18px; line-height: 1.75; }
.section-heading.center p { margin-left: auto; margin-right: auto; }
.gold { color: var(--gold); }

.editorial-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(48px, 8vw, 112px); align-items: start; }
.editorial-sticky { position: sticky; top: 140px; }
.editorial-sticky h2 { font-size: clamp(42px, 5vw, 68px); line-height: 1.05; }
.editorial-sticky p { margin: 24px 0 0; color: var(--soft-cream); font-size: 17px; line-height: 1.75; }
.editorial-list { border-top: 1px solid var(--border); }
.editorial-item { padding: 32px 0; border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 52px 1fr; gap: 18px; }
.editorial-item > span { color: var(--gold); font-size: 11px; font-weight: 900; }
.editorial-item h3 { margin: 0; font-family: var(--serif); font-size: 29px; letter-spacing: -.025em; }
.editorial-item p { margin: 13px 0 0; color: var(--muted); line-height: 1.7; }

.feature-slab {
  min-height: 570px;
  padding: clamp(34px, 6vw, 78px);
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 85% 20%, rgba(237,193,54,.13), transparent 26%), var(--night);
  box-shadow: 0 38px 100px rgba(0,0,0,.32);
}

.feature-slab h2 { font-size: clamp(44px, 5.5vw, 73px); line-height: 1.02; }
.feature-slab p { margin: 26px 0 0; max-width: 580px; color: var(--soft-cream); font-size: 18px; line-height: 1.7; }
.feature-slab .hero-actions { margin-top: 34px; }

.path-card {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: rgba(22,22,42,.68);
  transform: rotate(1.5deg);
}
.path-card-head { padding: 8px 8px 22px; display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.path-card-head span:last-child { color: var(--gold); }
.path-row { min-height: 68px; padding: 13px 15px; border-top: 1px solid var(--border); display: grid; grid-template-columns: 32px 1fr auto; gap: 10px; align-items: center; }
.path-row > span:first-child { color: var(--gold); font-size: 10px; font-weight: 900; }
.path-row strong { font-size: 13px; }
.path-row small { color: var(--muted); font-size: 10px; }
.path-row i { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 13px rgba(237,193,54,.65); }

.os-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.os-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 7px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(26,26,46,.88), rgba(17,17,34,.9));
  text-decoration: none;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.os-card:hover { transform: translateY(-5px); border-color: var(--gold-line); background: linear-gradient(145deg, rgba(26,26,46,.95), rgba(22,22,42,.95)); }
.os-card::after { content: ""; position: absolute; right: -54px; bottom: -54px; width: 150px; height: 150px; border: 1px solid rgba(237,193,54,.09); border-radius: 50%; }
.os-card-large { grid-column: span 7; }
.os-card-medium { grid-column: span 5; }
.os-card-small { grid-column: span 4; min-height: 260px; }
.os-card .status { display: inline-flex; padding: 7px 10px; border: 1px solid var(--gold-line); border-radius: 999px; color: var(--gold-pale); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.os-card h3 { margin: 58px 0 0; font-family: var(--serif); font-size: clamp(31px, 3.4vw, 48px); letter-spacing: -.04em; }
.os-card-small h3 { margin-top: 42px; font-size: 32px; }
.os-card p { max-width: 500px; margin: 17px 0 0; color: var(--muted); line-height: 1.65; }
.os-card .card-arrow { position: absolute; right: 28px; top: 28px; color: var(--gold); font-size: 20px; }

.story-panel {
  position: relative;
  min-height: 640px;
  padding: clamp(36px, 7vw, 92px);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 70px;
  align-items: end;
  background: linear-gradient(112deg, rgba(17,17,34,.98) 0%, rgba(22,22,42,.94) 52%, rgba(26,26,46,.78) 100%);
}
.story-panel::before { content: ""; position: absolute; width: min(54vw, 680px); aspect-ratio: 1; right: -7%; top: 50%; transform: translateY(-50%) rotate(-4deg); background: url("/assets/living-mark/jetsynapse-separated.svg") center / contain no-repeat; opacity: .12; filter: drop-shadow(0 0 55px rgba(237,193,54,.42)); pointer-events: none; }
.story-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 58%, rgba(237,193,54,.035)); pointer-events: none; }
.story-panel > * { position: relative; z-index: 2; }
.story-panel h2 { font-size: clamp(48px, 6.5vw, 84px); line-height: .98; }
.story-panel p { max-width: 600px; margin: 26px 0 0; color: var(--soft-cream); font-size: 18px; line-height: 1.75; }
.story-quote { padding: 25px 0 6px 30px; border-left: 1px solid var(--gold); color: var(--cream); font-family: var(--serif); font-size: 25px; line-height: 1.45; }
.story-quote small { display: block; margin-top: 16px; color: var(--muted); font-family: var(--sans); font-size: 10px; font-style: normal; letter-spacing: .1em; text-transform: uppercase; }

.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.insight-card { min-height: 370px; padding: 28px; border: 1px solid var(--border); border-radius: 7px; display: flex; flex-direction: column; background: rgba(16,16,28,.56); text-decoration: none; }
.insight-card:hover { border-color: var(--gold-line); }
.insight-card .eyebrow { margin-bottom: 80px; }
.insight-card h3 { margin: auto 0 0; font-family: var(--serif); font-size: 33px; line-height: 1.12; letter-spacing: -.035em; }
.insight-card p { color: var(--muted); line-height: 1.6; }
.insight-card .text-link { margin-top: 18px; align-self: flex-start; }

.cta-panel { padding: clamp(42px, 7vw, 86px); border: 1px solid var(--gold-line); border-radius: 8px; text-align: center; background: radial-gradient(circle at 50% 0, rgba(237,193,54,.14), transparent 38%), var(--night); }
.cta-panel .eyebrow { justify-content: center; }
.cta-panel h2 { max-width: 900px; margin: 0 auto; font-size: clamp(45px, 6vw, 78px); line-height: 1.03; }
.cta-panel p { max-width: 600px; margin: 24px auto 0; color: var(--soft-cream); font-size: 18px; line-height: 1.7; }
.cta-panel .button { margin-top: 34px; }

.page-hero { min-height: 670px; padding: 120px 0 100px; display: grid; grid-template-columns: 1.12fr .88fr; gap: 70px; align-items: end; }
.page-hero-copy { max-width: 800px; }
.page-hero h1 { font-size: clamp(66px, 8.8vw, 124px); line-height: .91; }
.page-hero .hero-lede { max-width: 720px; }
.page-index { align-self: center; padding: 26px; border-top: 1px solid var(--gold-line); border-bottom: 1px solid var(--gold-line); }
.page-index p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.7; text-transform: uppercase; letter-spacing: .1em; }
.page-index strong { display: block; margin-top: 12px; font-family: var(--serif); font-size: 23px; line-height: 1.25; }

.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.principle { min-height: 300px; padding: 30px; border-top: 1px solid var(--gold); background: rgba(16,16,28,.52); }
.principle span { color: var(--gold); font-size: 11px; font-weight: 900; }
.principle h3 { margin: 70px 0 0; font-family: var(--serif); font-size: 30px; }
.principle p { color: var(--muted); line-height: 1.7; }

.timeline { position: relative; max-width: 940px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; left: 130px; top: 0; bottom: 0; width: 1px; background: linear-gradient(var(--gold), rgba(237,193,54,.08)); }
.timeline-item { position: relative; min-height: 260px; padding: 0 0 90px 200px; }
.timeline-item::before { content: ""; position: absolute; left: 125px; top: 8px; width: 11px; height: 11px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 18px rgba(237,193,54,.58); }
.timeline-year { position: absolute; left: 0; top: 4px; color: var(--gold-pale); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.timeline-item h2 { font-size: clamp(38px, 4.5vw, 58px); line-height: 1.05; }
.timeline-item p { margin: 22px 0 0; color: var(--soft-cream); font-size: 17px; line-height: 1.85; }

.pull-quote { max-width: 1020px; margin: 0 auto; padding: 100px 0; text-align: center; }
.pull-quote blockquote { margin: 0; font-family: var(--serif); font-size: clamp(42px, 6vw, 78px); line-height: 1.12; letter-spacing: -.04em; }
.pull-quote cite { display: block; margin-top: 26px; color: var(--gold); font-family: var(--sans); font-size: 11px; font-style: normal; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }

.media-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.media-card { grid-column: span 6; border: 1px solid var(--border); border-radius: 7px; overflow: hidden; background: var(--night); }
.media-card-large { grid-column: span 8; }
.media-card-small { grid-column: span 4; }
.media-card img { width: 100%; aspect-ratio: 16/10; display: block; object-fit: cover; background: var(--night); transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .7s ease; }
.media-card:hover img { transform: scale(1.025); filter: saturate(1.08) brightness(1.04); }
.media-card-small img { aspect-ratio: 1/1; }
.media-caption { padding: 23px; }
.media-caption span { color: var(--gold); font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.media-caption h3 { margin: 10px 0 0; font-family: var(--serif); font-size: 26px; }
.media-caption p { margin: 10px 0 0; color: var(--muted); line-height: 1.6; }

.article-shell { width: min(calc(100% - 48px), 860px); margin: 0 auto; padding: 110px 0 130px; }
.article-header { padding-bottom: 64px; border-bottom: 1px solid var(--border); }
.article-header h1 { font-size: clamp(56px, 7.6vw, 92px); line-height: .98; }
.article-meta { margin-top: 26px; display: flex; gap: 22px; color: var(--muted); font-size: 11px; }
.article-body { padding-top: 54px; color: var(--soft-cream); font-family: var(--serif); font-size: 21px; line-height: 1.9; }
.article-body h2 { margin: 70px 0 20px; color: var(--cream); font-size: 39px; line-height: 1.15; }
.article-body h3 { margin: 42px 0 12px; color: var(--cream); font-size: 25px; }
.article-body p { margin: 0 0 28px; }
.article-body ul { padding-left: 24px; }
.article-body li { margin-bottom: 12px; }
.article-callout { margin: 52px 0; padding: 28px 30px; border-left: 2px solid var(--gold); background: rgba(237,193,54,.055); color: var(--cream); }

.booking-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 54px; align-items: start; }
.booking-details { position: sticky; top: 130px; }
.booking-details h2 { font-size: clamp(42px, 5vw, 64px); line-height: 1.05; }
.booking-details > p { color: var(--soft-cream); line-height: 1.8; }
.booking-list { margin: 34px 0 0; border-top: 1px solid var(--border); }
.booking-list p { margin: 0; padding: 17px 0; border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 36px 1fr; gap: 10px; color: var(--soft-cream); }
.booking-list span { color: var(--gold); font-size: 11px; font-weight: 900; }
.booking-frame { min-height: 620px; padding: 42px; border: 1px solid var(--gold-line); border-radius: 8px; display: flex; flex-direction: column; justify-content: center; text-align: center; background: radial-gradient(circle at 50% 0, rgba(237,193,54,.12), transparent 42%), var(--night); }
.booking-frame .signal-star { font-size: 48px; }
.booking-frame h3 { margin: 22px 0 0; font-family: var(--serif); font-size: 42px; }
.booking-frame p { color: var(--muted); line-height: 1.7; }
.booking-frame .button { margin-top: 24px; }
.booking-note { margin-top: 18px; color: var(--muted); font-size: 11px; line-height: 1.6; }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact-card { min-height: 260px; padding: 28px; border: 1px solid var(--border); border-radius: 7px; display: flex; flex-direction: column; text-decoration: none; background: rgba(16,16,28,.58); }
.contact-card span { color: var(--gold); font-size: 10px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.contact-card strong { margin-top: auto; font-family: var(--serif); font-size: 29px; }
.contact-card small { margin-top: 10px; color: var(--muted); line-height: 1.6; }

.site-footer { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: 70px 0 28px; border-top: 1px solid var(--gold-line); }
.footer-top { padding-bottom: 60px; display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 40px; align-items: center; }
.footer-brand { width: 82px; height: 82px; display: flex; align-items: center; overflow: hidden; }
.footer-brand img { width: 72px; }
.footer-top p { max-width: 440px; margin: 0; color: var(--soft-cream); font-family: var(--serif); font-size: 22px; line-height: 1.5; }
.footer-top .button { justify-self: end; }
.footer-grid { padding: 46px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-grid > div { display: flex; flex-direction: column; gap: 11px; }
.footer-grid span { margin-bottom: 7px; color: var(--gold); font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid a { color: var(--muted); text-decoration: none; font-size: 13px; }
.footer-grid a:hover { color: var(--cream); }
.footer-bottom { padding-top: 26px; display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 10px; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 18px; }
.footer-bottom a { text-decoration: none; }

@keyframes orbit-pulse {
  0%, 100% { opacity: .62; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.025); }
}

@keyframes star-breathe {
  0%, 100% { transform: scale(.96); opacity: .82; }
  50% { transform: scale(1.07); opacity: 1; }
}

@keyframes orbit-marker {
  to { transform: rotate(360deg); }
}

@keyframes orbit-marker-small {
  to { transform: rotate(360deg); }
}

@media (max-width: 1020px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .home-hero { grid-template-columns: 1fr; padding-top: 84px; }
  .hero-copy { max-width: 780px; }
  .hero-visual { max-width: 700px; width: 100%; margin: 0 auto; }
  .editorial-grid,
  .feature-slab,
  .story-panel,
  .page-hero,
  .booking-layout { grid-template-columns: 1fr; }
  .editorial-sticky,
  .booking-details { position: static; }
  .os-card-large,
  .os-card-medium { grid-column: span 6; }
  .os-card-small { grid-column: span 4; }
  .story-panel { min-height: 720px; background-position: 70% center; }
  .insight-grid,
  .principle-grid,
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .insight-card:last-child,
  .principle:last-child,
  .contact-card:last-child { grid-column: 1 / -1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 680px) {
  .site-header { width: min(calc(100% - 32px), var(--max)); min-height: 78px; }
  .brand { width: 52px; height: 52px; }
  .brand img { width: 46px; }
  .button-small { min-height: 44px; padding: 0 12px; font-size: 11px; }
  .header-cta { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .site-header.is-scrolled { padding-left: 16px; padding-right: 16px; }
  .menu-toggle { width: 44px; height: 44px; padding: 0; border: 1px solid var(--gold-line); border-radius: 6px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; background: transparent; }
  .menu-toggle span { width: 18px; height: 1px; background: var(--cream); transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-menu { position: fixed; z-index: 19; inset: 78px 0 0; padding: 40px 24px; display: flex; flex-direction: column; gap: 3px; background: rgba(17,17,34,.98); }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu > a:not(.button) { padding: 15px 0; border-bottom: 1px solid var(--border); color: var(--soft-cream); text-decoration: none; font-family: var(--serif); font-size: 26px; }
  .mobile-menu .button { margin-top: 26px; }
  body.menu-open { overflow: hidden; }
  .hero { width: min(calc(100% - 32px), var(--max)); }
  .home-hero { min-height: 0; padding: 72px 0 60px; gap: 58px; }
  h1,
  .home-hero h1 { font-size: clamp(44px, 12vw, 58px); }
  .hero-lede { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .button-primary { width: 100%; }
  .constellation { min-height: 520px; }
  .orbit-one { width: 340px; height: 340px; }
  .orbit-two { width: 235px; height: 235px; }
  .signal-core { width: 148px; height: 148px; }
  .signal-node { width: 126px; padding: 11px; grid-template-columns: 20px 1fr; }
  .signal-node small { display: none; }
  .node-one { left: 3%; top: 11%; }
  .node-two { right: 3%; top: 22%; }
  .node-three { right: 3%; bottom: 13%; }
  .node-four { left: 3%; bottom: 23%; }
  .signal-node::after { width: 37px; }
  .node-one::after, .node-four::after { right: -38px; }
  .node-two::after, .node-three::after { left: -38px; }
  .recognition-band { padding-left: 20px; padding-right: 20px; }
  .system-wordmarks { gap: 14px; }
  .preview-section { width: min(calc(100% - 32px), 900px); padding: 100px 0; }
  .section,
  .article-shell,
  .site-footer { width: min(calc(100% - 32px), var(--max)); }
  .section { padding-top: 92px; padding-bottom: 92px; }
  .section-soft { width: 100%; padding-left: 16px; padding-right: 16px; }
  .page-hero { min-height: 0; padding-top: 88px; padding-bottom: 76px; gap: 44px; }
  .page-hero h1 { font-size: clamp(49px, 14vw, 68px); }
  .editorial-item { grid-template-columns: 34px 1fr; }
  .feature-slab { padding: 30px 22px; gap: 46px; }
  .os-grid,
  .media-grid { display: grid; grid-template-columns: 1fr; }
  .os-card-large,
  .os-card-medium,
  .os-card-small,
  .media-card,
  .media-card-large,
  .media-card-small { grid-column: auto; }
  .story-panel { min-height: 760px; padding: 34px 24px; background-position: 73% center; gap: 34px; }
  .insight-grid,
  .principle-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .insight-card:last-child,
  .principle:last-child,
  .contact-card:last-child { grid-column: auto; }
  .timeline::before { left: 8px; }
  .timeline-item { padding-left: 44px; }
  .timeline-item::before { left: 3px; }
  .timeline-year { position: static; display: block; margin-bottom: 14px; }
  .pull-quote { padding: 76px 0; }
  .article-shell { padding-top: 80px; }
  .article-body { font-size: 19px; }
  .booking-frame { min-height: 520px; padding: 30px 22px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top p { grid-column: auto; grid-row: auto; }
  .footer-top .button { justify-self: stretch; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .gold-dust { display: none; }
}
