:root {
  --ink: #121312;
  --paper: #f2f0e9;
  --soft-paper: #e9e7df;
  --muted: #777870;
  --line: rgba(18, 19, 18, 0.18);
  --accent: #ddfd5a;
  --hero-shade: 0.38;
  --hero-focus: 52%;
  --editor-width: 480px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; tab-size: 4; font-size: 16px; }
body { margin: 0; background: var(--paper); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
button, input, textarea, select { font: inherit; letter-spacing: 0; }
button, a, input, textarea { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.skip-link { position: fixed; z-index: 200; top: 12px; left: 12px; transform: translateY(-180%); padding: 10px 14px; color: #111; background: var(--accent); font-size: 13px; font-weight: 700; transition: transform 160ms ease; }
.skip-link:focus { transform: translateY(0); }
.scroll-progress { position: fixed; z-index: 100; top: 0; left: 0; width: 100%; height: 3px; background: transparent; }
.scroll-progress span { display: block; height: 100%; width: 0; background: var(--accent); transition: width 80ms linear; }

.page-shell { transition: margin-right 260ms ease; }
.site-header { position: fixed; z-index: 70; top: 0; left: 0; width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 26px; color: #fff; mix-blend-mode: normal; transition: color 180ms ease, background 180ms ease, width 260ms ease; }
.site-header.is-scrolled { color: var(--ink); background: rgba(242, 240, 233, 0.93); backdrop-filter: blur(14px); }
body.preview-mode .site-header { opacity: 0; transform: translateY(-75%); transition: opacity 180ms ease, transform 180ms ease; }
body.preview-mode .site-header:hover { opacity: 1; transform: translateY(0); }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 150px; font-size: 15px; font-weight: 800; line-height: 1; }
.brand-mark { display: grid; grid-template-columns: repeat(2, 5px); grid-template-rows: repeat(2, 5px); gap: 2px; }
.brand-mark i { display: block; background: currentColor; }
.brand-mark i:nth-child(3) { grid-column: 2; }
.main-nav { display: flex; gap: 28px; font-size: 13px; font-weight: 700; }
.main-nav a { opacity: 0.84; transition: opacity 150ms ease; }
.main-nav a:hover { opacity: 1; }
.header-actions { display: flex; align-items: center; gap: 8px; min-width: 150px; justify-content: flex-end; }
.icon-button, .edit-button, .round-link, .download-button, .tool-button, .done-button { border: 0; border-radius: 0; display: inline-flex; align-items: center; justify-content: center; }
.icon-button { position: relative; width: 38px; height: 38px; color: currentColor; background: transparent; transition: background 160ms ease, color 160ms ease; }
.icon-button:hover { color: var(--ink); background: var(--accent); }
.icon-button svg { width: 18px; height: 18px; stroke-width: 2; }
[data-tooltip]::after { position: absolute; content: attr(data-tooltip); z-index: 3; top: calc(100% + 8px); right: 0; padding: 5px 7px; color: #fff; background: #111; font-size: 11px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 150ms ease; }
[data-tooltip]:hover::after { opacity: 1; }
.edit-button { height: 38px; gap: 8px; padding: 0 12px; border: 1px solid rgba(255,255,255,.65); color: #fff; background: rgba(0,0,0,.12); font-size: 13px; font-weight: 700; transition: background 160ms ease, border-color 160ms ease, color 160ms ease; }
.edit-button:hover, .site-header.is-scrolled .edit-button { color: var(--ink); border-color: var(--ink); background: var(--accent); }
.edit-button svg { width: 16px; height: 16px; }
.menu-button { display: none; }

.hero { isolation: isolate; position: relative; display: flex; flex-direction: column; justify-content: center; min-height: 520px; height: 93svh; padding: 118px 5.3vw 54px; color: #fff; overflow: hidden; }
.hero-media { position: absolute; z-index: -3; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: var(--hero-focus) center; opacity: 0; transform: scale(1.025) translate3d(0, var(--hero-shift, 0px), 0); transition: opacity 950ms cubic-bezier(.16,.8,.24,1), object-position 500ms ease; will-change: transform, opacity; }
.hero-media.is-loaded { opacity: 1; }
.hero-shade { position: absolute; z-index: -2; inset: 0; background: rgba(8, 11, 10, var(--hero-shade)); }
.hero-grid { position: absolute; z-index: -1; inset: 0; opacity: .15; background: #101412; mix-blend-mode: multiply; }
.hero-kicker, .eyebrow, .editor-eyebrow { margin: 0; font-size: 12px; font-weight: 700; line-height: 1.25; text-transform: uppercase; }
.hero-kicker { position: absolute; top: 136px; }
.hero-title { margin: 0; max-width: 1120px; font-size: 128px; font-weight: 800; line-height: .85; text-transform: uppercase; }
.hero-title span { display: block; opacity: 0; transform: translateY(38px); animation: title-in 900ms cubic-bezier(.16,.8,.24,1) forwards; }
.hero-title span:nth-child(2) { animation-delay: 100ms; }
.hero-title span:nth-child(3) { animation-delay: 200ms; }
.hero-kicker { opacity: 0; animation: fade-in 700ms ease 420ms forwards; }
.hero-footer { opacity: 0; animation: fade-in 700ms ease 560ms forwards; }
.site-header { animation: header-in 700ms cubic-bezier(.16,.8,.24,1) both; }
.hero-media { animation: hero-breathe 12s ease-out both; }
.hero-title .title-outline { color: transparent; -webkit-text-stroke: 1.5px #fff; }
.hero-footer { position: absolute; display: flex; align-items: flex-end; justify-content: space-between; bottom: 40px; left: 5.3vw; right: 5.3vw; }
.hero-footer p { width: min(360px, 60vw); margin: 0; font-size: 14px; font-weight: 600; line-height: 1.55; }
.round-link { width: 58px; height: 58px; color: var(--ink); background: var(--accent); transition: transform 160ms ease; }
.round-link:hover { transform: translateY(5px); }
.round-link svg { width: 22px; height: 22px; }

.signal-strip { display: flex; align-items: center; gap: 28px; min-height: 70px; padding: 12px 5.3vw; color: var(--ink); background: var(--accent); font-size: 12px; font-weight: 700; }
.signal-strip p { margin: 0; }
.signal-strip strong { font-weight: 800; }
.signal-dot { width: 8px; height: 8px; background: var(--ink); animation: pulse 2s infinite; }
@keyframes pulse { 50% { transform: scale(.55); opacity: .45; } }
@keyframes title-in { to { opacity: 1; transform: translateY(0); } }
@keyframes fade-in { to { opacity: 1; } }
@keyframes header-in { from { opacity: 0; transform: translateY(-18px); } }
@keyframes hero-breathe { from { filter: saturate(.72); } to { filter: saturate(1); } }

.section-band { padding: 112px 5.3vw; }
.section-label { display: flex; align-items: baseline; gap: 12px; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.section-label span { color: var(--muted); }
.section-label p { margin: 0; }
.overview { display: grid; grid-template-columns: .7fr 1.6fr .7fr; gap: 32px; min-height: 690px; background: var(--paper); }
.overview-copy { align-self: center; max-width: 680px; }
.overview h2, .section-head h2, .release-notes h2, .download h2 { margin: 14px 0 26px; font-size: 61px; font-weight: 800; line-height: .97; }
.body-copy { max-width: 570px; margin: 0; font-size: 18px; line-height: 1.55; }
.stats { display: flex; flex-direction: column; align-self: end; gap: 20px; }
.stat { padding-top: 14px; border-top: 1px solid var(--line); }
.stat strong { display: block; font-size: 33px; font-weight: 800; line-height: 1; }
.stat span { display: block; margin-top: 7px; color: var(--muted); font-size: 12px; font-weight: 700; }

.features { color: var(--paper); background: var(--ink); overflow: hidden; }
.section-head { display: grid; grid-template-columns: .75fr 1.5fr .75fr; align-items: end; gap: 32px; margin-bottom: 64px; }
.section-head .section-label span { color: #9d9e96; }
.section-head h2 { margin: 0; }
.carousel-actions { display: flex; align-items: center; align-self: end; justify-self: end; gap: 10px; font-size: 12px; font-weight: 700; }
.carousel-actions p { min-width: 49px; margin: 0; text-align: center; }
.carousel-actions .icon-button:hover { color: var(--ink); }
.feature-track { display: flex; gap: 24px; margin-right: -5.3vw; padding-right: 5.3vw; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.feature-track::-webkit-scrollbar { display: none; }
.feature-card { position: relative; flex: 0 0 min(68vw, 840px); aspect-ratio: 1.42; scroll-snap-align: start; overflow: hidden; border-radius: 22px; background: #292a28; isolation: isolate; transition: transform 500ms cubic-bezier(.2,.8,.2,1), opacity 500ms ease; }
.feature-card::after { position: absolute; content: ""; z-index: 1; inset: 0; pointer-events: none; background: rgba(0,0,0,.18); }
.feature-card:not(.is-active) { opacity: .68; }
.feature-card.is-active { transform: translateY(-5px); opacity: 1; }
.feature-image-wrap { position: absolute; z-index: 0; inset: 0; overflow: hidden; background: #292a28; }
.feature-image-wrap::after { position: absolute; content: ""; z-index: 1; top: -12%; bottom: -12%; left: -42%; width: 32%; opacity: 0; background: rgba(255,255,255,.18); filter: blur(18px); transform: skewX(-14deg); transition: opacity 400ms ease, left 900ms ease; }
.feature-image-wrap img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) brightness(.87); transform: scale(1.06); transition: transform 900ms cubic-bezier(.2,.8,.2,1), filter 700ms ease; }
.feature-card:hover .feature-image-wrap::after, .feature-card.is-active .feature-image-wrap::after { left: 112%; opacity: 1; }
.feature-card:hover img, .feature-card.is-active img { filter: saturate(1) brightness(1); transform: scale(1); }
.card-content { position: absolute; z-index: 2; right: 18px; bottom: 18px; left: 18px; display: flex; flex-direction: column; min-height: 190px; padding: 18px 19px 17px; color: #f6f7ef; background: rgba(16, 19, 17, .62); border: 1px solid rgba(255,255,255,.25); border-radius: 18px; box-shadow: 0 15px 40px rgba(0,0,0,.19); backdrop-filter: blur(16px) saturate(1.15); -webkit-backdrop-filter: blur(16px) saturate(1.15); transform: translateY(calc(100% - 82px)); opacity: .86; transition: transform 550ms cubic-bezier(.2,.8,.2,1), opacity 450ms ease, background 450ms ease; }
.feature-card:hover .card-content, .feature-card:focus-within .card-content, .feature-card.is-active .card-content { background: rgba(16, 19, 17, .73); transform: translateY(0); opacity: 1; }
.pre-content { display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 10px; min-height: 19px; color: rgba(245,247,239,.7); font-size: 10px; font-weight: 800; letter-spacing: 0; text-transform: uppercase; }
.pre-content p { margin: 0; }
.pre-heading { display: inline-flex; gap: 4px; }
.pre-heading .active { color: var(--accent); }
.info { display: flex; justify-content: flex-end; gap: 10px; }
.heading-title { margin: 28px 0 9px; color: #fff; font-size: 29px; line-height: 1.06; }
.feature-description { max-width: 570px; margin: 0; color: rgba(245,247,239,.77); font-size: 13px; line-height: 1.5; }
.button-group { margin-top: auto; padding-top: 17px; opacity: 0; transform: translateY(9px); transition: opacity 350ms ease 80ms, transform 350ms ease 80ms; }
.feature-card:hover .button-group, .feature-card:focus-within .button-group, .feature-card.is-active .button-group { opacity: 1; transform: translateY(0); }
.feature-cta { display: inline-flex; align-items: center; gap: 11px; padding-bottom: 7px; color: var(--accent); border-bottom: 1px solid rgba(221,253,90,.65); font-size: 12px; font-weight: 800; }
.arrow { position: relative; display: inline-flex; width: 18px; height: 18px; overflow: hidden; }
.arrow span { position: absolute; inset: 0; display: inline-flex; align-items: center; justify-content: center; transition: opacity 240ms ease, transform 240ms ease; }
.arrow svg { width: 16px; height: 16px; }
.arrow-1 { opacity: 1; transform: translateX(0); }
.arrow-2 { opacity: 0; transform: translateX(-40px); }
.feature-cta:hover .arrow-1 { opacity: 0; transform: translateX(40px); }
.feature-cta:hover .arrow-2 { opacity: 1; transform: translateX(0); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); background: var(--accent); padding: 9px 11px; font-size: 12px; font-weight: 800; white-space: nowrap; }
.text-link svg { width: 15px; height: 15px; }
.text-link.light { color: var(--paper); background: transparent; border-bottom: 1px solid var(--accent); padding: 0 0 7px; }

.color-shift-copy { color: #9b9e96; }
.color-word { display: inline; color: color-mix(in srgb, var(--ink) 22%, #a7aba1); transition: color 420ms ease, opacity 420ms ease; }
.color-word.is-passed { color: var(--ink); }
.color-word.is-lit { color: var(--word-color, var(--accent)); }

.changelog { color: var(--paper); background: #252724; }
.changelog .section-label { color: var(--accent); }
.release-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 32px; margin-top: 95px; }
.release-version { margin: 0; color: var(--accent); font-size: 84px; font-weight: 800; line-height: .86; }
.release-date { margin: 18px 0 0; color: #b1b2ab; font-size: 13px; font-weight: 700; }
.release-notes { max-width: 720px; }
.release-notes h2 { margin: 0 0 24px; }
.release-notes > p { margin: 0 0 30px; max-width: 560px; color: #d5d5cd; font-size: 17px; line-height: 1.55; }

.download { position: relative; min-height: 710px; display: flex; align-items: center; overflow: hidden; color: var(--ink); background: var(--paper); }
.download-art { position: absolute; right: -14px; top: 50%; display: flex; transform: translateY(-48%); color: var(--accent); font-size: 300px; font-weight: 800; line-height: .7; pointer-events: none; user-select: none; }
.download-art span:nth-child(2) { color: #c7c5bd; }
.download-art span:nth-child(3) { color: #ff5a36; }
.download-content { position: relative; max-width: 800px; }
.download h2 { font-size: 74px; }
.download-button { min-width: 200px; min-height: 58px; margin-top: 8px; padding: 0 17px; justify-content: space-between; gap: 20px; color: var(--ink); background: var(--accent); font-size: 14px; font-weight: 800; transition: transform 160ms ease, background 160ms ease; }
.download-button:hover { transform: translateY(-3px); background: #c8ec48; }
.download-button svg { width: 18px; }
.compatibility { margin: 16px 0 0; color: var(--muted); font-size: 12px; font-weight: 700; }
.site-footer { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 25px 5.3vw; color: #bfc2ba; background: var(--ink); font-size: 12px; font-weight: 700; }
.site-footer p { margin: 0; }
.footer-brand { color: var(--paper); }
.site-footer div { display: flex; gap: 18px; }

.mobile-nav { position: fixed; z-index: 92; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 12px; padding: 28px; color: var(--paper); background: var(--ink); transform: translateX(100%); transition: transform 260ms ease; }
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a { display: flex; align-items: baseline; gap: 17px; font-size: 52px; font-weight: 800; line-height: 1; }
.mobile-nav a span { color: var(--accent); font-size: 13px; }
.mobile-nav-close { position: absolute; top: 17px; right: 18px; }

.editor { position: fixed; z-index: 105; top: 0; right: 0; bottom: 0; display: grid; grid-template-rows: auto auto 1fr auto; width: var(--editor-width); color: var(--ink); background: #fbfaf5; border-left: 1px solid rgba(18,19,18,.16); box-shadow: -16px 0 50px rgba(0,0,0,.16); transform: translateX(102%); transition: transform 260ms ease; }
body.editor-open { overflow: hidden; }
body.editor-open .editor { transform: translateX(0); }
body.editor-open .page-shell { margin-right: var(--editor-width); }
body.editor-open .site-header { width: calc(100% - var(--editor-width)); }
.editor-header { display: flex; justify-content: space-between; gap: 14px; padding: 25px 22px 18px; border-bottom: 1px solid var(--line); }
.editor-eyebrow { color: var(--muted); font-size: 10px; }
.editor-header h2 { margin: 5px 0 0; font-size: 20px; line-height: 1; }
.editor-header-actions { display: flex; }
.editor .icon-button { width: 34px; height: 34px; }
.editor .icon-button:disabled { cursor: default; }
.editor-tabs { display: grid; grid-template-columns: repeat(3, 1fr); padding: 12px 20px; border-bottom: 1px solid var(--line); }
.editor-tabs button { min-height: 32px; border: 0; color: var(--muted); background: transparent; font-size: 12px; font-weight: 800; }
.editor-tabs button.is-active { color: var(--ink); background: var(--accent); }
.editor-body { overflow-y: auto; padding: 2px 20px 30px; }
.control-section { padding: 23px 0; border-bottom: 1px solid var(--line); }
.control-section h3 { margin: 0 0 16px; font-size: 14px; }
.control-section label { display: grid; gap: 7px; margin: 0 0 14px; color: #555752; font-size: 11px; font-weight: 700; }
.control-section input[type="text"], .control-section input[type="url"], .control-section textarea { width: 100%; appearance: none; resize: vertical; border: 1px solid rgba(18,19,18,.22); border-radius: 0; padding: 9px 10px; color: var(--ink); background: #fff; font-size: 13px; font-weight: 600; line-height: 1.35; outline: none; transition: border-color 150ms ease, box-shadow 150ms ease; }
.control-section input:focus, .control-section textarea:focus { border-color: var(--ink); box-shadow: inset 3px 0 var(--accent); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.field-row.three { grid-template-columns: repeat(3, 1fr); }
.control-section details { border-top: 1px solid var(--line); }
.control-section details:last-child { border-bottom: 1px solid var(--line); }
.control-section summary { display: flex; align-items: center; gap: 8px; min-height: 40px; list-style: none; font-size: 12px; font-weight: 800; cursor: pointer; }
.control-section summary::-webkit-details-marker { display: none; }
.control-section summary span { color: var(--muted); }
.control-section summary svg { width: 15px; height: 15px; margin-left: auto; transition: transform 150ms ease; }
.control-section details[open] summary svg { transform: rotate(180deg); }
.control-section details > label { padding-top: 4px; }
.color-control { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.color-control input { width: 42px; height: 42px; border: 0; padding: 0; background: transparent; cursor: pointer; }
.color-control output { font-size: 13px; font-weight: 800; }
.swatches { display: flex; gap: 8px; }
.swatches button { width: 28px; height: 28px; border: 2px solid transparent; background: var(--swatch); }
.swatches button:hover { border-color: var(--ink); }
.upload-control { min-height: 78px; place-items: center; align-content: center; border: 1px dashed rgba(18,19,18,.38); color: var(--ink) !important; background: #f1f0e9; cursor: pointer; transition: background 150ms ease; }
.upload-control:hover { background: var(--accent); }
.upload-control input, .import-button input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.upload-control svg { width: 20px; height: 20px; }
.upload-control.compact { display: flex; grid-template-columns: auto 1fr; justify-content: start; align-content: center; min-height: 42px; gap: 8px; padding: 8px 10px; }
.upload-control.compact svg { width: 15px; height: 15px; }
.range-label { gap: 8px !important; }
.range-label > span { display: flex; justify-content: space-between; }
.range-label output { color: var(--ink); }
.range-label input { width: 100%; accent-color: var(--ink); }
.toggle-row { display: flex !important; grid-template-columns: 1fr 35px; align-items: center; min-height: 35px; margin: 0 !important; color: var(--ink) !important; font-size: 13px !important; }
.toggle-row input { position: absolute; opacity: 0; }
.toggle-row i { position: relative; width: 35px; height: 19px; background: #bcbdb6; transition: background 150ms ease; }
.toggle-row i::after { position: absolute; content: ""; top: 3px; left: 3px; width: 13px; height: 13px; background: #fff; transition: transform 150ms ease; }
.toggle-row input:checked + i { background: var(--accent); }
.toggle-row input:checked + i::after { transform: translateX(16px); background: var(--ink); }
.control-hint { margin: -5px 0 14px; color: var(--muted); font-size: 12px; line-height: 1.4; }
.config-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.tool-button { min-height: 38px; gap: 7px; padding: 8px 10px; color: var(--ink); border: 1px solid var(--ink); background: transparent; font-size: 12px; font-weight: 800; }
.tool-button:hover { background: var(--accent); }
.tool-button svg { width: 15px; height: 15px; }
.reset-button { grid-column: span 2; color: #a22d1d; border-color: #a22d1d; }
.editor-footer { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-top: 1px solid var(--line); background: #fbfaf5; }
.save-indicator { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 10px; font-weight: 700; }
.save-indicator i { width: 7px; height: 7px; background: #4ba36c; border-radius: 50%; }
.save-indicator.is-error { color: #b73d32; }.save-indicator.is-error i { background: #d84b3f; }
.done-button { min-height: 36px; padding: 0 15px; color: var(--ink); background: var(--accent); font-size: 12px; font-weight: 800; }
.editor-backdrop { position: fixed; z-index: 104; inset: 0; pointer-events: none; background: rgba(0,0,0,.32); opacity: 0; transition: opacity 200ms ease; }
body.editor-open .editor-backdrop { pointer-events: auto; opacity: 1; }
body.editor-open.element-picker-active .editor-backdrop { pointer-events: none; opacity: 0; }
body.editor-open.element-picker-active { overflow-y: auto; }
.toast { position: fixed; z-index: 130; left: 50%; bottom: 28px; padding: 10px 14px; color: #fff; background: #111; font-size: 12px; font-weight: 700; opacity: 0; pointer-events: none; transform: translate(-50%, 16px); transition: opacity 160ms ease, transform 160ms ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 560ms ease, transform 560ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .hero-title { font-size: 102px; }
  .overview { grid-template-columns: .55fr 1.65fr .7fr; }
  .overview h2 { font-size: 52px; }
  .download-art { font-size: 220px; }
}

@media (max-width: 820px) {
  .site-header { padding: 17px 18px; }
  .brand { min-width: auto; }
  .main-nav, .preview-button { display: none; }
  .header-actions { min-width: auto; }
  .menu-button { display: inline-flex; }
  .hero { min-height: 520px; height: 92svh; padding: 105px 18px 32px; }
  .hero-kicker { top: 95px; }
  .hero-title { font-size: 73px; line-height: .88; }
  .hero-footer { left: 18px; right: 18px; bottom: 26px; }
  .hero-footer p { width: min(310px, 70vw); font-size: 13px; }
  .round-link { width: 52px; height: 52px; }
  .signal-strip { gap: 16px; padding: 10px 18px; overflow-x: auto; white-space: nowrap; }
  .section-band { padding: 74px 18px; }
  .overview { grid-template-columns: 1fr; gap: 35px; min-height: 0; }
  .overview-copy { max-width: 650px; }
  .overview h2, .section-head h2, .release-notes h2 { font-size: 46px; }
  .body-copy { font-size: 16px; }
  .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .stat strong { font-size: 25px; }
  .section-head { grid-template-columns: 1fr; gap: 28px; margin-bottom: 38px; }
  .carousel-actions { justify-self: start; }
  .feature-track { margin-right: -18px; padding-right: 18px; gap: 14px; }
  .feature-card { flex-basis: min(86vw, 610px); aspect-ratio: 1.12; border-radius: 18px; }
  .feature-card:not(.is-active) { opacity: .9; }
  .card-content { right: 10px; bottom: 10px; left: 10px; min-height: 175px; padding: 15px 15px 14px; border-radius: 15px; transform: translateY(0); opacity: 1; }
  .feature-card:not(.is-active) .card-content { background: rgba(16, 19, 17, .62); }
  .heading-title { margin-top: 23px; font-size: 24px; }
  .feature-description { font-size: 12px; }
  .button-group { opacity: 1; transform: none; }
  .release-layout { grid-template-columns: 1fr; gap: 32px; margin-top: 56px; }
  .release-version { font-size: 66px; }
  .download { min-height: 550px; }
  .download h2 { font-size: 51px; }
  .download-art { right: -18px; font-size: 150px; }
  .site-footer { flex-wrap: wrap; padding: 23px 18px; }
  .site-footer p { order: 3; width: 100%; }
  body.editor-open .page-shell { margin-right: 0; }
  body.editor-open .site-header { width: 100%; }
  .editor { width: min(100%, 440px); }
}

@media (max-width: 460px) {
  .edit-button { width: 38px; padding: 0; }
  .edit-button span { display: none; }
  .hero-title { font-size: 56px; }
  .hero-kicker { max-width: 200px; font-size: 10px; }
  .hero-footer p { font-size: 12px; }
  .round-link { width: 45px; height: 45px; }
  .signal-strip { min-height: 58px; font-size: 10px; }
  .overview h2, .section-head h2, .release-notes h2 { font-size: 38px; }
  .stats { gap: 9px; }
  .stat strong { font-size: 22px; }
  .stat span { font-size: 10px; }
  .download h2 { font-size: 57px !important; }
  .download-art { top: 31%; font-size: 113px; }
  .site-footer div { gap: 12px; }
  .editor-header { padding: 20px 17px 15px; }
  .editor-tabs, .editor-body { padding-left: 15px; padding-right: 15px; }
  .editor-footer { padding: 12px 15px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Full homepage narrative system */
:root { --paper: #f1f0e9; --ink: #111311; --line: rgba(17,19,17,.18); --hero-shade: .34; --hero-focus: 52%; --hero-shift: 0px; }
body { background: var(--paper); }
.page-loader { position: fixed; z-index: 200; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px; color: var(--paper); background: var(--ink); transition: opacity 520ms ease, visibility 520ms ease; }
.page-loader .loader-word { display: flex; gap: 9px; font-size: 58px; font-weight: 800; line-height: .8; overflow: hidden; }
.loader-word span { transform: translateY(110%); animation: loader-word-in 650ms cubic-bezier(.16,.8,.24,1) forwards; }
.loader-word span:nth-child(2) { animation-delay: 100ms; }.loader-word span:nth-child(3) { animation-delay: 200ms; }
.loader-line { width: 110px; height: 2px; overflow: hidden; background: rgba(255,255,255,.23); }.loader-line i { display: block; width: 100%; height: 100%; background: var(--accent); transform: translateX(-100%); animation: loader-line-in 950ms ease 200ms forwards; }
body.page-ready .page-loader { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes loader-word-in { to { transform: translateY(0); } } @keyframes loader-line-in { to { transform: translateX(0); } }
.site-header { z-index: 80; padding: 22px 5.3vw; color: #fff; background: transparent; }
.site-header.is-scrolled { color: var(--ink); background: rgba(241,240,233,.9); }
.brand { font-size: 15px; }.brand-symbol { display: grid; grid-template-columns: repeat(2, 5px); grid-template-rows: repeat(2, 5px); gap: 2px; }.brand-symbol i { background: currentColor; }.brand-symbol i:nth-child(3) { grid-column: 2; }
.desktop-nav { display: flex; gap: 28px; font-size: 12px; font-weight: 800; text-transform: uppercase; }.desktop-nav a { transition: color 180ms ease; }.desktop-nav a:hover { color: var(--accent); }
.hero { height: 100svh; min-height: 620px; padding: 130px 5.3vw 50px; }
.hero-media { transform: scale(1.04) translate3d(0,var(--hero-shift),0); object-position: var(--hero-focus) center; filter: saturate(.82); }.hero-overlay { position: absolute; z-index: -2; inset: 0; background: rgba(7,9,8,var(--hero-shade)); }
.hero-grid { display: none; }.hero-kicker { top: 146px; font-size: 11px; letter-spacing: .04em; }.hero-title { font-size: clamp(94px, 12vw, 182px); letter-spacing: -.04em; line-height: .82; }.hero-title span { opacity: 0; transform: translateY(42px); animation: title-in 900ms cubic-bezier(.16,.8,.24,1) forwards; }.hero-title span:nth-child(2) { animation-delay: 100ms; }.hero-title span:nth-child(3) { animation-delay: 200ms; }.hero-title .outline { -webkit-text-stroke: 1px #fff; }
.hero-bottom { position: absolute; display: flex; align-items: flex-end; justify-content: space-between; bottom: 40px; left: 5.3vw; right: 5.3vw; opacity: 0; animation: fade-in 700ms ease 560ms forwards; }.hero-bottom p { width: 330px; font-size: 13px; }.circle-button { display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; color: var(--ink); background: var(--accent); }
.section-light { color: var(--ink); background: var(--paper); }.section-dark { color: var(--paper); background: var(--ink); }
.manifesto { display: grid; grid-template-columns: .75fr 1.65fr; gap: 32px; min-height: 760px; padding: 140px 5.3vw 150px; }.section-tag { display: flex; align-items: baseline; gap: 12px; font-size: 11px; font-weight: 800; letter-spacing: .01em; text-transform: uppercase; }.section-tag span { color: #898c85; }.section-tag p { margin: 0; }.manifesto-content { align-self: end; max-width: 900px; }.manifesto-eyebrow { margin: 0 0 24px; font-size: 12px; font-weight: 800; text-transform: uppercase; }.manifesto h2 { max-width: 900px; margin: 0; font-size: clamp(43px, 5.5vw, 82px); line-height: .99; letter-spacing: -.04em; }
.color-shift-copy { max-width: min(100%, 18em); color: #afb2a9; line-height: clamp(1.28, 1.12 + .22vw, 1.5); text-wrap: pretty; overflow-wrap: anywhere; }.color-word { color: #afb2a9; text-shadow: 0 0 0 transparent; transition: color 760ms cubic-bezier(.22,.61,.36,1), text-shadow 760ms cubic-bezier(.22,.61,.36,1), opacity 600ms ease; }.color-word.is-passed { color: rgba(244,246,237,.72); opacity: .9; }.color-word.is-lit { color: var(--word-color,var(--accent)); opacity: calc(.78 + (1 - var(--wave-distance, 0)) * .22); text-shadow: 0 0 .12em color-mix(in srgb, var(--word-color,var(--accent)) 16%, transparent); }
.section-intro { display: grid; grid-template-columns: .75fr 1.15fr .85fr; align-items: end; gap: 32px; padding: 120px 5.3vw 72px; }.section-intro h2 { margin: 0; font-size: clamp(46px, 5.2vw, 78px); line-height: .92; letter-spacing: -.04em; }.section-intro > p { align-self: end; max-width: 350px; margin: 0; color: #92958c; font-size: 15px; line-height: 1.5; }.section-dark .section-intro > p { color: #a9aca4; }.section-dark .section-tag span { color: #b1b3ac; }
.news { overflow: hidden; }.rail-shell { position: relative; padding: 0 5.3vw 130px; }.rail-controls { display: flex; align-items: center; gap: 9px; margin-bottom: 15px; justify-content: flex-end; }.rail-controls p { display: flex; gap: 5px; min-width: 53px; margin: 0; color: #959890; font-size: 11px; font-weight: 800; text-align: center; }.rail-controls p span:first-child { color: var(--accent); }.rail-controls .icon-button { color: var(--paper); }.news-rail { display: flex; gap: 20px; overflow-x: auto; padding: 0 0 13px; scroll-snap-type: x mandatory; scrollbar-width: none; cursor: grab; }.news-rail::-webkit-scrollbar { display: none; }.news-rail.is-dragging { cursor: grabbing; }.news-card { flex: 0 0 min(34vw, 470px); scroll-snap-align: start; opacity: .66; transform: translateY(18px); transition: opacity 450ms ease, transform 500ms cubic-bezier(.2,.8,.2,1); }.news-card.is-visible, .news-card.is-active { opacity: 1; transform: translateY(0); }.news-card-image { position: relative; aspect-ratio: 1.2; overflow: hidden; border-radius: 17px; background: #2d302e; }.news-card-image::after { position: absolute; content: ""; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.42)); }.news-card-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.68); transform: scale(1.06); transition: transform 850ms cubic-bezier(.2,.8,.2,1), filter 500ms ease; }.news-card:hover img, .news-card.is-active img { filter: saturate(1); transform: scale(1); }.news-card-image > span { position: absolute; z-index: 1; top: 13px; right: 13px; color: #fff; font-size: 11px; font-weight: 800; }.news-card-content { padding: 17px 4px 0; }.news-meta { display: flex; justify-content: space-between; margin-bottom: 15px; color: #8e9189; font-size: 10px; font-weight: 800; text-transform: uppercase; }.news-meta p { margin: 0; }.news-card h3 { min-height: 58px; margin: 0 0 12px; font-size: 25px; line-height: 1.03; }.news-card-content > p { min-height: 45px; margin: 0 0 17px; color: #aeb0a8; font-size: 12px; line-height: 1.45; }.card-cta { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); border-bottom: 1px solid rgba(221,253,90,.45); padding-bottom: 7px; font-size: 11px; font-weight: 800; }.double-arrow { position: relative; display: inline-flex; width: 16px; height: 16px; overflow: hidden; }.double-arrow svg { position: absolute; width: 15px; height: 15px; transition: transform 260ms ease, opacity 260ms ease; }.double-arrow svg:last-child { opacity: 0; transform: translateX(-15px); }.card-cta:hover .double-arrow svg:first-child, .inline-cta:hover .double-arrow svg:first-child, .subpage-next > a:hover .double-arrow svg:first-child { opacity: 0; transform: translateX(15px); }.card-cta:hover .double-arrow svg:last-child, .inline-cta:hover .double-arrow svg:last-child, .subpage-next > a:hover .double-arrow svg:last-child { opacity: 1; transform: translateX(0); }
.expertise { min-height: 1100px; }.expertise-list { padding: 0 5.3vw 120px; }.expertise-item { position: relative; display: grid; grid-template-columns: .18fr 1fr auto auto; align-items: center; gap: 20px; min-height: 103px; padding: 16px 0; border-top: 1px solid var(--line); cursor: pointer; }.expertise-item:last-child { border-bottom: 1px solid var(--line); }.expertise-number { color: #8f928a; font-size: 11px; font-weight: 800; }.expertise-item h3 { margin: 0; font-size: clamp(24px, 3vw, 44px); line-height: 1; transition: color 250ms ease; }.expertise-item p { margin: 8px 0 0; color: #969991; font-size: 12px; }.expertise-thumb { width: 0; height: 72px; overflow: hidden; opacity: 0; border-radius: 9px; transform: translateX(12px); transition: width 400ms cubic-bezier(.2,.8,.2,1), opacity 350ms ease, transform 400ms ease; }.expertise-thumb img { width: 130px; height: 100%; object-fit: cover; }.expertise-item:hover h3, .expertise-item:focus-within h3 { color: #5c7d66; }.expertise-item:hover .expertise-thumb, .expertise-item:focus-within .expertise-thumb { width: 130px; opacity: 1; transform: translateX(0); }.item-arrow { display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; transition: background 200ms ease, transform 200ms ease; }.item-arrow svg { width: 15px; }.expertise-item:hover .item-arrow { background: var(--accent); transform: rotate(45deg); }
.showreel { position: relative; height: min(70vw, 760px); min-height: 470px; overflow: hidden; color: #fff; background: #252a28; }.showreel > img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7); transform: scale(1.08) translate3d(calc(var(--mx,0) * -10px),calc(var(--my,0) * -10px),0); transition: transform 900ms cubic-bezier(.2,.8,.2,1), filter 700ms ease; }.showreel:hover > img { filter: saturate(1); }.media-wash { position: absolute; inset: 0; background: rgba(10,14,12,.24); }.showreel p { position: absolute; left: 5.3vw; bottom: 30px; margin: 0; font-size: 11px; font-weight: 800; }.watch-button { position: absolute; right: 5.3vw; bottom: 28px; display: inline-flex; align-items: center; gap: 10px; min-height: 43px; padding: 0 13px; color: var(--ink); border: 0; background: var(--accent); font-size: 11px; font-weight: 800; }.watch-button svg { width: 15px; }
.story-section { display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; align-items: center; min-height: 860px; padding: 120px 5.3vw; }.story-section.research { color: var(--paper); }.story-copy { max-width: 600px; }.story-copy h2 { margin: 28px 0 25px; font-size: clamp(48px, 5.6vw, 83px); line-height: .92; letter-spacing: -.04em; }.story-copy > p { max-width: 440px; margin: 0 0 28px; color: #777a72; font-size: 16px; line-height: 1.55; }.research .story-copy > p { color: #b9bcb4; }.story-media { position: relative; margin: 0; aspect-ratio: 1.08; overflow: hidden; border-radius: 20px; background: #222; }.story-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.07) translate3d(calc(var(--mx,0) * -8px),calc(var(--my,0) * -8px),0); transition: transform 900ms cubic-bezier(.2,.8,.2,1), filter 600ms ease; filter: saturate(.78); }.story-media:hover img { transform: scale(1.01) translate3d(calc(var(--mx,0) * -8px),calc(var(--my,0) * -8px),0); filter: saturate(1); }.story-media figcaption { position: absolute; left: 16px; bottom: 14px; color: rgba(255,255,255,.72); font-size: 10px; font-weight: 800; text-transform: uppercase; }.story-links { display: flex; gap: 22px; }.story-links a { display: inline-flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--ink); padding-bottom: 7px; font-size: 12px; font-weight: 800; }.story-links svg { width: 14px; }.inline-cta { display: inline-flex; align-items: center; gap: 10px; color: var(--accent); border-bottom: 1px solid rgba(221,253,90,.5); padding-bottom: 8px; font-size: 12px; font-weight: 800; }.inline-cta.dark { color: var(--ink); border-color: rgba(17,19,17,.5); }.research .story-media { order: 0; }.research .story-copy { order: 1; }
.sustainability { position: relative; min-height: 860px; overflow: hidden; color: #fff; background: #111; }.sustainability > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.72); transform: scale(1.06) translate3d(calc(var(--mx,0) * -8px),calc(var(--my,0) * -8px),0); transition: transform 900ms ease, filter 700ms ease; }.sustainability:hover > img { filter: saturate(1); }.sustainability::after { position: absolute; content: ""; inset: 0; background: linear-gradient(90deg, rgba(8,12,10,.65), rgba(8,12,10,.05) 75%); }.sustainability-panel { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; width: min(600px, 90%); min-height: 860px; padding: 100px 5.3vw; }.sustainability-panel h2 { margin: 29px 0 24px; font-size: clamp(50px, 6vw, 88px); line-height: .9; letter-spacing: -.05em; }.sustainability-panel > p { max-width: 420px; margin: 0 0 28px; color: #d4d8ce; font-size: 16px; line-height: 1.5; }.download { position: relative; min-height: 760px; display: flex; align-items: center; overflow: hidden; }.download-copy { position: relative; z-index: 1; padding: 120px 5.3vw; }.download-copy h2 { margin: 26px 0 30px; font-size: clamp(56px, 7vw, 104px); line-height: .9; letter-spacing: -.05em; }.download-copy > p { margin: 17px 0 0; color: #777a72; font-size: 11px; font-weight: 800; }.download-watermark { position: absolute; top: 50%; right: -5vw; display: flex; transform: translateY(-48%); color: var(--accent); font-size: clamp(220px, 34vw, 510px); font-weight: 800; line-height: .7; letter-spacing: -.14em; opacity: .85; }.download-watermark span:nth-child(2) { color: #c2c4bc; }.download-watermark span:nth-child(3) { color: #ff5a36; }
.site-footer { color: var(--paper); background: var(--ink); padding: 70px 5.3vw 24px; }.footer-top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr) auto; gap: 30px; align-items: start; padding-bottom: 90px; }.footer-brand { font-size: 18px; font-weight: 800; }.footer-column { display: flex; flex-direction: column; gap: 9px; }.footer-column h3 { margin: 0 0 10px; color: #8d9188; font-size: 10px; font-weight: 800; text-transform: uppercase; }.footer-column a { color: #d4d6cf; font-size: 12px; }.footer-column a:hover { color: var(--accent); }.footer-round { display: inline-flex; width: 50px; height: 50px; align-items: center; justify-content: center; color: var(--ink); background: var(--accent); border-radius: 50%; }.footer-round svg { width: 19px; }.footer-bottom { display: flex; justify-content: space-between; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.16); color: #80847b; font-size: 10px; font-weight: 700; }.footer-bottom p { margin: 0; }
.search-layer, .menu-layer { position: fixed; z-index: 95; inset: 0; color: var(--paper); background: rgba(17,19,17,.97); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 250ms ease, visibility 250ms ease; }.search-layer.is-open, .menu-layer.is-open { opacity: 1; visibility: visible; pointer-events: auto; }.search-close, .menu-close { position: absolute; top: 18px; right: 5.3vw; color: var(--paper); }.search-form { position: absolute; top: 50%; left: 50%; width: min(800px, 82vw); transform: translate(-50%, -50%); }.search-form label { display: block; margin-bottom: 17px; color: #a8aca2; font-size: 11px; font-weight: 800; text-transform: uppercase; }.search-form > div { display: flex; border-bottom: 2px solid var(--paper); }.search-form input { flex: 1; min-width: 0; border: 0; outline: 0; padding: 14px 0; color: var(--paper); background: transparent; font-size: clamp(33px, 5vw, 70px); font-weight: 800; }.search-form input::placeholder { color: #565a53; }.search-form > div button { width: 55px; color: var(--accent); border: 0; background: transparent; }.search-form > div svg { width: 26px; }.search-result { min-height: 25px; margin: 14px 0 0; color: var(--accent); font-size: 12px; font-weight: 800; }.menu-layer { display: flex; flex-direction: column; justify-content: space-between; padding: 24px 5.3vw 35px; }.menu-top { display: flex; justify-content: space-between; font-size: 14px; font-weight: 800; }.menu-layer nav { display: flex; flex-direction: column; gap: 7px; }.menu-layer nav a { display: flex; align-items: baseline; gap: 17px; width: fit-content; font-size: clamp(42px, 7vw, 100px); font-weight: 800; line-height: .93; letter-spacing: -.05em; transition: color 180ms ease, transform 180ms ease; }.menu-layer nav a span { width: 25px; color: var(--accent); font-size: 11px; letter-spacing: 0; }.menu-layer nav a:hover { color: var(--accent); transform: translateX(12px); }.menu-meta { display: flex; justify-content: space-between; color: #8c9087; font-size: 11px; font-weight: 800; text-transform: uppercase; }.menu-meta p { margin: 0; }
.media-reveal, .reveal, .reveal-card { opacity: 0; transform: translateY(27px); transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.8,.2,1); }.media-reveal.is-visible, .reveal.is-visible, .reveal-card.is-visible { opacity: 1; transform: translateY(0); }
.rail-cursor { position: fixed; z-index: 50; display: none; width: 45px; height: 45px; align-items: center; justify-content: center; color: var(--ink); background: var(--accent); border-radius: 50%; pointer-events: none; transform: translate(-50%,-50%); }.rail-cursor svg { width: 18px; }
.editor { z-index: 110; }.editor-tabs { grid-template-columns: repeat(4, 1fr); }.editor-header > div:last-child { display: flex; }.editor-header > div:first-child p { margin: 0; color: var(--muted); font-size: 10px; font-weight: 800; }.editor-header > div:first-child h2 { margin: 5px 0 0; }.editor-panel .control-section { padding: 22px 0; }.editor-panel .control-section label { margin-bottom: 13px; }.editor-panel select { width: 100%; border: 1px solid rgba(18,19,18,.22); border-radius: 0; padding: 9px 10px; color: var(--ink); background: #fff; font-size: 13px; font-weight: 600; }.editor-panel .upload-control { position: relative; }.editor-panel .upload-control.compact { display: flex; }.editor-panel .field-row.three { grid-template-columns: repeat(3,1fr); }
@media (max-width: 820px) {
  .site-header { padding: 17px 18px; }.desktop-nav, .search-button { display: none; }.menu-button { display: inline-flex; }.hero { min-height: 580px; height: 92svh; padding: 105px 18px 32px; }.hero-kicker { top: 95px; }.hero-title { font-size: 70px; }.hero-bottom { left: 18px; right: 18px; bottom: 26px; }.hero-bottom p { width: 255px; font-size: 12px; }.circle-button { width: 50px; height: 50px; }.manifesto { grid-template-columns: 1fr; min-height: 600px; gap: 100px; padding: 85px 18px 92px; }.manifesto h2 { font-size: 43px; }.section-intro { grid-template-columns: 1fr; gap: 27px; padding: 80px 18px 52px; }.section-intro h2 { font-size: 47px; }.section-intro > p { max-width: 310px; }.rail-shell { padding: 0 18px 80px; }.rail-controls { justify-content: flex-start; }.news-card { flex-basis: 80vw; }.news-card h3 { font-size: 23px; }.expertise { min-height: 0; }.expertise-list { padding: 0 18px 82px; }.expertise-item { grid-template-columns: 32px 1fr 34px; min-height: 88px; gap: 12px; }.expertise-thumb { display: none; }.expertise-item h3 { font-size: 25px; }.showreel { height: 75svh; min-height: 420px; }.showreel p { left: 18px; bottom: 23px; }.watch-button { right: 18px; bottom: 20px; }.story-section { grid-template-columns: 1fr; gap: 55px; min-height: 0; padding: 82px 18px; }.story-copy h2 { font-size: 49px; }.story-copy > p { font-size: 15px; }.research .story-media { order: 0; }.research .story-copy { order: 1; }.story-media { aspect-ratio: 1.18; }.sustainability, .sustainability-panel { min-height: 680px; }.sustainability-panel { width: 100%; padding: 80px 18px; justify-content: flex-end; }.sustainability-panel h2 { font-size: 53px; }.download { min-height: 600px; }.download-copy { padding: 90px 18px; }.download-copy h2 { font-size: 54px; }.download-watermark { top: 25%; right: -10px; font-size: 150px; }.footer-top { grid-template-columns: 1fr 1fr; gap: 36px 18px; padding-bottom: 58px; }.footer-brand { grid-column: span 2; }.footer-round { grid-column: 2; grid-row: 2; justify-self: end; }.site-footer { padding: 54px 18px 20px; }.footer-bottom { gap: 18px; flex-direction: column; }.menu-layer { padding: 19px 18px 28px; }.menu-layer nav a { font-size: 47px; }.search-close { right: 18px; }.editor { width: min(100%, 450px); }.page-loader .loader-word { font-size: 48px; }
}

/* Element-level inspector */
.editor-tabs { grid-template-columns: repeat(5, minmax(0, 1fr)); }

/* Subpages */
[hidden] { display: none !important; }
.page-nav-links { display: contents; }
.page-menu-links { display: contents; }
.subpage-view { color: var(--ink); background: var(--paper); }
.subpage-view > section { position: relative; min-height: max(100svh, 56.25vw); }
.subpage-hero { display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: 130px 5.3vw 70px; color: #fff; background: #151715; }
.subpage-hero-media { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0; transform: scale(1.04); transition: opacity 950ms cubic-bezier(.16,.8,.24,1), object-position 500ms ease; animation: hero-breathe 12s ease-out both; will-change: transform, opacity; }
.subpage-hero-media.is-loaded { opacity: 1; }
.subpage-hero-overlay { position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(10,12,10,.16) 15%, rgba(10,12,10,.4) 58%, rgba(10,12,10,.86) 100%); }
.subpage-hero::after { content: ""; position: absolute; z-index: 2; inset: 0; pointer-events: none; opacity: var(--highlight-opacity); background: url("assets/texture-highlight.png") center/cover no-repeat; mix-blend-mode: soft-light; }
.subpage-back, .subpage-eyebrow, .subpage-hero h1, .subpage-summary { position: relative; z-index: 3; }
.subpage-back { position: absolute; top: 112px; left: 5.3vw; display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 800; animation: header-in 700ms cubic-bezier(.16,.8,.24,1) both; }
.subpage-eyebrow { margin: 0 0 24px; color: var(--accent); font-size: 12px; font-weight: 800; text-transform: uppercase; opacity: 0; animation: fade-in 700ms ease 420ms forwards; }
.subpage-hero h1 { max-width: 1000px; margin: 0; font-size: 92px; font-weight: 800; line-height: .92; letter-spacing: 0; }
.subpage-title-line { animation-delay: calc(var(--title-line-index, 0) * 100ms); }
.subpage-summary { max-width: 560px; margin: 32px 0 0 auto; color: rgba(255,255,255,.82); font-size: 17px; line-height: 1.55; opacity: 0; animation: fade-in 700ms ease 560ms forwards; }
.subpage-content { display: grid; grid-template-columns: minmax(180px, .55fr) minmax(0, 2.2fr); align-items: start; gap: clamp(48px, 7vw, 130px); padding: 135px 5.3vw; }
.subpage-copy { width: 100%; max-width: 1120px; }
.subpage-copy h2 { max-width: 800px; margin: 0 0 50px; font-size: 72px; line-height: .95; letter-spacing: 0; }
.subpage-copy > p { max-width: clamp(760px, 52vw, 1020px); margin: 0 0 44px; color: #575b54; font-size: 21px; line-height: 1.72; white-space: pre-line; }
.subpage-next { display: flex; flex-direction: column; justify-content: center; padding: 120px 5.3vw; color: var(--paper); background: var(--ink); }
.subpage-view > .subpage-next { min-height: clamp(330px, 38vw, 500px); padding-block: clamp(70px, 8vw, 105px); }
.subpage-next > p { margin: 0 0 36px; color: #92968d; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.subpage-next > a { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 18px; border-top: 1px solid rgba(255,255,255,.22); padding-top: 32px; }
.subpage-next a .subpage-next-meta { grid-column: 1; color: var(--accent); font-size: 12px; font-weight: 800; }
.subpage-next a strong { grid-column: 1; max-width: 1100px; font-size: 76px; line-height: .96; }
.subpage-next .subpage-next-arrow { grid-column: 2; grid-row: 1 / span 2; align-self: center; width: 34px; height: 34px; color: var(--accent); }
.subpage-next .subpage-next-arrow svg { width: 30px; height: 30px; }
.subpage-missing { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 120px 5.3vw; color: var(--paper); background: var(--ink); }
.subpage-missing p { color: var(--accent); font-size: 12px; font-weight: 800; }
.subpage-missing h1 { max-width: 900px; margin: 18px 0 42px; font-size: 84px; line-height: .95; }

/* Subpage manager */
.editor-tabs { grid-template-columns: repeat(6, minmax(0, 1fr)); padding-inline: 14px; }
.editor-tabs button { font-size: 11px; }
.panel-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.panel-title-row h3, .panel-title-row .control-hint { margin-bottom: 0; }
.compact-actions, .page-actions { display: flex; align-items: center; gap: 7px; }
.page-list { display: grid; gap: 1px; background: rgba(18,19,18,.14); border: 1px solid rgba(18,19,18,.14); }
.page-list-item { display: grid; grid-template-columns: 34px 1fr; gap: 9px; align-items: center; min-height: 58px; border: 0; padding: 8px 10px; color: var(--ink); background: #fff; text-align: left; }
.page-list-item:hover, .page-list-item.is-selected { background: #eef1dc; }
.page-list-item.is-selected { box-shadow: inset 3px 0 var(--accent); }
.page-list-item b { color: #8a8d85; font-size: 10px; }
.page-list-item span { display: grid; min-width: 0; gap: 3px; }
.page-list-item strong, .page-list-item small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.page-list-item strong { font-size: 12px; }
.page-list-item small { color: #777a73; font-size: 10px; }
.page-actions { margin-top: 18px; flex-wrap: wrap; }
.page-actions .tool-button { flex: 1; justify-content: center; min-width: 130px; }
.page-home-linker { margin: 18px 0; padding: 16px 0; border-top: 1px solid rgba(18,19,18,.16); border-bottom: 1px solid rgba(18,19,18,.16); }
.page-home-linker-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 13px; color: var(--ink); font-size: 12px; font-weight: 800; }
.page-home-linker-title output { color: var(--muted); font-size: 10px; }
.page-home-linker .page-home-connect { width: 100%; justify-content: center; }
.page-home-linker .page-home-connect:disabled { cursor: not-allowed; opacity: .38; }
.page-home-links { display: grid; gap: 6px; margin-top: 10px; }
.page-home-link-item { display: grid; grid-template-columns: minmax(0,1fr) 34px; align-items: center; min-height: 40px; border: 1px solid rgba(18,19,18,.14); background: #fff; }
.page-home-link-item > span { overflow: hidden; padding: 8px 10px; font-size: 10px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.page-home-link-item .icon-button { width: 34px; height: 38px; border-left: 1px solid rgba(18,19,18,.14); }
.toggle-row span small { display: block; margin-top: 3px; color: var(--muted); font-size: 9px; font-weight: 600; line-height: 1.35; }
.home-page-link-target { cursor: pointer; }
.home-page-link-target:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.page-inspector textarea[data-page-field="body"] { min-height: 280px; }

@media (max-width: 820px) {
  .subpage-view > section { min-height: 100svh; }
  .subpage-hero { min-height: 100svh; padding: 120px 18px 42px; }
  .subpage-back { top: 92px; left: 18px; }
  .subpage-hero h1 { font-size: 56px; }
  .subpage-summary { margin: 26px 0 0; font-size: 15px; }
  .subpage-content { grid-template-columns: 1fr; gap: 65px; padding: 90px 18px; }
  .subpage-copy h2 { font-size: 48px; }
  .subpage-copy > p { font-size: 17px; }
  .subpage-next { padding: 90px 18px; }
  .subpage-next a strong { font-size: 48px; }
  .subpage-missing { padding-inline: 18px; }
  .subpage-missing h1 { font-size: 54px; }
  .editor-tabs { grid-template-columns: repeat(6, minmax(52px, 1fr)); overflow-x: auto; }
}

@media (max-width: 460px) {
  .subpage-hero h1 { font-size: 44px; }
  .subpage-copy h2 { font-size: 40px; }
  .subpage-next a strong { font-size: 39px; }
  .subpage-next .subpage-next-arrow { width: 28px; height: 28px; }
  .subpage-next .subpage-next-arrow svg { width: 25px; height: 25px; }
}
.element-search { position: relative; display: flex !important; align-items: center; gap: 8px !important; min-height: 36px; border: 1px solid rgba(18,19,18,.22); padding: 0 9px; background: #fff; }
.element-search svg { width: 15px; height: 15px; color: var(--muted); }
.element-search input { width: 100%; border: 0 !important; outline: 0; padding: 8px 0 !important; box-shadow: none !important; background: transparent !important; }
.element-list { display: grid; gap: 4px; max-height: 330px; margin-top: 11px; overflow-y: auto; }
.element-list { display: flex; gap: 7px; max-height: none; padding: 4px 1px 10px; overflow-x: auto; overflow-y: hidden; scrollbar-width: thin; }
.element-list { flex-direction: column; gap: 3px; max-height: 360px; padding: 4px 3px 10px 1px; overflow-x: hidden; overflow-y: auto; }
.element-list-item { flex: none; display: grid; grid-template-columns: 34px 78px 1fr; grid-template-rows: 1fr; gap: 8px; align-items: center; min-height: 38px; border: 1px solid rgba(17,19,17,.12); padding: 6px 9px; color: var(--ink); background: rgba(255,255,255,.55); text-align: left; }
.element-list-item:hover, .element-list-item.is-selected { border-color: rgba(17,19,17,.3); background: var(--accent); }
.element-list-item.is-deleted { opacity: .45; text-decoration: line-through; }
.element-list-number { color: var(--accent); font-size: 12px; font-variant-numeric: tabular-nums; }
.element-list-item small { overflow: hidden; color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; text-overflow: ellipsis; white-space: nowrap; }
.element-list-item span { overflow: hidden; font-size: 11px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.inspector-heading { display: flex; align-items: start; justify-content: space-between; gap: 10px; margin-bottom: 17px; }
.inspector-actions { display: flex; align-items: center; gap: 4px; }
.inspector-actions .element-reset { min-height: 30px; padding: 5px 8px; font-size: 10px; }
.inspector-heading p, .inspector-heading h3 { margin: 0; }
.inspector-heading h3 { margin-top: 4px; font-size: 15px; }
.element-inspector input[type="color"] { width: 100%; height: 36px; border: 1px solid rgba(18,19,18,.22); padding: 2px; background: #fff; }
.element-inspector input:disabled, .element-inspector textarea:disabled { opacity: .45; cursor: not-allowed; }
.element-selected { outline: 2px solid var(--accent) !important; outline-offset: 3px; }
.element-create-row, .element-filter-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 7px; margin-bottom: 9px; }
.element-filter-row { grid-template-columns: 1fr 120px; }
.element-create-row select, .element-filter-row select { min-width: 0; }
.position-control { margin: 14px 0; }
.control-caption { display: block; margin-bottom: 7px; color: #555752; font-size: 11px; font-weight: 700; }
.segmented-control, .alignment-control { display: flex; gap: 4px; }
.segmented-control button, .alignment-control button { flex: 1; min-height: 32px; border: 1px solid rgba(18,19,18,.2); color: var(--ink); background: #fff; font-size: 11px; font-weight: 800; }
.segmented-control button.is-active, .alignment-control button.is-active { color: var(--ink); border-color: var(--ink); background: var(--accent); }
.alignment-control button { display: inline-flex; align-items: center; justify-content: center; }
.alignment-control svg { width: 15px; height: 15px; }
.position-fields label { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 5px; }
.position-fields label input { grid-column: 1 / -1; width: 100%; }
.position-fields output { color: var(--muted); font-size: 10px; }
.custom-elements-layer { position: absolute; z-index: 8; inset: 0; pointer-events: none; }
main > section { position: relative; }
.custom-elements-layer .custom-element { pointer-events: auto; }
.custom-element { max-width: 100%; }
.custom-element-image { height: auto; object-fit: cover; border-radius: 12px; }
.custom-element-heading { font-size: clamp(28px, 4vw, 64px); line-height: .95; }
.custom-element-text { font-size: 16px; line-height: 1.45; }
.custom-element-button { width: fit-content !important; }
.element-pick { width: 100%; justify-content: center; margin: 3px 0 8px; }
.element-pick.is-active { color: var(--ink); border-color: var(--ink); background: var(--accent); }
.element-picker-active [data-element-id] { cursor: crosshair !important; }
.element-picker-active [data-element-id]:hover { outline: 2px dashed var(--accent); outline-offset: 3px; }
.editor-opacity-control { display: grid; gap: 4px; margin-top: 12px; color: var(--muted); font-size: 10px; font-weight: 700; }
.editor-opacity-control span { display: flex; justify-content: space-between; }
.section-intro h2, .manifesto-content, .story-copy h2, .sustainability-panel h2, .download-copy h2 { box-sizing: border-box; }
.editor-panel.element-panel .control-section { padding-top: 19px; }
@media (max-width: 820px) { .editor-tabs { grid-template-columns: repeat(6, minmax(52px, 1fr)); overflow-x: auto; } .element-create-row { grid-template-columns: 1fr 1fr; } .element-create-row .element-add { grid-column: 1 / -1; } .editor { width: min(100%, 480px); } }
@media (max-width: 460px) { .hero-title { font-size: 54px; }.manifesto h2 { font-size: 37px; }.section-intro h2 { font-size: 40px; }.news-card { flex-basis: 85vw; }.story-copy h2 { font-size: 42px; }.download-copy h2 { font-size: 45px; }.editor-tabs { padding-left: 11px; padding-right: 11px; }.editor-tabs button { font-size: 10px; } }

/* Content should never be hidden behind the decorative loader. */
.page-loader { opacity: 0 !important; visibility: hidden !important; pointer-events: none !important; }

/* Homepage heading mirrors the source DOM: each line is an independent motion item. */
.home-heading { text-transform: none; }
.home-heading-item { display: block; margin: 0; padding: 0; opacity: 0; transform: translateY(42px); animation: title-in 900ms cubic-bezier(.16,.8,.24,1) forwards; }
.home-heading-item:nth-child(2) { animation-delay: 100ms; }
.home-heading-item:nth-child(3) { animation-delay: 200ms; }
.home-heading-item.outline { color: transparent; -webkit-text-stroke: 1px #fff; }

/* ZHA-style news cards: transparent at rest, rounded glass detail on focus. */
.news-card-image { aspect-ratio: .9; }
.news-card-image::after { background: linear-gradient(180deg, rgba(0,0,0,.03) 28%, rgba(0,0,0,.72)); transition: background 450ms ease; }
.news-card-content { position: absolute; z-index: 2; inset: 12px; display: flex; flex-direction: column; justify-content: flex-end; min-height: 0; padding: 17px 18px; overflow: hidden; color: #fff; background: rgba(16,19,17,0); border: 1px solid rgba(255,255,255,0); border-radius: 14px; backdrop-filter: blur(0); -webkit-backdrop-filter: blur(0); transition: background 450ms ease, border-color 450ms ease, backdrop-filter 450ms ease; }
.news-meta { position: absolute; top: 17px; right: 18px; left: 18px; margin: 0; color: rgba(255,255,255,.82); }
.news-meta p:last-child span { color: var(--accent); }
.news-card h3 { min-height: 0; margin: 0; font-size: clamp(25px,2.2vw,35px); text-shadow: 0 2px 20px rgba(0,0,0,.24); transform: translateY(0); transition: transform 500ms cubic-bezier(.2,.8,.2,1); }
.news-card-content > p { min-height: 0; max-height: 0; margin: 0; overflow: hidden; color: #d2d5cd; opacity: 0; transform: translateY(12px); transition: max-height 500ms ease, margin 500ms ease, opacity 350ms ease, transform 500ms ease; }
.news-card .card-cta { width: fit-content; max-height: 0; padding-bottom: 0; overflow: hidden; opacity: 0; transform: translateY(12px); transition: max-height 450ms ease, margin 450ms ease, padding 450ms ease, opacity 350ms ease, transform 450ms ease; }
.news-card:hover .news-card-content, .news-card:focus-within .news-card-content, .news-card.is-active .news-card-content { background-color: rgba(16,19,17,.56); border-color: rgba(255,255,255,.25); backdrop-filter: blur(15px) saturate(1.12); -webkit-backdrop-filter: blur(15px) saturate(1.12); }
.news-card:hover .news-card-content > p, .news-card:focus-within .news-card-content > p, .news-card.is-active .news-card-content > p { max-height: 80px; margin: 13px 0 16px; opacity: 1; transform: translateY(0); }
.news-card:hover .card-cta, .news-card:focus-within .card-cta, .news-card.is-active .card-cta { max-height: 30px; padding-bottom: 7px; opacity: 1; transform: translateY(0); }

@media (max-width: 820px) {
  .news-card-image { aspect-ratio: .83; }
  .news-card .news-card-content { background-color: rgba(16,19,17,.5); border-color: rgba(255,255,255,.22); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
  .news-card .news-card-content > p { max-height: 80px; margin: 12px 0 15px; opacity: 1; transform: none; }
  .news-card .card-cta { max-height: 30px; padding-bottom: 7px; opacity: 1; transform: none; }
}

/* Scroll-colour statement: derived from the provided computed text styles. */
.manifesto.section-dark {
  min-height: 0;
  padding-top: 6rem;
  padding-bottom: 6rem;
  color: rgb(255 255 255);
  background: var(--ink);
}
.manifesto.section-dark .section-tag span { color: rgba(255,255,255,.38); }
.manifesto.section-dark .manifesto-eyebrow { color: rgba(255,255,255,.74); }
.manifesto.section-dark .color-shift-copy { color: rgba(255,255,255,.38); }
.manifesto.section-dark .color-word { color: rgba(255,255,255,.38); }
.manifesto.section-dark .color-word.is-passed { color: rgba(255,255,255,.72); opacity: .9; }
.manifesto.section-dark .color-word.is-lit { color: var(--word-color, var(--accent)); opacity: calc(.78 + (1 - var(--wave-distance, 0)) * .22); text-shadow: 0 0 .12em color-mix(in srgb, var(--word-color, var(--accent)) 16%, transparent); }
.manifesto .manifesto-content > .color-shift-copy { max-width: min(100%, 18em); line-height: clamp(1.28, 1.12 + .22vw, 1.5); text-wrap: pretty; }

@media (max-width: 820px) {
  .manifesto.section-dark { min-height: 0; padding-top: 6rem; padding-bottom: 6rem; }
}

/* Raster material stack: grain, soft highlight map and translucent glass texture. */
:root { --grain-opacity: .05; --highlight-opacity: .24; --glass-alpha: .56; }
.surface-grain { position: fixed; z-index: 68; inset: 0; pointer-events: none; opacity: var(--grain-opacity); background: url("assets/texture-grain.png") repeat; background-size: 256px 256px; mix-blend-mode: soft-light; }
.hero::before { position: absolute; z-index: -1; content: ""; inset: -8%; pointer-events: none; opacity: calc(var(--highlight-opacity) * .68); background-image: url("assets/texture-highlight.png"); background-repeat: no-repeat; background-size: cover; background-position: var(--light-x,72%) var(--light-y,26%); mix-blend-mode: screen; transform: translate3d(calc(var(--mx,0) * 8px),calc(var(--my,0) * 8px),0); transition: background-position 160ms ease-out, transform 160ms ease-out; }
.manifesto.section-dark { background-color: var(--ink); background-image: url("assets/texture-glass.png"); background-repeat: repeat; background-size: 620px 620px; background-blend-mode: soft-light; }
.news-card-image::before, .story-media::before, .showreel::before, .sustainability::before { position: absolute; z-index: 1; content: ""; inset: -18%; pointer-events: none; opacity: var(--highlight-opacity); background-image: url("assets/texture-highlight.png"), url("assets/texture-grain.png"); background-repeat: no-repeat, repeat; background-size: 120% 140%, 260px 260px; background-position: var(--light-x,70%) var(--light-y,22%), center; background-blend-mode: screen, soft-light; mix-blend-mode: screen; transform: translate3d(calc(var(--mx,0) * 12px),calc(var(--my,0) * 12px),0); transition: opacity 420ms ease, background-position 180ms ease-out, transform 180ms ease-out; }
.news-card-image:hover::before, .story-media:hover::before, .showreel:hover::before, .sustainability:hover::before { opacity: min(calc(var(--highlight-opacity) + .14), .7); }
.news-card-image::after { z-index: 1; }
.news-card-content { box-shadow: inset 0 1px 0 rgba(255,255,255,.1); }
.news-card-content::before { position: absolute; z-index: 0; content: ""; inset: 0; pointer-events: none; opacity: .09; background: url("assets/texture-glass.png") center / 480px 480px; mix-blend-mode: soft-light; }
.news-card:hover .news-card-content, .news-card:focus-within .news-card-content, .news-card.is-active .news-card-content { background-color: rgba(16,19,17,var(--glass-alpha)); box-shadow: inset 0 1px 0 rgba(255,255,255,.34), inset 0 -1px 0 rgba(255,255,255,.06), 0 18px 50px rgba(0,0,0,.22); }
.news-card-content > * { position: relative; z-index: 1; }
.news-card .news-card-content { top: auto; right: 12px; bottom: 12px; left: 12px; height: auto; max-height: calc(100% - 24px); min-height: 0; padding: 17px 18px; }
.news-card:not(:hover):not(:focus-within):not(.is-active) .news-card-content { background-color: transparent; border-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; box-shadow: none; }
.story-media figcaption, .showreel > p, .showreel .watch-button { z-index: 3; }
.showreel .media-wash { z-index: 2; }
.sustainability::after { z-index: 1; }
.sustainability-panel { z-index: 2; background: rgba(11,15,13,.16); backdrop-filter: blur(1px); -webkit-backdrop-filter: blur(1px); }
.site-header.is-scrolled { background-color: rgba(241,240,233,.84); background-image: url("assets/texture-grain.png"); background-size: 240px 240px; background-blend-mode: soft-light; }
.editor { background-color: rgba(248,247,242,.97); background-image: url("assets/texture-glass.png"); background-size: 560px 560px; background-blend-mode: soft-light; }

@media (max-width: 820px) {
  .surface-grain { background-size: 210px 210px; }
  .news-card .news-card-content { top: auto; right: 10px; bottom: 10px; left: 10px; height: auto; max-height: calc(100% - 20px); background-color: transparent; border-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .news-card:not(:hover):not(:focus-within):not(.is-active) .news-card-content { background-color: transparent; border-color: transparent; }
  .hero::before { background-size: cover; }
}

/* Desktop story slides: every split page occupies at least one 16:9 frame. */
@media (min-width: 821px) {
  main > section:not(.hero) { min-height: max(100svh, 56.25vw) !important; }
  main > section.showreel { height: auto; }
  main > section.sustainability .sustainability-panel { min-height: max(100svh, 56.25vw); }
}

@media (max-width: 820px) {
  main > section:not(.hero) { min-height: 0 !important; }
}

/* 灰度测试：默认隐藏编辑器入口，普通访客不可见。
   开发者可通过 URL 参数 ?edit=1，或在控制台执行 openAshfallEditor() 打开编辑器。 */
.edit-button { display: none; }
