:root {
  color-scheme: dark;
  --ink: #edf7ff;
  --muted: #9fb4c2;
  --paper: #071018;
  --surface: rgba(10, 24, 36, 0.72);
  --surface-solid: rgba(12, 26, 38, 0.92);
  --line: rgba(122, 229, 255, 0.18);
  --jade: #31e6ad;
  --brick: #ff6f91;
  --cobalt: #59a8ff;
  --gold: #ffd166;
  --violet: #b78cff;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --desktop-canvas-min: 1280px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
main[id] {
  scroll-margin-top: 92px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 18%, rgba(49, 230, 173, 0.18), transparent 28rem),
    radial-gradient(circle at 82% 12%, rgba(255, 111, 145, 0.13), transparent 30rem),
    linear-gradient(180deg, rgba(7, 16, 24, 0.72), rgba(7, 16, 24, 0.98) 42rem),
    var(--paper);
  letter-spacing: 0;
}

@media (hover: hover) and (pointer: fine) {
  body,
  .entry-gate,
  #hero-canvas {
    min-width: var(--desktop-canvas-min);
  }

  .entry-orbit {
    width: 540px;
  }

  .entry-button {
    width: 330px;
  }
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(122, 229, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 229, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 72%);
}

#hero-canvas {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  background: #071018;
}

.entry-gate {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, rgba(49, 230, 173, 0.2), transparent 18rem),
    radial-gradient(circle at 56% 52%, rgba(89, 168, 255, 0.18), transparent 26rem),
    rgba(4, 10, 16, 0.96);
  transition:
    opacity 520ms ease,
    visibility 520ms ease;
}

.entry-gate.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.entry-gate::before,
.entry-gate::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.entry-gate::before {
  background:
    linear-gradient(rgba(122, 229, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 229, 255, 0.075) 1px, transparent 1px);
  background-size: 54px 54px;
  animation: gridDrift 9s linear infinite;
}

.entry-gate::after {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  opacity: 0.5;
  transform: translateY(-100%);
  animation: scanLine 3.4s ease-in-out infinite;
}

.entry-orbit {
  position: absolute;
  width: min(66vw, 540px);
  aspect-ratio: 1;
  border: 1px solid rgba(122, 229, 255, 0.24);
  border-radius: 50%;
  animation: orbitSpin 12s linear infinite;
}

.entry-orbit span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--jade);
  box-shadow: 0 0 20px currentColor;
}

.entry-orbit span:nth-child(1) {
  top: 9%;
  left: 48%;
  color: var(--jade);
}

.entry-orbit span:nth-child(2) {
  right: 12%;
  bottom: 23%;
  color: var(--brick);
}

.entry-orbit span:nth-child(3) {
  bottom: 18%;
  left: 17%;
  color: var(--gold);
}

.entry-button {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(72vw, 330px);
  min-height: 88px;
  place-items: center;
  border: 1px solid rgba(122, 229, 255, 0.5);
  border-radius: var(--radius);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(49, 230, 173, 0.2), rgba(89, 168, 255, 0.18), rgba(255, 111, 145, 0.16)),
    rgba(7, 16, 24, 0.82);
  box-shadow:
    0 0 42px rgba(49, 230, 173, 0.24),
    inset 0 0 28px rgba(122, 229, 255, 0.12);
  cursor: pointer;
  overflow: hidden;
  backdrop-filter: blur(18px);
  animation: entryPulse 1.9s ease-in-out infinite;
}

.entry-button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: translateX(-115%);
  animation: buttonSweep 2.2s ease-in-out infinite;
}

.entry-button-core {
  display: grid;
  gap: 5px;
  text-align: center;
}

.entry-button-core span:first-child {
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 950;
}

.entry-button-core span:last-child {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: min(1120px, calc(100% - 40px));
  height: 72px;
  margin: 0 auto;
  transition:
    height 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  top: 12px;
  height: 56px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 18, 27, 0.78);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
}

.brand-name span,
.button span,
.home-module-link span,
.back-home span,
.page-title h1 span,
.eyebrow span,
.section-kicker span,
.project-type span,
.project-tab span span,
.project-points li span,
.project-panel a span,
.quick-facts dt span,
.quick-facts dd span,
.section-heading h1 span,
.section-heading h2 span,
.project-panel h3 span,
.project-panel h2 span,
.timeline time span,
.timeline h3 span,
.timeline h2 span,
.contact-links a span {
  display: block;
}

.brand-name span:last-child,
.button span:last-child,
.home-module-link span:last-child,
.back-home span:last-child,
.page-title h1 span:last-child,
.eyebrow span:last-child,
.section-kicker span:last-child,
.project-type span:last-child,
.project-tab span span:last-child,
.project-points li span:last-child,
.project-panel a span:last-child,
.quick-facts dt span:last-child,
.quick-facts dd span:last-child,
.section-heading h1 span:last-child,
.section-heading h2 span:last-child,
.project-panel h3 span:last-child,
.project-panel h2 span:last-child,
.timeline time span:last-child,
.timeline h3 span:last-child,
.timeline h2 span:last-child,
.contact-links a span:last-child {
  color: currentColor;
  font-size: 0.78em;
  line-height: 1.25;
  opacity: 0.72;
}

.brand-name {
  line-height: 1.1;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #061018;
  background: linear-gradient(135deg, var(--jade), var(--cobalt));
  box-shadow:
    0 0 28px rgba(49, 230, 173, 0.26),
    inset 0 -8px 18px rgba(255, 255, 255, 0.18);
}

.music-toggle {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 9px 14px 9px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(8, 18, 27, 0.8);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.36);
  cursor: pointer;
  backdrop-filter: blur(18px);
  transition:
    transform 160ms ease,
    background 160ms ease,
    opacity 160ms ease;
}

.music-toggle:hover,
.music-toggle:focus-visible {
  transform: translateY(-2px);
  background: rgba(12, 26, 38, 0.94);
}

.music-toggle.is-missing {
  opacity: 0.56;
  cursor: not-allowed;
}

.music-icon {
  display: inline-flex;
  align-items: end;
  justify-content: center;
  width: 34px;
  height: 34px;
  gap: 3px;
  border-radius: 50%;
  color: #061018;
  background: linear-gradient(135deg, var(--gold), var(--brick));
}

.music-icon span {
  width: 3px;
  height: 10px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.72;
}

.music-icon span:nth-child(2) {
  height: 16px;
}

.music-icon span:nth-child(3) {
  height: 12px;
}

.music-toggle.is-playing .music-icon span {
  animation: musicPulse 780ms ease-in-out infinite;
}

.music-toggle.is-playing .music-icon span:nth-child(2) {
  animation-delay: 120ms;
}

.music-toggle.is-playing .music-icon span:nth-child(3) {
  animation-delay: 240ms;
}

.music-copy {
  display: grid;
  gap: 1px;
  text-align: left;
}

.music-copy span:first-child {
  font-size: 13px;
  font-weight: 900;
}

.music-copy span:last-child {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-terminal,
.contact-terminal {
  position: relative;
  border: 1px solid rgba(122, 229, 255, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(5, 13, 20, 0.78);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.36),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.hero-terminal {
  max-width: 760px;
  margin: 18px 0 30px;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(122, 229, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
}

.terminal-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.terminal-bar span:nth-child(1) {
  background: var(--brick);
}

.terminal-bar span:nth-child(2) {
  background: var(--gold);
}

.terminal-bar span:nth-child(3) {
  background: var(--jade);
}

.terminal-bar strong {
  margin-left: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-terminal pre,
.contact-terminal pre {
  margin: 0;
  overflow: auto;
  color: #d9f8ff;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  line-height: 1.34;
}

.hero-terminal pre {
  min-height: 0;
  padding: clamp(18px, 3vw, 28px);
  font-size: clamp(15px, 1.86vw, 24px);
  font-weight: 850;
}

.contact-terminal pre {
  min-height: 162px;
  padding: 18px 20px 20px;
  font-size: clamp(13px, 1.5vw, 17px);
}

.code-line {
  display: block;
  min-height: 1.45em;
  white-space: pre;
}

.code-line.is-active::after {
  display: inline-block;
  width: 0.58em;
  height: 1em;
  margin-left: 3px;
  vertical-align: -0.12em;
  background: var(--jade);
  box-shadow: 0 0 16px rgba(49, 230, 173, 0.55);
  content: "";
  animation: cursorBlink 820ms step-end infinite;
}

@keyframes musicPulse {
  0%,
  100% {
    transform: scaleY(0.72);
  }

  50% {
    transform: scaleY(1.18);
  }
}

@keyframes entryPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.035);
  }
}

@keyframes buttonSweep {
  0%,
  38% {
    transform: translateX(-115%);
  }

  72%,
  100% {
    transform: translateX(115%);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes scanLine {
  0%,
  18% {
    transform: translateY(-100%);
  }

  64%,
  100% {
    transform: translateY(100%);
  }
}

@keyframes gridDrift {
  to {
    background-position: 54px 54px;
  }
}

@keyframes cursorBlink {
  50% {
    opacity: 0;
  }
}

.section-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.opening-quote {
  position: relative;
  display: grid;
  place-items: center;
  padding: 94px 0 18px;
  isolation: isolate;
}

.opening-quote::before {
  position: absolute;
  inset: 42px 0 auto;
  z-index: -1;
  height: 72%;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(122, 229, 255, 0.2), transparent),
    radial-gradient(circle at 18% 40%, rgba(255, 209, 102, 0.16), transparent 18rem),
    radial-gradient(circle at 82% 58%, rgba(49, 230, 173, 0.14), transparent 20rem);
  opacity: 0.86;
  transform: skewY(-5deg);
}

.opening-quote blockquote {
  position: relative;
  width: min(100%, 920px);
  padding:
    clamp(26px, 3vw, 36px)
    clamp(64px, 8vw, 110px)
    clamp(34px, 4vw, 46px)
    clamp(66px, 7.8vw, 112px);
  margin: 0;
  border-top: 1px solid rgba(122, 229, 255, 0.36);
  border-bottom: 1px solid rgba(255, 209, 102, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    linear-gradient(90deg, rgba(49, 230, 173, 0.1), rgba(255, 111, 145, 0.08));
  box-shadow:
    0 34px 92px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.opening-quote blockquote::before,
.opening-quote blockquote::after {
  position: absolute;
  left: clamp(20px, 6vw, 78px);
  width: min(220px, 34%);
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--jade), var(--cobalt), transparent);
}

.opening-quote blockquote::before {
  top: 0;
}

.opening-quote blockquote::after {
  bottom: 0;
  background: linear-gradient(90deg, var(--gold), var(--brick), transparent);
}

.quote-mark {
  position: absolute;
  z-index: 0;
  margin: 0;
  color: rgba(255, 209, 102, 0.22);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.72;
  pointer-events: none;
}

.quote-mark-left {
  top: clamp(10px, 2vw, 18px);
  left: clamp(24px, 4vw, 48px);
}

.quote-mark-right {
  right: clamp(24px, 4vw, 52px);
  bottom: clamp(10px, 2vw, 18px);
}

.quote-line,
.quote-translation {
  position: relative;
  z-index: 1;
  font-size: clamp(18px, 1.95vw, 25px);
  line-height: 1.28;
}

.quote-line {
  max-width: 780px;
  margin: 0;
  color: #f7fcff;
  font-weight: 950;
}

.quote-translation {
  max-width: 780px;
  margin: 14px 0 0;
  color: #b7cad6;
  font-weight: 900;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 390px;
  gap: 44px;
  align-items: center;
  min-height: auto;
  padding: 22px 0 64px;
}

.hero-copy {
  max-width: 730px;
}

.eyebrow,
.section-kicker,
.project-type {
  margin: 0 0 18px;
  color: var(--brick);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(66px, 11vw, 132px);
  line-height: 0.9;
  letter-spacing: 0;
}

h2,
.section-heading h1 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.24;
}

.hero-name-en {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 850;
  line-height: 1.1;
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-grid;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 850;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible,
.contact-links a:hover,
.contact-links a:focus-visible,
.project-panel a:hover,
.project-panel a:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #061018;
  border-color: rgba(49, 230, 173, 0.72);
  background: linear-gradient(135deg, var(--jade), var(--cobalt));
  box-shadow: 0 18px 38px rgba(49, 230, 173, 0.22);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

.home-modules {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 18px;
}

.home-module-link {
  position: relative;
  display: grid;
  min-height: 68px;
  align-content: center;
  padding: 10px 13px;
  border: 1px solid rgba(122, 229, 255, 0.2);
  border-radius: var(--radius);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(49, 230, 173, 0.12), rgba(89, 168, 255, 0.09), rgba(255, 111, 145, 0.08)),
    rgba(255, 255, 255, 0.055);
  font-weight: 900;
  overflow: hidden;
  backdrop-filter: blur(14px);
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.home-module-link::after {
  position: absolute;
  right: 12px;
  bottom: 9px;
  color: var(--jade);
  content: "→";
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  opacity: 0.82;
  transition: transform 160ms ease;
}

.home-module-link:hover,
.home-module-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(49, 230, 173, 0.52);
  background:
    linear-gradient(135deg, rgba(49, 230, 173, 0.2), rgba(89, 168, 255, 0.14), rgba(255, 111, 145, 0.11)),
    rgba(255, 255, 255, 0.075);
}

.home-module-link:hover::after,
.home-module-link:focus-visible::after {
  transform: translateX(3px);
}

.hero-panel {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.portrait {
  display: grid;
  min-height: 300px;
  place-items: center;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(140deg, rgba(49, 230, 173, 0.58), rgba(89, 168, 255, 0.48), rgba(255, 111, 145, 0.34)),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(255, 255, 255, 0.13) 18px 19px);
}

.portrait img {
  display: block;
  width: min(70%, 240px);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 39%;
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow:
    0 22px 58px rgba(23, 32, 27, 0.24),
    0 0 0 18px rgba(255, 255, 255, 0.12);
}

.quick-facts {
  display: grid;
  gap: 1px;
  margin: 14px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(122, 229, 255, 0.16);
}

.quick-facts div {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 12px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.055);
}

.quick-facts dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.quick-facts dd {
  margin: 0;
  font-weight: 750;
}

.about-section,
.projects-section,
.contact-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(4, 12, 19, 0.5);
}

.view-panel,
.page-section {
  animation: viewReveal 260ms ease both;
}

.page-section {
  display: grid;
  align-items: center;
  box-sizing: border-box;
  min-height: calc(100svh - 92px);
  padding: clamp(48px, 7vh, 76px) 0 clamp(36px, 5vh, 58px);
}

.view-panel {
  min-height: calc(100vh - 92px);
}

.page-main {
  min-height: calc(100svh - 92px);
}

.view-toolbar,
.page-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 12px;
}

.page-heading {
  margin-bottom: 24px;
}

.page-title {
  min-width: 0;
  text-align: right;
}

.page-title h1 {
  display: grid;
  justify-items: end;
  gap: 4px;
  margin: 0;
  line-height: 1;
}

.page-title h1 span:first-child {
  font-size: clamp(31px, 3.6vw, 44px);
}

.page-title h1 span:last-child:not(:first-child) {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 900;
  line-height: 1.18;
}

.back-home {
  display: inline-grid;
  min-height: 44px;
  align-content: center;
  padding: 7px 15px;
  border: 1px solid rgba(122, 229, 255, 0.26);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(8, 18, 27, 0.78);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(16px);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.back-home:hover,
.back-home:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(49, 230, 173, 0.52);
  background: rgba(12, 26, 38, 0.94);
}

@keyframes viewReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-section {
  padding: 96px 0;
}

.about-section .two-column {
  align-items: center;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 64px;
}

.body-copy {
  color: #c4d3dc;
  font-size: 19px;
  line-height: 1.9;
}

.about-title {
  font-size: clamp(34px, 3.55vw, 48px);
  white-space: nowrap;
}

.title-translation {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 850;
  line-height: 1.25;
}

.about-visual {
  width: min(100%, 380px);
  margin: 36px 0 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.about-visual img {
  display: block;
  width: 100%;
  max-height: 640px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center top;
}

.en-line {
  display: block;
  margin-top: 10px;
  color: #8ea5b2;
  font-size: 0.84em;
  line-height: 1.65;
}

.about-en {
  margin-top: 22px;
}

.body-copy p:last-child,
.contact-inner p:last-child {
  margin-bottom: 0;
}

.project-panel,
.timeline article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-solid);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.project-panel p,
.timeline p,
.contact-inner p {
  color: var(--muted);
  line-height: 1.75;
}

.content-section {
  padding: 104px 0;
}

#timeline.content-section {
  width: min(1360px, calc(100% - 40px));
  padding: 56px 0;
}

#timeline.content-section.page-section {
  padding: clamp(48px, 7vh, 76px) 0 clamp(36px, 5vh, 58px);
}

#timeline .section-heading {
  margin-bottom: 22px;
}

#timeline .section-heading h1,
#timeline .section-heading h2 {
  font-size: clamp(32px, 4.2vw, 54px);
}

#timeline .timeline-intro {
  margin: -8px 0 26px;
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.58;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.timeline-intro {
  max-width: 760px;
  margin: -12px 0 34px;
  color: #c4d3dc;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

.projects-section {
  padding: 104px 0;
}

.portfolio-board {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(122, 229, 255, 0.09), rgba(255, 255, 255, 0.03), rgba(255, 111, 145, 0.07));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.project-tabs {
  display: grid;
  align-content: start;
  grid-auto-rows: minmax(78px, max-content);
  gap: 8px;
}

.project-tab {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 13px 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition:
    color 180ms ease,
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.project-tab::before {
  position: absolute;
  inset: auto 12px 9px 68px;
  height: 2px;
  content: "";
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.28);
  transform-origin: left;
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.project-tab:hover,
.project-tab:focus-visible {
  color: var(--ink);
  transform: translateX(3px);
  background: rgba(122, 229, 255, 0.1);
}

.project-tab.is-active {
  color: #061018;
  border-color: rgba(255, 255, 255, 0.26);
  background:
    linear-gradient(135deg, var(--jade), var(--cobalt)),
    var(--ink);
  box-shadow: 0 16px 36px rgba(49, 230, 173, 0.16);
}

.project-tab.is-active::before {
  opacity: 0.72;
  transform: scaleX(1);
}

.tab-index {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
  line-height: 1;
  opacity: 0.76;
}

.project-panels {
  display: grid;
  min-height: 500px;
}

.project-panel {
  position: relative;
  display: flex;
  min-height: 500px;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  padding: clamp(26px, 4vw, 46px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(7, 16, 24, 0.04), rgba(7, 16, 24, 0.42)),
    linear-gradient(135deg, #091620, #12485a 44%, #6d2d59 72%, #9a4634);
  isolation: isolate;
}

.project-panel[hidden] {
  display: none;
}

.project-panel::before {
  position: absolute;
  content: "";
  pointer-events: none;
}

.project-panel::before {
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 40px 40px, 40px 40px;
  opacity: 0.72;
}

.project-panel.is-active {
  animation: projectReveal 300ms ease both;
}

.project-panel .project-type,
.project-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.project-panel h2,
.project-panel h3 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.98;
}

.project-panel p {
  max-width: 620px;
  font-size: 18px;
}

.project-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 620px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.project-points li {
  display: grid;
  gap: 2px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.11);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.15;
  backdrop-filter: blur(12px);
}

.project-points li span {
  display: grid;
  grid-template-columns: 12px minmax(0, max-content);
  column-gap: 4px;
  align-items: baseline;
}

.project-points li span::before {
  color: rgba(255, 255, 255, 0.58);
  content: "#";
  font-weight: 900;
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-panel a,
.contact-links a {
  display: inline-grid;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 52px;
  padding: 7px 15px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-weight: 850;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.project-panel a {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.project-panel a:hover,
.project-panel a:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

@keyframes projectReveal {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.992);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 18px;
  padding: 28px 34px 38px 0;
  isolation: isolate;
}

.timeline::before {
  position: absolute;
  inset: 12px 0 16px clamp(34px, 5vw, 72px);
  z-index: 0;
  content: "";
  background:
    linear-gradient(90deg, var(--jade), var(--cobalt) 45%, var(--brick) 76%, var(--gold)) top left / 100% 2px no-repeat,
    linear-gradient(180deg, var(--brick), var(--gold)) top right / 2px 100% no-repeat,
    linear-gradient(270deg, var(--gold), var(--brick) 34%, var(--cobalt) 68%, var(--jade)) bottom left / 100% 2px no-repeat;
  box-shadow: 0 0 24px rgba(122, 229, 255, 0.22);
}

.timeline article {
  --accent: var(--jade);
  --accent-soft: rgba(49, 230, 173, 0.12);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 218px;
  padding: 16px;
  border-color: color-mix(in srgb, var(--accent) 42%, rgba(122, 229, 255, 0.14));
  background:
    linear-gradient(135deg, var(--accent-soft), rgba(255, 255, 255, 0.035) 46%, rgba(255, 255, 255, 0.012)),
    rgba(8, 19, 28, 0.78);
  overflow: visible;
  isolation: isolate;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.timeline article:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.timeline article:nth-child(2) {
  --accent: var(--cobalt);
  --accent-soft: rgba(89, 168, 255, 0.12);
  grid-column: 2;
  grid-row: 1;
}

.timeline article:nth-child(3) {
  --accent: var(--brick);
  --accent-soft: rgba(255, 111, 145, 0.11);
  grid-column: 3;
  grid-row: 1;
}

.timeline article:nth-child(4) {
  --accent: var(--gold);
  --accent-soft: rgba(255, 209, 102, 0.1);
  grid-column: 4;
  grid-row: 1;
}

.timeline article:nth-child(5) {
  --accent: var(--violet);
  --accent-soft: rgba(183, 140, 255, 0.11);
  grid-column: 4;
  grid-row: 2;
}

.timeline article:nth-child(6) {
  --accent: var(--cobalt);
  --accent-soft: rgba(89, 168, 255, 0.13);
  grid-column: 3;
  grid-row: 2;
}

.timeline article:nth-child(7) {
  --accent: var(--brick);
  --accent-soft: rgba(255, 111, 145, 0.12);
  grid-column: 2;
  grid-row: 2;
}

.timeline article:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 64%, rgba(255, 255, 255, 0.18));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 18%, transparent), rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(8, 19, 28, 0.88);
}

.timeline article::before {
  position: absolute;
  top: -23px;
  left: 50%;
  z-index: 2;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(7, 16, 24, 0.96);
  border-radius: 50%;
  content: "";
  background: var(--accent);
  box-shadow: 0 0 22px color-mix(in srgb, var(--accent) 54%, transparent);
  transform: translateX(-50%);
}

.timeline article:nth-child(n + 5)::before {
  top: auto;
  bottom: -23px;
}

.timeline article::after {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 0;
  color: color-mix(in srgb, var(--accent) 22%, transparent);
  content: attr(data-step);
  font-size: clamp(48px, 5.6vw, 78px);
  font-weight: 950;
  line-height: 0.82;
}

.timeline time {
  position: relative;
  z-index: 1;
  display: block;
  min-width: 0;
  padding: 0;
  color: var(--accent);
  font-weight: 900;
  line-height: 1.15;
  text-align: left;
}

.timeline time span:first-child {
  display: inline-grid;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid color-mix(in srgb, var(--accent) 46%, rgba(255, 255, 255, 0.08));
  border-radius: 999px;
  color: var(--ink);
  background: color-mix(in srgb, var(--accent) 12%, rgba(5, 13, 20, 0.74));
  box-shadow: inset 0 0 18px color-mix(in srgb, var(--accent) 12%, transparent);
  font-size: 12px;
  white-space: nowrap;
}

.timeline-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  min-width: 0;
  padding: 0;
}

.timeline-copy {
  min-width: 0;
}

.timeline-copy-en {
  padding-top: 8px;
  margin-top: 9px;
  border-top: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
}

.timeline h2,
.timeline h3,
.timeline p {
  margin: 0;
}

.timeline h2 {
  position: relative;
  color: #f4fbff;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.22;
}

.timeline h3 {
  color: #c4d3dc;
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.22;
}

.timeline h2::before {
  display: block;
  width: 28px;
  height: 2px;
  margin-bottom: 8px;
  border-radius: 999px;
  content: "";
  background: var(--accent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--accent) 44%, transparent);
}

.timeline p {
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.42;
}

.timeline-item-future {
  --accent: var(--gold);
  --accent-soft: rgba(255, 209, 102, 0.13);
  grid-column: 1;
  grid-row: 2;
  border-color: rgba(255, 209, 102, 0.34);
}

.timeline-item-future::before {
  box-shadow: 0 0 22px rgba(255, 209, 102, 0.46);
}

.contact-section {
  position: relative;
  padding: 104px 0;
  overflow: hidden;
}

.about-section.page-section,
.projects-section.page-section,
.contact-section.page-section {
  padding: clamp(48px, 7vh, 76px) 0 clamp(36px, 5vh, 58px);
}

.about-section.page-section .about-visual {
  margin-top: 0;
}

.contact-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 111, 145, 0.24), transparent 26rem),
    radial-gradient(circle at 44% 58%, rgba(89, 168, 255, 0.18), transparent 28rem);
  opacity: 0.9;
}

.contact-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 42px;
  align-items: center;
}

.contact-inner h1,
.contact-inner h2 {
  margin-bottom: 24px;
  font-size: clamp(48px, 8vw, 104px);
}

.contact-inner h1 span,
.contact-inner h2 span {
  display: block;
}

.contact-inner h1 span + span,
.contact-inner h2 span + span {
  color: rgba(237, 247, 255, 0.72);
  font-size: 0.58em;
  line-height: 0.92;
}

.contact-copy p:not(.section-kicker) {
  max-width: 720px;
}

.contact-terminal {
  max-width: 680px;
  margin: 0 0 24px;
}

.contact-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(122, 229, 255, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(49, 230, 173, 0.11), rgba(255, 111, 145, 0.11)),
    rgba(5, 13, 20, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.email-card {
  position: relative;
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(49, 230, 173, 0.18), rgba(89, 168, 255, 0.16), rgba(255, 111, 145, 0.16)),
    rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.email-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.email-card:hover,
.email-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(49, 230, 173, 0.56);
}

.email-card:hover::before,
.email-card:focus-visible::before {
  transform: translateX(120%);
}

.email-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.email-card strong {
  min-width: 0;
  color: #f3fbff;
  font-size: clamp(17px, 2.1vw, 22px);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(4, 64px);
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
}

.contact-links .icon-link {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  min-height: 64px;
  padding: 0;
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.075);
  overflow: hidden;
}

.contact-links .icon-link:hover,
.contact-links .icon-link:focus-visible {
  background: rgba(122, 229, 255, 0.14);
  box-shadow: 0 0 30px rgba(49, 230, 173, 0.14);
}

.icon-link svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.icon-link svg path,
.icon-link svg rect,
.icon-link svg circle {
  vector-effect: non-scaling-stroke;
}

.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;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 92px;
  padding: 22px max(20px, calc((100% - 1120px) / 2));
  border-top: 1px solid var(--line);
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 920px) and (hover: none), (max-width: 920px) and (pointer: coarse) {
  .hero,
  .two-column,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
    padding-top: 26px;
  }

  .hero-panel {
    max-width: 520px;
  }

  .portfolio-board {
    grid-template-columns: 1fr;
  }

  .home-modules {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-tabs {
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }

  .project-tab {
    scroll-snap-align: start;
  }

  .project-panels,
  .project-panel {
    min-height: 430px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 12px 0;
  }

  .timeline::before {
    inset: 28px auto 28px 132px;
    left: 132px;
    width: 2px;
    background: linear-gradient(180deg, var(--jade), var(--cobalt) 46%, var(--brick) 78%, var(--gold));
  }

  .timeline article {
    display: grid;
    grid-column: auto !important;
    grid-row: auto !important;
    grid-template-columns: minmax(92px, 106px) minmax(0, 1fr);
    gap: 34px;
    min-height: 0;
    padding: 22px 24px;
  }

  .timeline article::before {
    top: 50%;
    bottom: auto;
    left: 129px;
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%);
  }

  .timeline time {
    display: grid;
    align-content: center;
    justify-items: end;
    text-align: right;
  }

  .timeline time span:first-child {
    min-height: 44px;
    padding: 0 14px;
    font-size: clamp(18px, 2.2vw, 24px);
  }

  .timeline-content {
    align-content: center;
  }

  .timeline h2 {
    font-size: clamp(22px, 3vw, 31px);
  }

  .timeline h3 {
    font-size: clamp(18px, 2.4vw, 24px);
  }

  .timeline h2::before {
    width: 38px;
    margin-bottom: 14px;
  }

  .timeline p {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.75;
  }

  .timeline-copy-en {
    padding-top: 12px;
    margin-top: 14px;
  }

  .contact-links {
    justify-content: flex-start;
  }

  .contact-card {
    max-width: 520px;
  }
}

@media (max-width: 680px) and (hover: none), (max-width: 680px) and (pointer: coarse) {
  .section-shell,
  .site-header {
    width: min(1120px, calc(100% - 28px));
  }

  .page-section {
    align-items: start;
    padding: 32px 0 28px;
  }

  .page-heading {
    gap: 16px;
    margin-bottom: 18px;
  }

  .page-title h1 span:first-child {
    font-size: clamp(25px, 7vw, 32px);
  }

  .page-title h1 span:last-child:not(:first-child) {
    font-size: clamp(18px, 5.2vw, 23px);
  }

  .site-footer {
    padding-right: 14px;
    padding-left: 14px;
  }

  .site-header {
    right: 14px;
    left: 14px;
    width: auto;
    height: 66px;
    margin: 0;
  }

  .site-header.is-scrolled {
    right: 14px;
    left: 14px;
    width: auto;
  }

  .brand span:last-child {
    display: none;
  }

  .music-toggle {
    right: 14px;
    bottom: 14px;
    width: 52px;
    max-width: calc(100% - 28px);
    min-height: 52px;
    padding: 8px;
    border-radius: 50%;
  }

  .music-copy {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 56px;
    padding-top: 22px;
  }

  .entry-orbit {
    width: min(86vw, 420px);
  }

  .entry-button {
    width: min(calc(100vw - 48px), 320px);
  }

  h1 {
    font-size: clamp(58px, 23vw, 88px);
  }

  h2 {
    font-size: clamp(32px, 11vw, 48px);
  }

  .body-copy {
    font-size: 17px;
  }

  .hero-terminal pre {
    min-height: 0;
    padding: 18px;
    font-size: clamp(15px, 4.3vw, 22px);
  }

  .contact-inner h1,
  .contact-inner h2 {
    font-size: clamp(38px, 16vw, 62px);
  }

  .contact-card {
    padding: 14px;
  }

  .contact-links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .contact-links .icon-link {
    width: 100%;
    height: auto;
    min-height: 58px;
  }

  .about-visual {
    width: min(100%, 520px);
  }

  .portrait {
    min-height: 260px;
  }

  .about-section,
  .content-section,
  .projects-section,
  .contact-section {
    padding: 72px 0;
  }

  .about-section.page-section,
  .projects-section.page-section,
  .contact-section.page-section {
    padding: 32px 0 28px;
  }

  #timeline.content-section.page-section {
    padding: 32px 0 28px;
  }

  .home-modules {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #timeline.content-section {
    width: min(1120px, calc(100% - 28px));
    padding: 72px 0;
  }

  .section-heading {
    display: grid;
    gap: 10px;
  }

  .timeline {
    gap: 14px;
  }

  .timeline::before {
    left: 110px;
  }

  .timeline article {
    grid-template-columns: minmax(82px, 88px) minmax(0, 1fr);
    gap: 22px;
    padding: 18px 16px 18px 14px;
  }

  .timeline article::before {
    left: 107px;
    width: 9px;
    height: 9px;
  }

  .timeline time span:first-child {
    font-size: 15px;
    min-height: 36px;
    padding: 0 8px;
  }

  .timeline article::after {
    top: 12px;
    right: 14px;
    font-size: 58px;
  }

  .timeline h2 {
    font-size: clamp(21px, 7vw, 30px);
  }

  .timeline h3 {
    font-size: clamp(17px, 5.4vw, 23px);
  }

  .timeline p {
    font-size: 15px;
  }

  .quick-facts div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
}

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