:root {
  --ink: #10110f;
  --muted: #676a63;
  --paper: #f6f7f2;
  --white: #fff;
  --line: #dfe1d9;
  --mint: #bff2df;
  --blue: #cbdcfb;
  --orange: #ffd6a6;
  --purple: #cab8f7;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  position: relative;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  letter-spacing: .012em;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--purple); color: var(--ink); }
:focus-visible { outline: 3px solid #704fd2; outline-offset: 4px; }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #704fd2, #5ccca6);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
}
.ambient { position: fixed; z-index: -1; border-radius: 50%; filter: blur(80px); opacity: .22; pointer-events: none; }
.ambient-one { display: none; }
.ambient-two { width: 360px; height: 360px; left: -180px; top: 110vh; background: var(--mint); animation: ambientFloat 18s ease-in-out infinite alternate-reverse; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(calc(100% - 40px), var(--max));
  height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(246,247,242,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16,17,15,.08);
  transition: height .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled { height: 72px; background: rgba(246,247,242,.94); box-shadow: 0 16px 42px rgba(21,23,18,.07); }
.brand { display: flex; align-items: center; gap: 10px; width: max-content; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font: 800 13px/1 Arial, sans-serif;
}
.brand-name { font-weight: 750; letter-spacing: .03em; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
  padding: 11px 17px;
  border-radius: 999px;
  color: #353732;
  font-weight: 650;
  font-size: 14px;
  transition: .2s ease;
}
.nav-link:hover, .nav-link.active { background: var(--ink); color: white; }
.header-contact {
  justify-self: end;
  padding-bottom: 3px;
  border-bottom: 1.5px solid var(--ink);
  font-weight: 700;
  font-size: 14px;
}
.menu-button { display: none; }
.mobile-nav { display: none; }

.section { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; scroll-margin-top: 110px; }
.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
  padding: 72px 0 88px;
}
.eyebrow { margin: 0 0 22px; font: 750 12px/1.2 Arial, sans-serif; letter-spacing: .16em; color: #4d504a; }
.eyebrow span { display: inline-block; width: 22px; height: 7px; margin-right: 10px; border-radius: 8px; background: var(--mint); }
.hero h1 { margin: 0; font-size: clamp(64px, 8vw, 116px); line-height: .98; letter-spacing: -.045em; font-weight: 790; }
.hero h1 strong { color: #704fd2; font-weight: inherit; }
.typewriter-title { min-height: 2.1em; }
.typewriter-line {
  display: block;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  border-right: .055em solid transparent;
}
.typewriter-greeting {
  animation: typeGreeting 1.05s steps(5, end) .28s both;
}
.typewriter-name {
  margin-top: .12em;
  animation:
    typeName .72s steps(3, end) 1.45s both,
    caretBlink .82s step-end 2.17s infinite;
}
.hero-lead { max-width: 670px; margin: 38px 0 15px; font-size: clamp(22px, 2.2vw, 32px); line-height: 1.5; font-weight: 700; letter-spacing: -.012em; }
.hero-intro { max-width: 670px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.85; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; gap: 28px; min-height: 54px; padding: 0 22px; border: 1.5px solid var(--ink); border-radius: 13px; font-weight: 750; transition: transform .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 7px 0 rgba(16,17,15,.13); }
.button-dark { background: var(--ink); color: white; }
.button-accent { border-color: #704fd2; background: #704fd2; color: white; }
.button-accent:hover { box-shadow: 0 7px 0 rgba(112,79,210,.2); }
.button-light { background: transparent; }
.hero-meta { display: flex; gap: 32px; margin-top: 55px; padding-top: 25px; border-top: 1px solid var(--line); }
.hero-meta div { display: flex; flex-direction: column; gap: 5px; }
.hero-meta b { font-size: 14px; }
.hero-meta span { color: var(--muted); font-size: 12px; }

.hero-visual { position: relative; min-height: 690px; display: flex; justify-content: center; align-items: flex-end; transform-style: preserve-3d; }
.portrait-stage { position: relative; width: min(100%, 540px); height: 690px; display: flex; align-items: flex-end; justify-content: center; }
.portrait-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4%;
  width: 88%;
  height: 76%;
  border: 1px solid rgba(16,17,15,.08);
  border-radius: 48% 48% 30% 30% / 38% 38% 22% 22%;
  background: linear-gradient(150deg, rgba(191,242,223,.82), rgba(203,220,251,.72) 56%, rgba(202,184,247,.7));
  box-shadow: 0 28px 70px rgba(74,72,108,.12);
  transform: translateX(-50%) rotate(-2deg);
}
.portrait-stage::after { content: ""; position: absolute; z-index: 1; inset: 11% 1% 4% 7%; border: 1px dashed rgba(16,17,15,.2); border-radius: 48% 48% 30% 30% / 38% 38% 22% 22%; transform: rotate(4deg); pointer-events: none; }
.portrait-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(.96) contrast(1.01) brightness(1.02) drop-shadow(0 24px 23px rgba(22,25,21,.17));
}
.portrait-swing-lines { position: absolute; z-index: 1; inset: 0 11% 6% 15%; display: flex; justify-content: space-between; pointer-events: none; }
.portrait-swing-lines i { width: 4px; border-radius: 999px; background: repeating-linear-gradient(to bottom, rgba(142,108,58,.72) 0 9px, rgba(255,255,255,.72) 9px 12px, rgba(142,108,58,.72) 12px 20px); box-shadow: 0 0 0 1px rgba(16,17,15,.08); }
.portrait-monogram { position: absolute; z-index: 1; right: -2%; bottom: 2%; color: rgba(255,255,255,.58); font: 850 164px/.8 Arial, sans-serif; letter-spacing: -.12em; transform: rotate(-5deg); }
.portrait-float { position: absolute; z-index: 4; min-width: 150px; padding: 13px 15px; display: flex; flex-direction: column; gap: 4px; border: 1px solid var(--ink); border-radius: 13px; background: rgba(255,255,255,.88); backdrop-filter: blur(12px); box-shadow: 5px 6px 0 rgba(16,17,15,.92); }
.portrait-float span { color: var(--muted); font: 750 9px/1 Arial, sans-serif; letter-spacing: .12em; }
.portrait-float b { font-size: 12px; }
.portrait-float-top { left: -4%; top: 22%; transform: rotate(-6deg); background: var(--orange); }
.portrait-float-bottom { right: -3%; bottom: 10%; transform: rotate(4deg); }

.education, .experience, .skills, .projects { padding: 120px 0 20px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 60px; margin-bottom: 54px; }
.section-heading h2, .contact h2 { margin: 0; font-size: clamp(48px, 6vw, 82px); line-height: 1.08; letter-spacing: -.035em; }
.section-heading > p { max-width: 390px; margin: 0 0 7px; color: var(--muted); line-height: 1.75; font-size: 14px; }
.education-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.education-card { position: relative; min-height: 310px; padding: 38px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--white); transition: border-color .3s ease, box-shadow .3s ease; }
.education-card:nth-child(2) { background: #eaf0fb; }
.edu-year { color: var(--muted); font: 700 12px/1 Arial, sans-serif; letter-spacing: .08em; }
.edu-index { position: absolute; right: 28px; top: 18px; color: rgba(16,17,15,.07); font: 800 110px/1 Arial, sans-serif; }
.education-card h3 { margin: 80px 0 11px; font-size: 33px; line-height: 1.25; letter-spacing: -.015em; }
.education-card p { margin: 0; color: var(--muted); }
.edu-award { display: inline-block; margin-top: 28px; padding: 9px 13px; border-radius: 999px; background: var(--mint); font-size: 12px; font-weight: 700; }

.experience-card { display: grid; grid-template-columns: 190px 1fr; margin-bottom: 18px; border: 1px solid var(--line); border-radius: 26px; background: var(--white); overflow: hidden; transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease; }
.experience-card:hover { transform: translateY(-5px); border-color: #b6b9b0; box-shadow: 0 24px 50px rgba(26,28,23,.09); }
.experience-side { padding: 34px; display: flex; flex-direction: column; justify-content: space-between; background: #edece6; border-right: 1px solid var(--line); }
.company-no { font: 800 64px/1 Arial, sans-serif; letter-spacing: -.06em; }
.experience-date { margin: 80px 0 0; color: var(--muted); font-size: 12px; font-weight: 700; }
.experience-main { padding: 42px 46px 46px; }
.experience-title { display: flex; justify-content: space-between; gap: 20px; }
.experience-title h3 { margin: 0 0 8px; font-size: 29px; line-height: 1.3; letter-spacing: -.01em; }
.experience-title p { margin: 0; color: #704fd2; font-weight: 700; line-height: 1.55; }
.experience-actions { display: flex; align-items: center; gap: 9px; align-self: flex-start; }
.status-dot { align-self: start; padding: 7px 10px; border-radius: 999px; background: var(--mint); font: 750 10px/1 Arial, sans-serif; letter-spacing: .08em; }
.detail-hint { display: inline-flex; align-items: center; gap: 9px; padding: 7px 11px; border: 1px solid var(--ink); border-radius: 999px; background: var(--ink); color: white; font-size: 11px; font-weight: 750; transition: background .25s ease, color .25s ease, gap .25s ease; }
.detail-hint b { font-size: 12px; }
.interactive-case { cursor: pointer; }
.interactive-case:hover .detail-hint, .interactive-case:focus-visible .detail-hint { gap: 14px; background: var(--mint); color: var(--ink); }
.interactive-case:focus-visible { outline: 3px solid #704fd2; outline-offset: 4px; }
.experience-summary { margin: 34px 0; max-width: 900px; color: #454741; font-size: 16px; line-height: 1.95; }
.responsibility-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.responsibility-grid div { padding: 28px 28px 0 0; }
.responsibility-grid div + div { padding-left: 24px; border-left: 1px solid var(--line); }
.responsibility-grid b { font-size: 15px; line-height: 1.5; }
.responsibility-grid p { margin: 12px 0 0; color: var(--muted); font-size: 13px; line-height: 1.85; }

.case-dialog {
  width: min(calc(100vw - 34px), 1320px);
  max-width: none;
  height: min(calc(100dvh - 34px), 940px);
  max-height: none;
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 30px;
  background: transparent;
  color: var(--ink);
  box-shadow: 0 35px 100px rgba(12,13,10,.3);
}
.case-dialog::backdrop { background: rgba(13,14,12,.62); backdrop-filter: blur(10px); }
.case-dialog[open] { animation: dialogIn .42s cubic-bezier(.2,.75,.2,1); }
.case-shell { height: 100%; overflow: auto; background: #f5f6f1; scrollbar-width: thin; scrollbar-color: #a9aca3 transparent; }
.case-toolbar { position: sticky; top: 0; z-index: 6; min-height: 74px; padding: 0 28px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(16,17,15,.1); background: rgba(245,246,241,.9); backdrop-filter: blur(18px); }
.case-brand { display: flex; align-items: center; gap: 14px; }
.case-brand span { padding: 7px 9px; border-radius: 999px; background: var(--ink); color: white; font: 750 9px/1 Arial, sans-serif; letter-spacing: .12em; }
.case-brand b { font-size: 14px; }
.case-close { position: relative; width: 42px; height: 42px; padding: 0; border: 1px solid var(--ink); border-radius: 50%; background: transparent; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.case-close:hover { background: var(--ink); transform: rotate(6deg); }
.case-close span { position: absolute; top: 20px; left: 11px; width: 18px; height: 1.5px; background: var(--ink); transform: rotate(45deg); }
.case-close span:last-child { transform: rotate(-45deg); }
.case-close:hover span { background: white; }
.case-content { padding: 0 28px 28px; }
.case-hero { padding: clamp(62px, 8vw, 110px) clamp(15px, 6vw, 80px) 70px; }
.case-kicker, .chapter-label { margin: 0 0 20px; color: #704fd2; font: 800 10px/1.2 Arial, sans-serif; letter-spacing: .15em; }
.case-hero h1, .case-hero h2 { max-width: 1060px; margin: 0; font-size: clamp(48px, 7vw, 90px); line-height: 1.08; letter-spacing: -.04em; }
.case-hero h1 em, .case-hero h2 em { color: #704fd2; font-style: normal; }
.case-lead { max-width: 760px; margin: 32px 0 0; color: #4f524b; font-size: clamp(17px, 1.7vw, 22px); line-height: 1.75; }
.case-context { margin-top: 58px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: 18px; }
.case-context article { padding: 26px; border: 1px solid var(--line); border-radius: 19px; background: white; }
.case-context article:last-child { background: var(--mint); border-color: #87cdb3; }
.case-context span { font: 800 9px/1 Arial, sans-serif; letter-spacing: .14em; color: var(--muted); }
.case-context h3 { margin: 22px 0 12px; font-size: 23px; line-height: 1.35; letter-spacing: -.01em; }
.case-context p { margin: 0; color: #5c5f58; font-size: 13px; line-height: 1.75; }
.context-arrow { display: grid; place-items: center; font-size: 27px; }

.case-chapter { display: grid; grid-template-columns: 150px 1fr; gap: 36px; margin-bottom: 22px; padding: 48px; border: 1px solid var(--line); border-radius: 26px; background: white; }
.chapter-purple { background: #f4f0ff; border-color: #d8ccf4; }
.chapter-index { position: sticky; top: 105px; align-self: start; display: flex; flex-direction: column; gap: 13px; }
.chapter-index span { color: var(--muted); font-size: 11px; font-weight: 700; }
.chapter-index b { font: 800 82px/1 Arial, sans-serif; letter-spacing: -.08em; }
.chapter-body > h2, .chapter-body > h3 { max-width: 860px; margin: 0; font-size: clamp(34px, 4vw, 56px); line-height: 1.2; letter-spacing: -.025em; }
.chapter-intro { max-width: 820px; margin: 24px 0 38px; color: #555850; font-size: 15px; line-height: 1.85; }
.challenge-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.challenge-grid article { min-height: 205px; padding: 24px; background: #f8f9f5; }
.challenge-grid article + article { border-left: 1px solid var(--line); }
.challenge-grid span, .evidence-list > article > span { display: block; color: #704fd2; font: 800 9px/1.2 Arial, sans-serif; letter-spacing: .09em; }
.challenge-grid b { display: block; margin-top: 54px; font-size: 16px; line-height: 1.6; }
.challenge-grid p { margin: 11px 0 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.solution-block { margin-top: 22px; padding: 30px; border-radius: 19px; background: var(--ink); color: white; }
.solution-heading { display: flex; justify-content: space-between; gap: 25px; padding-bottom: 25px; border-bottom: 1px solid #3e403b; }
.solution-heading span { color: var(--mint); font-size: 11px; font-weight: 750; }
.solution-heading b { max-width: 600px; text-align: right; font-size: 16px; line-height: 1.65; }
.agent-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 9px; padding-top: 28px; }
.agent-flow div { min-height: 118px; padding: 14px; border: 1px solid #3e403b; border-radius: 14px; display: flex; flex-direction: column; }
.agent-flow .flow-parallel { background: rgba(191,242,223,.12); border-color: #6f9e8d; }
.agent-flow span { color: #898d84; font: 750 9px/1 Arial, sans-serif; }
.agent-flow b { margin-top: auto; font-size: 13px; line-height: 1.45; }
.agent-flow small { margin-top: 8px; color: #aeb1a9; font-size: 10px; line-height: 1.6; }
.agent-flow i { color: #777a73; font-style: normal; }
.product-judgement { margin-top: 22px; padding: 24px 27px; border: 1px solid #8c74d5; border-radius: 17px; background: #f2edff; }
.product-judgement span { display: block; margin-bottom: 11px; color: #704fd2; font-size: 11px; font-weight: 800; }
.product-judgement p { margin: 0; font-size: 14px; line-height: 1.8; }

.evidence-list { border-top: 1px solid #d7cdef; }
.evidence-list article { display: grid; grid-template-columns: 140px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid #d7cdef; }
.evidence-list b { display: block; margin-bottom: 7px; font-size: 15px; }
.evidence-list p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.dual-model { display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: 16px; margin-top: 28px; }
.dual-model article { min-height: 280px; padding: 26px; border: 1px solid var(--ink); border-radius: 19px; display: flex; flex-direction: column; }
.model-complete { background: var(--blue); }
.model-confidence { background: var(--mint); }
.dual-model article > span { font: 800 11px/1 Arial, sans-serif; }
.dual-model article > p { margin: 47px 0 8px; font: 800 9px/1 Arial, sans-serif; letter-spacing: .12em; }
.dual-model h3, .dual-model h4 { margin: 0 0 19px; font-size: 32px; line-height: 1.25; letter-spacing: -.015em; }
.dual-model article > b { font-size: 15px; }
.dual-model small { margin-top: auto; padding-top: 22px; color: #444740; font-size: 12px; line-height: 1.7; }
.model-plus { display: grid; place-items: center; font-size: 25px; font-weight: 800; }
.decision-panel { margin-top: 28px; padding: 30px; display: grid; grid-template-columns: .75fr 1.25fr; gap: 32px; border-radius: 20px; background: white; }
.decision-copy > span { color: #704fd2; font-size: 11px; font-weight: 800; }
.decision-copy h3, .decision-copy h4 { margin: 20px 0 15px; font-size: 25px; line-height: 1.4; letter-spacing: -.015em; }
.decision-copy p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.decision-matrix { position: relative; padding: 0 0 27px 27px; display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.decision-matrix article { min-height: 105px; padding: 17px; border-radius: 12px; display: flex; flex-direction: column; justify-content: flex-end; }
.decision-matrix article b { font-size: 14px; }
.decision-matrix article span { margin-top: 5px; font-size: 10px; color: #53564f; }
.matrix-a { background: var(--mint); }
.matrix-b { background: var(--orange); }
.matrix-c { background: var(--blue); }
.matrix-d { background: #e5e6e1; }
.matrix-axis { position: absolute; color: var(--muted); font-size: 9px; font-weight: 750; }
.axis-y { left: 0; top: 50%; transform: translate(-45%, -50%) rotate(-90deg); }
.axis-x { bottom: 0; left: 55%; }

.case-results { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border-radius: 24px; background: var(--ink); color: white; }
.case-results div { min-height: 210px; padding: 28px; display: flex; flex-direction: column; border-right: 1px solid #3d3f39; }
.case-results div:last-child { border-right: 0; }
.case-results span { color: var(--mint); font-size: 10px; font-weight: 750; }
.case-results strong { margin-top: auto; font-size: clamp(29px, 3vw, 46px); letter-spacing: -.05em; }
.case-results p { margin: 8px 0 0; color: #aeb1a9; font-size: 11px; }
body.modal-open { overflow: hidden; }

.case-page-body { background: #e7e8e2; }
.case-page-shell { width: min(100%, 1500px); min-height: 100vh; margin: 0 auto; background: #f5f6f1; box-shadow: 0 0 80px rgba(16,17,15,.08); }
.case-page-main { padding-bottom: 34px; }
.case-page-shell .case-toolbar { padding-inline: clamp(20px, 4vw, 58px); }
.case-back { display: inline-flex; align-items: center; gap: 10px; min-height: 40px; padding: 0 16px; border: 1px solid var(--ink); border-radius: 999px; font-size: 12px; font-weight: 750; transition: background .22s ease, color .22s ease, transform .22s ease; }
.case-back i { font-size: 17px; font-style: normal; }
.case-back:hover { background: var(--ink); color: white; transform: translateX(-3px); }
.case-footer-nav { margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: white; }
.case-footer-nav a { min-height: 130px; padding: 26px 30px; display: flex; flex-direction: column; justify-content: space-between; transition: background .22s ease; }
.case-footer-nav a + a { border-left: 1px solid var(--line); text-align: right; }
.case-footer-nav a:hover { background: var(--mint); }
.case-footer-nav span { color: var(--muted); font-size: 11px; font-weight: 700; }
.case-footer-nav b { font-size: clamp(17px, 2vw, 24px); line-height: 1.35; }
.case-siemens .case-kicker, .case-siemens .chapter-label { color: #2f65c3; }
.case-siemens .case-hero h1 em { color: #2f65c3; }
.case-siemens .case-context article:last-child { background: var(--blue); border-color: #86a9e5; }
.siemens-blue { background: #edf3ff; border-color: #b9cdf2; }
.siemens-blue .product-judgement { background: #e7f0ff; border-color: #5a83cc; }
.siemens-blue .product-judgement span { color: #2f65c3; }

@keyframes dialogIn { from { opacity: 0; transform: translateY(24px) scale(.985); } to { opacity: 1; transform: none; } }

.skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.skill-card { position: relative; min-height: 350px; padding: 30px; overflow: hidden; border: 1px solid #d6d8d0; border-radius: 24px; background: rgba(255,255,255,.72); display: flex; flex-direction: column; box-shadow: 0 12px 34px rgba(23,25,20,.04); transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.skill-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: #a8d9c7; }
.skill-blue::before { background: #aebeda; }
.skill-orange::before { background: #d6bea3; }
.skill-card:hover { transform: translateY(-5px); border-color: #aeb2a8; box-shadow: 0 24px 54px rgba(23,25,20,.09); }
.skill-card > span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid #c9ccc3; border-radius: 50%; background: #f5f6f1; font: 800 11px/1 Arial, sans-serif; }
.skill-card h3 { margin: 90px 0 16px; font-size: 30px; line-height: 1.3; letter-spacing: -.015em; }
.skill-card p { margin: 0; line-height: 1.75; font-size: 14px; }
.skill-card > div { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; padding-top: 26px; }
.skill-card i { padding: 7px 11px; border: 1px solid #d4d7cf; border-radius: 999px; background: #f5f6f1; color: #4e514a; font: 700 11px/1 Arial, sans-serif; font-style: normal; }

.project-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; }
.project-card { overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 28px; background: var(--white); transition: border-color .3s ease, box-shadow .3s ease; }
.project-card:hover, .education-card:hover { border-color: #aeb2a7; box-shadow: 0 28px 60px rgba(27,30,23,.11); }
.project-preview { min-height: 330px; position: relative; overflow: hidden; padding: 30px; }
.project-preview::after { content: ""; position: absolute; inset: -70% -35%; background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.5), transparent 65%); transform: translateX(-70%) rotate(8deg); transition: transform .75s ease; pointer-events: none; }
.project-card:hover .project-preview::after { transform: translateX(70%) rotate(8deg); }
.scene-preview { background: linear-gradient(145deg, #d9e5ff, #d0f5e7); }
.meet-preview { background: linear-gradient(145deg, #f6d6fc, #d6e4fc); }
.screen-window { height: 22px; display: flex; gap: 6px; padding: 8px 10px; background: rgba(255,255,255,.75); border-radius: 12px 12px 0 0; }
.screen-window span { width: 6px; height: 6px; border-radius: 50%; background: var(--ink); opacity: .35; }
.video-stage { min-height: 210px; display: grid; place-items: center; position: relative; background: #171914; color: white; border-radius: 0 0 18px 18px; box-shadow: 0 22px 35px rgba(16,17,15,.2); }
.video-stage b { font: 800 60px/1 Arial, sans-serif; letter-spacing: -.06em; opacity: .85; animation: scenePulse 4s ease-in-out infinite; }
.video-stage span { position: absolute; right: 18px; bottom: 14px; color: #adb0aa; font-size: 11px; }
.ad-chip { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%) rotate(-2deg); width: max-content; padding: 11px 17px; border: 1px solid var(--ink); border-radius: 999px; background: var(--orange); font-size: 12px; font-weight: 750; box-shadow: 4px 4px 0 var(--ink); }
.meet-columns { height: 230px; display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: 10px; align-items: end; }
.meet-columns span { display: block; height: 75%; border: 1px solid rgba(16,17,15,.2); border-radius: 16px; background: rgba(255,255,255,.7); box-shadow: 0 12px 26px rgba(48,35,70,.1); }
.meet-columns span:nth-child(2) { height: 100%; }
.meet-order { position: absolute; right: 27px; bottom: 25px; padding: 10px 14px; border-radius: 10px; background: var(--ink); color: white; font-size: 11px; font-weight: 700; }
.scene-product-ui, .meet-product-ui { position: relative; height: 100%; min-height: 285px; overflow: hidden; border: 1px solid rgba(16,17,15,.18); border-radius: 18px; background: rgba(255,255,255,.9); box-shadow: 0 24px 45px rgba(39,45,35,.13); }
.preview-toolbar { height: 42px; padding: 0 14px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid rgba(16,17,15,.1); background: rgba(255,255,255,.84); }
.preview-toolbar > div { display: flex; gap: 5px; }
.preview-toolbar i { width: 7px; height: 7px; border-radius: 50%; background: #b5b8b0; }
.preview-toolbar b { font-size: 10px; letter-spacing: .02em; }
.preview-toolbar > span { justify-self: end; color: #536057; font-size: 8px; font-weight: 750; }
.scene-product-ui .preview-toolbar > span { color: #218e68; }
.scene-workspace { height: 205px; padding: 10px; display: grid; grid-template-columns: 1.7fr .8fr; gap: 10px; background: #e9ece7; }
.scene-video-frame { position: relative; overflow: hidden; border-radius: 12px; background:
  radial-gradient(circle at 70% 22%, #ffd7a5 0 4%, transparent 5%),
  linear-gradient(180deg, #7865b6 0%, #db8da9 46%, #f3b47e 66%, #373d49 67%, #171b21 100%); }
.scene-video-frame::before { content: ""; position: absolute; inset: auto 0 15px; height: 48px; opacity: .72; background: repeating-linear-gradient(90deg, #15191f 0 18px, #323844 18px 24px, #191d24 24px 42px); clip-path: polygon(0 56%, 8% 24%, 14% 70%, 22% 12%, 29% 60%, 38% 30%, 47% 72%, 55% 18%, 64% 54%, 72% 28%, 81% 62%, 90% 8%, 100% 48%, 100% 100%, 0 100%); }
.scene-video-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(255,255,255,.16), transparent 42%); pointer-events: none; }
.scene-time { position: absolute; z-index: 2; right: 9px; top: 8px; padding: 4px 6px; border-radius: 6px; background: rgba(14,16,15,.64); color: white; font-size: 7px; }
.scene-object { position: absolute; z-index: 2; padding: 5px 6px; display: flex; gap: 7px; border: 1px solid #bff2df; border-radius: 4px; color: white; box-shadow: inset 0 0 0 1px rgba(0,0,0,.12); }
.scene-object::before, .scene-object::after { content: ""; position: absolute; width: 7px; height: 7px; border-color: white; }
.scene-object::before { left: -2px; top: -2px; border-left: 2px solid; border-top: 2px solid; }
.scene-object::after { right: -2px; bottom: -2px; border-right: 2px solid; border-bottom: 2px solid; }
.scene-object b, .scene-object small { font-size: 7px; line-height: 1; }
.object-one { left: 11%; top: 24%; width: 38%; height: 34%; }
.object-two { right: 7%; bottom: 25%; width: 31%; height: 28%; border-color: #ffd6a6; }
.scene-player { position: absolute; z-index: 3; left: 10px; right: 10px; bottom: 8px; display: grid; grid-template-columns: auto 1fr auto; gap: 7px; align-items: center; }
.scene-player i { width: 0; height: 0; border-top: 4px solid transparent; border-bottom: 4px solid transparent; border-left: 6px solid white; }
.scene-player span { height: 2px; background: rgba(255,255,255,.38); }
.scene-player span::before { content: ""; display: block; width: 44%; height: 100%; background: var(--mint); }
.scene-player em { width: 8px; height: 8px; border: 1px solid white; border-radius: 2px; }
.scene-inspector { padding: 13px; display: flex; flex-direction: column; border-radius: 12px; background: white; }
.scene-inspector > span { color: #7253d6; font-size: 7px; font-weight: 800; letter-spacing: .1em; }
.scene-inspector h4 { margin: 7px 0 10px; font-size: 11px; }
.analysis-tag { padding: 7px 0; display: flex; justify-content: space-between; border-top: 1px solid #e3e5df; }
.analysis-tag b, .analysis-tag i { font-size: 8px; font-style: normal; }
.analysis-tag i { color: #218e68; }
.matched-ad { margin-top: auto; padding: 9px; display: flex; flex-direction: column; gap: 4px; border-radius: 9px; background: #f0ecff; }
.matched-ad small { color: #7253d6; font-size: 6px; font-weight: 800; }
.matched-ad b { font-size: 8px; }
.matched-ad span { font-size: 7px; color: #5d6160; }
.scene-timeline { height: 38px; padding: 0 13px; display: grid; grid-template-columns: auto 1fr auto; gap: 9px; align-items: center; border-top: 1px solid #e1e3dd; }
.scene-timeline > b { color: #777b74; font-size: 7px; }
.scene-timeline > span { position: relative; height: 18px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
.scene-timeline i { border-radius: 3px; background: linear-gradient(135deg, #cbdcfb, #cab8f7); }
.scene-timeline i:nth-child(even) { background: linear-gradient(135deg, #ffd6a6, #bff2df); }
.scene-timeline em { position: absolute; left: 44%; top: -3px; bottom: -3px; width: 1px; background: #7253d6; box-shadow: 0 0 0 2px rgba(114,83,214,.15); }

.meet-product-ui { background: #f7f5fb; }
.meet-workspace { height: 243px; display: grid; grid-template-columns: 44px 1.05fr .95fr; }
.meet-mini-sidebar { padding: 12px 0; display: flex; flex-direction: column; align-items: center; gap: 14px; background: #171914; }
.meet-mini-sidebar strong { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 7px; background: var(--mint); font-size: 8px; }
.meet-mini-sidebar i { width: 13px; height: 13px; border: 1px solid #73776e; border-radius: 4px; }
.meet-mini-sidebar i:nth-of-type(2) { background: #7253d6; border-color: #7253d6; }
.meet-transcript { padding: 15px; border-right: 1px solid #dedfe0; background: white; }
.meet-transcript > span { color: #777b74; font-size: 7px; font-weight: 750; }
.meet-transcript h4 { margin: 6px 0 14px; font-size: 13px; }
.speaker { margin-bottom: 11px; display: grid; grid-template-columns: 20px 1fr; gap: 8px; }
.speaker > b { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: var(--blue); font-size: 7px; }
.speaker:nth-of-type(2) > b { background: var(--orange); }
.speaker p { margin: 2px 0 0; display: flex; flex-direction: column; gap: 4px; }
.speaker p i { height: 4px; border-radius: 4px; background: #e2e4df; }
.speaker p i:nth-child(2) { width: 78%; }
.speaker p i:nth-child(3) { width: 55%; }
.meeting-summary { margin-top: 13px; padding: 10px; display: flex; flex-direction: column; gap: 4px; border: 1px solid #baa8ef; border-radius: 10px; background: #f3efff; }
.meeting-summary small { color: #7253d6; font-size: 6px; font-weight: 800; }
.meeting-summary b { font-size: 8px; }
.meeting-summary span { color: #696d65; font-size: 7px; }
.meet-task-panel { padding: 13px; background: #f3f4ef; }
.task-heading { margin-bottom: 9px; display: flex; justify-content: space-between; align-items: center; }
.task-heading span { font-size: 7px; font-weight: 800; letter-spacing: .08em; }
.task-heading b { width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: white; font-size: 7px; }
.meet-task-panel article { margin-bottom: 7px; padding: 8px; display: grid; grid-template-columns: 13px 1fr; gap: 7px; border: 1px solid #dedfd9; border-radius: 9px; background: white; }
.meet-task-panel article > i { width: 12px; height: 12px; margin-top: 1px; border: 1px solid #8c9088; border-radius: 4px; }
.meet-task-panel article:last-of-type > i { background: var(--mint); border-color: #73bba1; }
.meet-task-panel article div { display: flex; flex-direction: column; gap: 2px; }
.meet-task-panel article b { font-size: 8px; }
.meet-task-panel article span { color: #777b74; font-size: 6px; }
.meet-task-panel button { width: 100%; min-height: 28px; border: 0; border-radius: 8px; background: var(--ink); color: white; font-size: 7px; font-weight: 750; }
.project-content { padding: 30px 32px 34px; }
.project-type { margin: 0 0 14px; color: #704fd2; font: 750 10px/1.2 Arial, sans-serif; letter-spacing: .12em; }
.project-content h3 { margin: 0 0 16px; font-size: 29px; line-height: 1.3; letter-spacing: -.015em; }
.project-content > p:not(.project-type) { margin: 0; min-height: 70px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.project-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 23px 0; }
.project-tags span { padding: 7px 10px; border-radius: 999px; background: #eff0eb; font-size: 11px; font-weight: 650; }
.project-content > a { display: inline-flex; gap: 30px; padding-bottom: 3px; border-bottom: 1px solid var(--ink); font-weight: 750; transition: gap .25s ease, color .25s ease; }
.project-content > a:hover { gap: 42px; color: #704fd2; }

.contact { position: relative; margin-top: 130px; padding: 90px 70px; overflow: hidden; border: 1px solid #d3d6cd; border-radius: 34px; background: rgba(255,255,255,.78); color: var(--ink); box-shadow: 0 24px 70px rgba(24,26,21,.06); }
.contact::after { content: "YQ"; position: absolute; right: 4%; bottom: -12%; color: rgba(16,17,15,.035); font: 850 230px/.8 Arial, sans-serif; letter-spacing: -.12em; pointer-events: none; }
.contact .eyebrow { color: #575a53; }
.contact h2 { max-width: 850px; }
.contact > a { position: relative; z-index: 1; display: inline-flex; gap: 35px; margin-top: 46px; padding: 14px 20px; border: 1px solid var(--ink); border-radius: 12px; background: var(--ink); color: white; font-size: clamp(17px, 2vw, 25px); font-weight: 700; transition: transform .2s ease, box-shadow .2s ease; }
.contact > a:hover { transform: translateY(-2px); box-shadow: 0 7px 0 rgba(16,17,15,.16); }
footer { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 38px 0; display: flex; justify-content: space-between; color: var(--muted); font-size: 12px; }

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  width: 48px;
  height: 48px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(15px) scale(.9);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background .25s ease, color .25s ease;
}
.back-to-top.visible { opacity: 1; transform: none; pointer-events: auto; }
.back-to-top:hover { background: var(--mint); color: var(--ink); }

[data-tilt] { --tilt-x: 0deg; --tilt-y: 0deg; transform-style: preserve-3d; will-change: transform; }
.reveal[data-tilt] { transform: perspective(1100px) translateY(18px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); }
.reveal.visible[data-tilt] { transform: perspective(1100px) translateY(0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); transition: opacity .65s ease var(--reveal-delay, 0ms), transform .18s ease; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease var(--reveal-delay, 0ms), transform .65s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes ambientFloat { from { transform: translate3d(0, -35px, 0) scale(.92); } to { transform: translate3d(35px, 55px, 0) scale(1.08); } }
@keyframes scenePulse { 0%, 100% { opacity: .72; transform: scale(1); } 50% { opacity: .95; transform: scale(1.035); } }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto auto; }
  .nav { display: none; }
  .header-contact { margin-right: 10px; }
  .menu-button {
    display: grid;
    place-content: center;
    gap: 6px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }
  .menu-button span { width: 17px; height: 1.5px; background: var(--ink); transition: transform .25s ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
  .mobile-nav {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 44;
    padding: 105px 22px 28px;
    background: rgba(246,247,242,.98);
    backdrop-filter: blur(22px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }
  .mobile-nav.open { opacity: 1; visibility: visible; transform: none; }
  .mobile-nav-inner { width: min(100%, 620px); height: 100%; margin: auto; display: flex; flex-direction: column; }
  .mobile-nav a { display: flex; align-items: center; gap: 16px; padding: 17px 4px; border-bottom: 1px solid var(--line); font-size: clamp(25px, 6vw, 42px); font-weight: 760; letter-spacing: -.04em; }
  .mobile-nav a span { color: var(--muted); font: 700 10px/1 Arial, sans-serif; letter-spacing: .08em; }
  .mobile-nav .mobile-mail { margin-top: auto; border-bottom: 0; font-size: 16px; color: #704fd2; letter-spacing: 0; }
  body.menu-open { overflow: hidden; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-visual { width: min(600px, 100%); margin: 10px auto 0; }
  .responsibility-grid { grid-template-columns: 1fr; }
  .responsibility-grid div + div { padding-left: 0; border-left: 0; }
  .skills-grid { grid-template-columns: 1fr; }
  .skill-card { min-height: 260px; }
  .skill-card h3 { margin-top: 55px; }
  .project-grid { grid-template-columns: 1fr; }
  .case-dialog { width: calc(100vw - 20px); height: calc(100dvh - 20px); border-radius: 23px; }
  .case-chapter { grid-template-columns: 1fr; gap: 24px; padding: 34px; }
  .chapter-index { position: static; flex-direction: row; align-items: center; }
  .chapter-index b { font-size: 54px; }
  .challenge-grid { grid-template-columns: 1fr; }
  .challenge-grid article { min-height: 0; }
  .challenge-grid article + article { border-left: 0; border-top: 1px solid var(--line); }
  .challenge-grid b { margin-top: 22px; }
  .solution-block { overflow-x: auto; }
  .agent-flow { min-width: 780px; }
  .decision-panel { grid-template-columns: 1fr; }
  .case-results { grid-template-columns: 1fr 1fr; }
  .case-results div:nth-child(2) { border-right: 0; }
  .case-results div:nth-child(-n+2) { border-bottom: 1px solid #3d3f39; }
}

@media (max-width: 700px) {
  .site-header, .section, footer { width: min(calc(100% - 28px), var(--max)); }
  .site-header { height: 70px; }
  .brand-name { display: none; }
  .brand-mark { width: 38px; height: 38px; }
  .header-contact { font-size: 13px; }
  .hero { min-height: auto; padding: 60px 0 70px; }
  .hero h1 { font-size: clamp(54px, 17vw, 68px); }
  .hero-lead { margin-top: 28px; font-size: 23px; }
  .hero-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-actions { flex-direction: column; }
  .button { justify-content: space-between; }
  .hero-visual { min-height: 610px; }
  .portrait-stage { width: 100%; height: 610px; }
  .portrait-stage::before { width: 94%; }
  .portrait-monogram { right: 0; font-size: 122px; }
  .portrait-float-top { left: 0; top: 22%; }
  .portrait-float-bottom { right: 0; bottom: 9%; }
  .education, .experience, .skills, .projects { padding-top: 90px; }
  .section-heading { display: block; margin-bottom: 34px; }
  .section-heading > p { margin-top: 24px; }
  .education-grid { grid-template-columns: 1fr; }
  .education-card { min-height: 270px; padding: 28px; }
  .experience-card { grid-template-columns: 1fr; }
  .experience-side { padding: 22px 25px; flex-direction: row; align-items: center; border-right: 0; border-bottom: 1px solid var(--line); }
  .company-no { font-size: 35px; }
  .experience-date { margin: 0; }
  .experience-main { padding: 27px 25px 30px; }
  .experience-title { flex-direction: column; align-items: flex-start; gap: 18px; }
  .experience-title h3 { font-size: 25px; }
  .experience-actions { width: 100%; flex-direction: row; align-items: center; justify-content: space-between; }
  .detail-hint { padding-inline: 10px; }
  .case-dialog { width: 100vw; height: 100dvh; border-radius: 0; }
  .case-toolbar { min-height: 64px; padding: 0 16px; }
  .case-brand { gap: 8px; }
  .case-brand b { font-size: 12px; }
  .case-close { width: 38px; height: 38px; }
  .case-close span { top: 18px; left: 10px; width: 16px; }
  .case-content { padding: 0 10px 10px; }
  .case-hero { padding: 48px 9px 44px; }
  .case-hero h1, .case-hero h2 { font-size: clamp(38px, 12vw, 52px); line-height: 1.12; letter-spacing: -.025em; }
  .case-lead { margin-top: 24px; font-size: 16px; }
  .case-context { margin-top: 36px; grid-template-columns: 1fr; gap: 10px; }
  .context-arrow { transform: rotate(90deg); }
  .case-chapter { gap: 20px; padding: 26px 18px; border-radius: 18px; }
  .chapter-index { justify-content: space-between; }
  .chapter-index b { font-size: 46px; }
  .chapter-body > h2, .chapter-body > h3 { font-size: 32px; line-height: 1.28; }
  .chapter-intro { margin: 20px 0 28px; font-size: 14px; }
  .challenge-grid article { padding: 20px; }
  .solution-block { padding: 24px 18px; overflow: visible; }
  .solution-heading { flex-direction: column; }
  .solution-heading b { text-align: left; }
  .agent-flow { min-width: 0; display: flex; flex-direction: column; }
  .agent-flow div { width: 100%; min-height: 92px; }
  .agent-flow i { transform: rotate(90deg); align-self: center; }
  .evidence-list article { grid-template-columns: 1fr; gap: 9px; }
  .dual-model { grid-template-columns: 1fr; }
  .dual-model article { min-height: 250px; }
  .model-plus { min-height: 28px; }
  .decision-panel { padding: 22px 15px; gap: 26px; }
  .decision-matrix { padding-left: 19px; }
  .decision-matrix article { min-height: 115px; padding: 13px; }
  .case-results { border-radius: 18px; }
  .case-results div { min-height: 155px; padding: 20px; }
  .case-results strong { font-size: 31px; }
  .case-page-main { padding-inline: 10px; }
  .case-page-shell .case-toolbar { padding-inline: 14px; }
  .case-back { width: 40px; padding: 0; justify-content: center; }
  .case-back span { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
  .case-footer-nav { grid-template-columns: 1fr; }
  .case-footer-nav a { min-height: 112px; padding: 22px; }
  .case-footer-nav a + a { border-left: 0; border-top: 1px solid var(--line); text-align: left; }
  .project-preview { min-height: 330px; padding: 18px; }
  .scene-product-ui, .meet-product-ui { min-height: 292px; }
  .scene-workspace { grid-template-columns: 1.45fr .85fr; }
  .video-stage { min-height: 175px; }
  .meet-columns { height: 190px; }
  .project-content { padding: 25px; }
  .contact { margin-top: 90px; padding: 62px 28px; border-radius: 25px; }
  .contact > a { font-size: 15px; gap: 12px; }
  footer { flex-wrap: wrap; gap: 12px 24px; }
  .back-to-top { right: 14px; bottom: 14px; width: 44px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ambient, .video-stage b { animation: none; }
  [data-tilt], .reveal[data-tilt], .reveal.visible[data-tilt] { transform: none; transition: none; }
  .case-dialog[open] { animation: none; }
  .typewriter-line { width: auto; border-right-color: transparent; animation: none; }
}

@keyframes typeGreeting {
  0% { width: 0; border-right-color: var(--ink); }
  92% { width: 5.04em; border-right-color: var(--ink); }
  100% { width: 5.04em; border-right-color: transparent; }
}

@keyframes typeName {
  0% { width: 0; border-right-color: #704fd2; }
  100% { width: 3.04em; border-right-color: #704fd2; }
}

@keyframes caretBlink {
  0%, 48% { border-right-color: #704fd2; }
  49%, 100% { border-right-color: transparent; }
}
