:root {
  --brand: #00a4bd;
  --brand-deep: #006d80;
  --brand-night: #062c34;
  --ink: #142629;
  --muted: #5c6b6e;
  --paper: #f7f8f6;
  --white: #ffffff;
  --mist: #e8f1ef;
  --warm: #fff5d9;
  --rose: #e3659f;
  --line: rgba(20, 38, 41, .16);
  --logo-primary: var(--brand-deep);
  --logo-accent: var(--rose);
  --shell: 76rem;
  color: var(--ink);
  background: var(--paper);
  font-family: "PingFang SC", "Noto Sans SC", "Microsoft YaHei", system-ui, sans-serif;
  font-synthesis: none;
  line-height: 1.65;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--paper); }
body::selection { color: var(--white); background: var(--brand-deep); }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.shell { width: min(calc(100% - 4rem), var(--shell)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; padding: .75rem 1rem; color: var(--ink); background: var(--white); }
.skip-link:focus { top: 1rem; }

.site-header { position: sticky; top: 0; z-index: 40; border-bottom: 1px solid transparent; background: color-mix(in srgb, var(--paper) 74%, transparent); backdrop-filter: blur(20px) saturate(140%); transition: background .25s ease, border-color .25s ease; }
.site-header.is-scrolled { border-color: var(--line); background: color-mix(in srgb, var(--paper) 94%, transparent); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; height: 5.85rem; }
.brand { display: inline-flex; align-items: center; width: 8rem; line-height: 0; }
.brand-logo svg, .footer-logo svg { display: block; width: 100%; height: auto; }
.main-nav { display: flex; align-items: center; gap: 1.8rem; font-size: .9rem; letter-spacing: .02em; }
.main-nav a { position: relative; color: #536466; transition: color .2s ease; }
.main-nav a::after { position: absolute; right: 0; bottom: -.5rem; left: 0; height: 1px; content: ""; background: var(--brand); transform: scaleX(0); transform-origin: right; transition: transform .25s cubic-bezier(.22, 1, .36, 1); }
.main-nav a:hover, .main-nav a:focus, .main-nav a[aria-current="page"] { color: var(--ink); }
.main-nav a:hover::after, .main-nav a:focus::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 20px; height: 1px; margin: 4px auto; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }

.eyebrow { margin: 0; color: var(--brand-deep); font-size: .68rem; font-weight: 700; line-height: 1.3; letter-spacing: .16em; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; gap: .6rem; padding: .72rem 1.15rem; border: 1px solid transparent; border-radius: 999px; font-size: .89rem; font-weight: 700; cursor: pointer; transition: transform .2s cubic-bezier(.22, 1, .36, 1), background .2s ease, border-color .2s ease; }
.button:active { transform: scale(.975); transition-duration: .1s; }
.button-primary { color: var(--brand-night); background: var(--white); }
.button-primary:hover { background: #d9f8fb; }
.button-quiet { border-color: rgba(255, 255, 255, .45); color: var(--white); }
.button-quiet:hover { border-color: var(--white); background: rgba(255, 255, 255, .12); }
.button-light { color: var(--brand-night); background: var(--white); }
.button-light:hover { background: #cbf4f8; }
.text-link { display: inline-flex; align-items: center; gap: .65rem; color: var(--brand-deep); font-size: .9rem; font-weight: 700; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(.25rem); }
.button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 3px solid color-mix(in srgb, var(--brand) 50%, var(--white)); outline-offset: 4px; }

.hero { position: relative; isolation: isolate; overflow: hidden; min-height: min(48rem, calc(100svh - 5.85rem)); color: var(--white); background: linear-gradient(120deg, #062f38, #007f93 58%, #00a4bd); }
.hero::before { position: absolute; inset: 0; z-index: -3; content: ""; background: linear-gradient(100deg, rgba(1, 26, 31, .78), rgba(1, 82, 95, .26)), var(--hero-poster, none); background-position: center; background-size: cover; opacity: .84; }
.hero::after { position: absolute; inset: 0; z-index: -2; content: ""; background: radial-gradient(circle at var(--pointer-x, 72%) var(--pointer-y, 24%), rgba(215, 252, 255, .24), transparent 21rem); pointer-events: none; }
.hero--cinematic { display: grid; align-items: end; padding: clamp(6.5rem, 11vw, 10rem) 0 clamp(5rem, 8vw, 6.5rem); }
.hero-grid { position: absolute; inset: 0; z-index: -1; opacity: .25; background-image: linear-gradient(rgba(255, 255, 255, .1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .1) 1px, transparent 1px); background-size: 5.2rem 5.2rem; mask-image: linear-gradient(120deg, #000, transparent 72%); }
.hero-light { position: absolute; z-index: -1; width: 38rem; aspect-ratio: 1; border: 1px solid rgba(255, 255, 255, .25); border-radius: 50%; }
.hero-light--one { top: -23rem; right: -10rem; box-shadow: inset 0 0 7rem rgba(198, 251, 255, .13); }
.hero-light--two { right: 17%; bottom: -33rem; width: 47rem; }
.hero-content { max-width: 47rem; }
.hero .eyebrow, .closing .eyebrow { color: #c8f8fb; }
.hero h1, .inner-hero h1 { max-width: 10ch; margin: .95rem 0 1.55rem; font-family: "Songti SC", STSong, "Noto Serif CJK SC", serif; font-size: clamp(3.1rem, 5.2vw, 5.55rem); font-weight: 600; line-height: 1.12; letter-spacing: -.075em; text-wrap: balance; }
.hero-summary { max-width: 35rem; margin: 0; color: rgba(255, 255, 255, .82); font-size: 1rem; line-height: 1.85; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.25rem; }
.hero-index { position: absolute; right: max(2rem, calc((100vw - var(--shell)) / 2)); bottom: 2rem; display: flex; align-items: center; gap: .8rem; color: rgba(255, 255, 255, .9); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .69rem; letter-spacing: .1em; }
.hero-index i { width: 4.5rem; height: 1px; background: rgba(255, 255, 255, .55); }
.hero-index span { color: #c8f8fb; }
.hero-film { position: absolute; right: max(2rem, calc((100vw - var(--shell)) / 2)); top: 1.55rem; display: inline-flex; align-items: center; gap: .8rem; color: var(--white); font-size: .7rem; font-weight: 700; letter-spacing: .12em; }
.hero-film b { display: grid; width: 2.4rem; height: 2.4rem; place-items: center; border: 1px solid rgba(255, 255, 255, .5); border-radius: 50%; font-size: .9rem; transition: background .2s ease, color .2s ease; }
.hero-film:hover b { color: var(--brand-night); background: var(--white); }

.section { padding: clamp(5rem, 8vw, 8.5rem) 0; }
.section--white { background: var(--white); }
.statement-grid { display: grid; grid-template-columns: minmax(10rem, .55fr) 1.75fr; gap: clamp(2.5rem, 8vw, 8rem); align-items: start; }
.year-mark { display: block; margin: .45rem 0 .25rem; color: var(--brand-deep); font-family: "Songti SC", STSong, serif; font-size: clamp(3.8rem, 6.5vw, 6rem); font-weight: 400; line-height: 1; letter-spacing: -.08em; }
.year-mark--small { font-size: clamp(3.4rem, 5vw, 4.8rem); }
.year-caption { max-width: 10rem; margin: 0; color: var(--muted); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .59rem; line-height: 1.55; letter-spacing: .1em; }
.statement-copy h2, .section-intro h2, .focus-grid h2, .profile-copy h2, .timeline-heading h2 { margin: .35rem 0 1.4rem; font-family: "Songti SC", STSong, "Noto Serif CJK SC", serif; font-size: clamp(2.05rem, 3.6vw, 3.65rem); font-weight: 600; line-height: 1.24; letter-spacing: -.065em; text-wrap: balance; }
.statement-copy p, .section-intro > p:not(.eyebrow), .focus-grid > p, .profile-copy p, .timeline-heading > p { max-width: 39rem; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.9; }
.statement-copy .text-link { margin-top: 2rem; }

.spectrum { overflow: hidden; background: #edf3f1; }
.section-intro { display: grid; grid-template-columns: .75fr 1.55fr 1fr; gap: 2rem; align-items: end; }
.section-intro h2 { margin-bottom: 0; }
.section-intro--compact { display: block; max-width: 41rem; }
.spectrum-stage { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; min-height: 35rem; margin-top: 3.5rem; overflow: hidden; border: 1px solid rgba(5, 92, 105, .25); background: rgba(5, 92, 105, .2); }
.spectrum-stage::before, .spectrum-stage::after { position: absolute; z-index: 1; content: ""; border: 1px solid rgba(255, 255, 255, .36); border-radius: 50%; pointer-events: none; }
.spectrum-stage::before { top: 50%; left: 50%; width: 25rem; height: 25rem; transform: translate(-50%, -50%); }
.spectrum-stage::after { top: 50%; left: 50%; width: 38rem; height: 38rem; transform: translate(-50%, -50%); }
.spectrum-core { position: absolute; z-index: 3; top: 50%; left: 50%; display: grid; width: 10.25rem; aspect-ratio: 1; place-content: center; border-radius: 50%; color: var(--white); background: var(--brand-deep); box-shadow: 0 0 0 1rem rgba(0, 164, 189, .13), 0 1rem 4rem rgba(0, 72, 85, .24); text-align: center; transform: translate(-50%, -50%); }
.spectrum-core span { font-size: 1.5rem; font-weight: 700; letter-spacing: .13em; }
.spectrum-core small { margin-top: .2rem; font-size: .55rem; letter-spacing: .12em; }
.spectrum-node { position: relative; min-height: 19rem; padding: 1.7rem; color: var(--ink); background: rgba(255, 255, 255, .68); transition: background .35s ease, color .35s ease; }
.spectrum-node:hover { color: var(--white); background: var(--brand-deep); }
.spectrum-node span, .matrix-card > span { color: var(--brand-deep); font-size: .7rem; font-weight: 700; letter-spacing: .14em; }
.spectrum-node:hover span { color: #baf7fb; }
.spectrum-node h3 { max-width: 10rem; margin: 3.3rem 0 .7rem; font-family: "Songti SC", STSong, serif; font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 600; line-height: 1.35; letter-spacing: -.055em; }
.spectrum-node p { max-width: 17rem; margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.75; }
.spectrum-node:hover p { color: rgba(255, 255, 255, .82); }
.spectrum-link { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 0 0; color: var(--brand-deep); font-size: .9rem; font-weight: 700; }
.spectrum-link span { font-size: 1.2rem; }

.focus-panel { position: relative; overflow: hidden; color: var(--white); background: var(--brand-night); }
.focus-panel::after { position: absolute; right: -16rem; bottom: -19rem; width: 44rem; aspect-ratio: 1; content: ""; border: 1px solid rgba(255, 255, 255, .2); border-radius: 50%; box-shadow: inset 0 0 7rem rgba(0, 164, 189, .13); }
.focus-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .55fr 1.15fr 1fr; gap: 3rem; align-items: end; }
.focus-grid h2 { color: var(--white); }
.focus-grid > p { color: rgba(255, 255, 255, .7); }
.focus-number { color: var(--brand); font-family: ui-serif, Georgia, serif; font-size: clamp(7rem, 14vw, 13rem); line-height: .7; }

.pathway { background: var(--paper); }
.pathway-list { display: grid; grid-template-columns: repeat(4, 1fr); margin: 4rem 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.pathway-list li { min-height: 15rem; padding: 1.3rem 1.4rem 1rem 0; border-right: 1px solid var(--line); }
.pathway-list li + li { padding-left: 1.4rem; }
.pathway-list li:last-child { border-right: 0; }
.pathway-list span { color: var(--brand-deep); font-size: .7rem; font-weight: 700; letter-spacing: .14em; }
.pathway-list h3 { margin: 3rem 0 .5rem; font-family: "Songti SC", STSong, serif; font-size: 1.45rem; font-weight: 600; letter-spacing: -.05em; }
.pathway-list p { max-width: 14rem; margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.75; }

.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
.section-heading-row h2 { margin: .4rem 0 0; font-family: "Songti SC", STSong, serif; font-size: clamp(2rem, 3.4vw, 3.15rem); font-weight: 600; letter-spacing: -.065em; }
.news-list { border-top: 1px solid var(--line); }
.news-row { display: grid; grid-template-columns: 10rem 1fr auto; gap: 1.5rem; align-items: baseline; padding: 1.35rem 0; border-bottom: 1px solid var(--line); transition: color .2s ease; }
.news-row:hover { color: var(--brand-deep); }
.news-row time { color: var(--muted); font-size: .79rem; letter-spacing: .05em; }
.news-row h2, .news-row h3 { margin: 0; font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 600; line-height: 1.35; letter-spacing: -.035em; }
.news-row p { margin: .35rem 0 0; color: var(--muted); font-size: .9rem; }
.news-row > span { font-size: 1.1rem; }
.empty-state { margin: 0; padding: 2rem 0; color: var(--muted); }
.closing { padding: clamp(6rem, 10vw, 10rem) 0; }
.closing--dark { color: var(--white); background: linear-gradient(120deg, #062c34, #005f70); }
.closing h2 { margin: .75rem 0 2rem; font-size: clamp(2.8rem, 5.7vw, 5.8rem); font-weight: 600; line-height: 1.05; letter-spacing: -.07em; }

.inner-hero { position: relative; overflow: hidden; padding: clamp(7rem, 12vw, 12rem) 0 clamp(5rem, 8vw, 7rem); background: linear-gradient(126deg, #eef6f4, #fff 64%, #dbf3f2); }
.inner-hero::after { position: absolute; right: -12rem; top: -19rem; width: 44rem; aspect-ratio: 1; content: ""; border: 1px solid rgba(0, 164, 189, .22); border-radius: 50%; box-shadow: inset 0 0 8rem rgba(0, 164, 189, .08); }
.inner-hero > .shell { position: relative; z-index: 1; }
.inner-hero h1 { max-width: 11ch; color: var(--ink); }
.inner-hero p:not(.eyebrow) { max-width: 43rem; margin: 0; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.18rem); }
.inner-hero-figure { position: absolute; right: 8vw; bottom: -3.4rem; z-index: 0; color: rgba(0, 164, 189, .09); font-size: clamp(14rem, 28vw, 30rem); font-weight: 700; letter-spacing: -.15em; line-height: 1; }
.profile-grid { display: grid; grid-template-columns: .75fr 2fr; gap: clamp(2.5rem, 10vw, 10rem); }
.profile-aside > p:not(.eyebrow) { margin-top: .75rem; color: var(--muted); font-size: .67rem; letter-spacing: .13em; }
.profile-copy { max-width: 51rem; }
.timeline-section { background: var(--brand-night); color: var(--white); }
.timeline-heading { display: grid; grid-template-columns: .8fr 1.45fr 1fr; gap: 2rem; align-items: end; }
.timeline-heading .eyebrow { color: #bdf4f8; }
.timeline-heading h2 { margin: 0; color: var(--white); }
.timeline-heading > p { color: rgba(255, 255, 255, .67); }
.timeline-list { margin: 4rem 0 0; padding: 0; border-top: 1px solid rgba(255, 255, 255, .22); list-style: none; }
.timeline-list li { display: grid; grid-template-columns: .8fr 2.45fr; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid rgba(255, 255, 255, .18); }
.timeline-list li > span { color: #bdf4f8; font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 300; letter-spacing: -.05em; }
.timeline-list h3 { margin: 0 0 .4rem; font-size: clamp(1.15rem, 2vw, 1.65rem); font-weight: 500; letter-spacing: -.035em; }
.timeline-list p { max-width: 34rem; margin: 0; color: rgba(255, 255, 255, .67); }
.principle { background: var(--warm); }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 2rem; background: rgba(91, 78, 40, .16); }
.principle-grid article { min-height: 14rem; padding: 1.8rem; background: var(--warm); }
.principle-grid h2 { margin: 0 0 3rem; font-size: 1.35rem; letter-spacing: -.04em; }
.principle-grid p { margin: 0; color: #655e44; font-size: .9rem; }

.landscape-intro { background: var(--white); }
.matrix-section { padding: 0 0 clamp(5.5rem, 10vw, 10rem); background: var(--white); }
.matrix-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; overflow: hidden; background: rgba(255, 255, 255, .28); }
.matrix-card { position: relative; min-height: 28rem; padding: clamp(1.6rem, 4vw, 3.5rem); overflow: hidden; color: var(--white); background: var(--brand-night); }
.matrix-card::before { position: absolute; z-index: 0; width: 18rem; aspect-ratio: 1; content: ""; border: 1px solid rgba(255, 255, 255, .22); border-radius: 50%; transition: transform .5s cubic-bezier(.22, 1, .36, 1); }
.matrix-card:hover::before { transform: scale(1.25); }
.matrix-card--1 { background: #075965; }.matrix-card--1::before { top: -6rem; right: -4rem; }
.matrix-card--2 { background: #1c3c43; }.matrix-card--2::before { right: -5rem; bottom: -7rem; }
.matrix-card--3 { color: var(--ink); background: #e8f1ef; }.matrix-card--3::before { bottom: -8rem; left: -3rem; border-color: rgba(0, 107, 126, .23); }.matrix-card--3 > span { color: var(--brand-deep); }.matrix-card--3 p { color: var(--muted); }
.matrix-card--4 { background: var(--rose); }.matrix-card--4::before { top: -6rem; left: -4rem; }
.matrix-card > * { position: relative; z-index: 1; }
.matrix-card > span { color: #bef7fb; }
.matrix-card h2 { max-width: 9em; margin: 4.5rem 0 1rem; font-family: "Songti SC", STSong, serif; font-size: clamp(1.75rem, 2.6vw, 2.5rem); font-weight: 600; line-height: 1.28; letter-spacing: -.065em; }
.matrix-card p { max-width: 25rem; margin: 0; color: rgba(255, 255, 255, .78); line-height: 1.85; }
.matrix-card i { position: absolute; right: 2rem; bottom: 1.7rem; width: 2rem; height: 1px; background: currentColor; }
.capability { background: var(--paper); }
.capability-rail { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 4.5rem; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.capability-rail > div { min-height: 9rem; padding: 1.3rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.capability-rail span { color: var(--brand-deep); font-size: .68rem; font-weight: 700; letter-spacing: .12em; }
.capability-rail p { margin: 2.2rem 0 0; font-size: 1.05rem; letter-spacing: -.025em; }
.compliance-note { max-width: 52rem; margin: 2rem 0 0; color: var(--muted); font-size: .83rem; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 10vw, 9rem); }
.contact-details h2 { margin: .7rem 0 2.2rem; font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1.1; letter-spacing: -.06em; }
.contact-details > p:not(.eyebrow) { display: grid; grid-template-columns: 4.5rem 1fr; gap: 1rem; margin: 0; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.contact-details span { color: var(--muted); }
.consultation-form { display: grid; gap: 1rem; padding: clamp(1.5rem, 3vw, 2.5rem); border: 1px solid var(--line); background: var(--white); box-shadow: 0 1.2rem 3rem rgba(11, 61, 69, .06); }
.consultation-form label { display: grid; gap: .4rem; font-size: .88rem; font-weight: 700; }
.consultation-form input:not([type="checkbox"]), .consultation-form textarea { width: 100%; padding: .75rem .85rem; border: 1px solid #bdcbcd; border-radius: .3rem; color: var(--ink); background: #fcfdfc; }
.consultation-form textarea { resize: vertical; }
.consultation-form .consent { grid-template-columns: auto 1fr; align-items: start; font-size: .8rem; font-weight: 400; line-height: 1.55; color: var(--muted); }
.consent a { color: var(--brand-deep); text-decoration: underline; }
.honeypot { position: absolute; left: -9999px; }
.form-success { margin: 0; color: var(--brand-deep); }
.prose { max-width: 48rem; }.prose h2 { margin: 2rem 0 .5rem; font-size: 1.35rem; }.prose p { color: var(--muted); }.article-body { padding-bottom: clamp(5rem, 10vw, 10rem); }

.site-footer { padding: 4rem 0 1.35rem; color: rgba(255, 255, 255, .8); background: #102d33; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; }.footer-logo { display: block; width: 8rem; line-height: 0; --logo-primary: #fff; --logo-accent: #f3a1bd; }.footer-grid p { max-width: 21rem; color: rgba(255, 255, 255, .58); font-size: .87rem; }.footer-links, .footer-contact { display: grid; align-content: start; gap: .6rem; font-size: .88rem; }.footer-links a:hover, .footer-contact a:hover { color: #c8f8fb; }.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3.5rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, .15); color: rgba(255, 255, 255, .45); font-size: .74rem; }

[data-reveal] { opacity: 0; transform: translateY(1.5rem); transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 860px) {
  .shell { width: min(calc(100% - 2.4rem), var(--shell)); }.header-inner { height: 5rem; }.brand { width: 7rem; }.menu-toggle { display: block; }.main-nav { position: fixed; top: 5rem; right: 0; left: 0; display: grid; gap: 1.15rem; padding: 1.5rem 1.2rem 1.7rem; border-bottom: 1px solid var(--line); background: rgba(247, 248, 246, .98); transform: translateY(-120%); transition: transform .3s cubic-bezier(.22, 1, .36, 1); }.main-nav.is-open { transform: none; }.main-nav a::after { display: none; }
  .hero { min-height: 43rem; }.hero-index { right: 1.2rem; }.hero-film { right: 1.2rem; }.statement-grid, .profile-grid { grid-template-columns: 1fr; gap: 2rem; }.section-intro, .timeline-heading { grid-template-columns: 1fr; gap: 1.2rem; }.spectrum-stage { min-height: auto; }.spectrum-stage::before, .spectrum-stage::after, .spectrum-core { display: none; }.spectrum-node { min-height: 15rem; }.spectrum-node h3 { margin-top: 2.5rem; }.focus-grid { grid-template-columns: 1fr; gap: 1.3rem; }.focus-number { position: absolute; right: .5rem; top: 0; opacity: .45; }.pathway-list, .capability-rail { grid-template-columns: repeat(2, 1fr); }.pathway-list li:nth-child(2) { border-right: 0; }.pathway-list li:nth-child(n+3) { border-top: 1px solid var(--line); }.timeline-list li { grid-template-columns: 1fr 2fr; }.principle-grid { grid-template-columns: 1fr; }.matrix-card { min-height: 23rem; }.contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 560px) {
  .shell { width: min(calc(100% - 2rem), var(--shell)); }.hero--cinematic { padding-top: 8rem; }.hero h1, .inner-hero h1 { font-size: clamp(2.65rem, 12vw, 3.45rem); }.hero-summary { font-size: 1rem; }.hero-film span { display: none; }.hero-index { bottom: 1.35rem; }.section { padding: 4.5rem 0; }.year-mark { font-size: 6.5rem; }.spectrum-stage, .matrix-grid { grid-template-columns: 1fr; }.spectrum-node { min-height: 13rem; }.focus-grid h2 { font-size: 2.5rem; }.pathway-list, .capability-rail { grid-template-columns: 1fr; }.pathway-list li, .pathway-list li + li { min-height: auto; padding: 1.3rem 0; border-right: 0; border-top: 1px solid var(--line); }.pathway-list li:first-child { border-top: 0; }.pathway-list h3 { margin-top: 1.8rem; }.section-heading-row { align-items: start; flex-direction: column; gap: 1rem; }.news-row { grid-template-columns: 1fr auto; gap: .4rem; }.news-row time { grid-column: 1; }.news-row h2, .news-row h3 { grid-column: 1; }.news-row > span { grid-column: 2; grid-row: 1 / span 2; }.timeline-list li { grid-template-columns: 1fr; gap: .5rem; }.matrix-card h2 { margin-top: 4rem; }.footer-grid { grid-template-columns: 1fr; }.footer-bottom { display: block; }.footer-bottom span { display: block; margin: .3rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; } *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }.hero::after { display: none; } [data-reveal] { opacity: 1; transform: none; }
}
