:root {
  --ink: #0b0d0c;
  --ink-2: #121512;
  --ink-3: #1a1e1a;
  --paper: #f2f0e9;
  --white: #fff;
  --muted: #a6aaa3;
  --line: rgba(255,255,255,.14);
  --line-dark: rgba(11,13,12,.15);
  --acid: #b6f23c;
  --acid-dark: #486a0d;
  --font-sans: "Manrope", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", Consolas, monospace;
  --radius: 2px;
  --container: min(1240px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-sans); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; max-width: 100%; }
::selection { color: var(--ink); background: var(--acid); }
.container { width: var(--container); margin-inline: auto; }
.skip-link { position: fixed; z-index: 1000; left: 12px; top: 12px; padding: 10px 14px; color: var(--ink); background: var(--acid); transform: translateY(-160%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
.section-dark { background: var(--ink); color: var(--white); }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: 76px; color: var(--white); border-bottom: 1px solid transparent; transition: background .25s, border-color .25s, height .25s; }
.site-header.scrolled { height: 66px; background: rgba(11,13,12,.9); border-color: var(--line); backdrop-filter: blur(16px); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.brand-mark { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--acid); color: var(--acid); font-weight: 800; font-size: 17px; transform: rotate(-5deg); }
.brand-copy { display: grid; gap: 1px; }
.brand-copy strong { font-size: 15px; letter-spacing: .01em; }
.brand-copy small { color: var(--muted); font: 10px/1.3 var(--font-mono); letter-spacing: .08em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 42px); margin-left: auto; }
.site-nav a { position: relative; color: #c8cbc5; font-size: 13px; font-weight: 600; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--acid); transition: right .2s; }
.site-nav a:hover { color: var(--white); }
.site-nav a:hover::after, .site-nav a.active::after { right: 0; }
.header-contact { font: 12px var(--font-mono); text-transform: uppercase; letter-spacing: .04em; border: 1px solid rgba(255,255,255,.25); padding: 11px 14px; transition: border-color .2s, background .2s, color .2s; }
.header-contact:hover { color: var(--ink); border-color: var(--acid); background: var(--acid); }
.menu-button { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.menu-button span { display: block; width: 18px; height: 1px; margin: 5px auto; background: var(--white); transition: transform .2s; }

.hero { position: relative; min-height: 820px; overflow: hidden; color: var(--white); background: var(--ink); padding: 162px 0 28px; }
.hero-grid, .contact-grid { position: absolute; inset: 0; pointer-events: none; opacity: .48; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, #000 0, transparent 82%); }
.hero-glow { position: absolute; width: 740px; height: 740px; top: -360px; right: -150px; border-radius: 50%; background: rgba(182,242,60,.1); filter: blur(100px); pointer-events: none; }
.hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(410px, .92fr); gap: clamp(58px, 7vw, 104px); align-items: center; }
.kicker, .section-index { margin: 0 0 24px; font: 11px/1.4 var(--font-mono); letter-spacing: .11em; text-transform: uppercase; }
.kicker { color: #d9dcd6; }
.status-pulse { display: inline-block; width: 7px; height: 7px; margin-right: 9px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 5px rgba(182,242,60,.09); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 9px rgba(182,242,60,0); } }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(54px, 6vw, 92px); line-height: .98; letter-spacing: -.058em; font-weight: 600; }
.hero h1 em, .contact h2 em { color: var(--acid); font-style: normal; }
.hero-lead { max-width: 680px; margin: 32px 0 0; color: #b9bdb6; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: space-between; gap: 30px; padding: 0 20px; font: 12px var(--font-mono); letter-spacing: .04em; text-transform: uppercase; border: 1px solid transparent; transition: color .2s, background .2s, border-color .2s, transform .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--acid); color: var(--ink); }
.button-primary:hover { background: #c7ff55; }
.button-ghost { border-color: rgba(255,255,255,.23); color: var(--white); }
.button-ghost:hover { border-color: rgba(255,255,255,.55); }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 40px 0 0; list-style: none; }
.hero-tags li { padding: 7px 9px; color: #8e938b; border: 1px solid rgba(255,255,255,.12); font: 10px var(--font-mono); letter-spacing: .04em; }

.system-panel { position: relative; border: 1px solid rgba(255,255,255,.18); background: rgba(17,20,17,.8); box-shadow: 0 36px 100px rgba(0,0,0,.35); backdrop-filter: blur(12px); }
.system-panel::before { content: ""; position: absolute; inset: 8px -8px -8px 8px; z-index: -1; border: 1px solid rgba(182,242,60,.18); }
.panel-bar, .panel-foot { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 13px 16px; color: #92988f; font: 9px var(--font-mono); letter-spacing: .08em; border-bottom: 1px solid var(--line); }
.panel-status { color: #c2c7be; }
.panel-status i, .live-badge i { display: inline-block; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: var(--acid); }
.metric-head { display: flex; justify-content: space-between; align-items: end; padding: 24px 24px 8px; }
.metric-head div { display: grid; }
.metric-head small { color: #858a82; font: 9px var(--font-mono); letter-spacing: .09em; }
.metric-head strong { color: var(--acid); font-size: 56px; line-height: 1; letter-spacing: -.05em; }
.metric-head > span { color: #696e67; font: 9px var(--font-mono); }
.chart { position: relative; height: 180px; margin: 0 24px; background: repeating-linear-gradient(0deg, transparent 0, transparent 44px, rgba(255,255,255,.06) 45px), repeating-linear-gradient(90deg, transparent 0, transparent 69px, rgba(255,255,255,.04) 70px); }
.chart svg { width: 100%; height: 100%; overflow: visible; }
.chart-area { fill: url(#area); }
.chart-line { fill: none; stroke: var(--acid); stroke-width: 2.2; vector-effect: non-scaling-stroke; }
.chart circle { fill: var(--acid); stroke: var(--ink); stroke-width: 2; }
.js .system-panel.in-view .chart-line { stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 1.4s .2s ease forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.chart-label { position: absolute; z-index: 2; right: 5px; color: #757a73; font: 8px var(--font-mono); }
.label-high { top: 8px; }.label-low { bottom: 7px; }
.pipeline { display: grid; grid-template-columns: 1fr 24px 1fr 24px 1fr; align-items: center; padding: 22px 24px; }
.pipeline > i { height: 1px; background: rgba(255,255,255,.22); }
.pipeline-node { display: grid; min-width: 0; padding: 12px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.025); }
.pipeline-node.active { border-color: rgba(182,242,60,.5); background: rgba(182,242,60,.045); }
.pipeline-node span { color: #6f746d; font: 8px var(--font-mono); }
.pipeline-node strong { margin-top: 10px; font: 10px var(--font-mono); letter-spacing: .04em; }
.pipeline-node small { margin-top: 4px; overflow: hidden; color: #6f746d; font: 7px var(--font-mono); text-overflow: ellipsis; white-space: nowrap; }
.panel-foot { border-top: 1px solid var(--line); border-bottom: 0; }
.panel-foot b { color: #c1c5be; font-weight: 400; }
.proof-line { position: relative; z-index: 1; display: flex; justify-content: space-between; margin-top: 104px; padding-top: 22px; border-top: 1px solid var(--line); }
.proof-line p { margin: 0; color: #7d827a; font: 9px var(--font-mono); letter-spacing: .1em; text-transform: uppercase; }
.proof-line p span { margin-inline: 10px; color: #41453f; }
.proof-sign { color: var(--acid) !important; }

.outcomes { padding: 142px 0 130px; }
.section-intro { display: grid; grid-template-columns: .5fr 1.3fr .72fr; gap: 42px; align-items: start; }
.section-index { color: var(--acid-dark); }
.section-dark .section-index { color: var(--acid); }
.section-intro h2, .section-heading h2, .experience h2 { margin: 0; font-size: clamp(42px, 5vw, 70px); line-height: 1.03; letter-spacing: -.05em; font-weight: 600; }
.section-intro h2 span { color: #6f746c; }
.section-intro > p:last-child, .section-heading > p, .experience-sticky > p { max-width: 410px; margin: 7px 0 0; color: #989d96; font-size: 15px; line-height: 1.75; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 88px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.stat-card { min-height: 350px; padding: 34px 28px 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; }
.stat-card:hover { background: rgba(255,255,255,.025); }
.stat-number { color: var(--acid); font-size: clamp(70px, 7vw, 102px); line-height: 1; letter-spacing: -.07em; font-weight: 500; }
.stat-number sup { font-size: .35em; vertical-align: top; line-height: 1.5; }
.stat-number.stat-c { font-family: var(--font-mono); font-weight: 400; }
.stat-card h3 { margin: auto 0 12px; font-size: 17px; }
.stat-card p { margin: 0; color: #858a82; font-size: 13px; line-height: 1.65; }

.expertise { padding: 140px 0 124px; background: var(--paper); }
.section-heading { display: grid; grid-template-columns: 1fr minmax(260px, .42fr); gap: 60px; align-items: end; margin-bottom: 76px; }
.section-heading > p { color: #646961; }
.capability-list { border-top: 1px solid var(--line-dark); }
.capability { display: grid; grid-template-columns: 62px 1.1fr .72fr 50px; gap: 34px; align-items: start; padding: 38px 0; border-bottom: 1px solid var(--line-dark); transition: padding .25s, background .25s; }
.capability:hover { padding-inline: 18px; background: rgba(255,255,255,.4); }
.capability-number { padding-top: 7px; color: #7b8178; font: 10px var(--font-mono); }
.capability h3 { margin: 0 0 14px; font-size: clamp(24px, 3vw, 36px); letter-spacing: -.04em; }
.capability p { max-width: 580px; margin: 0; color: #5d625b; font-size: 14px; line-height: 1.7; }
.capability ul, .project-copy ul { display: flex; flex-wrap: wrap; gap: 7px; padding: 0; margin: 4px 0 0; list-style: none; }
.capability li, .project-copy li { padding: 6px 8px; border: 1px solid var(--line-dark); color: #4c514b; font: 9px var(--font-mono); text-transform: uppercase; }
.capability-mark { text-align: right; color: var(--acid-dark); font: 36px var(--font-mono); }
.tech-strip { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 76px; color: #858a82; font: 10px var(--font-mono); letter-spacing: .08em; }
.tech-strip i { width: 4px; height: 4px; border-radius: 50%; background: var(--acid-dark); }

.section-paper { background: #e7e4db; }
.experience { padding: 140px 0; }
.experience-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 10vw; align-items: start; }
.experience-sticky { position: sticky; top: 120px; }
.experience-sticky > p { color: #5d625b; }
.location-card { display: grid; margin-top: 60px; padding: 22px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.24); }
.location-card span { color: #7b8178; font: 9px var(--font-mono); }
.location-card strong { margin-top: 30px; font-size: 18px; }
.location-card small { margin-top: 5px; color: #666b64; font-size: 12px; }
.timeline { border-top: 1px solid var(--line-dark); }
.timeline-item { display: grid; grid-template-columns: 128px 1fr; gap: 34px; padding: 42px 0 48px; border-bottom: 1px solid var(--line-dark); }
.timeline-meta { display: flex; gap: 15px; align-items: flex-start; color: #72776f; font: 9px/1.5 var(--font-mono); }
.timeline-meta i { width: 7px; height: 7px; margin-top: 3px; border-radius: 50%; background: var(--acid-dark); box-shadow: 0 0 0 5px rgba(114,159,24,.1); }
.timeline-copy > p:first-child { margin: 0 0 7px; color: #646961; font: 11px var(--font-mono); text-transform: uppercase; }
.timeline-copy h3 { margin: 0 0 24px; font-size: clamp(25px, 3vw, 34px); letter-spacing: -.04em; }
.timeline-copy ul { padding: 0; margin: 0; list-style: none; }
.timeline-copy li { position: relative; padding-left: 17px; margin-top: 11px; color: #4e534c; font-size: 13px; line-height: 1.65; }
.timeline-copy li::before { content: ""; position: absolute; left: 0; top: .72em; width: 5px; height: 1px; background: var(--acid-dark); }
.timeline-note { margin: 0; color: #5e635c; font-size: 13px; line-height: 1.6; }
.timeline-video { display: grid; grid-template-columns: 150px 1fr; gap: 0; margin-top: 28px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.2); transition: border-color .25s, transform .25s; }
.timeline-video:hover { border-color: rgba(72,106,13,.55); transform: translateY(-2px); }
.timeline-video-thumb { position: relative; min-height: 110px; overflow: hidden; background: var(--ink); }
.timeline-video-thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(75%); transition: filter .25s, transform .35s; }
.timeline-video:hover img { filter: grayscale(10%); transform: scale(1.025); }
.timeline-video-thumb i { position: absolute; right: 10px; top: 10px; display: grid; place-items: center; width: 28px; height: 28px; padding-left: 2px; color: var(--ink); border-radius: 50%; background: var(--acid); font-size: 8px; font-style: normal; }
.timeline-video-copy { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: 16px 18px; }
.timeline-video-copy small { color: var(--acid-dark); font: 8px var(--font-mono); letter-spacing: .06em; }
.timeline-video-copy strong { margin-top: 8px; font-size: 15px; letter-spacing: -.02em; }
.timeline-video-copy > span { margin-top: 6px; color: #666b64; font-size: 11px; line-height: 1.5; }

.projects { padding: 140px 0; }
.section-heading.light > p { color: #989d96; }
.project-grid { display: grid; grid-template-columns: 1.17fr .83fr; gap: 16px; }
.project-card { position: relative; overflow: hidden; min-height: 590px; border: 1px solid var(--line); background: var(--ink-2); display: flex; flex-direction: column; transition: border-color .25s, transform .25s; }
.project-card:hover { border-color: rgba(182,242,60,.5); transform: translateY(-3px); }
.project-featured { background: #131713; }
.project-wide { grid-column: 1 / -1; min-height: 410px; }
.side-projects { margin-top: 72px; padding-top: 36px; border-top: 1px solid var(--line); }
.side-projects-head { display: block; }
.side-projects-head h3 { margin: 0; font-size: clamp(28px, 3vw, 42px); letter-spacing: -.045em; }
.side-projects-head > p { max-width: 530px; margin: 0; color: #8e938b; font-size: 13px; line-height: 1.7; }
.side-projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 30px; }
.side-project-card { position: relative; display: grid; min-height: 190px; padding: 22px; overflow: hidden; border: 1px solid var(--line); background: rgba(255,255,255,.025); transition: border-color .25s, background .25s, transform .25s; }
.side-project-card::after { content: ""; position: absolute; width: 190px; height: 190px; right: -110px; top: -110px; border: 1px solid rgba(182,242,60,.16); border-radius: 50%; transition: transform .4s; }
.side-project-card:hover { border-color: rgba(182,242,60,.55); background: rgba(182,242,60,.035); transform: translateY(-2px); }
.side-project-card:hover::after { transform: scale(1.2); }
.side-project-index { color: #71776f; font: 9px var(--font-mono); letter-spacing: .08em; }
.side-project-card strong { align-self: center; font-size: clamp(28px, 3.2vw, 45px); letter-spacing: -.05em; }
.side-project-link { display: flex; justify-content: space-between; align-items: end; color: #9da299; font: 9px var(--font-mono); letter-spacing: .06em; text-transform: uppercase; }
.side-project-link b { color: var(--acid); font-size: 18px; font-weight: 400; }
.project-top { display: flex; justify-content: space-between; padding: 16px 18px; color: #797e77; font: 9px var(--font-mono); letter-spacing: .08em; border-bottom: 1px solid var(--line); }
.live-badge { color: #b9bdb6; }
.trainer-preview { position: relative; height: 280px; margin: 24px 24px 8px; padding: 22px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); background: #0c0f0d; }
.trainer-preview::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 15%, rgba(182,242,60,.16), transparent 42%); pointer-events: none; }
.preview-bar { display: flex; justify-content: space-between; color: #6d736b; font: 8px var(--font-mono); }
.trainer-preview > p { margin: 44px 0 10px; color: var(--acid); font: 8px var(--font-mono); }
.trainer-preview h3 { margin: 0 0 24px; font-size: 24px; line-height: 1.08; letter-spacing: -.04em; }
.answer-line { display: grid; grid-template-columns: 22px 1fr 18px; gap: 10px; align-items: center; height: 28px; margin-top: 6px; padding: 0 8px; border: 1px solid rgba(255,255,255,.08); }
.answer-line.active { border-color: rgba(182,242,60,.55); }
.answer-line b { color: #777d75; font: 7px var(--font-mono); }
.answer-line span { width: 72%; height: 3px; background: #353a34; }
.answer-line i { color: var(--acid); font: 11px var(--font-mono); }
.project-copy { display: grid; grid-template-columns: 1fr 1.15fr; gap: 28px; padding: 26px 26px 30px; }
.project-copy.compact { display: block; }
.project-number { margin: 0 0 9px !important; color: var(--acid) !important; font: 9px var(--font-mono) !important; }
.project-copy h3 { margin: 0; font-size: clamp(28px, 3.3vw, 43px); line-height: 1.02; letter-spacing: -.045em; }
.project-copy > div > p:not(.project-number), .project-copy > p { margin: 0 0 18px; color: #949a91; font-size: 13px; line-height: 1.7; }
.project-copy li { color: #969b93; border-color: var(--line); }
.project-link { display: flex; justify-content: space-between; margin-top: auto; padding: 18px 22px; color: var(--acid); font: 10px var(--font-mono); letter-spacing: .05em; text-transform: uppercase; border-top: 1px solid var(--line); transition: color .2s, background .2s; }
.project-link:hover { color: var(--ink); background: var(--acid); }
.qvd-preview { position: relative; display: grid; place-items: center; height: 290px; overflow: hidden; background: repeating-linear-gradient(0deg, transparent 0, transparent 47px, rgba(255,255,255,.035) 48px), repeating-linear-gradient(90deg, transparent 0, transparent 47px, rgba(255,255,255,.035) 48px); }
.file-cube { position: relative; z-index: 2; display: grid; place-items: center; width: 100px; height: 124px; color: var(--acid); border: 1px solid rgba(182,242,60,.65); background: #161b15; box-shadow: 19px 19px 0 rgba(182,242,60,.035), 19px 19px 0 1px rgba(182,242,60,.2); }
.file-cube::before { content: ".QVD"; position: absolute; top: 12px; left: 12px; font: 8px var(--font-mono); }
.file-cube span { font: 46px var(--font-mono); }
.qvd-lines { position: absolute; width: 100%; transform: rotate(-14deg); opacity: .25; }
.qvd-lines i { display: block; width: 160%; height: 1px; margin: 36px 0; background: linear-gradient(90deg, transparent, var(--acid), transparent); }
.qvd-data { position: absolute; right: 20px; bottom: 18px; display: grid; gap: 4px; color: #676d64; font: 8px var(--font-mono); text-align: right; }
.library-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; padding: 36px; align-items: center; flex: 1; }
.library-code { padding: 20px 0; border: 1px solid var(--line); background: #0b0e0c; }
.library-code span { display: block; padding: 10px 18px; color: #adb2aa; font: 11px var(--font-mono); border-bottom: 1px solid rgba(255,255,255,.05); }
.library-code span:last-child { border: 0; }
.library-code b { display: inline-block; width: 38px; color: #555a54; font-weight: 400; }
.library-code .code-ok { color: var(--acid); background: rgba(182,242,60,.04); }

.media { padding: 140px 0 128px; }
.media-groups { display: grid; gap: 84px; }
.media-group-head { display: grid; grid-template-columns: 1fr minmax(280px, .5fr); gap: 50px; align-items: end; margin-bottom: 30px; padding-top: 25px; border-top: 1px solid var(--line-dark); }
.media-group-head > div { display: flex; align-items: center; gap: 16px; }
.media-group-head span { display: grid; place-items: center; flex: 0 0 29px; width: 29px; height: 22px; border: 1px solid var(--ink); border-radius: 20px; font: 9px var(--font-mono); }
.media-group-head h3 { margin: 0; font-size: clamp(25px, 3vw, 38px); letter-spacing: -.04em; }
.media-group-head p { max-width: 480px; margin: 0; color: #676c65; font-size: 13px; line-height: 1.65; }
.media-group-head > .media-group-aside { display: grid; align-items: start; gap: 14px; }
.media-group-aside a { width: max-content; color: var(--acid-dark); font: 9px var(--font-mono); letter-spacing: .06em; text-transform: uppercase; border-bottom: 1px solid rgba(114,159,24,.35); padding-bottom: 5px; }
.media-group-aside a:hover { color: var(--ink); border-color: var(--ink); }
.media-group-aside b { font-size: 14px; font-weight: 400; }
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-group { padding: 34px; border: 1px solid var(--line-dark); background: #e8e5dc; }
.process-group .media-group-head { padding-top: 0; border-top: 0; }
.process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.process-grid .video-thumb { aspect-ratio: 16 / 8; }
.video-card { min-width: 0; }
.video-thumb { position: relative; overflow: hidden; aspect-ratio: 16 / 10; background: var(--ink); }
.video-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,13,12,.72), transparent 55%); }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.1); transition: filter .3s, transform .5s; }
.video-card:hover img { filter: grayscale(25%) contrast(1.04); transform: scale(1.035); }
.video-thumb small { position: absolute; z-index: 2; left: 13px; bottom: 12px; color: var(--white); font: 8px var(--font-mono); letter-spacing: .08em; }
.play { position: absolute; z-index: 2; right: 12px; top: 12px; display: grid; place-items: center; width: 36px; height: 36px; padding-left: 2px; border-radius: 50%; color: var(--ink); background: var(--acid); font-size: 10px; transition: transform .2s; }
.video-card:hover .play { transform: scale(1.1); }
.video-card h3 { margin: 18px 0 8px; font-size: 17px; line-height: 1.35; letter-spacing: -.02em; }
.video-card p { margin: 0; color: #676c65; font-size: 12px; line-height: 1.55; }
.culture-note { display: grid; grid-template-columns: 64px 1fr 42px; align-items: center; gap: 22px; margin-top: 76px; padding: 26px 28px; color: var(--white); background: var(--ink); transition: background .2s; }
.culture-note:hover { background: var(--ink-3); }
.culture-icon { display: grid; place-items: center; width: 54px; height: 54px; color: var(--ink); background: var(--acid); font-size: 22px; }
.culture-note small { color: var(--acid); font: 8px var(--font-mono); letter-spacing: .09em; }
.culture-note strong { display: block; margin-top: 6px; font-size: 16px; }
.culture-note p { margin: 5px 0 0; color: #7f847c; font-size: 12px; }
.culture-arrow { color: var(--acid); font: 22px var(--font-mono); }

.contact { position: relative; overflow: hidden; padding: 142px 0 80px; }
.contact-grid { opacity: .6; mask-image: radial-gradient(circle at center, #000, transparent 72%); }
.contact-inner { position: relative; z-index: 1; text-align: center; }
.contact h2 { margin: 0; font-size: clamp(58px, 8vw, 112px); line-height: .92; letter-spacing: -.065em; font-weight: 600; }
.contact-inner > p:not(.section-index) { max-width: 610px; margin: 34px auto 0; color: #989d96; font-size: 16px; line-height: 1.7; }
.contact-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 42px; }
.button.large { min-width: 300px; min-height: 58px; }
.copy-button { display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; min-height: 58px; padding: 0 18px; color: #a7aca4; border: 1px solid var(--line); background: transparent; cursor: pointer; font: 10px var(--font-mono); text-transform: uppercase; transition: color .2s, border-color .2s; }
.copy-button:hover { color: var(--white); border-color: rgba(255,255,255,.4); }
.copy-button i { color: var(--acid); font-style: normal; }
.contact-meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; margin-top: 100px; padding-top: 20px; color: #676c65; border-top: 1px solid var(--line); font: 9px var(--font-mono); letter-spacing: .08em; text-transform: uppercase; }
.contact-meta a:hover { color: var(--acid); }
.site-footer { color: #8e938b; background: var(--ink); border-top: 1px solid var(--line); }
.footer-inner { min-height: 114px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-inner p, .footer-inner > a:last-child { font: 9px var(--font-mono); letter-spacing: .06em; text-transform: uppercase; }
.footer-inner > a:last-child:hover { color: var(--acid); }

.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.65,.25,1); transition-delay: var(--delay, 0ms); }
.js .reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .hero { padding-top: 138px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 800px; }
  .system-panel { max-width: 720px; }
  .section-intro { grid-template-columns: .35fr 1fr; }
  .section-intro > p:last-child { grid-column: 2; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { min-height: 310px; }
  .capability { grid-template-columns: 48px 1fr .65fr 38px; }
  .video-grid { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 32px, 700px); }
  .site-header { height: 66px; background: rgba(11,13,12,.82); backdrop-filter: blur(12px); }
  .header-contact { display: none; }
  .menu-button { display: block; margin-left: auto; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 66px 0 0; display: grid; place-content: center; gap: 0; background: rgba(11,13,12,.98); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .2s, visibility .2s, transform .2s; }
  .site-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { padding: 16px 40px; font-size: 25px; text-align: center; }
  .site-nav a::after { display: none; }
  .hero { min-height: auto; padding: 122px 0 24px; }
  .hero h1 { font-size: clamp(48px, 12vw, 76px); }
  .hero-layout { gap: 62px; }
  .proof-line { margin-top: 80px; }
  .proof-sign { display: none; }
  .outcomes, .expertise, .experience, .projects, .media { padding: 100px 0; }
  .section-intro, .section-heading { grid-template-columns: 1fr; gap: 26px; }
  .section-intro > p:last-child { grid-column: auto; }
  .section-heading { margin-bottom: 56px; }
  .capability { grid-template-columns: 42px 1fr 36px; gap: 22px; }
  .capability ul { grid-column: 2; }
  .experience-layout { grid-template-columns: 1fr; gap: 72px; }
  .experience-sticky { position: static; }
  .location-card { max-width: 420px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-wide { grid-column: auto; }
  .side-projects-head, .media-group-head { grid-template-columns: 1fr; gap: 20px; }
  .library-layout { grid-template-columns: 1fr; gap: 24px; }
  .contact { padding-top: 110px; }
  .contact-meta { margin-top: 76px; }
}

@media (max-width: 560px) {
  :root { --container: calc(100% - 26px); }
  .brand-copy small { display: none; }
  .hero h1 { font-size: 43px; }
  .hero-lead { font-size: 15px; }
  .hero-actions .button { width: 100%; }
  .hero-tags { margin-top: 28px; }
  .system-panel { width: calc(100% - 8px); }
  .metric-head { padding-inline: 16px; }
  .metric-head strong { font-size: 48px; }
  .chart { margin-inline: 16px; height: 150px; }
  .pipeline { grid-template-columns: 1fr; gap: 6px; padding: 16px; }
  .pipeline > i { width: 1px; height: 8px; margin-left: 18px; }
  .panel-foot { align-items: start; flex-direction: column; }
  .proof-line p { line-height: 1.8; }
  .section-intro h2, .section-heading h2, .experience h2 { font-size: 41px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card { min-height: 270px; }
  .capability { grid-template-columns: 30px 1fr; gap: 16px; }
  .capability ul { grid-column: 2; }
  .capability-mark { display: none; }
  .capability:hover { padding-inline: 0; }
  .tech-strip { justify-content: flex-start; overflow: hidden; white-space: nowrap; }
  .timeline-item { grid-template-columns: 1fr; gap: 18px; }
  .timeline-meta { align-items: center; }
  .timeline-video { grid-template-columns: 1fr; }
  .timeline-video-thumb { min-height: 180px; }
  .project-card { min-height: 0; }
  .trainer-preview { height: 260px; margin: 14px 14px 6px; padding: 16px; }
  .trainer-preview > p { margin-top: 34px; }
  .project-copy { grid-template-columns: 1fr; padding: 24px 18px; }
  .qvd-preview { height: 260px; }
  .library-layout { padding: 18px; }
  .library-code span { padding-inline: 10px; font-size: 9px; white-space: nowrap; overflow: hidden; }
  .side-projects-grid, .process-grid { grid-template-columns: 1fr; }
  .side-project-card { min-height: 165px; }
  .process-group { margin-inline: -13px; padding: 28px 13px; border-inline: 0; }
  .video-grid { grid-template-columns: 1fr; }
  .culture-note { grid-template-columns: 48px 1fr; padding: 20px 16px; }
  .culture-icon { width: 44px; height: 44px; }
  .culture-arrow { display: none; }
  .contact h2 { font-size: 56px; }
  .contact-actions { align-items: stretch; flex-direction: column; }
  .button.large { min-width: 0; }
  .copy-button { justify-content: center; }
  .contact-meta { align-items: center; flex-direction: column; }
  .footer-inner { padding: 34px 0; flex-wrap: wrap; }
  .footer-brand { width: 100%; }
}

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