StealThis .dev
Pages Hard

AI Engineer Portfolio

Futuristic AI research engineer portfolio with Three.js neural network particle simulation, live training loss curve canvas animation, confusion matrix heatmap, and terminal-style tech stack reveal.

Open in Lab
three.jsgsaplenisscrolltriggerscrambletextcanvas-2d
Targets: JS HTML

Code

/* ═══════════════════════════════════════════════════════════════════════
   AI ENGINEER PORTFOLIO — styles.css
   Dr. Yuki Tanaka // Futuristic data-dense monospace aesthetic
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Reset & Base ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:            #050508;
  --text:          #e0ffe8;
  --dim:           #1a2435;
  --accent-green:  #00ff88;
  --accent-purple: #9945ff;
  --accent-blue:   #00d4ff;
  --muted:         #3a5a4a;
  --border:        #0f2020;
  --mono:          'JetBrains Mono', 'Fira Code', 'Cascadia Code', 'Courier New', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--accent-green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Section base ───────────────────────────────────────────────────── */
.section {
  padding: 100px clamp(24px, 6vw, 120px);
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}

.section-tag {
  font-size: 11px;
  color: var(--accent-green);
  letter-spacing: 0.2em;
  opacity: 0.7;
  white-space: nowrap;
}

.section-title {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--text);
  white-space: nowrap;
  text-transform: uppercase;
}

.section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--muted) 0%, transparent 100%);
}

/* ── HERO ───────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#neural-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(16px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

#hero-meta {
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--accent-green);
  opacity: 0.6;
  text-transform: uppercase;
}

#hero-name {
  font-size: clamp(3rem, 10vw, 9rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--text);
  text-transform: uppercase;
  line-height: 0.9;
  text-shadow:
    0 0 30px rgba(0,255,136,0.3),
    0 0 80px rgba(0,255,136,0.1);
  will-change: transform;
}

#hero-title {
  font-size: clamp(12px, 1.8vw, 18px);
  letter-spacing: 0.3em;
  color: var(--accent-blue);
  text-transform: uppercase;
  opacity: 0.9;
}

#hero-spec-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: clamp(12px, 1.5vw, 16px);
  color: var(--accent-green);
  height: 28px;
  letter-spacing: 0.05em;
  background: rgba(0,255,136,0.05);
  border: 1px solid rgba(0,255,136,0.15);
  padding: 4px 16px;
  border-radius: 2px;
}

#spec-label { opacity: 0.6; }

#spec-cursor {
  animation: blink 0.9s step-end infinite;
  color: var(--accent-green);
  margin-left: 2px;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

#hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-val {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 900;
  color: var(--accent-green);
  line-height: 1;
  text-shadow: 0 0 20px rgba(0,255,136,0.5);
}

.stat-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}

.stat-sep {
  color: var(--border);
  font-size: 24px;
  opacity: 0.5;
  align-self: center;
  margin-bottom: 12px;
}

#hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--muted);
  z-index: 2;
  animation: float-hint 2s ease-in-out infinite;
}

@keyframes float-hint {
  0%,100%{ transform: translateX(-50%) translateY(0); opacity:0.5; }
  50%{ transform: translateX(-50%) translateY(6px); opacity:1; }
}

/* ── RESEARCH ───────────────────────────────────────────────────────── */
#research { max-width: 1400px; }

.papers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: 24px;
}

.paper-card {
  background: var(--dim);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent-green);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.paper-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-purple));
}

.paper-card:hover {
  border-color: var(--muted);
  box-shadow: 0 0 40px rgba(0,255,136,0.08);
}

.paper-venue-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.paper-venue {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 3px 8px;
  border-radius: 2px;
  text-transform: uppercase;
}

.venue-neurips { background: rgba(0,255,136,0.15); color: var(--accent-green); border: 1px solid rgba(0,255,136,0.3); }
.venue-icml    { background: rgba(153,69,255,0.15); color: var(--accent-purple); border: 1px solid rgba(153,69,255,0.3); }
.venue-iclr    { background: rgba(0,212,255,0.15); color: var(--accent-blue); border: 1px solid rgba(0,212,255,0.3); }

.paper-status {
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--accent-green);
  opacity: 0.7;
  margin-left: auto;
}

.paper-title {
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.paper-abstract {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.paper-metrics {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.metric-chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 2px;
}

.metric-label {
  font-size: 8px;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.metric-val {
  font-size: 14px;
  font-weight: 700;
}

.metric-val.green  { color: var(--accent-green); }
.metric-val.blue   { color: var(--accent-blue); }
.metric-val.purple { color: var(--accent-purple); }

.paper-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.paper-authors {
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
}

.paper-link {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--accent-blue);
}

/* ── MODEL VISUALIZATION ────────────────────────────────────────────── */
#model-viz { max-width: 1400px; }

.viz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 900px) { .viz-grid { grid-template-columns: 1fr; } }

.viz-panel {
  background: var(--dim);
  border: 1px solid var(--border);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.viz-panel-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.viz-panel-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent-green);
  text-transform: uppercase;
}

.viz-panel-sub {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

#loss-canvas {
  display: block;
  width: 100%;
  height: 220px;
  background: transparent;
}

.canvas-axes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.axis-y-label, .axis-x-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}

/* Confusion matrix */
#confusion-matrix {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 2px;
  width: 100%;
  aspect-ratio: 1;
}

.cm-cell {
  aspect-ratio: 1;
  border-radius: 1px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  transition: transform 0.15s;
}

.cm-cell:hover {
  transform: scale(1.15);
  z-index: 2;
}

.confusion-labels {
  margin-top: 8px;
}

.confusion-classes {
  display: flex;
  justify-content: space-around;
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ── STACK / TERMINAL ───────────────────────────────────────────────── */
#stack { max-width: 1400px; }

.terminal-wrapper {
  background: #020508;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,255,136,0.05);
  max-width: 860px;
  margin: 0 auto;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #0a0d14;
  border-bottom: 1px solid var(--border);
}

.t-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}

.t-red    { background: #ff5f57; }
.t-yellow { background: #ffbd2e; }
.t-green  { background: #28c840; }

.t-title {
  margin-left: auto;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.terminal-body {
  padding: 24px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.term-line,
.term-output {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateX(-10px);
}

.term-prompt {
  color: var(--accent-green);
  font-weight: 700;
  font-size: 14px;
  min-width: 12px;
  flex-shrink: 0;
}

.term-cmd {
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.03em;
}

.term-key {
  color: var(--accent-blue);
  font-size: 12px;
  min-width: 140px;
  flex-shrink: 0;
}

.term-key-plain {
  font-size: 12px;
  letter-spacing: 0.03em;
}

.term-bar-wrap {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  overflow: hidden;
  max-width: 300px;
}

.term-bar-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}

.term-pct {
  font-size: 11px;
  letter-spacing: 0.08em;
  min-width: 120px;
  text-align: right;
}

.term-pct.green  { color: var(--accent-green); }
.term-pct.blue   { color: var(--accent-blue); }
.term-pct.purple { color: var(--accent-purple); }

.blink-cursor {
  animation: blink 1s step-end infinite;
}

/* ── CONTACT ────────────────────────────────────────────────────────── */
#contact { max-width: 1400px; }

.contact-terminal {
  background: #020508;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px clamp(20px, 5vw, 60px);
  max-width: 700px;
  box-shadow: 0 0 80px rgba(0,255,136,0.04);
}

.contact-prompt-line {
  font-size: clamp(13px, 2vw, 17px);
  margin-bottom: 32px;
  letter-spacing: 0.03em;
}

.contact-user   { color: var(--accent-green); }
.contact-colon  { color: var(--text); }
.contact-path   { color: var(--accent-blue); }
.contact-dollar { color: var(--text); margin-left: 6px; }
.contact-cmd    { color: var(--text); }

.contact-output {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  padding-left: 16px;
}

.contact-row {
  display: flex;
  gap: 16px;
  align-items: baseline;
  flex-wrap: wrap;
}

.co-key {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  min-width: 80px;
}

.co-sep {
  color: var(--border);
  font-size: 12px;
}

.co-val {
  font-size: 13px;
  color: var(--accent-green);
  letter-spacing: 0.03em;
}

a.co-val:hover { text-shadow: 0 0 12px rgba(0,255,136,0.6); }

.contact-cursor-line {
  font-size: clamp(13px, 2vw, 17px);
  display: flex;
  align-items: center;
  gap: 0;
}

.contact-blink {
  color: var(--accent-green);
  animation: blink 0.9s step-end infinite;
  margin-left: 6px;
}

/* ── Reduced motion overrides ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .paper-card { opacity: 1; transform: none; }
  .term-line, .term-output { opacity: 1; transform: none; }
  #spec-cursor, .contact-blink, .blink-cursor { animation: none; opacity: 1; }
  #hero-scroll-hint { animation: none; }
}

/* ── Utility ─────────────────────────────────────────────────────────── */
.green  { color: var(--accent-green); }
.blue   { color: var(--accent-blue); }
.purple { color: var(--accent-purple); }

/* Demo shell overrides to fit dark theme */
.demo-shell-bar {
  background: rgba(5,5,8,0.9) !important;
  border-bottom-color: var(--border) !important;
}

AI Engineer Portfolio

Futuristic AI research engineer portfolio with Three.js neural network particle simulation, live training loss curve canvas animation, confusion matrix heatmap, and terminal-style tech stack reveal.

Source

  • Repository: libs-genclaude
  • Original demo id: 33-ai-engineer

Notes

Futuristic AI research engineer portfolio with Three.js neural network particle simulation, live training loss curve canvas animation, confusion matrix heatmap, and terminal-style tech stack reveal.