@charset "UTF-8";

:root {
  --bg: #f8f7f3;
  --surface: #fffefa;
  --ink: #282b24;
  --muted: #77796f;
  --line: #e2e3da;
  --accent: #c65a2a;
  --orange: #e37e50;
  --tag: #f0f0e9;
  --serif: Georgia, "Noto Serif SC", "Songti SC", "SimSun", serif;
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-synthesis: none;
  color: var(--ink);
  background: var(--bg);
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
* { box-sizing: border-box; }
body { margin: 0; font-size: 14px; line-height: 1.75; }
button, input { font: inherit; }
button, a, input { -webkit-tap-highlight-color: transparent; }
button, a { touch-action: manipulation; }
button { color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
button { border: 0; }
button:focus-visible, a:focus-visible, input:focus-visible { outline: 3px solid var(--accent); outline-offset: 5px; }
::selection { background: #edc3a6; color: #282b24; }
[hidden] { display: none !important; }
.icon { width: 21px; height: 21px; stroke: currentColor; stroke-width: 1.65; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.icon-definitions { position: absolute; width: 0; height: 0; overflow: hidden; }
.page-shell { max-width: 1256px; padding: 0 52px; margin: auto; }
.site-header { display: flex; align-items: center; gap: 28px; height: 108px; border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 11px; font-size: 25px; font-weight: 750; letter-spacing: -1.2px; }
.brand-mark { position: relative; display: flex; align-items: center; padding-left: 11px; width: 36px; height: 38px; color: var(--bg); background: var(--ink); border-radius: 10px; font-size: 26px; line-height: 1; }
.brand-mark > span { position: absolute; color: var(--orange); top: 2px; right: 2px; font-size: 19px; }
.brand-dot { color: var(--accent); }
.main-nav { margin-left: auto; display: flex; gap: 32px; align-items: center; font-size: 13px; }
.main-nav a { transition: color .18s; }
.main-nav a:hover, .text-link:hover, .site-footer a:hover { color: var(--accent); }
.nav-link > span { color: var(--muted); font-family: monospace; font-size: 10px; vertical-align: super; margin-left: 3px; }
.nav-github { display: flex; align-items: center; gap: 4px; }
.nav-github .icon { width: 16px; height: 16px; }
.theme-toggle, .icon-button { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: transparent; }
.theme-toggle:hover, .icon-button:hover { background: var(--tag); }
.theme-toggle .icon { width: 17px; height: 17px; }
.theme-toggle { transition: transform .18s ease, background-color .18s ease; }
.theme-toggle:hover { transform: rotate(-12deg) scale(1.06); }
.theme-toggle:active { transform: rotate(-12deg) scale(.92); }
.sun-icon { display: none; }

/* 暗色从按钮向外展开，回到浅色时让旧的暗色快照收回按钮。 */
:root[data-theme-transition]::view-transition-group(root) { animation: none; }
:root[data-theme-transition]::view-transition-old(root),
:root[data-theme-transition]::view-transition-new(root) { animation: none; mix-blend-mode: normal; }
:root[data-theme-transition]::view-transition-image-pair(root) { isolation: isolate; }
:root[data-theme-transition="expand"]::view-transition-old(root),
:root[data-theme-transition="contract"]::view-transition-new(root) { z-index: 1; }
:root[data-theme-transition="expand"]::view-transition-new(root) { z-index: 2; animation: theme-circle-expand 560ms cubic-bezier(.4, 0, .2, 1) both; }
:root[data-theme-transition="contract"]::view-transition-old(root) { z-index: 2; animation: theme-circle-expand 560ms cubic-bezier(.4, 0, .2, 1) both reverse; }
@keyframes theme-circle-expand {
  from { clip-path: circle(0% at var(--theme-origin-x) var(--theme-origin-y)); }
  to { clip-path: circle(var(--theme-radius) at var(--theme-origin-x) var(--theme-origin-y)); }
}
.hero { display: grid; grid-template-columns: 1.45fr 1fr; gap: 58px; align-items: center; padding: 75px 0 73px; }
.eyebrow { font-size: 11px; font-weight: 500; letter-spacing: .9px; display: flex; align-items: center; gap: 9px; margin: 0; }
.status-dot { width: 6px; height: 6px; background: #698371; border-radius: 50%; display: inline-block; flex: none; }
.eyebrow-divider { color: #b6b8ad; margin: 0 3px; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-family: var(--serif); font-size: clamp(36px, 4vw, 51px); font-weight: 600; line-height: 1.5; letter-spacing: -1.7px; margin: 23px 0 20px; }
.hero-emphasis { white-space: nowrap; }
.orange-dot { color: var(--accent); }
.hero-description { color: var(--muted); font-size: 14px; line-height: 2; margin-bottom: 26px; }
.hero-description strong { font-weight: 500; color: var(--ink); }
.hero-actions { display: flex; align-items: center; gap: 27px; }
.button { min-height: 45px; display: inline-flex; align-items: center; justify-content: center; gap: 22px; border-radius: 7px; font-size: 12px; padding: 11px 20px; transition: background .2s, transform .2s; }
.button-dark { background: var(--ink); color: var(--bg); }
.button-dark:hover { transform: translateY(-2px); background: var(--accent); color: #fff; }
.button-outline { border: 1px solid var(--line); background: transparent; color: var(--ink); }
.button-outline:hover { background: var(--tag); }
.button .icon { width: 18px; height: 18px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; }
.text-link > span { font-size: 18px; }
.hero-note { margin-top: 34px; display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 10px; letter-spacing: .3px; }
.tiny-cross { font-family: monospace; font-size: 18px; color: var(--accent); }
.workbench { margin-top: 10px; border: 1px solid #dfdfd4; border-radius: 12px; background: #f0f0e7; overflow: hidden; transform: rotate(2deg); box-shadow: 5px 7px 0 #e9e9df; }
.workbench-top { display: flex; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid #dfdfd4; }
.mono { font: 9px/1.5 "Cascadia Code", Consolas, monospace; letter-spacing: 1.5px; }
.workbench-dots { color: #b8bcaf; letter-spacing: 3px; font-size: 7px; }
.orbit-art { height: 245px; position: relative; display: grid; place-items: center; background-image: radial-gradient(#d1d5c8 .8px, transparent .8px); background-size: 16px 16px; overflow: hidden; }
.orbit { position: absolute; border: 1px solid #bec5b6; border-radius: 50%; width: 265px; height: 160px; transform: rotate(-31deg); }
.orbit-two { transform: rotate(43deg); }
.orbit-center { width: 120px; height: 120px; border: 1px solid #b9c3ad; background: #e2e7d5; border-radius: 26px; display: flex; flex-direction: column; align-items: center; justify-content: center; transform: rotate(-8deg); box-shadow: 5px 6px 0 #ccd4be; }
.orbit-center > span { font-family: Georgia, serif; font-style: italic; font-size: 48px; line-height: 1.25; letter-spacing: -4px; }
.orbit-center > span > span { color: var(--accent); }
.orbit-center small { font: 7px/2 monospace; letter-spacing: 1.2px; margin-top: 5px; }
.orbit-label { position: absolute; z-index: 1; border: 1px solid #d1d5c7; border-radius: 5px; padding: 4px 12px; background: #fffef8; font: 11px/1.6 Consolas, monospace; box-shadow: 0 2px 4px #28322307; }
.label-kotlin { top: 36px; left: 29px; transform: rotate(-10deg); }
.label-agent { top: 70px; right: 24px; transform: rotate(7deg); }
.label-tools { bottom: 31px; left: 63px; transform: rotate(-6deg); }
.orbit-spark { position: absolute; right: 54px; bottom: 21px; color: var(--accent); font-size: 44px; font-weight: 400; }
.orbit-point { position: absolute; left: 52px; top: 142px; width: 9px; height: 9px; background: #8c9c7a; border: 3px solid #f0f0e7; outline: 1px solid #8c9c7a; border-radius: 50%; }
.workbench-bottom { border-top: 1px solid #dfdfd4; padding: 14px 20px 17px; display: flex; align-items: center; justify-content: space-between; }
.workbench-bottom .mono { color: #828676; font-size: 8px; }
.workbench-bottom p { margin: 6px 0 0; font-family: var(--serif); font-size: 14px; }
.workbench-bottom .icon { width: 24px; height: 24px; color: #828676; }
.projects-section { border-top: 1px solid var(--line); padding-top: 42px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.section-kicker { color: var(--muted); font-size: 9px; letter-spacing: 1.4px; margin-bottom: 10px; }
h2 { font-family: var(--serif); font-size: 27px; line-height: 1.5; font-weight: 600; letter-spacing: -.7px; margin-bottom: 0; }
.heading-dot { color: var(--accent); margin-left: 3px; }
.section-aside { font-size: 11px; color: var(--muted); margin: 0 0 6px; }
.project-toolbar { display: flex; justify-content: space-between; gap: 15px; align-items: center; margin: 28px 0 25px; }
.filters { display: flex; flex-wrap: wrap; gap: 5px; }
.filter { min-height: 36px; padding: 7px 12px; background: transparent; color: var(--muted); border-radius: 6px; font-size: 11px; white-space: nowrap; transition: background .15s, color .15s; }
.filter > span { display: inline-block; margin-left: 5px; font-size: 9px; opacity: .7; }
.filter:hover { background: var(--tag); color: var(--ink); }
.filter.active { background: var(--ink); color: var(--bg); }
.search-box { display: flex; align-items: center; gap: 7px; min-width: 180px; width: 213px; min-height: 36px; border: 1px solid var(--line); border-radius: 6px; padding: 0 10px; background: var(--surface); color: var(--muted); }
.search-box > .icon { width: 15px; height: 15px; }
.search-box input { width: 100%; min-width: 0; border: 0; background: transparent; color: var(--ink); font-size: 11px; padding: 7px 0; }
.search-box input:focus { outline: none; }
.search-box:focus-within { outline: 2px solid var(--accent); outline-offset: 3px; }
.search-box input::placeholder { color: var(--muted); opacity: 1; }
kbd { border: 1px solid var(--line); border-radius: 3px; font: 10px/16px monospace; text-align: center; min-width: 17px; }
.project-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 18px; margin-top: 25px; }
.project-card { grid-column: span 2; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 23px 23px 0; display: flex; flex-direction: column; min-width: 0; transition: transform .2s, border-color .2s, box-shadow .2s; }
.project-card:hover { transform: translateY(-3px); border-color: #bdc2b4; box-shadow: 0 7px 20px #282b2407; }
.project-card.featured { grid-column: span 3; padding: 26px 27px 0; }
.toolbox-card { background: #fcfaf5; }
.share-card { background: #f6f9f4; }
.card-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 19px; }
.project-icon { display: grid; place-items: center; width: 41px; height: 41px; border-radius: 11px; }
.project-icon .icon { width: 21px; height: 21px; }
.peach { background: #f2dfcf; color: #aa6848; }
.mint { background: #dfe9dc; color: #5c7960; }
.lavender { background: #e9e2f2; color: #7f65a1; }
.blue { background: #e0eaf2; color: #547d9b; }
.sage { background: #e6ebde; color: #738755; }
.sand { background: #eee5d7; color: #967d53; }
.rose { background: #f2e1df; color: #b06c68; }
.mauve { background: #e7e3ee; color: #7a7194; }
.project-type { font-size: 9px; color: var(--muted); letter-spacing: .5px; }
.card-index { margin-left: 8px; color: #909487; font: 9px monospace; }
h3 { font-size: 18px; letter-spacing: -.4px; line-height: 1.5; margin-bottom: 3px; font-weight: 650; }
.featured h3 { font-size: 22px; }
.project-slug { font: 9px/1.7 "Cascadia Code", Consolas, monospace; color: var(--muted); margin: 0 0 13px; letter-spacing: .2px; }
.project-description { color: var(--muted); font-size: 11px; line-height: 1.95; margin-bottom: 20px; }
.featured .project-description { font-size: 12px; max-width: 400px; min-height: 47px; margin-bottom: 20px; }
.tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: auto; padding-bottom: 21px; }
.tags > span { padding: 2px 7px; border-radius: 4px; background: var(--tag); font-size: 8px; color: var(--muted); line-height: 1.9; }
.card-footer { border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 4px 8px; min-height: 55px; font-size: 10px; }
.card-footer a { display: flex; align-items: center; gap: 6px; min-height: 40px; }
.card-footer .live-link { color: var(--accent); font-weight: 600; }
.card-footer a:hover, .detail-button:hover { color: var(--accent); }
.card-footer .icon { width: 14px; height: 14px; }
.card-footer .link-arrow { width: 12px; height: 12px; color: var(--muted); }
.detail-button { min-height: 40px; display: flex; align-items: center; gap: 6px; background: transparent; font-size: 10px; padding: 8px 0 8px 8px; }
.private-label { color: var(--muted); display: flex; gap: 6px; align-items: center; }
.private-label > span { width: 5px; height: 5px; border: 1px solid var(--muted); border-radius: 50%; }
.toolbox-preview, .chat-preview { height: 168px; background: #fffefa; border: 1px solid #e4e3d9; border-radius: 7px; margin: 0 0 21px; overflow: hidden; color: #575d51; user-select: none; }
.toolbox-preview { display: flex; }
.preview-sidebar { width: 31px; display: flex; flex-direction: column; align-items: center; gap: 8px; background: #f0f0e9; border-right: 1px solid #e3e4d9; font-size: 15px; color: #93978b; }
.preview-sidebar > span { width: 22px; height: 23px; text-align: center; line-height: 23px; }
.preview-sidebar .mini-brand { color: #987659; margin-top: 4px; font-size: 18px; }
.preview-sidebar .mini-active { background: #dfe5d5; color: #647551; border-radius: 3px; }
.preview-main { flex: 1; min-width: 0; }
.preview-tabs { height: 31px; display: flex; align-items: center; gap: 18px; border-bottom: 1px solid #e9e9e0; padding: 0 12px; font-size: 8px; color: #8b8f83; }
.preview-tabs .selected { height: 31px; border-bottom: 2px solid #919f7c; color: #58614e; line-height: 31px; }
.preview-tabs i { margin-left: auto; color: #95a777; font-size: 6px; }
.preview-code { padding: 12px 0 10px; display: grid; grid-template-columns: 33px 1fr; font: 9px/1.9 Consolas, monospace; }
.line-number { text-align: center; color: #b6b8ad; }
.preview-code b { color: #aa805c; font-weight: 400; }
.preview-table { display: grid; grid-template-columns: 1.8fr .7fr .55fr; font-size: 7px; white-space: nowrap; }
.preview-table > span { padding: 4px 8px; border-top: 1px solid #ecece5; overflow: hidden; }
.preview-table > span:nth-child(-n+3) { background: #f3f3ed; color: #929688; }
.table-ready { color: #7d9465; }
.chat-preview { padding: 0 15px; }
.chat-preview-heading { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #e8ece2; font-size: 8px; }
.chat-preview-heading > span:first-child { display: flex; align-items: center; gap: 5px; }
.chat-preview-heading i { width: 4px; height: 4px; background: #88a278; border-radius: 50%; }
.chat-preview-heading > span:last-child { color: #89967d; font-size: 7px; }
.chat-line { display: flex; align-items: flex-start; gap: 9px; font-size: 8px; margin-top: 11px; }
.chat-avatar { width: 21px; height: 21px; display: grid; place-items: center; border-radius: 5px; flex: none; font: 9px Georgia, serif; }
.user-avatar { background: #edf0e6; color: #7a8668; }
.ai-avatar { background: #f4e7da; color: #b88158; font-size: 16px; }
.chat-line > span:last-child { padding-top: 3px; }
.chat-line > div { flex: 1; }
.chat-text-line { height: 4px; background: #eff1e9; width: 88%; margin-top: 7px; border-radius: 2px; }
.chat-text-line.short { width: 64%; margin-top: 5px; }
.chat-preview-footer { display: flex; gap: 6px; font-size: 7px; align-items: center; margin: 13px 0 0 30px; color: #909888; }
.chat-preview-footer > span:not(:last-child) { border: 1px solid #e3e8da; border-radius: 3px; padding: 0 4px; }
.chat-file { margin-left: auto; }
.projects-footnote { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--muted); font-size: 10px; margin: 27px 0 53px; }
.projects-footnote .status-dot { width: 4px; height: 4px; }
.about-section { border-top: 1px solid var(--line); padding: 42px 0 49px; display: grid; grid-template-columns: 1fr 1.65fr; gap: 50px; }
.about-section h2 { font-size: 24px; }
.profile-sign { font: italic 45px/1 Georgia, serif; letter-spacing: -3px; margin: 32px 0 9px; }
.profile-sign > span { display: inline-block; color: var(--accent); font-style: normal; font-size: 25px; margin-left: 13px; vertical-align: top; }
.profile-role { color: var(--muted); font: 10px/2 Consolas, monospace; margin-bottom: 0; }
.about-copy { padding-top: 4px; color: var(--muted); font-size: 12px; line-height: 2.15; }
.about-copy > p { margin-bottom: 15px; }
.about-copy > p:first-child { color: var(--ink); font-size: 13px; }
.about-copy strong { color: var(--ink); font-weight: 500; }
.about-bottom { display: flex; align-items: center; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 22px; }
.about-values { display: flex; gap: 15px; font-size: 9px; }
.about-values > span::before { content: "+"; color: var(--accent); margin-right: 5px; }
.about-bottom .text-link { color: var(--ink); font-size: 10px; }
.about-bottom .icon { width: 15px; height: 15px; }
.site-footer { border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0 29px; font-size: 9px; color: var(--muted); }
.site-footer p { margin: 0; }
.footer-divider { margin: 0 12px; color: #b0b4a6; }
.footer-craft > span { color: var(--accent); display: inline-block; margin-left: 5px; font-size: 15px; vertical-align: middle; }
.empty-state { text-align: center; padding: 65px 0; color: var(--muted); }
.empty-state > .icon { width: 32px; height: 32px; margin-bottom: 15px; }
.empty-state h3 { color: var(--ink); margin-bottom: 10px; }
.empty-state .button { margin-top: 5px; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 20px; top: -100px; z-index: 100; padding: 10px 18px; background: var(--ink); color: var(--bg); border-radius: 5px; }
.skip-link:focus { top: 10px; }
.dialog-open { overflow: hidden; }
dialog { width: min(600px, calc(100% - 32px)); max-height: 85dvh; padding: 27px 32px 32px; background: var(--surface); color: var(--ink); border: 1px solid var(--line); border-radius: 15px; box-shadow: 0 24px 90px #0003; }
dialog::backdrop { background: #20281ca6; backdrop-filter: blur(5px); }
.dialog-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.dialog-top .eyebrow { color: var(--muted); }
dialog h2 { font-size: 29px; margin-bottom: 5px; }
dialog .project-slug { margin-bottom: 23px; }
#dialog-content { color: var(--muted); font-size: 13px; line-height: 1.95; }
#dialog-content ul { padding-left: 21px; margin: 20px 0; }
#dialog-content li { padding-left: 3px; margin-bottom: 10px; }
#dialog-content li::marker { color: var(--accent); }
.detail-note { background: var(--tag); border-left: 2px solid var(--orange); border-radius: 0 5px 5px 0; padding: 12px 15px; font-size: 11px; }
#dialog-tags { margin-top: 20px; padding-bottom: 16px; }
#dialog-footer { display: flex; flex-wrap: wrap; gap: 10px; }
#dialog-footer .button { gap: 10px; }
#dialog-footer:empty { display: none; }
.is-filtered .project-card { grid-column: span 3; }

:root[data-theme="dark"] { --bg: #191c18; --surface: #22261f; --ink: #edeee5; --muted: #a5ad9c; --line: #363d30; --accent: #efaa7f; --orange: #eaa278; --tag: #2e3528; color-scheme: dark; }
[data-theme="dark"] .moon-icon { display: none; }
[data-theme="dark"] .sun-icon { display: block; }
[data-theme="dark"] .workbench { color: #dce4d1; background: #272e22; border-color: #48503e; box-shadow: 5px 7px 0 #303827; }
[data-theme="dark"] .workbench-top, [data-theme="dark"] .workbench-bottom { border-color: #48503e; }
[data-theme="dark"] .orbit-art { background-image: radial-gradient(#4b573e .8px, transparent .8px); }
[data-theme="dark"] .orbit { border-color: #566347; }
[data-theme="dark"] .orbit-center { background: #35402a; border-color: #647153; box-shadow: 5px 6px 0 #455338; }
[data-theme="dark"] .orbit-label { background: #333d2b; border-color: #626c55; }
[data-theme="dark"] .workbench-bottom .mono, [data-theme="dark"] .workbench-bottom .icon { color: #a6b097; }
[data-theme="dark"] .toolbox-card { background: #29271f; }
[data-theme="dark"] .share-card { background: #222a20; }
[data-theme="dark"] .project-icon { filter: brightness(.75) saturate(.7); color: #242720; }
[data-theme="dark"] .toolbox-preview, [data-theme="dark"] .chat-preview { filter: brightness(.76) saturate(.65); }

@media (min-width: 1440px) { .page-shell { max-width: 1288px; } .hero { padding-top: 83px; padding-bottom: 83px; } h1 { font-size: 54px; } }
@media (max-width: 1050px) { .page-shell { padding: 0 35px; } .hero { gap: 30px; } h1 { font-size: 40px; } .project-toolbar { flex-wrap: wrap; } .project-card { padding: 20px 18px 0; } h3 { font-size: 17px; } .card-index { margin-left: 3px; } .project-type { font-size: 8px; } .about-section { gap: 30px; } }
@media (max-width: 850px) { .hero { grid-template-columns: 1.3fr 1fr; gap: 24px; padding: 52px 0; } h1 { font-size: 34px; } .hero-description { font-size: 12px; } .eyebrow { font-size: 9px; } .hero-actions { gap: 18px; } .orbit-art { height: 220px; } .orbit { width: 220px; height: 130px; } .orbit-center { width: 95px; height: 95px; } .orbit-center > span { font-size: 39px; } .label-kotlin { left: 15px; top: 30px; } .label-agent { right: 10px; top: 63px; } .label-tools { left: 29px; bottom: 25px; } .orbit-spark { right: 35px; bottom: 10px; } .workbench-bottom p { font-size: 12px; } .project-card { grid-column: span 3; } .featured .tags { padding-bottom: 15px; } .featured .project-description { min-height: 71px; } .preview-table { font-size: 6px; } .preview-table > span { padding-left: 4px; padding-right: 3px; } .chat-file { display: none; } .about-section { grid-template-columns: 1fr 1.5fr; } .footer-craft { display: none; } }
@media (max-width: 640px) { .page-shell { padding: 0 23px; } .site-header { height: 81px; gap: 17px; } .brand { font-size: 23px; } .brand-mark { width: 31px; height: 33px; padding-left: 9px; font-size: 23px; border-radius: 8px; } .brand-mark > span { font-size: 16px; } .main-nav { gap: 18px; font-size: 11px; } .nav-link > span { display: none; } .nav-github { display: none; } .theme-toggle { width: 33px; height: 33px; } .hero { grid-template-columns: 1fr; gap: 38px; padding: 42px 0 45px; } .hero .eyebrow { font-size: 10px; } h1 { font-size: clamp(33px, 8.5vw, 46px); line-height: 1.5; margin-top: 21px; } .hero-description { font-size: 13px; } .hero-actions { gap: 25px; } .hero-note { margin-top: 25px; } .workbench { max-width: 365px; width: 92%; justify-self: center; margin: 0 0 3px; transform: rotate(1.5deg); } .orbit-art { height: 190px; } .orbit-center { width: 95px; height: 95px; } .orbit { width: 245px; height: 130px; } .label-kotlin { left: 37px; top: 20px; } .label-agent { right: 20px; top: 57px; } .label-tools { left: 48px; bottom: 15px; } .orbit-point { left: 42px; top: 119px; } .orbit-spark { right: 45px; bottom: 0; } .workbench-top { padding: 11px 18px; } .workbench-bottom { padding: 9px 18px 12px; } .workbench-bottom p { margin-top: 2px; } .projects-section { padding-top: 31px; } .section-heading { display: block; } h2 { font-size: 25px; } .section-aside { margin-top: 9px; font-size: 10px; } .project-toolbar { margin-top: 22px; gap: 14px; } .filters { gap: 3px; } .filter { font-size: 10px; padding: 7px 9px; } .search-box { width: 100%; min-height: 40px; } .search-box input { font-size: 12px; } .project-grid { grid-template-columns: 1fr; gap: 17px; margin-top: 19px; } .project-card, .project-card.featured, .is-filtered .project-card { grid-column: auto; padding: 24px 24px 0; } h3 { font-size: 20px; } .project-slug { font-size: 10px; } .project-type { font-size: 10px; } .project-description, .featured .project-description { font-size: 12px; min-height: 0; } .tags > span { font-size: 9px; } .card-top { margin-bottom: 17px; } .project-icon { width: 43px; height: 43px; } .card-footer { min-height: 58px; font-size: 11px; } .detail-button { font-size: 11px; } .preview-table { font-size: 7px; } .preview-table > span { padding-left: 7px; } .chat-file { display: inline; } .projects-footnote { font-size: 9px; margin: 25px 0 35px; } .about-section { grid-template-columns: 1fr; gap: 23px; padding: 30px 0; } .profile-sign { margin-top: 22px; font-size: 38px; } .about-copy { font-size: 12px; } .about-bottom { margin-top: 18px; } .site-footer { padding: 20px 0 24px; font-size: 8px; gap: 10px; } .footer-divider { margin: 0 7px; } dialog { padding: 20px 23px 25px; } dialog h2 { font-size: 25px; } }
@media (prefers-reduced-motion: reduce) { :root { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
@media (prefers-reduced-motion: reduce) {
  .theme-toggle:hover, .theme-toggle:active { transform: none; }
  :root[data-theme-transition]::view-transition-old(root),
  :root[data-theme-transition]::view-transition-new(root) { animation: none !important; }
}
@media print { :root { --bg: white; --surface: white; --ink: black; --muted: #444; } .hero { padding: 30px 0; } .workbench, .project-toolbar, .theme-toggle, .detail-button, .main-nav, .toolbox-preview, .chat-preview { display: none !important; } .page-shell { padding: 0; } .project-card { break-inside: avoid; } .project-card[hidden] { display: flex !important; } .project-grid { grid-template-columns: repeat(2, 1fr); } .project-card, .project-card.featured { grid-column: auto; } .hero { grid-template-columns: 1fr; } .about-section { break-inside: avoid; } }
