:root {
  --ink: #18221f;
  --muted: #68736e;
  --line: #d8dedb;
  --paper: #f6f7f4;
  --panel: #ffffff;
  --leaf: #1f6049;
  --aqua: #7bd8c4;
  --coral: #ff7d67;
  --sun: #e5c95a;
  --slate: #2b3938;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  background: rgba(246, 247, 244, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav {
  width: min(var(--max), calc(100% - 48px));
  min-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 800; }
.brand-mark { width: 29px; height: 29px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.brand-mark i { display: block; background: var(--leaf); }
.brand-mark i:nth-child(2), .brand-mark i:nth-child(4), .brand-mark i:nth-child(7) { background: var(--aqua); }
.brand-mark i:nth-child(5) { background: var(--coral); }
.nav-links { display: flex; align-items: center; gap: 26px; color: var(--muted); font-size: 14px; }
.nav-links a { position: relative; padding: 5px 0; }
.nav-links a::after { position: absolute; right: 0; bottom: 0; left: 0; height: 1px; background: var(--leaf); content: ""; transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.nav-links a:hover, .nav-links a.is-current { color: var(--leaf); }
.nav-links a:hover::after, .nav-links a.is-current::after { transform: scaleX(1); }
.nav-status { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: 12px; }
.nav-status i { width: 7px; height: 7px; border-radius: 50%; background: #58a877; }

main { overflow: hidden; }
.hero, .works, .about, .updates, .site-footer__inner, .process { width: min(var(--max), calc(100% - 48px)); margin: auto; }
.hero { min-height: 610px; display: grid; grid-template-columns: minmax(0, .94fr) minmax(480px, 1.06fr); align-items: center; gap: 68px; padding: 72px 0 64px; }
.eyebrow, .section-label { margin-bottom: 17px; color: var(--leaf); font-size: 12px; font-weight: 800; }
h1 { max-width: 560px; margin-bottom: 22px; font-size: clamp(42px, 5vw, 72px); line-height: 1.08; }
h2 { margin-bottom: 0; font-size: clamp(31px, 3.3vw, 46px); line-height: 1.15; }
.hero-copy { max-width: 490px; color: var(--muted); font-size: 17px; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 34px; }
.button-primary { display: inline-flex; align-items: center; min-height: 46px; padding: 0 19px; border: 1px solid var(--leaf); border-radius: 4px; color: #fff; background: var(--leaf); cursor: pointer; font-size: 14px; font-weight: 700; transition: background .2s ease, transform .2s ease; }
.button-primary:hover, .button-primary:focus-visible { background: #174c3a; transform: translateY(-2px); }
.text-link { border-bottom: 1px solid var(--ink); font-size: 14px; font-weight: 700; transition: color .2s ease, border-color .2s ease; }
.text-link:hover, .text-link:focus-visible { border-color: var(--leaf); color: var(--leaf); }
.hero-note { display: flex; gap: 13px; margin-top: 55px; color: var(--muted); font-size: 12px; }
.hero-note i { flex: 0 0 auto; width: 23px; height: 1px; margin-top: 9px; background: var(--coral); }

.hero-workbench { position: relative; min-height: 420px; padding: 17px; border: 1px solid #cfd7d2; background: var(--panel); box-shadow: 12px 12px 0 #dde7e1; }
.workbench-bar { display: flex; align-items: center; gap: 7px; height: 24px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.workbench-bar b { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }
.workbench-bar b:nth-child(2) { background: var(--sun); }
.workbench-bar b:nth-child(3) { background: var(--aqua); }
.workbench-bar span { margin-left: auto; color: var(--muted); font-size: 10px; font-weight: 700; }
.workbench-body { display: grid; grid-template-columns: 1.2fr .8fr; gap: 16px; padding-top: 17px; }
.index-window { min-height: 323px; overflow: hidden; background: var(--slate); }
.index-top { height: 39px; display: flex; align-items: center; justify-content: space-between; padding: 0 14px; color: #f3f4ef; font-size: 11px; font-weight: 700; }
.index-top span:last-child { color: var(--sun); }
.index-grid { height: 210px; display: grid; grid-template-columns: repeat(7, 1fr); grid-template-rows: repeat(6, 1fr); gap: 4px; padding: 12px; background: #23312e; }
.index-grid i { display: block; background: #456a5d; transition: transform .25s ease; }
.index-grid i:nth-child(3n) { background: var(--aqua); }
.index-grid i:nth-child(4n) { background: var(--coral); }
.index-grid i:nth-child(5n) { background: var(--sun); }
.index-grid i.accent { outline: 3px solid #fff8de; outline-offset: -3px; background: #f8df70; }
.hero-workbench:hover .index-grid i { transform: scale(.91); }
.hero-workbench:hover .index-grid i:nth-child(2n) { transform: scale(1); }
.index-footer { display: flex; align-items: center; gap: 7px; padding: 13px; color: #c7d7cf; font-size: 10px; }
.index-footer b { width: 27px; height: 27px; display: grid; place-items: center; color: var(--slate); background: var(--aqua); font-size: 15px; }
.inspector { display: flex; flex-direction: column; gap: 10px; }
.panel-heading { color: var(--muted); font-size: 10px; font-weight: 800; }
.prop { padding: 11px; background: #f0f3f0; font-size: 11px; }
.prop strong { display: block; margin-bottom: 6px; font-size: 12px; }
.prop span { color: var(--muted); }
.prop .bar { display: block; height: 5px; margin-top: 9px; background: var(--aqua); }
.prop:nth-of-type(3) .bar { width: 68%; background: var(--coral); }
.hero-stamp { position: absolute; right: -26px; bottom: -24px; width: 112px; height: 112px; display: grid; place-items: center; border: 4px solid var(--paper); color: var(--ink); background: var(--coral); text-align: center; font-size: 13px; font-weight: 800; line-height: 1.25; transform: rotate(7deg); }

.site-summary { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #edf2ee; }
.site-summary__inner { width: min(var(--max), calc(100% - 48px)); margin: auto; display: grid; grid-template-columns: 1.05fr repeat(3, .65fr); }
.summary-item { min-height: 122px; display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: 24px; border-left: 1px solid var(--line); }
.summary-item:first-child { border-left: 0; }
.summary-item b { color: var(--leaf); font-size: 25px; line-height: 1; }
.summary-item strong { font-size: 14px; }
.summary-item span { color: var(--muted); font-size: 12px; }
.summary-item--intro { color: #f2f7f3; background: var(--leaf); }
.summary-item--intro span { color: #c8dbd1; }

.works-wrap { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--panel); }
.works { padding: 88px 0 96px; }
.section-top { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 42px; }
.section-top > p { max-width: 360px; margin-bottom: 0; color: var(--muted); font-size: 14px; }
.projects { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.project { min-width: 0; }
.project-screen { position: relative; aspect-ratio: 1.2; overflow: hidden; border: 1px solid var(--line); background: #eef3ee; transition: border-color .2s ease, box-shadow .2s ease; }
.screen-label { position: absolute; z-index: 2; top: 12px; left: 13px; padding: 4px 7px; color: var(--ink); background: rgba(255, 255, 255, .84); font-size: 10px; font-weight: 800; }
.project-meta { padding: 18px 1px 0; }
.project-meta h3 { margin-bottom: 6px; font-size: 20px; }
.project-meta p { min-height: 44px; margin-bottom: 10px; color: var(--muted); font-size: 13px; }
.tag { display: inline-block; padding: 3px 7px; border: 1px solid var(--line); color: var(--muted); font-size: 10px; font-weight: 700; }
.card-action { display: inline-flex; align-items: center; min-height: 32px; margin-left: 10px; padding: 0; border: 0; border-bottom: 1px solid var(--ink); color: var(--ink); background: transparent; cursor: pointer; font-size: 12px; font-weight: 800; }
.card-action:hover, .card-action:focus-visible { border-color: var(--leaf); color: var(--leaf); }
.project.is-selected .project-screen { border-color: var(--leaf); box-shadow: 5px 5px 0 var(--aqua); }
.project.is-selected .card-action { color: var(--leaf); }

.screen-stack { padding: 30px; background: #f8ecda; }
.stack-score { width: 122px; padding-bottom: 10px; border-bottom: 2px solid var(--ink); font-size: 13px; font-weight: 800; }
.stack-score b { float: right; color: var(--coral); }
.stack-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 5px; margin-top: 21px; transform: rotate(-4deg); }
.stack-grid i { display: block; aspect-ratio: 1; background: var(--leaf); }
.stack-grid i:nth-child(2n) { background: var(--coral); }
.stack-grid i:nth-child(3n) { background: var(--sun); }
.stack-grid i:nth-child(5n) { background: #5cbba6; }
.stack-grid i:nth-child(8), .stack-grid i:nth-child(16), .stack-grid i:nth-child(17) { background: #fffaf0; }
.screen-sound { padding: 24px; color: #eff4ee; background: #213333; }
.sound-header { display: flex; justify-content: space-between; font-size: 11px; font-weight: 800; }
.sound-header span:last-child { color: var(--aqua); }
.sound-waves { height: 118px; display: flex; align-items: center; gap: 5px; margin: 26px 0 16px; }
.sound-waves i { width: 8px; background: var(--aqua); }
.sound-waves i:nth-child(1) { height: 26%; }.sound-waves i:nth-child(2) { height: 53%; }.sound-waves i:nth-child(3) { height: 38%; }.sound-waves i:nth-child(4) { height: 79%; }.sound-waves i:nth-child(5) { height: 42%; }.sound-waves i:nth-child(6) { height: 93%; }.sound-waves i:nth-child(7) { height: 51%; }.sound-waves i:nth-child(8) { height: 31%; }.sound-waves i:nth-child(9) { height: 75%; }.sound-waves i:nth-child(10) { height: 46%; }.sound-waves i:nth-child(11) { height: 60%; }.sound-waves i:nth-child(12) { height: 25%; }
.sound-waves i:nth-child(3n) { background: var(--coral); }.sound-waves i:nth-child(4n) { background: var(--sun); }
.sound-pads { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }.sound-pads i { display: block; aspect-ratio: 1; border: 1px solid #5b7670; }.sound-pads i:first-child { border-color: var(--coral); background: var(--coral); }
.screen-orbit { background: #deeae5; }.orbit-sun { position: absolute; top: 50%; left: 50%; width: 66px; height: 66px; border-radius: 50%; background: var(--sun); transform: translate(-50%, -50%); }.orbit-ring { position: absolute; top: 50%; left: 50%; width: 70%; aspect-ratio: 1; border: 1px solid #7f9d94; border-radius: 50%; transform: translate(-50%, -50%) rotate(-20deg); }.orbit-ring.two { width: 42%; transform: translate(-50%, -50%) rotate(64deg); }.planet { position: absolute; top: 19%; left: 67%; width: 22px; height: 22px; border-radius: 50%; background: var(--coral); }.planet.two { top: 68%; left: 25%; width: 15px; height: 15px; background: var(--leaf); }.orbit-corner { position: absolute; right: 15px; bottom: 15px; color: var(--muted); font-size: 10px; font-weight: 800; }
.project-screen:hover .stack-grid { animation: nudge .45s ease-in-out; }.project-screen:hover .planet { animation: orbit 2.5s linear infinite; }
@keyframes nudge { 50% { transform: rotate(-1deg) translateY(-6px); } } @keyframes orbit { 50% { transform: translate(-16px, 10px); } }

.process-wrap { background: #e8eee9; }.process { display: grid; grid-template-columns: .88fr 1.12fr; gap: 80px; padding: 94px 0; }.process-copy { max-width: 410px; }.process-copy > p:not(.section-label), .about-copy > p:not(.section-label) { margin-top: 22px; color: var(--muted); font-size: 16px; }.process-steps, .principles, .update-list { border-top: 1px solid var(--line); }.process-step { display: grid; grid-template-columns: 60px 1fr auto; align-items: center; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }.process-step > b, .principle > b { color: var(--coral); font-size: 13px; }.process-step strong { display: block; font-size: 16px; }.process-step span, .principle span { display: block; margin-top: 3px; color: var(--muted); font-size: 13px; }.state-chip { padding: 3px 7px; border: 1px solid #9caf9f; color: var(--leaf); font-size: 10px; font-style: normal; font-weight: 800; white-space: nowrap; }
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; padding: 92px 0 100px; }.about-copy { max-width: 470px; }.principle { display: grid; grid-template-columns: 40px 1fr; gap: 16px; padding: 19px 0; border-bottom: 1px solid var(--line); }.principle strong { display: block; margin-bottom: 4px; font-size: 15px; }
.updates { padding: 90px 0; }.updates-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; }.update-item { display: grid; grid-template-columns: 118px 1fr; gap: 18px; padding: 17px 0; border-bottom: 1px solid var(--line); }.update-item time { color: var(--muted); font-size: 12px; }.update-item strong { display: block; margin-bottom: 3px; font-size: 14px; }.update-item span { color: var(--muted); font-size: 13px; }.updates-aside { align-self: start; padding: 24px; color: #edf4ef; background: var(--slate); }.updates-aside h3 { margin-bottom: 18px; font-size: 18px; }.updates-aside p { color: #c7d5ce; font-size: 13px; }.updates-aside button { min-height: 38px; padding: 0 12px; border: 1px solid #93afa2; color: #fff; background: transparent; cursor: pointer; font-size: 12px; font-weight: 800; }.updates-aside button:hover, .updates-aside button:focus-visible { border-color: var(--aqua); color: var(--slate); background: var(--aqua); }

.site-dialog { width: min(520px, calc(100% - 32px)); padding: 0; border: 1px solid var(--slate); color: var(--ink); box-shadow: 10px 10px 0 var(--aqua); }.site-dialog::backdrop { background: rgba(24, 34, 31, .5); }.dialog-body { padding: 30px; }.dialog-body p { color: var(--muted); font-size: 14px; }.dialog-list { margin: 21px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }.dialog-list li { padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 13px; }.dialog-list b { display: inline-block; width: 85px; color: var(--leaf); }.dialog-close { min-height: 36px; padding: 0 13px; border: 0; color: #fff; background: var(--leaf); cursor: pointer; font-size: 12px; font-weight: 800; }

.site-footer { color: #dce5df; background: var(--slate); }.site-footer__inner { padding: 44px 0 25px; }.footer-top { display: flex; justify-content: space-between; gap: 30px; padding-bottom: 35px; border-bottom: 1px solid #4e605b; }.footer-title { max-width: 430px; margin: 0; font-size: 18px; line-height: 1.45; }.record-slot { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 22px; color: #aebeb7; font-size: 12px; }.record-links { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }.record-placeholder { display: inline-flex; align-items: center; height: 32px; padding: 0 10px; border: 1px dashed #71817b; color: #d5e0da; font-size: 11px; line-height: 1; white-space: nowrap; }.police-record { gap: 7px; }.police-record img { display: block; flex: 0 0 16px; width: 16px; height: 16px; object-fit: contain; }.record-placeholder:hover { border-color: #d5e0da; color: #fff; }.copyright { color: #81918b; }

.reveal.is-visible { animation: reveal-in .55s ease both; } @keyframes reveal-in { from { transform: translateY(20px); } to { transform: translateY(0); } }

@media (max-width: 800px) {
  .nav, .hero, .works, .about, .updates, .site-footer__inner, .process, .site-summary__inner { width: min(100% - 32px, var(--max)); }
  .nav { min-height: 61px; }.nav-links { display: none; }.hero { grid-template-columns: 1fr; gap: 45px; min-height: auto; padding: 57px 0 68px; } h1 { font-size: clamp(40px, 12vw, 58px); }.hero-workbench { min-height: 355px; padding: 12px; box-shadow: 8px 8px 0 #dde7e1; }.workbench-body { gap: 10px; padding-top: 12px; }.index-window { min-height: 280px; }.index-grid { height: 181px; padding: 9px; }.inspector { gap: 7px; }.prop { padding: 8px; }.hero-stamp { right: -9px; bottom: -28px; width: 91px; height: 91px; font-size: 11px; }.section-top, .footer-top, .record-slot { flex-direction: column; align-items: start; }.projects { grid-template-columns: 1fr; gap: 37px; }.project-meta p { min-height: 0; }.site-summary__inner { grid-template-columns: repeat(2, 1fr); }.summary-item:nth-child(3) { border-left: 0; }.process, .updates-grid, .about { grid-template-columns: 1fr; gap: 45px; }.process { padding: 70px 0; }.works, .updates { padding: 70px 0; }.about { padding: 70px 0; }.updates-grid { gap: 42px; }
}

@media (max-width: 430px) {
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }.workbench-body { grid-template-columns: 1fr; }.inspector { display: none; }.index-window { min-height: 270px; }.site-summary__inner { grid-template-columns: 1fr; }.summary-item, .summary-item:nth-child(3) { min-height: 88px; border-bottom: 1px solid var(--line); border-left: 0; }.summary-item:last-child { border-bottom: 0; }.process-step { grid-template-columns: 40px 1fr; }.state-chip { grid-column: 2; justify-self: start; }.update-item { grid-template-columns: 1fr; gap: 5px; }
}
