/* ===========================
   CSS Variables & Theme System
   =========================== */
:root {
  --bg: #0a0e1a;
  --surface: #111827;
  --surface-alt: #1e2d3d;
  --text-primary: #e2e8f0;
  --text-secondary: #94a3b8;
  --accent: #22d3ee;
  --accent-purple: #a78bfa;
  --terminal-green: #fb923c;
  --border: #1e293b;
  --bg-rgb: 10, 14, 26;
  --accent-rgb: 34, 211, 238;
}

[data-theme="light"] {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-alt: #f1f5f9;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --accent: #0e7490;
  --accent-purple: #7c3aed;
  --terminal-green: #ea580c;
  --border: #e2e8f0;
  --bg-rgb: 248, 250, 252;
  --accent-rgb: 14, 116, 144;
}

/* ===========================
   Skip to Content
   =========================== */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  background: var(--accent);
  color: #0a0e1a;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  border-radius: 0 0 0.5rem 0;
  text-decoration: none;
}
.skip-to-content:focus {
  left: 0;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

.hero-name, .section-title, .alter-hero-title,
.exp-company, .cert-name, .edu-degree, .bento-title {
  font-family: 'Outfit', sans-serif;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
}

img {
  max-width: 100%;
  display: block;
}

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

/* ===========================
   Scroll Progress Bar
   =========================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--accent); z-index: 1001; width: 0%;
  transition: width 0.1s linear; border-radius: 0 3px 3px 0;
}

/* ===========================
   Glassmorphism Navbar
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(var(--bg-rgb), 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  cursor: pointer;
}

.nav-logo span {
  color: var(--text-secondary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 0.4rem 0.8rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s;
}

.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.status-indicator {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: 'JetBrains Mono', monospace; font-size: 0.62rem; color: var(--text-secondary);
}

.status-dot-live {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80; animation: pulse-dot 2s infinite;
}

.alter-ego-btn {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: none;
  border-radius: 0.4rem;
  padding: 0.4rem 1rem;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.2s;
}

.alter-ego-btn:hover {
  background: rgba(var(--accent-rgb), 0.08);
  transform: none;
  box-shadow: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===========================
   Mobile Nav Overlay
   =========================== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 1.5rem;
  color: var(--text-primary);
  font-weight: 600;
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--accent);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
}

.hero-kubectl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--terminal-green);
  margin-bottom: 1rem;
  opacity: 0.8;
}

.hero-kubectl::before {
  content: '> ';
  color: var(--accent);
}

.hero-name {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-typed-wrapper {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  min-height: 2rem;
}

.hero-typed-wrapper .typed-text {
  color: var(--accent);
  font-weight: 600;
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--accent);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink 0.75s step-end infinite;
}

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

.hero-tagline {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-ctas[data-resume-enabled="false"] a[href*="resume"] {
  display: none;
}

.btn-primary {
  background: var(--accent);
  color: #0a0e1a;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1.5px solid var(--accent);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(var(--accent-rgb), 0.1);
  transform: translateY(-2px);
}

.social-row {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.2s;
  text-decoration: none;
}

.social-icon:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ===========================
   Terminal Window
   =========================== */
.terminal {
  background: #0d1117;
  border-radius: 0.75rem;
  border: 1px solid #30363d;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
}

[data-theme="light"] .terminal {
  background: #1a1f2e;
  border-color: #30363d;
}

.terminal-header {
  background: #161b22;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

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

.dot-red { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #28ca41; }

.terminal-title {
  color: #6e7681;
  font-size: 0.75rem;
  margin-left: 0.5rem;
}

.terminal-body {
  padding: 1rem 1.25rem;
  min-height: 280px;
  line-height: 1.8;
}

.terminal-line {
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
  white-space: pre;
}

.terminal-line.visible {
  opacity: 1;
  transform: translateY(0);
}

.t-prompt { color: var(--terminal-green); }
.t-cmd { color: #e2e8f0; }
.t-comment { color: #6e7681; }
.t-key { color: #79c0ff; }
.t-value { color: #ffa657; }
.t-string { color: #a5d6ff; }
.t-success { color: #3fb950; }
.t-warn { color: #d29922; }
.t-name { color: #a78bfa; }
.t-namespace { color: #22d3ee; }
.t-running { color: #3fb950; }
.t-cursor {
  display: inline-block;
  width: 8px;
  height: 1em;
  background: var(--terminal-green);
  vertical-align: text-bottom;
  animation: blink 0.75s step-end infinite;
}

/* ===========================
   Section Commons
   =========================== */
section {
  padding: 5rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--terminal-green);
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ===========================
   Scroll Reveal
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.section-label.reveal.visible::before {
  content: '> ';
  color: var(--accent);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===========================
   About Section
   =========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.avatar-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.avatar {
  width: 220px;
  height: 220px;
  border-radius: 1rem;
  background: var(--surface);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--terminal-green);
  box-shadow: 0 0 32px rgba(var(--accent-rgb), 0.2);
  overflow: hidden;
  position: relative;
}

.avatar-terminal {
  padding: 0.75rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.avatar-terminal-header {
  display: flex;
  gap: 5px;
  margin-bottom: 0.75rem;
}

.avatar-initials {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.chip {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.35rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.about-bio {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 0.75rem;
  padding: 1.25rem 1rem;
  text-align: center;
}

.stat-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ===========================
   Skills Section
   =========================== */
.skills-section {
  position: relative;
  overflow: hidden;
}

.floating-icons-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-icon {
  position: absolute;
  opacity: 0.12;
  animation: float-random linear infinite;
  will-change: transform;
}

@keyframes float-random {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10px, -20px) rotate(90deg); }
  50% { transform: translate(-10px, -40px) rotate(180deg); }
  75% { transform: translate(15px, -60px) rotate(270deg); }
  100% { transform: translate(0, -80px) rotate(360deg); opacity: 0; }
}

.skills-terminal-wrap {
  background: rgba(13,17,23,0.6); border: 1px solid #30363d;
  border-radius: 0.75rem; overflow: hidden; position: relative; z-index: 1;
}

.skills-terminal-header {
  background: #161b22; padding: 0.6rem 1rem;
  display: flex; align-items: center; gap: 0.5rem; border-bottom: 1px solid #30363d;
}

.skills-terminal-body { padding: 1.5rem; }

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.skill-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

.skill-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.skill-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.skill-card-title::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tag {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  padding: 0.3rem 0.65rem;
  border-radius: 0.35rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.2s;
  cursor: default;
}

.skill-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--accent-rgb), 0.15);
}

.skill-tag img {
  width: 16px;
  height: 16px;
}

/* ===========================
   Experience Timeline
   =========================== */
.timeline {
  position: relative;
  padding: 1rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}

.timeline-entry {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-entry:nth-child(odd) .timeline-content {
  grid-column: 1;
  text-align: right;
}

.timeline-entry:nth-child(odd) .timeline-dot-col {
  grid-column: 2;
}

.timeline-entry:nth-child(odd) .timeline-spacer {
  grid-column: 3;
}

.timeline-entry:nth-child(even) .timeline-spacer {
  grid-column: 1;
}

.timeline-entry:nth-child(even) .timeline-dot-col {
  grid-column: 2;
}

.timeline-entry:nth-child(even) .timeline-content {
  grid-column: 3;
  text-align: left;
}

.timeline-dot-col {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 1.25rem;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 3px var(--accent);
  flex-shrink: 0;
}

.timeline-dot.current {
  background: var(--terminal-green);
  box-shadow: 0 0 0 3px var(--terminal-green), 0 0 12px var(--terminal-green);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px var(--terminal-green), 0 0 8px var(--terminal-green); }
  50% { box-shadow: 0 0 0 3px var(--terminal-green), 0 0 20px var(--terminal-green); }
}

.timeline-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.timeline-content:hover {
  border-color: var(--accent);
}

.timeline-entry:nth-child(odd) .timeline-content {
  border-radius: 0.75rem 0.75rem 0 0.75rem;
}

.timeline-entry:nth-child(even) .timeline-content {
  border-radius: 0.75rem 0.75rem 0.75rem 0;
}

.timeline-company {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.timeline-role {
  display: inline-block;
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 0.3rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  padding: 0.2rem 0.5rem;
  border-radius: 0.3rem;
  border: 1px solid;
  margin-bottom: 1rem;
}

.status-badge.running {
  color: var(--terminal-green);
  border-color: var(--terminal-green);
  background: rgba(251, 146, 60, 0.08);
}

.status-badge.completed {
  color: green;
  border-color: green;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.status-badge.running .status-dot {
  animation: pulse-dot 1.5s ease infinite;
}

.timeline-bullets {
  list-style: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.timeline-bullets li::before {
  content: '→ ';
  color: var(--accent);
  font-weight: 700;
}

.timeline-bullets strong {
  color: var(--text-primary);
}

/* ===========================
   Experience Big Tiles
   =========================== */
.exp-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}

.exp-card {
  background: var(--surface); border: 1px solid var(--border);
  border-left: 5px solid var(--accent); border-radius: 1rem;
  padding: 2.5rem; position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.exp-card:hover {
  transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.exp-card-bg-letter {
  position: absolute; right: 2rem; top: 50%;
  transform: translateY(-50%); font-size: 8rem; font-weight: 900;
  opacity: 0.04; font-family: 'Outfit', sans-serif; color: var(--accent);
}

.exp-company {
  font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 900; margin-bottom: 0.5rem;
}

.exp-meta {
  font-family: 'JetBrains Mono', monospace; font-size: 0.8rem;
  color: var(--text-secondary); margin-bottom: 1rem;
}

/* ===========================
   Certifications
   =========================== */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.cert-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 1rem 1rem 0 0;
}

.cert-card.cka::before { background: #326CE5; }
.cert-card.cks::before { background: #e53e3e; }
.cert-card.ckad::before { background: #38a169; }

.cert-card:hover {
  transform: translateY(-4px);
}

.cert-card.cka:hover { box-shadow: 0 12px 32px rgba(50, 108, 229, 0.2); }
.cert-card.cks:hover { box-shadow: 0 12px 32px rgba(229, 62, 62, 0.2); }
.cert-card.ckad:hover { box-shadow: 0 12px 32px rgba(56, 161, 105, 0.2); }
.cert-card.rhcsa::before { background: #EE0000; }
.cert-card.rhcsa:hover { box-shadow: 0 12px 32px rgba(238, 0, 0, 0.2); }

.cert-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.cert-card.cka .cert-badge { background: rgba(50, 108, 229, 0.15); }
.cert-card.cks .cert-badge { background: rgba(229, 62, 62, 0.15); }
.cert-card.ckad .cert-badge { background: rgba(56, 161, 105, 0.15); }
.cert-card.rhcsa .cert-badge { background: rgba(238, 0, 0, 0.12); }

.cert-name {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.cert-card.cka .cert-name { color: #326CE5; }
.cert-card.cks .cert-name { color: #e53e3e; }
.cert-card.ckad .cert-name { color: #38a169; }
.cert-card.rhcsa .cert-name { color: #EE0000; }

.cert-full-name {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.cert-issuer {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.cert-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--terminal-green);
  background: rgba(251, 146, 60, 0.1);
  border: 1px solid rgba(251, 146, 60, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
}

/* ===========================
   Projects / Bento Grid
   =========================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0.75rem;
  padding: 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.bento-card:first-child {
  border-left-color: var(--accent);
  box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.15);
}

.bento-card:nth-child(2) { border-left-color: #a78bfa; }
.bento-card:nth-child(3) { border-left-color: #f59e0b; }
.bento-card:nth-child(4) { border-left-color: #10b981; }
.bento-card:nth-child(5) { border-left-color: #06b6d4; }
.bento-card:nth-child(6) { border-left-color: #8b5cf6; }
.bento-card:nth-child(7) { border-left-color: #f59e0b; }
.bento-card:nth-child(8) { border-left-color: #ec4899; }

.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.bento-metric {
  font-family: 'JetBrains Mono', monospace;
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.bento-card:nth-child(2) .bento-metric { color: #a78bfa; }
.bento-card:nth-child(3) .bento-metric { color: #f59e0b; }
.bento-card:nth-child(4) .bento-metric { color: #10b981; }
.bento-card:nth-child(5) .bento-metric { color: #06b6d4; }
.bento-card:nth-child(6) .bento-metric { color: #8b5cf6; }
.bento-card:nth-child(7) .bento-metric { color: #f59e0b; }
.bento-card:nth-child(8) .bento-metric { color: #ec4899; }

.bento-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.bento-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.tilt-card {
  transform-style: preserve-3d; transition: transform 0.15s ease; will-change: transform;
}

/* ===========================
   Education
   =========================== */
.edu-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 700px;
  transition: border-color 0.2s;
}

.edu-card:hover {
  border-color: var(--accent);
}

.edu-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.edu-degree {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.edu-school {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.edu-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.edu-coursework {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

/* ===========================
   Contact Section
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-terminal {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
}

.contact-terminal .t-prompt { color: var(--terminal-green); }

.contact-link {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-link:hover {
  opacity: 0.8;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  font-family: 'JetBrains Mono', monospace;
}

.form-input,
.form-textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s;
  outline: none;
  resize: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}

.form-input.error,
.form-textarea.error {
  border-color: #e53e3e;
}

.form-error {
  font-size: 0.75rem;
  color: #e53e3e;
  font-family: 'JetBrains Mono', monospace;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-success {
  display: none;
}

.form-success.visible {
  display: block;
}

.btn-spinner {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(10, 14, 26, 0.3);
  border-top-color: #0a0e1a;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

.t-key { color: var(--text-secondary); }

/* ===========================
   Footer
   =========================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.footer-social .social-icon {
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-social .social-icon:hover {
  color: var(--accent);
}

.back-to-top {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.back-to-top:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ===========================
   Pipeline Diagram
   =========================== */
.pipeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0;
  overflow-x: auto;
  padding: 1rem 0;
  margin: 2rem 0;
}

.pipeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.pipeline-node {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-size: 1.75rem;
  transition: all 0.3s;
}

.pipeline-node.active {
  border-color: var(--accent);
  background: rgba(var(--accent-rgb), 0.1);
  box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.2);
}

.pipeline-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.pipeline-arrow {
  flex: 1;
  height: 2px;
  background: var(--border);
  position: relative;
}

.pipeline-arrow::after {
  content: '▶';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: var(--border);
}

.pipeline-arrow.active {
  background: var(--accent);
}

.pipeline-arrow.active::after {
  color: var(--accent);
}

.pipeline-badge {
  position: absolute; top: -26px; left: 50%; transform: translateX(-50%);
  white-space: nowrap; font-family: 'JetBrains Mono', monospace; font-size: 0.6rem;
  color: var(--text-secondary); background: var(--surface-alt);
  border: 1px solid var(--border); padding: 0.15rem 0.4rem; border-radius: 0.25rem;
}

/* ===========================
   ALTER EGO PAGE
   =========================== */
body.alter-ego {
  --accent: #f59e0b;
  --accent-purple: #0d9488;
  --terminal-green: #10b981;
  --accent-rgb: 245, 158, 11;
}

[data-theme="light"] body.alter-ego,
body.alter-ego[data-theme="light"] {
  --accent: #d97706;
  --accent-purple: #0f766e;
  --terminal-green: #059669;
  --accent-rgb: 217, 119, 6;
}

.alter-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.alter-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
}

.alter-hero-icons {
  font-size: 3rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
  animation: bounce-in 0.8s ease both;
}

.alter-hero-icons span {
  display: inline-block;
  animation: float-icon 3s ease-in-out infinite;
}

.alter-hero-icons span:nth-child(2) { animation-delay: 0.5s; }
.alter-hero-icons span:nth-child(3) { animation-delay: 1s; }

@keyframes float-icon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes bounce-in {
  0% { opacity: 0; transform: scale(0.5); }
  80% { transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

.alter-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--text-primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.alter-section-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

/* Travel */
.travel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.travel-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.travel-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.travel-flag {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.travel-place {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.travel-status {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-family: 'JetBrains Mono', monospace;
}

.travel-status.visited { color: var(--terminal-green); }
.travel-status.dream { color: var(--accent); }

/* Ticker tape */
.ticker-wrapper {
  overflow: hidden;
  background: #0d1117;
  border-radius: 0.5rem;
  padding: 0.75rem 0;
  margin: 1.5rem 0;
  border: 1px solid #30363d;
}

.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 20s linear infinite;
}

.ticker-inner:hover {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
}

.ticker-symbol { color: #79c0ff; font-weight: 700; }
.ticker-up { color: #3fb950; }
.ticker-down { color: #f85149; }

/* Finance cards */
.finance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.finance-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: border-color 0.2s;
}

.finance-card:hover {
  border-color: var(--accent);
}

.finance-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 0.5rem;
}

.finance-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
}

/* Sports */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.sport-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.sport-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.sport-card.featured {
  border-color: var(--accent);
  background: rgba(245, 158, 11, 0.05);
}

.sport-card.featured::before {
  content: 'FEATURED';
  position: absolute;
  top: 1rem;
  right: -1.5rem;
  background: var(--accent);
  color: #0a0e1a;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 0.2rem 2rem;
  transform: rotate(45deg);
  letter-spacing: 0.1em;
}

.sport-emoji { font-size: 2.5rem; margin-bottom: 0.75rem; }
.sport-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem; }
.sport-desc { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 0.75rem; }

.sport-level {
  display: inline-block;
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-family: 'JetBrains Mono', monospace;
}

/* Back CTA */
.back-cta {
  text-align: center;
  padding: 5rem 2rem;
}

.back-cta-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 20px; background: var(--text-secondary); }
  .timeline-entry {
    grid-template-columns: 40px 1fr;
    gap: 0 0.75rem;
  }
  .timeline-entry:nth-child(odd) .timeline-content,
  .timeline-entry:nth-child(even) .timeline-content {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    border-radius: 0.75rem;
  }
  .timeline-entry:nth-child(odd) .timeline-dot-col,
  .timeline-entry:nth-child(even) .timeline-dot-col {
    grid-column: 1;
    grid-row: 1;
  }
  .timeline-spacer { display: none; }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .finance-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .alter-ego-btn { display: none; }
  .status-indicator { display: none; }
  .navbar { padding: 1rem; }
  section { padding: 3.5rem 1.25rem; }
  .hero { padding: 5rem 1.25rem 3rem; }
  .pipeline { flex-direction: column; }
  .pipeline-arrow { width: 2px; height: 30px; flex: none; }
  .pipeline-arrow::after { right: 50%; top: auto; bottom: -8px; transform: translateX(50%) rotate(90deg); }
  .pipeline-badge { display: none; }
  .back-btn { display: none; }
  .nav-logo { white-space: nowrap; }
  .terminal { font-size: 0.72rem; }
  .terminal-body { min-height: 200px; overflow-x: auto; }
}

@media (max-width: 600px) {
  .bento-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: 1fr; }
  .globe-container { display: none; }
}

@media (max-width: 480px) {
  .hero-name { font-size: 2rem; }
  .stat-cards { grid-template-columns: 1fr; }
}

/* ===========================
   Hex Grid Pattern
   =========================== */
.hex-bg {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='57.7' viewBox='0 0 50 57.7'%3E%3Cpolygon points='25,0 50,14.4 50,43.3 25,57.7 0,43.3 0,14.4' fill='none' stroke='%231e293b' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 50px 57.7px;
}

[data-theme="light"] .hex-bg {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='57.7' viewBox='0 0 50 57.7'%3E%3Cpolygon points='25,0 50,14.4 50,43.3 25,57.7 0,43.3 0,14.4' fill='none' stroke='%23e2e8f0' stroke-width='1'/%3E%3C/svg%3E");
}

/* ===========================
   Globe SVG (Travel)
   =========================== */
.globe-container {
  position: relative; width: 100%; max-width: 700px; margin: 0 auto 2rem;
}

.world-path {
  stroke-width: 0.5;
  transition: fill 0.3s, stroke 0.3s;
}
[data-theme="dark"] .world-path {
  fill: rgba(255, 255, 255, 0.1);
  stroke: rgba(255, 255, 255, 0.2);
}
[data-theme="light"] .world-path {
  fill: rgba(0, 0, 0, 0.12);
  stroke: rgba(0, 0, 0, 0.18);
}

.map-pin {
  cursor: pointer;
}

.map-tooltip {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: 0.5rem;
  padding: 0.6rem 0.9rem;
  pointer-events: none;
  z-index: 10;
  min-width: 120px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.map-tooltip-flag {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.map-tooltip-country {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.map-tooltip-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
}

.pin-pulse {
  animation: pin-pulse 2s ease-in-out infinite;
}

@keyframes pin-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ===========================
   Books Section
   =========================== */
.books-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem;
}

.book-card {
  background: var(--surface-alt); border: 1px solid var(--border);
  border-radius: 0.75rem; padding: 1.25rem; transition: transform 0.2s, border-color 0.2s;
}

.book-card:hover {
  transform: translateY(-2px); border-color: var(--accent);
}

.book-card.reading { border-left: 3px solid var(--accent); }
.book-card.completed { border-left: 3px solid #4ade80; }

.book-emoji { font-size: 1.5rem; margin-bottom: 0.5rem; }
.book-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.25rem; }
.book-author { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 0.5rem; }

.book-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; }

.book-tag {
  font-size: 0.65rem; padding: 0.15rem 0.5rem; border-radius: 2rem;
  background: rgba(var(--accent-rgb), 0.1); color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
}

/* ===========================
   Alter Ego Hero Icon Animations
   =========================== */
.alter-icon-wrap span { display: inline-block; opacity: 0; }
.alter-icon-wrap span:nth-child(1) { animation: slide-left 0.6s 0.2s ease forwards; }
.alter-icon-wrap span:nth-child(2) { animation: slide-top 0.6s 0.4s ease forwards; }
.alter-icon-wrap span:nth-child(3) { animation: slide-right 0.6s 0.6s ease forwards; }
.alter-icon-wrap span:nth-child(4) { animation: slide-bottom 0.6s 0.8s ease forwards; }

@keyframes slide-left { from { opacity:0; transform:translateX(-40px); } to { opacity:1; transform:none; } }
@keyframes slide-top { from { opacity:0; transform:translateY(-40px); } to { opacity:1; transform:none; } }
@keyframes slide-right { from { opacity:0; transform:translateX(40px); } to { opacity:1; transform:none; } }
@keyframes slide-bottom { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:none; } }

/* ===========================
   Back to Work Button
   =========================== */
.back-to-work-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent); color: #0a0e1a; padding: 0.85rem 2rem;
  border-radius: 0.5rem; font-weight: 700; font-size: 1rem;
  font-family: 'Outfit', sans-serif; transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
}

.back-to-work-btn:hover { opacity: 0.85; transform: translateY(-2px); }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ===========================
   Reduced Motion
   =========================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .floating-icon { display: none; }
  .cursor { animation: none; }
  .pipeline-node, .pipeline-arrow { opacity: 1; }
  .ticker-inner { animation: none; }
}
