/* Portfolio — Amadeus Kaczmarek */

:root {
  --bg: #030712;
  --bg-elevated: rgba(12, 18, 32, 0.88);
  --bg-card: rgba(15, 23, 42, 0.72);
  --border: rgba(148, 163, 184, 0.18);
  --border-hover: rgba(56, 189, 248, 0.45);
  --text: #94a3b8;
  --text-primary: #f1f5f9;
  --text-muted: #64748b;
  --accent: #38bdf8;
  --accent-dim: rgba(56, 189, 248, 0.12);
  --violet: #818cf8;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", var(--font-sans);
  --font-mono: "JetBrains Mono", Consolas, monospace;
  --nav-height: 72px;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --max-w: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 1.25rem);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: max(1.25rem, env(safe-area-inset-left));
  padding-right: max(1.25rem, env(safe-area-inset-right));
}

.text-accent,
.text-gradient {
  color: var(--accent);
}

/* ── Ambient background ── */

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.ambient-orb--blue {
  width: 480px;
  height: 480px;
  top: -120px;
  left: -80px;
  background: rgba(56, 189, 248, 0.22);
}

.ambient-orb--violet {
  width: 420px;
  height: 420px;
  bottom: 10%;
  right: -100px;
  background: rgba(129, 140, 248, 0.16);
}

.ambient-orb--teal {
  width: 400px;
  height: 400px;
  top: 20%;
  right: 15%;
  background: rgba(45, 212, 191, 0.14);
}

.ambient-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.ambient-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, black, transparent);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 200;
  background: rgba(56, 189, 248, 0.08);
}

.scroll-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--violet));
  transition: width 0.1s linear;
}

/* ── Header ── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(3, 7, 18, 0.75);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s;
  padding-top: env(safe-area-inset-top);
}

.site-header.scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: var(--nav-height);
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
  flex-shrink: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 11px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.brand-text {
  display: none;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
}

.brand-role {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(0.45rem, 1.8vw, 1.2rem);
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active { color: var(--accent); }

.nav-index {
  color: var(--accent);
  margin-right: 0.15rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.75rem;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 9px;
  color: var(--text);
  border: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.icon-btn:hover {
  color: var(--accent);
  border-color: var(--border);
  background: var(--bg-card);
}

.icon-btn svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle span {
  display: block;
  width: 1rem;
  height: 2px;
  margin-inline: auto;
  background: var(--text-primary);
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem clamp(1rem, 4vw, 2rem) 1.25rem;
  border-top: 1px solid var(--border);
  background: rgba(3, 7, 18, 0.98);
}

.mobile-nav.open { display: flex; }

.mobile-nav .nav-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.5rem 0;
  font-size: 0.82rem;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.mobile-nav-actions .btn {
  flex: 1 1 calc(50% - 0.25rem);
  min-height: 48px;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.15s, border-color 0.2s;
}

.btn-sm {
  padding: 0.52rem 1rem;
  font-size: 0.68rem;
}

.btn-primary {
  color: #041018;
  background: var(--accent);
  border-color: var(--accent);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(56, 189, 248, 0.35);
}

.btn-outline {
  color: var(--text-primary);
  background: transparent;
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--text);
  background: var(--bg-card);
  border-color: var(--border);
}

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
}

/* ── Sections ── */

.section {
  padding: clamp(4.5rem, 10vw, 7rem) 0;
}

.section--alt {
  background: rgba(15, 23, 42, 0.25);
  border-block: 1px solid rgba(148, 163, 184, 0.06);
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-label {
  margin: 0 0 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1.15;
}

.section-lead {
  margin: 0;
  max-width: 40rem;
  font-size: 1.02rem;
  line-height: 1.75;
}

/* ── Hero ── */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-height);
  padding-bottom: 0;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.1fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.hero-panel {
  width: 100%;
  min-width: 0;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.availability-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: #86efac;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.22);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.7);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-location {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.hero-title {
  margin: 0 0 1.25rem;
}

.hero-greeting {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.06em;
}

.hero-name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text-primary);
}

.hero-terminal-line {
  margin: 0 0 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.tok-prompt { color: var(--accent); }

.hero-headline {
  margin: 0 0 1rem;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
}

.hero-copy {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero-copy a {
  color: var(--accent);
  text-decoration: none;
}

.hero-copy a:hover { text-decoration: underline; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.hero-stat {
  padding: 0;
  border: none;
  background: none;
  backdrop-filter: none;
}

.hero-stat:hover { transform: none; border-color: transparent; }

.hero-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 0.15rem;
}

.hero-stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Code window */

.code-window {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.code-window-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
}

.window-dots {
  display: flex;
  gap: 0.35rem;
}

.window-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.window-dots span:nth-child(1) { background: #f87171; }
.window-dots span:nth-child(2) { background: #fbbf24; }
.window-dots span:nth-child(3) { background: #4ade80; }

.code-window-body {
  margin: 0;
  padding: 1.15rem 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  line-height: 1.75;
  color: #cbd5e1;
  overflow-x: auto;
}

.code-window-body code { font-family: inherit; }

.tok-comment { color: var(--text-muted); }
.tok-keyword { color: var(--accent); }
.tok-prop { color: #fbbf24; }
.tok-str { color: #4ade80; }
.tok-cmd { color: #e2e8f0; }

.cursor {
  display: inline-block;
  width: 0.55em;
  height: 1em;
  margin-left: 2px;
  vertical-align: text-bottom;
  background: var(--text-primary);
  animation: blink 1s step-end infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.code-window-footer {
  padding: 0 1.2rem 1.1rem;
}

/* Interactive shell — Linux layout, portfolio theme */

.code-window--shell {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: clamp(380px, 42vh, 480px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  transition: border-color 0.2s, box-shadow 0.2s;
  overflow-anchor: none;
}

.code-window--shell.shell-focused {
  border-color: var(--border-hover);
  box-shadow: var(--shadow), 0 0 0 1px rgba(56, 189, 248, 0.15);
}

.code-window--shell .code-window-bar--linux {
  justify-content: center;
  padding: 0.55rem 0.85rem;
  background: rgba(5, 8, 16, 0.65);
  border-bottom: 1px solid var(--border);
}

.code-window--shell .window-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.shell-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.15rem 0.75rem;
  min-height: clamp(320px, 36vh, 400px);
  font-family: var(--font-mono);
  font-size: clamp(0.78rem, 1.1vw, 0.875rem);
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.07), transparent 45%),
    radial-gradient(circle at 100% 100%, rgba(129, 140, 248, 0.05), transparent 40%),
    rgba(5, 8, 16, 0.55);
  overflow: hidden;
  overflow-anchor: none;
}

.shell-output {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 0.65rem;
  min-height: 240px;
  max-height: clamp(260px, 30vh, 340px);
  scrollbar-width: thin;
  scrollbar-color: rgba(56, 189, 248, 0.28) transparent;
}

.shell-output::-webkit-scrollbar {
  width: 6px;
}

.shell-output::-webkit-scrollbar-track {
  background: transparent;
}

.shell-output::-webkit-scrollbar-thumb {
  background: rgba(56, 189, 248, 0.28);
  border-radius: 999px;
}

.shell-line {
  margin-bottom: 0.2rem;
  word-break: break-word;
}

.shell-line:empty {
  min-height: 0.75rem;
}

.shell-accent { color: var(--accent); }
.shell-dim { color: var(--text-muted); }
.shell-error { color: #f87171; }
.shell-cmd { color: var(--text-primary); }

.prompt-user { color: var(--accent); font-weight: 600; }
.prompt-colon { color: var(--text-muted); }
.prompt-path { color: var(--violet); }
.prompt-symbol { color: var(--text-primary); margin-left: 1px; }

.shell-link {
  color: var(--accent);
  text-decoration: none;
}

.shell-link:hover {
  color: #7dd3fc;
  text-decoration: underline;
}

.shell-input-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.shell-prompt {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: inherit;
  white-space: nowrap;
  cursor: text;
}

.shell-input {
  flex: 1;
  min-width: 0;
  padding: 0.15rem 0;
  border: none;
  background: transparent;
  font-family: var(--font-mono);
  font-size: inherit;
  color: var(--text-primary);
  outline: none;
  caret-color: var(--accent);
}

.shell-input::placeholder {
  color: var(--text-muted);
  opacity: 0.65;
}

.shell-hint {
  margin: 0;
  padding: 0.45rem 1rem 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  background: rgba(5, 8, 16, 0.5);
  border-top: 1px solid var(--border);
}

.shell-hint kbd {
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.62rem;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(56, 189, 248, 0.22);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.68rem;
  color: #86efac;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.28);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.8);
}

/* Tech marquee */

.tech-marquee {
  margin-top: 3rem;
  padding-block: 1rem;
  border-block: 1px solid var(--border);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.tech-marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.tech-marquee-track span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── About bento ── */

.bento-about {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.bento-cell {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.25s, transform 0.25s;
}

.bento-cell:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.bento-cell--wide {
  grid-column: span 2;
}

.bento-cell--accent {
  grid-column: span 3;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.08), rgba(129, 140, 248, 0.06));
  border-color: rgba(56, 189, 248, 0.22);
}

.bento-eyebrow {
  margin: 0 0 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.bento-icon {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.85rem;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.bento-icon span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent);
}

/* ── Timeline ── */

.timeline {
  position: relative;
  padding-left: 1.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: linear-gradient(180deg, var(--accent), var(--violet), transparent);
}

.timeline-item {
  position: relative;
  padding-bottom: 1.75rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-marker {
  position: absolute;
  left: -1.5rem;
  top: 1.35rem;
  width: 11px;
  height: 11px;
  margin-left: -5px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.4);
}

.timeline-marker--award { border-color: var(--violet); box-shadow: 0 0 12px rgba(129, 140, 248, 0.4); }
.timeline-marker--live { border-color: #4ade80; box-shadow: 0 0 12px rgba(74, 222, 128, 0.4); }

.timeline-card {
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.25s, transform 0.25s;
}

.timeline-card:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.timeline-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.5rem;
}

.timeline-date {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
}

.timeline-tag {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(56, 189, 248, 0.22);
}

.timeline-tag--award {
  color: #c4b5fd;
  background: rgba(129, 140, 248, 0.12);
  border-color: rgba(129, 140, 248, 0.25);
}

.timeline-tag--live {
  color: #86efac;
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.22);
}

.timeline-card h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.timeline-org {
  margin: 0 0 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
}

.timeline-card p:last-child {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
}

.bento-cell p {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  line-height: 1.8;
}

.bento-cell p:last-child { margin-bottom: 0; }

.bento-cell strong { color: var(--text-primary); }

.bento-cell a {
  color: var(--accent);
  text-decoration: none;
}

.bento-cell a:hover { text-decoration: underline; }

.bento-cell h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-primary);
}

.bento-cell p:last-of-type:not(:only-of-type) {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* ── Skills ── */

.skills-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.skill-tab {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.skill-tab:hover,
.skill-tab.active {
  color: var(--accent);
  border-color: rgba(56, 189, 248, 0.4);
  background: var(--accent-dim);
}

.skills-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s, opacity 0.25s;
}

.skill-chip:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.skill-chip.hidden { display: none; }
.skill-chip.dimmed { opacity: 0.35; }

.skill-chip-abbr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.65rem;
  padding: 0.15rem 0.3rem;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(56, 189, 248, 0.22);
}

/* ── Projects ── */

.projects-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.project-tile {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.project-tile:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow), 0 0 0 1px rgba(56, 189, 248, 0.1);
}

.project-tile-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  border-right: 1px solid var(--border);
  background:
    radial-gradient(circle at 30% 40%, rgba(56, 189, 248, 0.12), transparent 55%),
    rgba(3, 7, 18, 0.5);
}

.project-tile-visual--pryx { background: radial-gradient(circle at 40% 50%, rgba(45, 212, 191, 0.15), transparent 60%), rgba(3, 7, 18, 0.5); }
.project-tile-visual--obsidian { background: radial-gradient(circle at 50% 50%, rgba(129, 140, 248, 0.12), transparent 60%), rgba(3, 7, 18, 0.5); }
.project-tile-visual--lockinai { background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.14), transparent 60%), rgba(3, 7, 18, 0.5); }
.project-tile-visual--downto { background: radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.12), transparent 60%), rgba(3, 7, 18, 0.5); }
.project-tile-visual--railway { background: radial-gradient(circle at 50% 50%, rgba(34, 211, 238, 0.12), transparent 60%), rgba(3, 7, 18, 0.5); }
.project-tile-visual--neurodrive { background: radial-gradient(circle at 50% 50%, rgba(74, 222, 128, 0.12), transparent 60%), rgba(3, 7, 18, 0.5); }
.project-tile-visual--rewind { background: radial-gradient(circle at 50% 50%, rgba(244, 63, 94, 0.12), transparent 60%), rgba(3, 7, 18, 0.5); }

.project-tile-visual img {
  max-width: 70%;
  max-height: 100px;
  object-fit: contain;
}

.project-tile-visual--downto img,
.project-tile-visual--pryx img,
.project-tile-visual--obsidian img,
.project-tile-visual--railway img,
.project-tile-visual--neurodrive img,
.project-tile-visual--lockinai img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  max-width: none;
  max-height: none;
  object-fit: cover;
}

.project-tile-visual--lockinai img {
  object-position: right center;
}

.project-tile-visual--downto:has(img),
.project-tile-visual--pryx:has(img),
.project-tile-visual--obsidian:has(img),
.project-tile-visual--railway:has(img),
.project-tile-visual--neurodrive:has(img),
.project-tile-visual--lockinai:has(img),
.project-tile-visual--video {
  padding: 0;
}

.project-tile-visual--video {
  background: rgba(3, 7, 18, 0.92);
}

.project-tile-video {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
  background: #030712;
}

.project-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 14px;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.project-tile-body {
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.project-tile-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.badge {
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge--live {
  color: #86efac;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.28);
}

.badge--award {
  color: #c4b5fd;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.badge--dev {
  color: #fcd34d;
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(234, 179, 8, 0.28);
}

.badge--paused {
  color: #94a3b8;
  background: rgba(100, 116, 139, 0.14);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.project-type {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--text-muted);
}

.project-tile-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}

.project-tile-desc {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  line-height: 1.7;
  flex: 1;
}

.project-tile-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.project-tile-stack span {
  padding: 0.22rem 0.55rem;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.project-tile-links,
.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.github-banner {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  margin-top: 2rem;
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.github-banner-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: rgba(3, 7, 18, 0.8);
  border: 1px solid var(--border);
}

.github-banner-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: var(--text-primary);
}

.github-banner h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-primary);
}

.github-banner p {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── Contact ── */

.contact-section { padding-bottom: 4rem; }

.contact-cta {
  max-width: 36rem;
}

.contact-cta .section-lead {
  margin-bottom: 1.75rem;
}

.contact-cta .hero-actions {
  margin-bottom: 0;
}

.contact-cta .contact-email-line {
  margin: 1.25rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.contact-cta .contact-email-label {
  color: var(--text-primary);
  margin-right: 0.35rem;
}

.contact-cta .contact-email {
  color: var(--accent);
  display: inline;
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  text-decoration: none;
}

.contact-cta .contact-email:hover {
  color: #7dd3fc;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 3rem);
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.25s;
}

.contact-card:hover { border-color: var(--border-hover); }

.contact-card--primary {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(129, 140, 248, 0.06));
  border-color: rgba(56, 189, 248, 0.22);
}

.contact-card-label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-email {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
  word-break: break-all;
}

.contact-email:hover { color: var(--accent); }

.contact-card p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
}

.contact-card-actions,
.contact-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contact-social {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-decoration: none;
  color: var(--text-primary);
  background: rgba(3, 7, 18, 0.45);
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}

.contact-social:hover {
  border-color: var(--border-hover);
  color: var(--accent);
}

.copy-email-btn.copied {
  color: #86efac;
  border-color: rgba(74, 222, 128, 0.35);
}

.contact-panel {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.08), transparent 55%),
    var(--bg-card);
  border: 1px solid var(--border);
}

.contact-panel .section-label { margin-bottom: 0.75rem; }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 1.5rem 0;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.contact-social-link {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-decoration: none;
  color: var(--text-primary);
  border: 1px solid var(--border);
  background: rgba(3, 7, 18, 0.5);
  transition: border-color 0.2s, color 0.2s;
}

.contact-social-link:hover {
  border-color: var(--border-hover);
  color: var(--accent);
}

/* ── Cursor glow ── */

.cursor-glow-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

body.has-cursor-glow main,
body.has-cursor-glow .site-footer {
  position: relative;
  z-index: 2;
}

/* ── Contact page ── */

.contact-page {
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 4rem;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: start;
}

.contact-page-intro {
  max-width: 28rem;
}

.contact-page-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--text-primary);
}

.contact-page-lead {
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
}

.contact-direct-list {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.contact-direct-list li {
  border-bottom: 1px solid var(--border);
}

.contact-direct-link {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0.25rem;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-direct-link:hover {
  color: var(--text-primary);
}

.contact-direct-link:hover .contact-direct-value {
  color: var(--accent);
}

.contact-direct-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-direct-value {
  font-size: 0.92rem;
  color: var(--text-primary);
  transition: color 0.2s;
  word-break: break-all;
}

.contact-direct-arrow {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s, transform 0.2s;
}

.contact-direct-link:hover .contact-direct-arrow {
  color: var(--accent);
  transform: translateX(3px);
}

.contact-location {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-form-panel {
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(3, 7, 18, 0.55);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--border-hover);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form-submit {
  align-self: flex-start;
  margin-top: 0.25rem;
}

.contact-form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.contact-form-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-form-status {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  min-height: 1.2em;
}

.contact-form-status--success { color: #86efac; }
.contact-form-status--error { color: #f87171; }

/* ── Footer ── */

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.footer-inner p { margin: 0; }

/* ── Reveal ── */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */

@media (min-width: 768px) {
  .brand-text { display: flex; }
}

@media (max-width: 900px) {
  .nav-desktop,
  .nav-actions { display: none; }

  .nav-toggle { display: flex; }

  .mobile-nav {
    position: fixed;
    top: calc(var(--nav-height) + env(safe-area-inset-top));
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    padding: 1rem max(1.25rem, env(safe-area-inset-left)) calc(1.5rem + env(safe-area-inset-bottom)) max(1.25rem, env(safe-area-inset-right));
    border-top: 1px solid var(--border);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + env(safe-area-inset-top) + 1.5rem);
    padding-bottom: 2rem;
  }

  .hero-layout,
  .contact-layout,
  .contact-page-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .contact-direct-link {
    grid-template-columns: 4.5rem minmax(0, 1fr) auto;
    gap: 0.65rem;
  }

  .contact-form-submit {
    width: 100%;
    justify-content: center;
  }

  /* Intro first, terminal below on phones */
  .hero-content { order: 1; }
  .hero-panel { order: 2; }

  .section {
    padding: clamp(3.5rem, 8vw, 5rem) 0;
  }

  .section-header {
    margin-bottom: 1.75rem;
  }

  .code-window--shell {
    min-height: 300px;
  }

  .shell-body {
    min-height: 240px;
    padding: 0.85rem 0.9rem 0.65rem;
    font-size: 0.8rem;
  }

  .shell-output {
    min-height: 160px;
    max-height: 200px;
  }

  .shell-input {
    font-size: 16px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .hero-stat {
    padding: 0.85rem 0.9rem;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
  }

  .bento-about {
    grid-template-columns: minmax(0, 1fr);
  }

  .bento-cell--wide,
  .bento-cell--accent { grid-column: span 1; }

  .skills-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    margin-inline: max(-1.25rem, calc(-1 * env(safe-area-inset-left)));
    padding-inline: max(1.25rem, env(safe-area-inset-left));
    padding-bottom: 0.35rem;
  }

  .skills-tabs::-webkit-scrollbar { display: none; }

  .skill-tab {
    flex-shrink: 0;
    min-height: 44px;
    padding: 0.55rem 1rem;
    font-size: 0.72rem;
  }

  .skills-chips {
    gap: 0.4rem;
  }

  .timeline {
    padding-left: 1.25rem;
  }

  .timeline-item {
    padding-left: 1.35rem;
  }

  .project-tile {
    grid-template-columns: minmax(0, 1fr);
  }

  .project-tile-visual {
    min-height: 140px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .project-tile-body {
    padding: 1.15rem 1.2rem;
  }

  .hero-actions,
  .contact-actions,
  .contact-card-actions,
  .project-tile-links,
  .project-links {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .contact-actions .btn,
  .contact-card-actions .btn,
  .project-tile-links .btn,
  .project-links .btn,
  .copy-email-btn {
    width: 100%;
    min-height: 48px;
  }

  .contact-email {
    font-size: clamp(1rem, 4.5vw, 1.25rem);
    padding: 0.25rem 0;
  }

  .contact-social-row {
    flex-direction: column;
  }

  .contact-social {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    font-size: 0.72rem;
  }

  .github-banner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.15rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .tech-marquee {
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .nav-index { display: none; }

  .hero-name {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .hero-headline {
    font-size: 1.1rem;
  }

  .hero-copy {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: clamp(1.55rem, 6vw, 2rem);
  }

  .section-lead {
    font-size: 0.95rem;
  }

  .hero-stats {
    grid-template-columns: minmax(0, 1fr);
  }

  .code-window--shell {
    min-height: 260px;
  }

  .shell-body {
    min-height: 200px;
  }

  .shell-output {
    min-height: 130px;
    max-height: 170px;
  }

  .nav-inner {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cursor-glow-canvas { display: none; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .cursor { animation: none; }
  .tech-marquee-track { animation: none; }
  .project-tile:hover,
  .hero-stat:hover,
  .bento-cell:hover { transform: none; }
}
