:root {
  color-scheme: light dark;
  --bg: #f8f9fc;
  --surface: #ffffff;
  --surface-soft: #f0f2f8;
  --text: #1c2231;
  --text-soft: #687187;
  --line: #dde2ec;
  --accent: #bd4e7c;
  --accent-strong: #96365f;
  --accent-soft: #f8e2ec;
  --shadow: 0 18px 42px rgb(28 34 49 / 7%);
  --shadow-hover: 0 24px 52px rgb(28 34 49 / 13%);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #11131a;
  --surface: #191c27;
  --surface-soft: #222634;
  --text: #f0f2f9;
  --text-soft: #adb4c6;
  --line: #353c4e;
  --accent: #ffadc8;
  --accent-strong: #ffd1df;
  --accent-soft: #4a2638;
  --shadow: 0 18px 42px rgb(0 0 0 / 18%);
  --shadow-hover: 0 24px 52px rgb(0 0 0 / 30%);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    color-scheme: dark;
    --bg: #11131a;
    --surface: #191c27;
    --surface-soft: #222634;
    --text: #f0f2f9;
    --text-soft: #adb4c6;
    --line: #353c4e;
    --accent: #ffadc8;
    --accent-strong: #ffd1df;
    --accent-soft: #4a2638;
    --shadow: 0 18px 42px rgb(0 0 0 / 18%);
    --shadow-hover: 0 24px 52px rgb(0 0 0 / 30%);
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container { width: min(1120px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 112px 0; }
.section + .section { border-top: 1px solid var(--line); }

.skip-link {
  position: fixed;
  z-index: 10;
  top: 12px;
  left: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); outline: 2px solid var(--accent); outline-offset: 2px; }

.site-header {
  position: sticky;
  z-index: 5;
  top: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(16px);
}
.nav-wrap { display: flex; min-height: 72px; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; margin-right: auto; font-size: 0.96rem; font-weight: 760; letter-spacing: -0.025em; }
.brand-mark { display: block; width: 32px; height: 32px; flex: 0 0 auto; border-radius: 9px; object-fit: cover; object-position: center; box-shadow: 0 3px 10px color-mix(in srgb, #000 24%, transparent); }
.nav-links { display: flex; gap: 24px; color: var(--text-soft); font-size: 0.88rem; }
.nav-links a { transition: color 180ms ease; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--text); }
.theme-toggle { display: inline-flex; align-items: center; justify-content: center; gap: 7px; min-width: 70px; padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--text); cursor: pointer; font-size: 0.78rem; transition: border-color 180ms ease, transform 180ms ease, background 180ms ease; }
.theme-toggle:hover { border-color: var(--accent); transform: translateY(-1px); }
.theme-toggle:active { transform: translateY(0); }
.theme-icon { font-size: 1rem; line-height: 1; }

.hero { min-height: min(690px, calc(100svh - 72px)); display: grid; align-items: center; padding-top: 82px; padding-bottom: 82px; border: 0; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr); align-items: end; gap: clamp(48px, 9vw, 138px); }
.eyebrow { margin: 0 0 16px; color: var(--accent); font-size: 0.74rem; font-weight: 750; letter-spacing: 0.14em; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 760; letter-spacing: -0.045em; line-height: 1.08; }
h1 { max-width: 10ch; margin-bottom: 22px; font-size: clamp(3.2rem, 7vw, 6.3rem); }
h2 { margin-bottom: 0; font-size: clamp(2rem, 3.5vw, 3.45rem); }
h3 { font-size: 1.45rem; }
.hero-tagline { max-width: 640px; margin-bottom: 13px; font-size: clamp(1.2rem, 2.2vw, 1.75rem); font-weight: 570; letter-spacing: -0.025em; line-height: 1.45; }
.hero-intro { max-width: 580px; margin-bottom: 32px; color: var(--text-soft); font-size: 1rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 45px; padding: 10px 17px; border: 1px solid transparent; border-radius: 9px; font-size: 0.9rem; font-weight: 700; transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.button:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 9px 20px rgb(28 34 49 / 12%); }
.button:active:not(:disabled) { transform: translateY(0); }
.button-primary { background: var(--accent); color: #fff; }
.button-primary:hover { background: var(--accent-strong); }
.button-secondary { border-color: var(--line); background: var(--surface); color: var(--text); }
.button-secondary:hover { border-color: var(--accent); }
.button-disabled { border-color: var(--line); background: var(--surface-soft); color: var(--text-soft); cursor: not-allowed; }

.hero-aside { min-height: 254px; padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); box-shadow: var(--shadow); }
.hero-aside-top { display: flex; justify-content: space-between; color: var(--text-soft); font-size: 0.76rem; }
.live-dot { display: inline-flex; align-items: center; gap: 7px; color: var(--accent); font-weight: 700; }
.live-dot::before { width: 6px; height: 6px; border-radius: 50%; background: currentColor; content: ""; box-shadow: 0 0 0 4px var(--accent-soft); }
.hero-aside p { max-width: 23ch; margin: 36px 0 26px; font-size: 1.12rem; font-weight: 630; letter-spacing: -0.025em; line-height: 1.45; }
.signal-lines { display: flex; align-items: end; height: 38px; gap: 5px; }
.signal-lines i { display: block; flex: 1; border-radius: 99px; background: var(--accent-soft); }
.signal-lines i:nth-child(1) { height: 22%; }.signal-lines i:nth-child(2) { height: 54%; }.signal-lines i:nth-child(3) { height: 88%; background: var(--accent); }.signal-lines i:nth-child(4) { height: 42%; }

.projects-section { background: color-mix(in srgb, var(--surface-soft) 33%, var(--bg)); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 34px; margin-bottom: 40px; }
.section-heading > p { max-width: 342px; margin: 0; color: var(--text-soft); font-size: 0.97rem; }
.project-grid { display: grid; isolation: isolate; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.project-card { position: relative; z-index: 0; display: grid; overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: var(--surface); box-shadow: var(--shadow); transform-origin: center; transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; }
.project-card:hover { border-color: color-mix(in srgb, var(--accent) 42%, var(--line)); box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.project-card-has-details { transition-duration: 400ms; transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1); }
.project-visual { position: relative; min-height: 218px; overflow: hidden; padding: 20px; color: #f3f5ff; isolation: isolate; }
.project-visual.has-cover { padding: 0; background: #10151d; }
.project-cover { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), filter 400ms ease; }
.project-cover-shade { position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgb(5 7 13 / 12%) 8%, rgb(5 7 13 / 86%) 100%); opacity: .3; pointer-events: none; transition: opacity 440ms cubic-bezier(0.22, 1, 0.36, 1); }
.project-cover-copy { position: absolute; z-index: 2; right: 20px; bottom: 18px; left: 20px; color: #fff8fc; filter: blur(4px); opacity: 0; pointer-events: none; transform: translateY(16px); transition: filter 360ms ease 80ms, opacity 300ms ease 80ms, transform 440ms cubic-bezier(0.22, 1, 0.36, 1) 80ms; }
.project-cover-subtitle, .project-cover-title, .project-cover-tagline, .project-cover-helper { margin: 0; text-shadow: 0 2px 13px rgb(0 0 0 / 48%); }
.project-cover-subtitle { margin-bottom: 4px; color: #ffc5d8; font-size: .61rem; font-weight: 800; letter-spacing: .17em; }
.project-cover-title { font-size: clamp(1.3rem, 2.6vw, 1.8rem); font-weight: 790; letter-spacing: -.045em; line-height: 1.08; }
.project-cover-tagline { margin-top: 5px; color: rgb(255 245 250 / 88%); font-size: .77rem; }
.project-cover-helper { margin-top: 4px; color: rgb(255 225 238 / 82%); font-size: .65rem; }
.visual-game { background: #64455f; }.visual-analyzer { background: #414b6d; }
.project-visual::before, .project-visual::after { position: absolute; z-index: -1; border-radius: 50%; content: ""; filter: blur(0); }
.visual-game::before { width: 270px; height: 270px; right: -88px; bottom: -163px; border: 1px solid rgb(255 240 247 / 45%); box-shadow: 0 0 0 34px rgb(255 240 247 / 8%), 0 0 0 69px rgb(255 240 247 / 6%); }.visual-game::after { width: 114px; height: 114px; left: 22%; top: 42%; background: #f0a6c2; opacity: .22; }
.visual-analyzer::before { width: 280px; height: 280px; top: -150px; left: -70px; background: #f3b4cd; opacity: .28; }.visual-analyzer::after { width: 210px; height: 210px; right: -85px; bottom: -82px; border: 1px solid rgb(255 240 247 / 50%); box-shadow: 0 0 0 27px rgb(255 240 247 / 8%), 0 0 0 54px rgb(255 240 247 / 5%); }
.visual-noise { position: absolute; z-index: -1; inset: 0; opacity: .16; background-image: linear-gradient(90deg, transparent 49%, rgb(255 255 255 / 50%) 50%, transparent 51%); background-size: 16px 16px; mask-image: linear-gradient(to bottom, #000, transparent); }
.visual-kicker { font-size: 0.69rem; font-weight: 800; letter-spacing: .13em; opacity: .85; }
.visual-symbol { position: absolute; right: 26px; bottom: 13px; font-size: 7.6rem; font-weight: 200; line-height: 1; letter-spacing: -.18em; opacity: .92; }
.visual-analyzer .visual-symbol { right: 30px; bottom: 20px; font-size: 6.2rem; transform: rotate(-24deg); }
.visual-bars { position: absolute; bottom: 23px; left: 20px; display: flex; align-items: end; gap: 5px; height: 52px; }
.visual-bars i { width: 8px; border-radius: 8px 8px 2px 2px; background: rgb(255 235 244 / 65%); }.visual-bars i:nth-child(1) { height: 28%; }.visual-bars i:nth-child(2) { height: 66%; }.visual-bars i:nth-child(3) { height: 43%; }.visual-bars i:nth-child(4) { height: 91%; background: #f5b8d0; }
.project-body { position: relative; display: flex; min-height: 305px; flex-direction: column; padding: 25px; }
.project-card-has-details .project-body::before { position: absolute; z-index: 0; inset: 0; background: radial-gradient(90% 72% at 100% 0%, rgb(197 90 150 / 13%), transparent 64%), linear-gradient(135deg, transparent 10%, rgb(93 60 113 / 10%) 100%); content: ""; opacity: 0; pointer-events: none; transition: opacity 440ms cubic-bezier(0.22, 1, 0.36, 1); }
.status { display: inline-flex; align-items: center; height: 24px; padding: 0 9px; border-radius: 999px; font-size: .72rem; font-weight: 720; transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 300ms ease, background 300ms ease; }
.project-visual-status { position: absolute; z-index: 3; top: 18px; right: 18px; backdrop-filter: blur(8px); }
.status-warm { background: #f6ead8; color: #84602d; }.status-cool { background: var(--accent-soft); color: var(--accent-strong); }.status-neutral { background: var(--surface-soft); color: var(--text-soft); }
:root[data-theme="dark"] .status-warm { background: #3c3020; color: #f0cf91; }
@media (prefers-color-scheme: dark) { :root:not([data-theme]) .status-warm { background: #3c3020; color: #f0cf91; } }
.project-default-content { position: relative; z-index: 1; display: flex; flex: 1; flex-direction: column; transition: opacity 260ms ease 440ms, transform 380ms cubic-bezier(0.22, 1, 0.36, 1) 440ms; }
.project-default-content h3 { margin: 7px 0 11px; }
.project-default-content > p { margin-bottom: 20px; color: var(--text-soft); font-size: .94rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 25px; padding: 0; list-style: none; }
.tag-list li { padding: 4px 8px; border: 1px solid var(--line); border-radius: 6px; color: var(--text-soft); font-size: .72rem; }
.project-details { position: absolute; z-index: 2; inset: 22px 25px 69px; overflow: hidden; filter: blur(4px); opacity: 0; pointer-events: none; transform: translateY(12px); transition: filter 360ms ease 110ms, opacity 280ms ease 110ms, transform 440ms cubic-bezier(0.22, 1, 0.36, 1) 110ms; }
.project-details-description { display: -webkit-box; margin: 0; overflow: hidden; color: var(--text-soft); font-size: .69rem; line-height: 1.43; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.project-rule-list { display: grid; gap: 2px; margin: 8px 0 7px; padding: 0; list-style: none; color: var(--text-soft); font-size: .66rem; line-height: 1.35; }
.project-rule-list li { display: flex; gap: 6px; opacity: 0; transform: translateY(6px); transition: opacity 220ms ease, transform 280ms cubic-bezier(0.22, 1, 0.36, 1); }
.project-rule-list li::before { flex: 0 0 auto; color: var(--accent); content: "•"; }
.project-rule-list li:nth-child(1) { transition-delay: 170ms; }.project-rule-list li:nth-child(2) { transition-delay: 220ms; }.project-rule-list li:nth-child(3) { transition-delay: 270ms; }.project-rule-list li:nth-child(4) { transition-delay: 320ms; }.project-rule-list li:nth-child(5) { transition-delay: 370ms; }
.project-detail-tags { display: flex; flex-wrap: wrap; gap: 4px; margin: 0; padding: 0; list-style: none; opacity: 0; transform: translateY(6px); transition: opacity 220ms ease 390ms, transform 280ms cubic-bezier(0.22, 1, 0.36, 1) 390ms; }
.project-detail-tags li { padding: 3px 6px; border: 1px solid color-mix(in srgb, var(--accent) 36%, var(--line)); border-radius: 5px; color: var(--accent-strong); font-size: .61rem; line-height: 1.2; }
.project-actions { position: relative; z-index: 3; display: flex; gap: 13px; align-items: center; margin-top: auto; }
.project-action { align-self: flex-start; }
.project-action > span[aria-hidden="true"] { display: inline-block; transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1); }
.project-action-secondary { border-color: color-mix(in srgb, var(--accent) 42%, var(--line)); background: transparent; color: var(--accent-strong); }
.project-detail-toggle { display: none; align-items: center; gap: 7px; min-height: 45px; padding: 10px 0; border: 0; background: transparent; color: var(--accent-strong); cursor: pointer; font-size: .82rem; font-weight: 720; }
.project-detail-toggle-icon { font-size: 1rem; line-height: 1; transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1); }

.project-card-has-details.is-expanded { z-index: 2; border-color: rgb(236 135 177 / 70%); box-shadow: 0 24px 58px rgb(197 90 150 / 22%); }
.project-card-has-details.is-expanded .project-cover { filter: brightness(1.08) contrast(1.05); transform: scale(1.06); }
.project-card-has-details.is-expanded .project-cover-shade { opacity: 1; }
.project-card-has-details.is-expanded .project-cover-copy { filter: blur(0); opacity: 1; transform: translateY(0); }
.project-card-has-details.is-expanded .project-body::before { opacity: 1; }
.project-card-has-details.is-expanded .status { box-shadow: 0 7px 17px rgb(197 90 150 / 24%), 0 0 0 1px rgb(236 135 177 / 30%); transform: translateY(-3px); }
.project-card-has-details.is-expanded .project-default-content { opacity: 0; pointer-events: none; transform: translateY(-8px); transition-delay: 0ms; }
.project-card-has-details.is-expanded .project-details { filter: blur(0); opacity: 1; pointer-events: auto; transform: translateY(0); }
.project-card-has-details.is-expanded .project-rule-list li, .project-card-has-details.is-expanded .project-detail-tags { opacity: 1; transform: translateY(0); }
.project-card-has-details.is-expanded .project-action { border-color: color-mix(in srgb, var(--accent) 70%, var(--line)); box-shadow: 0 10px 23px rgb(197 90 150 / 18%); transform: translateY(-3px); }
.project-card-has-details.is-expanded .project-action > span[aria-hidden="true"] { display: inline-block; transform: translate(3px, -2px); }
.project-card-has-details.is-expanded .project-detail-toggle-icon { transform: rotate(180deg); }

@media (hover: hover) and (pointer: fine) {
  .project-card-has-details:is(:hover, :focus-visible, :focus-within) { z-index: 2; border-color: rgb(236 135 177 / 70%); box-shadow: 0 24px 58px rgb(197 90 150 / 22%); transform: translateY(-5px) scale(1.035); }
  .project-card-has-details:is(:hover, :focus-visible, :focus-within) .project-cover { filter: brightness(1.08) contrast(1.05); transform: scale(1.06); }
  .project-card-has-details:is(:hover, :focus-visible, :focus-within) .project-cover-shade { opacity: 1; }
  .project-card-has-details:is(:hover, :focus-visible, :focus-within) .project-cover-copy { filter: blur(0); opacity: 1; transform: translateY(0); }
  .project-card-has-details:is(:hover, :focus-visible, :focus-within) .project-body::before { opacity: 1; }
  .project-card-has-details:is(:hover, :focus-visible, :focus-within) .status { box-shadow: 0 7px 17px rgb(197 90 150 / 24%), 0 0 0 1px rgb(236 135 177 / 30%); transform: translateY(-3px); }
  .project-card-has-details:is(:hover, :focus-visible, :focus-within) .project-default-content { opacity: 0; pointer-events: none; transform: translateY(-8px); transition-delay: 0ms; }
  .project-card-has-details:is(:hover, :focus-visible, :focus-within) .project-details { filter: blur(0); opacity: 1; pointer-events: auto; transform: translateY(0); }
  .project-card-has-details:is(:hover, :focus-visible, :focus-within) .project-rule-list li, .project-card-has-details:is(:hover, :focus-visible, :focus-within) .project-detail-tags { opacity: 1; transform: translateY(0); }
  .project-card-has-details:is(:hover, :focus-visible, :focus-within) .project-action { border-color: color-mix(in srgb, var(--accent) 70%, var(--line)); box-shadow: 0 10px 23px rgb(197 90 150 / 18%); transform: translateY(-3px); }
  .project-card-has-details:is(:hover, :focus-visible, :focus-within) .project-action > span[aria-hidden="true"] { display: inline-block; transform: translate(3px, -2px); }
}
.coming-soon { display: flex; align-items: center; gap: 17px; margin-top: 22px; padding: 21px 24px; border: 1px dashed var(--line); border-radius: 13px; color: var(--text-soft); }
.coming-soon-mark { display: grid; flex: 0 0 auto; width: 36px; height: 36px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--accent); font-size: 1.3rem; }
.coming-soon h3 { margin-bottom: 3px; color: var(--text); font-size: 1.04rem; letter-spacing: -.025em; }.coming-soon p { margin: 0; font-size: .88rem; }

.about-card { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: clamp(28px, 6vw, 72px); align-items: start; padding: clamp(30px, 6vw, 66px); border: 1px solid var(--line); border-radius: 16px; background: var(--surface); box-shadow: var(--shadow); }
.avatar { display: grid; width: 92px; height: 92px; place-items: center; border-radius: 50%; background: var(--accent-soft); color: var(--accent-strong); font-size: 2.4rem; font-weight: 750; letter-spacing: -.08em; }
.about-copy { max-width: 710px; }.about-copy h2 { margin-bottom: 19px; }.about-copy > p { margin-bottom: 24px; color: var(--text-soft); font-size: 1rem; }
.text-links { display: flex; flex-wrap: wrap; gap: 10px 22px; }.text-link { color: var(--accent-strong); font-size: .88rem; font-weight: 700; }.text-link:not(.is-pending):hover { text-decoration: underline; text-underline-offset: 4px; }.text-link small { margin-left: 3px; color: var(--text-soft); font-size: .77rem; font-weight: 500; }.is-pending { color: var(--text-soft); }

.contact-list { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.contact-item { display: grid; grid-template-columns: auto 1fr auto; min-height: 124px; gap: 17px; align-items: center; padding: 19px 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); transition: background 180ms ease, color 180ms ease; }.contact-item:first-child { border-left: 1px solid var(--line); }.contact-item:not(.is-pending):hover { background: var(--accent-soft); }.contact-index { align-self: start; color: var(--accent); font-size: .73rem; font-weight: 760; }.contact-content { display: grid; gap: 3px; }.contact-content strong { font-size: 1rem; letter-spacing: -.02em; }.contact-content small { color: var(--text-soft); font-size: .76rem; }.contact-arrow { color: var(--text-soft); font-size: 1.3rem; }.contact-item:not(.is-pending):hover .contact-arrow { color: var(--accent-strong); transform: translate(2px, -2px); }

.site-footer { padding: 27px 0; border-top: 1px solid var(--line); color: var(--text-soft); font-size: .8rem; }.footer-wrap { display: flex; justify-content: space-between; gap: 18px; }.footer-wrap p { margin: 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; }
.reveal { animation: fade-up 650ms both; animation-delay: var(--card-delay, 0ms); } @keyframes fade-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

@media (max-width: 760px) {
  .container { width: min(100% - 36px, 620px); }.section { padding: 75px 0; }.nav-wrap { min-height: 64px; gap: 14px; }.brand { font-size: .85rem; }.brand-mark { width: 28px; height: 28px; border-radius: 8px; }.nav-links { display: none; }.theme-toggle { min-width: 42px; padding: 8px 10px; }.theme-label { display: none; }
  .hero { min-height: auto; padding-top: 81px; padding-bottom: 80px; }.hero-grid { grid-template-columns: 1fr; gap: 42px; }.hero-aside { min-height: 205px; }.hero-aside p { margin: 27px 0 19px; }
  .section-heading { display: block; margin-bottom: 30px; }.section-heading > p { margin-top: 18px; }.project-grid { grid-template-columns: 1fr; }.project-body { min-height: 282px; }.project-visual { min-height: 198px; }.about-card { grid-template-columns: 1fr; gap: 24px; }.avatar { width: 70px; height: 70px; font-size: 1.9rem; }.contact-list { grid-template-columns: 1fr; }.contact-item, .contact-item:first-child { min-height: 92px; border-left: 1px solid var(--line); }.footer-wrap { display: block; }.footer-wrap p + p { margin-top: 5px; }
  .project-card-has-details .project-detail-toggle { display: inline-flex; }.project-card-has-details.is-expanded .project-body { min-height: 500px; }.project-card-has-details.is-expanded .project-details { bottom: 74px; }.project-card-has-details.is-expanded .project-details-description { -webkit-line-clamp: 3; }.project-card-has-details.is-expanded .project-actions { align-items: flex-end; }
  .project-card-has-secondary-action .project-actions { flex-wrap: wrap; row-gap: 0; }.project-card-has-secondary-action .project-detail-toggle { flex-basis: 100%; padding-bottom: 2px; }.project-card-has-secondary-action.is-expanded .project-body { min-height: 560px; }.project-card-has-secondary-action.is-expanded .project-details { bottom: 124px; }
}

@media (max-width: 430px) { h1 { font-size: 3rem; }.section { padding: 64px 0; }.hero-tagline { font-size: 1.18rem; }.project-body { padding: 21px; }.project-visual { padding: 17px; }.project-visual-status { top: 15px; right: 15px; }.project-card-has-details.is-expanded .project-body { min-height: 530px; }.project-card-has-details.is-expanded .project-details { inset: 20px 21px 74px; }.project-card-has-secondary-action.is-expanded .project-body { min-height: 590px; }.project-card-has-secondary-action.is-expanded .project-details { inset: 20px 21px 124px; }.coming-soon { align-items: flex-start; padding: 18px; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } }
