:root {
    --bg: #05080d;
    --bg-deep: #020407;
    --panel: rgba(12, 20, 30, 0.82);
    --panel-strong: rgba(15, 26, 39, 0.96);
    --panel-soft: rgba(15, 28, 42, 0.58);
    --line: rgba(132, 185, 214, 0.22);
    --line-bright: rgba(90, 207, 255, 0.55);
    --cyan: #61ddff;
    --cyan-strong: #00bfff;
    --blue: #3f7dff;
    --violet: #775cff;
    --magenta: #db5fff;
    --green: #58e89a;
    --text: #f4f8fb;
    --muted: #a9b9c7;
    --muted-dark: #70818f;
    --max: 1540px;
    --copy: 760px;
    --radius: 18px;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
    --header-height: 78px;
    color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg-deep); }
body { margin: 0; min-width: 320px; overflow-x: hidden; color: var(--text); background: var(--bg); font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; }
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
::selection { background: rgba(97, 221, 255, 0.26); color: #fff; }

.skip-link { position: fixed; top: 8px; left: 8px; z-index: 9999; transform: translateY(-150%); padding: 10px 14px; border-radius: 8px; color: #001018; background: var(--cyan); font-weight: 800; }
.skip-link:focus { transform: translateY(0); }
.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; }

.site-atmosphere { position: fixed; inset: 0; z-index: -10; overflow: hidden; pointer-events: none; background: radial-gradient(circle at 50% -10%, rgba(35, 92, 139, 0.3), transparent 42%), linear-gradient(180deg, #050a10 0%, #04070b 55%, #020407 100%); }
.atmosphere-grid { position: absolute; inset: 0; opacity: 0.18; background-image: linear-gradient(rgba(80, 152, 188, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(80, 152, 188, 0.08) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, black, transparent 75%); }
.atmosphere-glow { position: absolute; width: 55vw; height: 55vw; border-radius: 50%; filter: blur(90px); opacity: 0.15; }
.glow-left { top: 8%; left: -28%; background: var(--cyan-strong); }
.glow-right { top: 38%; right: -32%; background: var(--violet); }
.cursor-light { position: absolute; width: 520px; height: 520px; margin: -260px 0 0 -260px; border-radius: 50%; opacity: 0.12; filter: blur(18px); background: radial-gradient(circle, rgba(97, 221, 255, 0.5), rgba(97, 221, 255, 0) 68%); transition: opacity 200ms ease; }

.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--header-height); border-bottom: 1px solid transparent; transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease; }
.site-header.is-scrolled { border-color: var(--line); background: rgba(3, 7, 12, 0.82); backdrop-filter: blur(18px); }
.header-inner { width: min(var(--max), calc(100% - 48px)); height: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; min-width: 210px; }
.brand img { width: 190px; height: auto; }
.brand span { padding-left: 14px; border-left: 1px solid var(--line); color: var(--muted-dark); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap; }

.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav > a:not(.button), .site-switcher summary { position: relative; color: #b8c7d2; font-size: 13px; font-weight: 400; letter-spacing: 0.045em; white-space: nowrap; transition: color 160ms ease; }
.site-nav > a:not(.button)::after, .site-switcher summary::before { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 1px; background: var(--cyan); transition: right 180ms ease; }
.site-nav > a:not(.button):hover, .site-nav > a.is-active, .site-switcher summary:hover { color: #fff; }
.site-nav > a:not(.button):hover::after, .site-nav > a.is-active::after, .site-switcher[open] summary::before { right: 0; }

.site-switcher { position: relative; }
.site-switcher summary { display: flex; align-items: center; gap: 6px; color: var(--cyan); cursor: pointer; list-style: none; }
.site-switcher summary::-webkit-details-marker { display: none; }
.site-switcher summary::after { content: "+"; font-size: 16px; line-height: 1; transition: transform 160ms ease; }
.site-switcher[open] summary::after { transform: rotate(45deg); }

.site-switcher-menu { position: absolute; top: calc(100% + 18px); right: 0; width: 220px; padding: 8px; border: 1px solid var(--line); border-radius: 10px; background: rgba(3, 7, 12, 0.98); box-shadow: var(--shadow); }
.site-switcher-menu a { display: block; padding: 10px 12px; border-radius: 7px; color: #b8c7d2; font-size: 13px; font-weight: 400; letter-spacing: 0.045em; }
.site-switcher-menu a:hover { color: #fff; background: rgba(97, 221, 255, 0.08); }
.site-switcher-menu a.is-current { color: var(--cyan); background: rgba(97, 221, 255, 0.1); }

.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; color: #fff; background: rgba(12, 22, 33, 0.88); }
.nav-toggle span:not(.sr-only) { display: block; width: 20px; height: 1px; margin: 5px auto; background: currentColor; transition: transform 200ms ease, opacity 200ms ease; }

.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 9px; padding: 0 22px; border: 1px solid transparent; border-radius: 8px; font-size: 0.77rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #001019; border-color: rgba(151, 235, 255, 0.72); background: linear-gradient(135deg, #8be9ff, #34c8f4 54%, #4496ff); box-shadow: 0 12px 36px rgba(40, 183, 238, 0.24); }
.button-primary:hover { box-shadow: 0 16px 44px rgba(40, 183, 238, 0.36); }
.button-ghost { color: #e7f7ff; border-color: rgba(119, 199, 234, 0.35); background: rgba(12, 28, 41, 0.55); }
.button-ghost:hover { border-color: var(--cyan); background: rgba(23, 55, 75, 0.62); }
.button-small { min-height: 38px; padding: 0 15px; font-size: 0.68rem; }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 14px; color: var(--cyan); font-weight: 750; }
.text-link span { transition: transform 160ms ease; }
.text-link:hover span { transform: translateX(5px); }

.section-shell { width: min(var(--max), calc(100% - 64px)); margin: 0 auto; }
.section { position: relative; padding: 120px 0; }
.section-dark { background: linear-gradient(180deg, rgba(5, 12, 19, 0.88), rgba(8, 17, 26, 0.78)); border-top: 1px solid rgba(127, 184, 214, 0.1); border-bottom: 1px solid rgba(127, 184, 214, 0.1); }
.section-heading { max-width: 900px; margin-bottom: 54px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2, .visual-story-copy h2, .operator-copy h2, .split-copy h2, .production-proof-content h2, .subpage-cta h2 { margin: 0 0 20px; font-size: clamp(2.15rem, 4.2vw, 4.7rem); line-height: 0.98; letter-spacing: -0.045em; }
.section-heading p, .visual-story-copy > p, .operator-copy > p, .split-copy > p, .production-proof-content > p { max-width: var(--copy); color: var(--muted); font-size: 1.08rem; }
.section-heading.centered p { margin-left: auto; margin-right: auto; }
.eyebrow { margin: 0 0 18px; color: var(--cyan); font-size: 0.73rem; font-weight: 850; letter-spacing: 0.2em; text-transform: uppercase; }
.centered-actions { display: flex; justify-content: center; margin-top: 38px; }

.home-hero { position: relative; min-height: 1000px; padding: calc(var(--header-height) + 92px) 0 74px; overflow: hidden; }
.hero-wave { position: absolute; top: 30px; left: 50%; width: min(1200px, 90vw); transform: translateX(-50%); opacity: 0.13; filter: saturate(1.25) contrast(1.1); }
.hero-spotlight { position: absolute; top: -20%; left: 50%; width: 70vw; height: 55vw; transform: translateX(-50%); background: conic-gradient(from 190deg at 50% 0%, transparent 32%, rgba(47, 189, 255, 0.16) 48%, transparent 64%); filter: blur(18px); opacity: 0.66; }
.home-hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(360px, 0.72fr) minmax(680px, 1.45fr); align-items: center; gap: clamp(42px, 6vw, 100px); }
.home-hero-copy { padding-top: 10px; }
.home-hero h1 { margin: 0 0 28px; font-size: clamp(4rem, 7.6vw, 8.4rem); line-height: 0.82; letter-spacing: -0.07em; }
.home-hero h1 span { color: transparent; background: linear-gradient(90deg, #fff 5%, #9feeff 38%, #5fcaff 68%, #8c86ff); -webkit-background-clip: text; background-clip: text; text-shadow: 0 0 45px rgba(52, 184, 255, 0.16); }
.hero-summary { margin: 0; color: #bdcad4; font-size: 1.16rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.hero-note { display: flex; align-items: center; gap: 10px; margin-top: 28px; color: var(--muted-dark); font-size: 0.78rem; letter-spacing: 0.06em; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 18px rgba(88, 232, 154, 0.8); }
.hero-workspace { position: relative; width: 115%; margin-right: -15%; border: 1px solid rgba(121, 197, 232, 0.35); border-radius: 17px; background: #071019; box-shadow: 0 48px 120px rgba(0, 0, 0, 0.65), 0 0 80px rgba(35, 157, 218, 0.14); transform: perspective(1800px) rotateY(-5deg) rotateX(1deg); transform-origin: center; overflow: hidden; }
.hero-workspace::before { content: ""; position: absolute; inset: 0; z-index: 2; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 -90px 120px rgba(0, 0, 0, 0.22); pointer-events: none; }
.workspace-label { height: 34px; display: flex; align-items: center; gap: 14px; padding: 0 16px; border-bottom: 1px solid rgba(133, 200, 231, 0.2); color: var(--muted-dark); font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; background: linear-gradient(180deg, #101d29, #09121b); }
.workspace-label span { color: var(--cyan); font-weight: 900; }
.workspace-label b { font-weight: 650; }
.workspace-label em { margin-left: auto; color: var(--green); font-style: normal; }
.hero-workspace > img { width: 100%; }
.workspace-scan { position: absolute; z-index: 3; top: -10%; left: 0; right: 0; height: 18%; background: linear-gradient(180deg, transparent, rgba(121, 225, 255, 0.08), transparent); animation: scan 6s linear infinite; pointer-events: none; }
@keyframes scan { from { transform: translateY(-120%); } to { transform: translateY(700%); } }
.hero-capability-rail { position: absolute; z-index: 2; bottom: 0; left: 50%; width: min(var(--max), calc(100% - 64px)); transform: translateX(-50%); display: flex; align-items: center; justify-content: center; gap: 18px; padding: 19px 26px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #8094a3; font-size: 0.64rem; font-weight: 800; letter-spacing: 0.14em; white-space: nowrap; }
.hero-capability-rail i { width: 4px; height: 4px; border-radius: 50%; background: var(--cyan); opacity: 0.55; }

.feature-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.feature-card-grid.five-up { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.feature-card { min-height: 240px; padding: 30px 26px; border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(145deg, rgba(14, 28, 41, 0.76), rgba(5, 12, 18, 0.6)); transition: transform 200ms ease, border-color 200ms ease, background 200ms ease; }
.feature-card:hover { transform: translateY(-6px); border-color: var(--line-bright); background: linear-gradient(145deg, rgba(20, 42, 60, 0.86), rgba(7, 15, 23, 0.76)); }
.feature-card > span { display: block; margin-bottom: 44px; color: var(--cyan); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.13em; }
.feature-card h3 { margin: 0 0 12px; font-size: 1.18rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: 0.93rem; }

.production-proof { position: relative; min-height: 780px; display: flex; align-items: flex-end; overflow: hidden; border-top: 1px solid rgba(119, 187, 219, 0.12); border-bottom: 1px solid rgba(119, 187, 219, 0.12); }
.production-proof-image, .production-proof-image img { position: absolute; inset: 0; width: 100%; height: 100%; }
.production-proof-image img { object-fit: cover; }
.production-proof-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(1, 4, 8, 0.95) 0%, rgba(3, 8, 14, 0.73) 42%, rgba(3, 8, 14, 0.12) 78%), linear-gradient(0deg, rgba(1, 4, 7, 0.85), transparent 55%); }
.production-proof-content { position: relative; z-index: 2; padding-bottom: 84px; }
.production-proof-content h2 { max-width: 800px; }
.production-proof-content > p { max-width: 700px; }
.proof-facts { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 30px; }
.proof-facts span { padding: 8px 12px; border: 1px solid rgba(116, 198, 231, 0.3); border-radius: 99px; color: #ccebf5; background: rgba(4, 18, 27, 0.6); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; }
.compact-proof { min-height: 600px; }

.workflow-grid { display: grid; gap: 30px; }
.workflow-card { display: grid; grid-template-columns: minmax(340px, 0.72fr) minmax(620px, 1.5fr); align-items: center; gap: 48px; min-height: 460px; padding: 40px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(135deg, rgba(11, 22, 33, 0.92), rgba(6, 12, 18, 0.74)); overflow: hidden; }
.workflow-card-reverse { grid-template-columns: minmax(620px, 1.5fr) minmax(340px, 0.72fr); }
.workflow-card-reverse .workflow-copy { order: 2; }
.workflow-copy h3 { margin: 14px 0 16px; font-size: clamp(2rem, 3.4vw, 3.5rem); line-height: 1; letter-spacing: -0.04em; }
.workflow-copy p { color: var(--muted); }
.workflow-index { color: var(--cyan); font-size: 0.68rem; font-weight: 900; letter-spacing: 0.16em; }
.image-frame { position: relative; border: 1px solid rgba(136, 203, 231, 0.28); border-radius: 12px; background: #071019; box-shadow: var(--shadow); overflow: hidden; }
.image-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), inset 0 -55px 80px rgba(0, 0, 0, 0.18); pointer-events: none; }
.workflow-image img { width: 100%; }

.visual-story { background: radial-gradient(circle at 72% 44%, rgba(50, 121, 162, 0.16), transparent 34%); }
.visual-story-layout { display: grid; grid-template-columns: minmax(340px, 0.7fr) minmax(760px, 1.45fr); align-items: center; gap: 70px; }
.visual-story-copy .button { margin-top: 20px; }
.check-list { list-style: none; margin: 28px 0; padding: 0; display: grid; gap: 11px; }
.check-list li { position: relative; padding-left: 27px; color: #c5d2db; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 12px; height: 1px; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.projection-stage { position: relative; min-height: 620px; }
.projection-preview { position: absolute; left: 3%; right: 8%; top: 19%; }
.projection-preview img { width: 100%; }
.projection-panel { position: absolute; z-index: 4; right: 0; top: 0; width: 28%; max-height: 600px; object-fit: contain; filter: drop-shadow(0 28px 32px rgba(0, 0, 0, 0.55)); }
.projection-geometry { position: absolute; z-index: 3; left: 0; bottom: 0; width: 25%; max-height: 500px; object-fit: contain; object-position: bottom; filter: drop-shadow(0 28px 32px rgba(0, 0, 0, 0.55)); }

.systems-showcase { border-top: 1px solid rgba(132, 196, 228, 0.1); border-bottom: 1px solid rgba(132, 196, 228, 0.1); background: linear-gradient(180deg, rgba(7, 14, 22, 0.9), rgba(3, 7, 12, 0.88)); }
.systems-gallery { display: grid; grid-template-columns: 1.25fr 0.75fr; grid-template-rows: repeat(2, minmax(280px, 1fr)); gap: 18px; }
.systems-tile { position: relative; min-height: 300px; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #08111a; }
.systems-tile-large { grid-row: 1 / span 2; }
.systems-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease, filter 400ms ease; }
.systems-tile > div { position: absolute; inset: auto 0 0; padding: 72px 28px 26px; background: linear-gradient(0deg, rgba(2, 6, 10, 0.96), transparent); }
.systems-tile span { display: block; margin-bottom: 5px; color: var(--cyan); font-size: 0.63rem; font-weight: 850; letter-spacing: 0.15em; }
.systems-tile strong { font-size: 1.35rem; }
.systems-tile:hover img { transform: scale(1.025); filter: brightness(1.08); }

.operator-story-layout { display: grid; grid-template-columns: minmax(650px, 1.28fr) minmax(360px, 0.72fr); align-items: center; gap: 68px; }
.operator-photo { position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.operator-photo::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(136, 201, 231, 0.27); border-radius: inherit; box-shadow: inset 0 -80px 100px rgba(0, 0, 0, 0.2); }
.operator-photo img { width: 100%; }
.operator-points { display: grid; gap: 15px; margin: 30px 0; }
.operator-points div { padding: 16px 18px; border-left: 2px solid rgba(97, 221, 255, 0.5); background: rgba(14, 28, 40, 0.52); }
.operator-points strong, .operator-points span { display: block; }
.operator-points span { color: var(--muted); font-size: 0.9rem; }

.media-layout { display: grid; grid-template-columns: minmax(350px, 0.68fr) minmax(700px, 1.32fr); align-items: center; gap: 80px; }
.media-toolkit { position: relative; min-height: 610px; }
.media-toolkit > img { position: absolute; border: 1px solid rgba(130, 198, 229, 0.28); border-radius: 10px; background: #0b1420; box-shadow: 0 24px 52px rgba(0, 0, 0, 0.48); }
.media-trim { left: 31%; top: 0; width: 38%; z-index: 3; }
.media-cue-props { left: 4%; top: 22%; width: 31%; transform: rotate(-2deg); }
.media-time-props { right: 5%; top: 26%; width: 31%; transform: rotate(2deg); }
.media-flow { position: absolute; left: 5%; right: 5%; bottom: 8%; display: flex; align-items: center; justify-content: center; gap: 14px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 9px; background: rgba(5, 13, 20, 0.9); color: var(--muted); font-size: 0.67rem; font-weight: 800; letter-spacing: 0.14em; }
.media-flow i { color: var(--cyan); font-style: normal; }

.signal-section { overflow: hidden; border-top: 1px solid rgba(132, 196, 228, 0.11); border-bottom: 1px solid rgba(132, 196, 228, 0.11); background: radial-gradient(circle at 50% 45%, rgba(37, 139, 187, 0.12), transparent 37%), #050a10; }
.signal-map { position: relative; max-width: 1180px; height: 620px; margin: 20px auto 0; }
.signal-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.signal-map svg path { fill: none; stroke: rgba(97, 221, 255, 0.4); stroke-width: 1.5; stroke-dasharray: 8 8; animation: dash 14s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -160; } }
.signal-core, .signal-node { position: absolute; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border: 1px solid rgba(100, 207, 245, 0.4); background: linear-gradient(145deg, rgba(14, 34, 49, 0.96), rgba(4, 11, 17, 0.95)); box-shadow: 0 22px 54px rgba(0, 0, 0, 0.4); }
.signal-core { left: 50%; top: 50%; width: 220px; height: 180px; transform: translate(-50%, -50%); border-radius: 20px; box-shadow: 0 0 70px rgba(40, 174, 230, 0.17), 0 22px 54px rgba(0, 0, 0, 0.4); }
.signal-core img { width: 74px; margin-bottom: 10px; }
.signal-core strong { letter-spacing: 0.14em; }
.signal-core span, .signal-node span { color: var(--muted); font-size: 0.76rem; }
.signal-node { width: 205px; min-height: 108px; padding: 18px; border-radius: 13px; }
.signal-node b { color: var(--cyan); font-size: 0.72rem; letter-spacing: 0.13em; }
.signal-node-one { left: 2%; top: 8%; }
.signal-node-two { right: 2%; top: 8%; }
.signal-node-three { right: 0; bottom: 8%; }
.signal-node-four { left: 50%; bottom: 0; transform: translateX(-50%); }
.signal-node-five { left: 0; bottom: 8%; }

.licensing-preview { background: linear-gradient(180deg, rgba(6, 13, 20, 0.8), rgba(3, 6, 10, 0.95)); }
.license-mini-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 13px; }
.license-mini { position: relative; display: flex; min-height: 220px; flex-direction: column; padding: 28px 22px; border: 1px solid var(--line); border-radius: 13px; background: rgba(11, 22, 32, 0.75); }
.license-mini > span { color: var(--muted); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; }
.license-mini strong { margin: auto 0 8px; font-size: 2.6rem; letter-spacing: -0.04em; }
.license-mini a { color: var(--cyan); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.license-mini-featured { border-color: rgba(97, 221, 255, 0.55); background: linear-gradient(145deg, rgba(24, 67, 89, 0.72), rgba(11, 25, 38, 0.9)); box-shadow: 0 0 55px rgba(42, 181, 237, 0.12); }
.license-facts { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 30px; }
.license-facts span { padding: 8px 12px; border: 1px solid rgba(121, 188, 218, 0.18); border-radius: 99px; color: var(--muted); font-size: 0.7rem; }

.finale-section { position: relative; min-height: 680px; display: flex; align-items: center; justify-content: center; padding: 100px 32px; overflow: hidden; text-align: center; background: radial-gradient(circle at 50% 75%, rgba(33, 127, 179, 0.18), transparent 32%), #03070b; }
.finale-light { position: absolute; left: 50%; bottom: -15%; width: 90%; height: 70%; transform: translateX(-50%); background: conic-gradient(from 210deg at 50% 100%, transparent 39%, rgba(87, 207, 255, 0.16) 48%, transparent 57%); filter: blur(18px); }
.finale-content { position: relative; z-index: 2; max-width: 960px; }
.finale-content img { width: min(560px, 80vw); margin: 0 auto 38px; }
.finale-content h2 { margin: 0 0 20px; font-size: clamp(2.4rem, 5vw, 5rem); line-height: 0.98; letter-spacing: -0.055em; }
.finale-content p { color: var(--muted); font-size: 1.08rem; }
.finale-content .hero-actions { justify-content: center; }

.page-hero { position: relative; min-height: 760px; padding: calc(var(--header-height) + 90px) 0 90px; display: flex; align-items: center; overflow: hidden; border-bottom: 1px solid rgba(130, 192, 220, 0.13); background: radial-gradient(circle at 70% 42%, rgba(40, 147, 196, 0.15), transparent 36%); }
.page-hero-beam { position: absolute; top: -30%; right: -5%; width: 65vw; height: 95vw; background: conic-gradient(from 210deg at 100% 0%, transparent 36%, rgba(51, 189, 255, 0.14) 49%, transparent 62%); filter: blur(15px); }
.page-hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(380px, 0.68fr) minmax(620px, 1.32fr); align-items: center; gap: 65px; }
.page-hero-copy h1 { margin: 0 0 25px; font-size: clamp(3.4rem, 6.2vw, 6.6rem); line-height: 0.88; letter-spacing: -0.065em; }
.page-hero-copy > p:not(.eyebrow) { max-width: 670px; color: var(--muted); font-size: 1.1rem; }
.page-hero-media { position: relative; border: 1px solid rgba(129, 199, 230, 0.34); border-radius: 15px; background: #071019; box-shadow: var(--shadow); overflow: hidden; }
.page-hero-media img { width: 100%; }

/* Distributed Canvas hero is intentionally compact because the system diagram
   immediately below it serves as the primary visual. */
.distributed-page .distributed-page-hero {
    min-height: 0;
    padding: 90px 0 48px;
    align-items: flex-start;
}

.distributed-page .distributed-hero-copy {
    max-width: 1180px;
}

    .distributed-page .distributed-hero-copy h1 {
        margin-bottom: 22px;
    }

    .distributed-page .distributed-hero-copy > p:not(.eyebrow) {
        max-width: 1180px;
        margin-bottom: 30px;
    }

.distributed-page .distributed-diagram-section {
    margin-top: 0;
    padding: 0 0 80px;
}

.image-chrome { height: 28px; display: flex; align-items: center; gap: 6px; padding: 0 12px; background: linear-gradient(180deg, #142331, #0b151f); border-bottom: 1px solid rgba(130, 195, 225, 0.2); }
.image-chrome span { width: 6px; height: 6px; border-radius: 50%; background: rgba(139, 184, 206, 0.4); }
.hero-wide-ui { width: 115%; margin-right: -15%; }
.hero-warp-ui img { min-height: 330px; object-fit: contain; background: #020508; }
.simple-page-hero { min-height: 620px; }
.simple-hero-copy { position: relative; z-index: 2; max-width: 1100px; text-align: center; }
.simple-hero-copy h1 { margin: 0 0 24px; font-size: clamp(3.2rem, 6vw, 6.4rem); line-height: 0.92; letter-spacing: -0.055em; }
.simple-hero-copy p:not(.eyebrow) { max-width: 800px; margin: 0 auto; color: var(--muted); font-size: 1.12rem; }

.split-layout { display: grid; grid-template-columns: minmax(600px, 1.2fr) minmax(360px, 0.8fr); align-items: center; gap: 70px; }
.split-reverse { grid-template-columns: minmax(360px, 0.8fr) minmax(600px, 1.2fr); }
.split-copy .button { margin-top: 15px; }
.split-media img { width: 100%; }
.panel-centered { display: flex; align-items: center; justify-content: center; min-height: 520px; }
.panel-centered img { max-height: 520px; width: auto; filter: drop-shadow(0 30px 48px rgba(0, 0, 0, 0.52)); }

.control-gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.control-gallery-item { min-height: 620px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 14px; background: rgba(8, 17, 25, 0.76); overflow: hidden; }
.control-gallery-item img { width: 100%; height: 420px; object-fit: contain; object-position: top; padding: 18px 18px 0; }
.control-gallery-item > div { margin-top: auto; padding: 24px; border-top: 1px solid var(--line); }
.control-gallery-item span, .media-editor-card span { color: var(--cyan); font-size: 0.65rem; font-weight: 850; letter-spacing: 0.15em; }
.control-gallery-item h3 { margin: 9px 0; font-size: 1.25rem; }
.control-gallery-item p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.projection-detail-layout { display: grid; grid-template-columns: minmax(600px, 1.3fr) 260px minmax(340px, 0.7fr); align-items: center; gap: 34px; }
.projection-detail-panel img { max-height: 690px; filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.55)); }
.projection-detail-copy h2 { margin: 0 0 20px; font-size: clamp(2.4rem, 4vw, 4.4rem); line-height: 0.98; letter-spacing: -0.045em; }
.projection-detail-copy > p { color: var(--muted); }

.integration-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 70px; align-items: center; }
.integration-copy h2 { margin: 0 0 20px; font-size: clamp(2.4rem, 4vw, 4.5rem); line-height: 0.98; letter-spacing: -0.045em; }
.integration-copy > p { color: var(--muted); }
.protocol-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.protocol-grid span { min-height: 115px; display: flex; align-items: center; justify-content: center; padding: 18px; border: 1px solid rgba(97, 221, 255, 0.28); border-radius: 12px; color: #dff8ff; background: linear-gradient(145deg, rgba(18, 43, 59, 0.8), rgba(5, 13, 20, 0.88)); font-size: 0.75rem; font-weight: 850; letter-spacing: 0.12em; text-align: center; }

.media-editor-layout { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.media-editor-card { display: flex; min-height: 620px; flex-direction: column; border: 1px solid var(--line); border-radius: 14px; background: rgba(7, 15, 22, 0.84); overflow: hidden; }
.media-editor-card img { width: 100%; height: 430px; object-fit: contain; object-position: top; padding: 20px; }
.media-editor-card > div { margin-top: auto; padding: 25px; border-top: 1px solid var(--line); }
.media-editor-card h3 { margin: 9px 0; }
.media-editor-card p { margin: 0; color: var(--muted); }

.license-hero-mark { width: 460px; height: 460px; margin-left: auto; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(97, 221, 255, 0.3); border-radius: 50%; background: radial-gradient(circle, rgba(30, 113, 152, 0.2), rgba(6, 15, 23, 0.75) 62%, rgba(2, 6, 10, 0.95)); box-shadow: 0 0 90px rgba(35, 173, 226, 0.14); }
.license-hero-mark img { width: 190px; }
.license-hero-mark span { margin-top: 22px; font-weight: 900; letter-spacing: 0.16em; }
.license-hero-mark strong { color: var(--cyan); font-size: 0.68rem; letter-spacing: 0.15em; }
.license-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.license-card { position: relative; min-height: 420px; display: flex; flex-direction: column; padding: 30px 25px; border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(145deg, rgba(13, 27, 40, 0.78), rgba(6, 13, 20, 0.9)); }
.license-card .license-term { color: var(--muted); font-size: 0.72rem; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }
.license-card h2 { margin: 24px 0 12px; font-size: 3rem; letter-spacing: -0.05em; }
.license-card p { color: var(--muted); }
.license-card .button { margin-top: auto; }
.license-featured { border-color: rgba(97, 221, 255, 0.58); background: linear-gradient(145deg, rgba(23, 68, 91, 0.74), rgba(7, 20, 31, 0.96)); box-shadow: 0 0 70px rgba(39, 178, 230, 0.12); }
.license-badge { position: absolute; top: 0; right: 20px; transform: translateY(-50%); padding: 7px 10px; border-radius: 99px; color: #001018; background: var(--cyan); font-size: 0.6rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.price-note { margin-top: 22px; color: var(--muted-dark); text-align: center; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.benefit-card { min-height: 220px; padding: 26px; border: 1px solid var(--line); border-radius: 13px; background: rgba(10, 21, 31, 0.74); }
.benefit-card h3 { margin: 0 0 12px; font-size: 1.22rem; }
.benefit-card p { margin: 0; color: var(--muted); }
.faq-layout { display: grid; grid-template-columns: 0.65fr 1.35fr; gap: 70px; align-items: start; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid var(--line); border-radius: 11px; background: rgba(10, 20, 29, 0.72); }
.faq-list summary { cursor: pointer; padding: 20px 22px; font-weight: 750; }
.faq-list details p { margin: 0; padding: 0 22px 22px; color: var(--muted); }

.solution-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.solution-card { min-height: 410px; padding: 36px; border: 1px solid var(--line); border-radius: 15px; background: linear-gradient(145deg, rgba(15, 30, 43, 0.78), rgba(5, 12, 18, 0.84)); }
.solution-card > span { color: var(--cyan); font-size: 0.7rem; font-weight: 850; letter-spacing: 0.14em; }
.solution-card h2 { margin: 40px 0 15px; font-size: 2.35rem; line-height: 1; letter-spacing: -0.035em; }
.solution-card p, .solution-card li { color: var(--muted); }
.solution-card ul { padding-left: 18px; }
.learning-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.learning-card { min-height: 340px; padding: 28px; border: 1px solid var(--line); border-radius: 14px; background: rgba(9, 19, 28, 0.76); }
.learning-card > span { color: var(--cyan); font-size: 0.65rem; font-weight: 850; letter-spacing: 0.14em; }
.learning-card h2 { margin: 46px 0 14px; font-size: 1.55rem; line-height: 1.05; }
.learning-card p, .learning-card li { color: var(--muted); }
.learning-card ul { padding-left: 18px; }
.learning-card-accent { border-color: rgba(97, 221, 255, 0.56); background: linear-gradient(145deg, rgba(24, 68, 91, 0.7), rgba(7, 18, 27, 0.92)); }

.subpage-cta { padding: 120px 0; border-top: 1px solid rgba(132, 196, 228, 0.12); text-align: center; background: radial-gradient(circle at 50% 100%, rgba(39, 152, 201, 0.14), transparent 42%), #04090e; }
.subpage-cta .section-shell { max-width: 1000px; }
.subpage-cta .hero-actions { justify-content: center; }

.command-code {
    position: relative;
}

.command-code pre {
    margin: 0;
    padding-top: 2.75rem;
}

.command-copy {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    z-index: 2;
    padding: 0.35rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.35);
    color: inherit;
    font: inherit;
    font-size: 0.78rem;
    line-height: 1;
    cursor: pointer;
}

.command-copy:hover {
    background: rgba(255, 255, 255, 0.12);
}

.command-copy:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.site-footer { border-top: 1px solid var(--line); background: #020508; }
.footer-inner { width: min(var(--max), calc(100% - 64px)); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; padding: 72px 0 58px; }
.footer-brand img { width: 300px; margin-bottom: 20px; }
.footer-brand span { display: block; max-width: 480px; color: var(--muted-dark); }
.footer-columns { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
.footer-columns div { display: flex; flex-direction: column; gap: 8px; }
.footer-columns strong { margin-bottom: 8px; color: var(--cyan); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-columns a { color: var(--muted); font-size: 0.88rem; }
.footer-columns a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 18px max(32px, calc((100% - var(--max)) / 2)); border-top: 1px solid rgba(126, 184, 211, 0.12); color: #627380; font-size: 0.72rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1); }
.reveal.reveal-late { transition-delay: 160ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Distributed Canvas */
.distributed-page-hero {
    min-height: 0;
    padding: 90px 0 48px;
    align-items: flex-start;
}

.distributed-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 1180px;
}

    .distributed-hero-copy h1 {
        margin: 0 0 22px;
    }

    .distributed-hero-copy > p:not(.eyebrow) {
        max-width: 1180px;
        margin-bottom: 30px;
        color: var(--muted);
        font-size: 1.14rem;
    }

.distributed-diagram-section {
    position: relative;
    z-index: 3;
    margin-top: 0;
    padding-bottom: 80px;
}
.distributed-diagram-frame { border: 1px solid rgba(111, 205, 245, 0.4); border-radius: 18px; background: #f8fafc; box-shadow: 0 38px 100px rgba(0, 0, 0, 0.58), 0 0 80px rgba(44, 174, 235, 0.12); overflow: hidden; }
.distributed-diagram-frame img { width: 100%; }

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

@media (max-width: 1320px) {
    .site-nav { gap: 16px; font-size: 0.72rem; }
    .brand span { display: none; }
    .home-hero-layout { grid-template-columns: 0.72fr 1.28fr; gap: 40px; }
    .hero-workspace { width: 108%; margin-right: -8%; }
    .feature-card-grid.five-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .license-mini-grid, .license-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .control-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .learning-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1050px) {
    :root { --header-height: 70px; }
    .header-inner { width: min(var(--max), calc(100% - 32px)); }
    .nav-toggle { display: block; }
    .site-nav { position: fixed; top: var(--header-height); left: 0; right: 0; bottom: 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 26px 24px 40px; background: rgba(3, 7, 12, 0.98); transform: translateX(100%); transition: transform 220ms ease; overflow-y: auto; }
    .site-nav.is-open { transform: translateX(0); }
    
    .site-nav > a, .site-switcher summary { padding: 17px 5px; border-bottom: 1px solid var(--line); font-size: 13px; }
    .site-nav > a::after, .site-switcher summary::before { display: none; }
    .site-switcher { width: 100%; }
    .site-switcher-menu { position: static; width: auto; padding: 0 0 10px 14px; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
    .site-switcher-menu a { padding: 10px 12px; border-left: 1px solid var(--line); border-radius: 0; }
    .site-nav .button { margin-top: 18px; }
    
    .nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .home-hero { min-height: auto; padding-top: calc(var(--header-height) + 72px); }
    .home-hero-layout, .page-hero-layout, .visual-story-layout, .operator-story-layout, .media-layout, .split-layout, .split-reverse, .integration-layout, .faq-layout { grid-template-columns: 1fr; }
    .home-hero-copy { max-width: 800px; }
    .home-hero h1 { font-size: clamp(4.2rem, 13vw, 7.5rem); }
    .hero-workspace, .hero-wide-ui { width: 100%; margin: 0; transform: none; }
    .hero-capability-rail { position: relative; left: auto; bottom: auto; width: min(var(--max), calc(100% - 40px)); margin: 54px auto 0; transform: none; overflow-x: auto; justify-content: flex-start; }
    .workflow-card, .workflow-card-reverse { grid-template-columns: 1fr; }
    .workflow-card-reverse .workflow-copy { order: 0; }
    .feature-card-grid, .feature-card-grid.five-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .production-proof { min-height: 700px; }
    .projection-stage { min-height: 560px; }
    .systems-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
    .systems-tile-large { grid-row: auto; min-height: 480px; }
    .systems-tile { min-height: 420px; }
    .operator-story-layout { gap: 44px; }
    .media-layout { gap: 42px; }
    .signal-map { transform: scale(0.86); transform-origin: center; }
    .page-hero { min-height: auto; padding-top: calc(var(--header-height) + 80px); }
    .page-hero-media { margin-top: 20px; }
    .projection-detail-layout { grid-template-columns: 1fr 220px; }
    .projection-detail-copy { grid-column: 1 / -1; }
    .license-hero-mark { margin: 0 auto; }
    .solution-grid { grid-template-columns: 1fr; }
    .learning-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-inner { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 720px) {
    .section-shell { width: min(var(--max), calc(100% - 34px)); }
    .section { padding: 82px 0; }
    .brand img { width: 165px; }
    .home-hero { padding-bottom: 36px; }
    .home-hero h1 { font-size: clamp(3.7rem, 19vw, 6.2rem); }
    .hero-summary { font-size: 1rem; }
    .hero-workspace { overflow-x: auto; border-radius: 11px; }
    .hero-workspace > img { width: 1000px; max-width: none; }
    .workspace-label { min-width: 1000px; }
    .hero-capability-rail { margin-top: 36px; }
    .section-heading h2, .visual-story-copy h2, .operator-copy h2, .split-copy h2, .production-proof-content h2, .subpage-cta h2 { font-size: clamp(2.2rem, 12vw, 3.5rem); }
    .feature-card-grid, .feature-card-grid.five-up { grid-template-columns: 1fr; }
    .feature-card { min-height: 210px; }
    .feature-card > span { margin-bottom: 28px; }
    .production-proof { min-height: 760px; }
    .production-proof-overlay { background: linear-gradient(0deg, rgba(1, 4, 8, 0.96) 0%, rgba(3, 8, 14, 0.54) 75%, rgba(3, 8, 14, 0.2)); }
    .production-proof-content { padding-bottom: 54px; }
    .workflow-card { padding: 24px; gap: 28px; }
    .workflow-copy h3 { font-size: 2.4rem; }
    .projection-stage { min-height: 500px; }
    .projection-preview { left: 0; right: 0; top: 24%; }
    .projection-panel { width: 37%; }
    .projection-geometry { width: 34%; }
    .systems-tile-large, .systems-tile { min-height: 330px; }
    .systems-tile img { object-fit: contain; }
    .operator-story-layout { gap: 34px; }
    .media-toolkit { min-height: 510px; }
    .media-trim { left: 25%; width: 50%; }
    .media-cue-props, .media-time-props { width: 39%; }
    .media-flow { left: 0; right: 0; gap: 7px; overflow-x: auto; justify-content: flex-start; }
    .signal-map { height: auto; transform: none; display: grid; grid-template-columns: 1fr; gap: 12px; }
    .signal-map svg { display: none; }
    .signal-core, .signal-node { position: static; width: 100%; min-height: 100px; transform: none; }
    .signal-core { height: 150px; }
    .license-mini-grid, .license-grid { grid-template-columns: 1fr; }
    .license-mini { min-height: 180px; }
    .page-hero-copy h1, .simple-hero-copy h1 { font-size: clamp(3rem, 15vw, 5rem); }
    .page-hero-media { overflow-x: auto; }
    .hero-wide-ui img { width: 1000px; max-width: none; }

    .distributed-page-hero { min-height: auto; padding-bottom: 115px; }
    .distributed-hero-copy h1 { font-size: clamp(3.2rem, 15vw, 5.2rem); }
    .distributed-diagram-section { margin-top: -72px; padding-bottom: 70px; }
    .distributed-diagram-frame { overflow-x: auto; border-radius: 12px; }
    .distributed-diagram-frame img { width: 1200px; max-width: none; }
    .control-gallery, .media-editor-layout, .benefit-grid { grid-template-columns: 1fr; }
    .control-gallery-item, .media-editor-card { min-height: auto; }
    .control-gallery-item img, .media-editor-card img { height: auto; max-height: 520px; }
    .projection-detail-layout { grid-template-columns: 1fr; }
    .projection-detail-panel img { margin: 0 auto; }
    .protocol-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .license-hero-mark { width: min(390px, 90vw); height: min(390px, 90vw); }
    .solution-card { min-height: auto; padding: 28px; }
    .learning-grid { grid-template-columns: 1fr; }
    .footer-inner { width: min(var(--max), calc(100% - 34px)); }
    .footer-columns { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; padding-left: 17px; padding-right: 17px; }
}


/* Download registration and cross-platform release page */
.download-hero { min-height: 760px; }
.download-hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(420px, 0.88fr) minmax(560px, 1.12fr); align-items: center; gap: 80px; }
.platform-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.platform-badges span { display: flex; flex-direction: column; min-width: 220px; padding: 14px 17px; border: 1px solid rgba(97, 221, 255, 0.24); border-radius: 10px; color: var(--muted); background: rgba(8, 21, 31, 0.72); font-size: 0.76rem; }
.platform-badges b { color: var(--cyan); font-size: 0.68rem; letter-spacing: 0.16em; }
.download-hero-console { position: relative; min-height: 420px; border: 1px solid rgba(97, 221, 255, 0.35); border-radius: 18px; background: linear-gradient(145deg, rgba(14, 32, 47, 0.96), rgba(3, 9, 15, 0.98)); box-shadow: var(--shadow), 0 0 70px rgba(31, 165, 225, 0.12); overflow: hidden; }
.download-console-top { height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 20px; border-bottom: 1px solid var(--line); color: var(--muted-dark); font-size: 0.64rem; font-weight: 800; letter-spacing: 0.13em; }
.download-console-top em { color: var(--green); font-style: normal; }
.download-console-body { min-height: 270px; display: flex; align-items: center; gap: 34px; padding: 48px; }
.download-console-body img { width: 128px; filter: drop-shadow(0 0 34px rgba(97, 221, 255, 0.22)); }
.download-console-body div { display: flex; flex-direction: column; gap: 9px; }
.download-console-body small { color: var(--cyan); font-size: 0.65rem; font-weight: 850; letter-spacing: 0.17em; }
.download-console-body strong { max-width: 420px; font-size: clamp(1.45rem, 2.6vw, 2.7rem); line-height: 1.05; }
.download-console-body span { color: var(--muted); }
.download-console-lines { position: absolute; left: 24px; right: 24px; bottom: 26px; display: grid; grid-template-columns: 1fr 0.58fr 1.4fr 0.36fr; gap: 8px; }
.download-console-lines i { height: 3px; background: linear-gradient(90deg, var(--cyan), rgba(97, 221, 255, 0.12)); box-shadow: 0 0 16px rgba(97, 221, 255, 0.2); }
.download-access-section { padding-top: 135px; }
.download-access-layout { display: grid; grid-template-columns: minmax(360px, 0.72fr) minmax(610px, 1.28fr); align-items: start; gap: 80px; }
.download-access-copy h2 { margin: 0 0 20px; font-size: clamp(2.4rem, 4.5vw, 5rem); line-height: 0.96; letter-spacing: -0.05em; }
.download-access-copy > p {
    color: var(--muted);
    font-size: 1.06rem;
}

.download-release-note {
    margin-top: 34px;
    padding: 24px 26px;
    border: 1px solid rgba(97, 221, 255, 0.24);
    border-radius: 13px;
    background: linear-gradient(145deg, rgba(13, 29, 43, 0.72), rgba(5, 14, 21, 0.82));
}

.download-release-note > span {
    color: var(--cyan);
    font-size: 0.64rem;
    font-weight: 850;
    letter-spacing: 0.17em;
}

.download-release-note h3 {
    margin: 10px 0 13px;
    font-size: 1.35rem;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.download-release-note p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.download-release-note p + p {
    margin-top: 12px;
}
.download-process { display: flex; align-items: center; gap: 10px; margin-top: 42px; overflow-x: auto; }
.download-process span { min-width: max-content; color: var(--muted); font-size: 0.72rem; font-weight: 750; letter-spacing: 0.05em; }
.download-process b { display: block; color: var(--cyan); font-size: 0.62rem; letter-spacing: 0.14em; }
.download-process i { width: 28px; height: 1px; flex: 0 0 auto; background: var(--line-bright); }
.download-gate-card { min-height: 760px; border: 1px solid rgba(97, 221, 255, 0.34); border-radius: 18px; background: linear-gradient(145deg, rgba(15, 29, 43, 0.94), rgba(5, 12, 19, 0.98)); box-shadow: var(--shadow); overflow: hidden; }
.download-gate-heading { padding: 32px 36px 26px; border-bottom: 1px solid var(--line); background: rgba(18, 42, 59, 0.5); }
.download-gate-heading span { color: var(--cyan); font-size: 0.65rem; font-weight: 850; letter-spacing: 0.17em; }
.download-gate-heading strong { display: block; margin-top: 8px; font-size: 1.7rem; }
.download-gate-heading p { margin: 4px 0 0; color: var(--muted-dark); font-size: 0.82rem; }
.download-registration-form { display: grid; gap: 17px; padding: 34px 36px 38px; }
.download-registration-form[hidden], .download-unlocked[hidden] { display: none !important; }
.download-registration-form label { display: grid; gap: 7px; color: #d9e6ee; font-size: 0.78rem; font-weight: 720; }
.download-registration-form input[type="text"], .download-registration-form input[type="email"], .download-registration-form select { width: 100%; min-height: 48px; padding: 0 13px; border: 1px solid rgba(129, 190, 219, 0.28); border-radius: 8px; color: var(--text); background: rgba(3, 10, 16, 0.78); outline: none; }
.download-registration-form input:focus, .download-registration-form select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(97, 221, 255, 0.1); }
.form-row.two-column { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.checkbox-row { display: grid !important; grid-template-columns: 20px 1fr; align-items: start; gap: 10px !important; color: var(--muted) !important; font-weight: 500 !important; }
.checkbox-row input { width: 17px; height: 17px; margin: 3px 0 0; accent-color: var(--cyan-strong); }
.download-submit { width: 100%; margin-top: 7px; }
.form-privacy { margin: 0; color: var(--muted-dark); font-size: 0.72rem; text-align: center; }
.form-privacy a { color: var(--cyan); }
.form-status { min-height: 22px; color: var(--muted); font-size: 0.82rem; text-align: center; }
.form-status.is-error { color: #ff9caa; }
.form-status.is-success { color: var(--green); }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.download-unlocked { padding: 40px 36px; }
.download-unlocked-label { color: var(--green); font-size: 0.66rem; font-weight: 850; letter-spacing: 0.17em; }
.download-unlocked h2 { margin: 9px 0 12px; font-size: clamp(2rem, 3.5vw, 3.8rem); line-height: 0.98; }
.download-unlocked > p { color: var(--muted); }
.download-build-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 32px; }
.download-build-card { min-height: 0; display: flex; flex-direction: column; padding: 26px; border: 1px solid rgba(97, 221, 255, 0.24); border-radius: 13px; background: rgba(5, 15, 23, 0.78); }
.download-build-card.is-unavailable { opacity: 0.45; }
.download-build-card > span { color: var(--cyan); font-size: 0.64rem; font-weight: 850; letter-spacing: 0.16em; }
.download-build-card h3 { margin: 26px 0 10px; font-size: 1.45rem; line-height: 1.05; }
.download-build-card p { color: var(--muted); font-size: 0.88rem; }
.build-meta { display: flex; flex-direction: column; gap: 2px; margin: auto 0 18px; color: var(--muted-dark); }
.download-build-card .button { width: 100%; padding-left: 12px; padding-right: 12px; font-size: 0.68rem; }
.linux-build-card .linux-install-guide { width: 100%; margin-top: 22px; }
.download-secondary-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.download-token-note { margin-top: 18px; color: var(--muted-dark) !important; font-size: 0.72rem; }

.linux-install-guide { margin-top: 24px; border: 1px solid rgba(97, 221, 255, 0.24); border-radius: 13px; background: rgba(5, 15, 23, 0.72); overflow: hidden; }
.linux-install-guide summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 22px; cursor: pointer; color: var(--muted); font-size: 0.86rem; list-style: none; }
.linux-install-guide summary::-webkit-details-marker { display: none; }
.linux-install-guide summary::after { content: "+"; flex: 0 0 auto; color: var(--cyan); font-size: 1.4rem; font-weight: 400; line-height: 1; transition: transform 160ms ease; }
.linux-install-guide[open] summary { border-bottom: 1px solid var(--line); }
.linux-install-guide[open] summary::after { transform: rotate(45deg); }
.linux-install-guide summary span { display: block; }
.linux-install-guide summary b { display: block; margin-bottom: 3px; color: var(--cyan); font-size: 0.64rem; letter-spacing: 0.16em; }
.linux-install-guide-body { max-width: 920px; margin: 0 auto; padding: 30px 34px; }
.linux-install-method + .linux-install-method { margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--line); }
.linux-install-method > span { color: var(--cyan); font-size: 0.63rem; font-weight: 850; letter-spacing: 0.15em; }
.linux-install-method h3 { margin: 8px 0 12px; font-size: 1.35rem; }
.linux-install-method h4 { margin: 24px 0 9px; font-size: 0.9rem; }
.linux-install-method p { color: var(--muted); font-size: 0.88rem; line-height: 1.65; }
.linux-command { margin: 14px 0; padding: 18px 22px; overflow-x: auto; border: 1px solid rgba(97, 221, 255, 0.18); border-radius: 9px; background: rgba(1, 7, 11, 0.84); color: #d8f6ff; font-size: 0.77rem; line-height: 1.6; white-space: pre; }
.linux-command code { font: inherit; color: inherit; }
.linux-install-note { padding: 16px 18px; border-left: 2px solid var(--cyan); background: rgba(97, 221, 255, 0.05); }.cross-platform-card { min-height: 320px; padding: 32px; border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(145deg, rgba(13, 29, 43, 0.78), rgba(4, 11, 17, 0.9)); }
.cross-platform-card span { color: var(--cyan); font-size: 0.66rem; font-weight: 850; letter-spacing: 0.16em; }
.cross-platform-card h3 { margin: 70px 0 12px; font-size: 1.8rem; line-height: 1.05; }
.cross-platform-card p { color: var(--muted); }
.download-guidance-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.guidance-card { min-height: 390px; padding: 38px; border: 1px solid var(--line); border-radius: 15px; background: rgba(8, 18, 27, 0.76); }
.guidance-card > span { color: var(--cyan); font-size: 0.67rem; font-weight: 850; letter-spacing: 0.16em; }
.guidance-card h2 { margin: 58px 0 16px; font-size: clamp(2rem, 3.4vw, 3.5rem); line-height: 1; }
.guidance-card p { color: var(--muted); }

@media (max-width: 1050px) {
    .download-hero-layout, .download-access-layout { grid-template-columns: 1fr; }
    .download-hero-console { min-height: 340px; }
    .cross-platform-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .download-hero-console { min-height: 300px; }
    .download-console-body { min-height: 220px; padding: 30px 24px; gap: 20px; }
    .download-console-body img { width: 88px; }
    .download-console-top { align-items: flex-start; height: auto; padding: 14px 16px; flex-direction: column; gap: 3px; }
    .download-access-section { padding-top: 85px; }
    .download-gate-heading, .download-registration-form, .download-unlocked { padding-left: 22px; padding-right: 22px; }
    .form-row.two-column, .download-build-grid, .download-guidance-grid { grid-template-columns: 1fr; }
    .download-process { align-items: flex-start; }
    .download-process i { width: 14px; margin-top: 17px; }
    .platform-badges span { min-width: 100%; }
}


.compact-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 34px;
}

    .compact-hero .section-heading {
        margin-bottom: 0;
    }

/* Compact application screenshots should illustrate the interface, not dominate the page. */
.compact-ui-shot {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .compact-ui-shot img {
        display: block;
        width: auto;
        max-width: 100%;
        max-height: 520px;
        margin: 0 auto;
        object-fit: contain;
    }

.requirements-intro {
    padding-top: 34px;
    padding-bottom: 48px;
}

.requirements-preamble {
    max-width: 80%;
}

.requirements-preamble strong {
    color: var(--text);
}

.requirements-assumptions {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.requirement-assumption {
    padding: 18px;
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    background: rgba(9, 22, 32, 0.66);
}

.requirement-assumption strong {
    display: block;
    color: var(--cyan);
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.requirement-assumption span {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.requirements-table-wrap {
    margin-top: 44px;
    border: 1px solid rgba(113, 205, 244, 0.22);
    border-radius: 18px;
    background: rgba(5, 15, 23, 0.84);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.4);
    overflow-x: auto;
}

.requirements-table {
    width: 100%;
    min-width: 1180px;
    border-collapse: collapse;
}

.requirements-table th,
.requirements-table td {
    padding: 18px 16px;
    border-right: 1px solid rgba(113, 205, 244, 0.09);
    border-bottom: 1px solid rgba(113, 205, 244, 0.09);
    text-align: left;
    vertical-align: top;
}

.requirements-table th:last-child,
.requirements-table td:last-child {
    border-right: 0;
}

.requirements-table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    color: #dff7ff;
    background: #0a1c28;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.requirements-table tbody tr:last-child td {
    border-bottom: 0;
}

.requirements-table tbody tr:hover {
    background: rgba(48, 160, 210, 0.055);
}

.requirements-tier {
    min-width: 150px;
}

.requirements-tier span {
    display: block;
    color: var(--cyan);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.requirements-tier strong {
    display: block;
    margin-top: 5px;
    color: var(--text);
    font-size: 1rem;
}

.requirements-output {
    min-width: 185px;
}

.requirements-output strong {
    color: var(--text);
}

.requirements-output span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.76rem;
}

.requirements-table td {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.48;
}

.requirements-table td b {
    color: #d9edf6;
    font-weight: 700;
}

.requirements-featured-row {
    background: linear-gradient(90deg, rgba(57, 169, 220, 0.12), rgba(89, 224, 160, 0.045));
}

.requirements-guidance-grid {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.requirements-guidance-card {
    padding: 28px;
    border: 1px solid var(--line-soft);
    border-radius: 15px;
    background: linear-gradient(145deg, rgba(12, 29, 41, 0.86), rgba(5, 13, 20, 0.9));
}

.requirements-guidance-card h3 {
    margin: 0;
    font-size: 1.05rem;
}

.requirements-guidance-card p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.requirements-guidance-card ul {
    margin: 16px 0 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 0.82rem;
}

.requirements-guidance-card li + li {
    margin-top: 7px;
}

.requirements-warning {
    margin-top: 38px;
    padding: 26px 28px;
    border: 1px solid rgba(255, 190, 97, 0.28);
    border-radius: 14px;
    background: rgba(53, 36, 14, 0.32);
}

.requirements-warning strong {
    color: #ffd28d;
}

.requirements-warning p {
    margin: 8px 0 0;
    color: #cdbb9e;
}

.requirements-footnotes {
    margin-top: 24px;
    color: var(--muted);
    font-size: 0.76rem;
}

.requirements-footnotes p {
    margin: 7px 0 0;
}

.requirements-download-link {
    margin-top: 34px;
    padding: 28px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 28px;
    border: 1px solid rgba(97, 221, 255, 0.22);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(12, 31, 44, 0.84), rgba(5, 13, 20, 0.94));
}

.requirements-download-link h3 {
    margin: 0;
}

.requirements-download-link p {
    margin: 8px 0 0;
    color: var(--muted);
}

@media (max-width: 980px) {
    .requirements-assumptions,
    .requirements-guidance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .requirements-download-link {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .requirements-assumptions,
    .requirements-guidance-grid {
        grid-template-columns: 1fr;
    }
}
