/* ════════════════════════════════════════════════════
   OWLINKX — Design System & Full Stylesheet
   ════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ── Design Tokens ── */
:root {
  /* Backgrounds */
  --bg-0: #050611;
  --bg-1: #090A1B;
  --bg-2: #0D0E1F;
  --bg-card: rgba(255,255,255,0.028);
  --bg-card-hover: rgba(255,255,255,0.05);

  /* Borders */
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.13);

  /* Violet / Purple */
  --violet-deep: #5B21B6;
  --violet: #7C3AED;
  --purple: #8B5CF6;
  --purple-light: #A78BFA;
  --purple-pale: #C4B5FD;
  --purple-glow: rgba(139,92,246,0.22);

  /* Cyan / Teal */
  --cyan-deep: #0E7490;
  --cyan: #0891B2;
  --cyan-mid: #22D3EE;
  --cyan-light: #67E8F9;
  --cyan-glow: rgba(34,211,238,0.18);

  /* Amber */
  --amber: #D97706;
  --amber-mid: #F59E0B;
  --amber-light: #FCD34D;

  /* Text */
  --text-0: #F1F5F9;
  --text-1: #CBD5E1;
  --text-2: #94A3B8;
  --text-3: #475569;
  --text-4: #2D3748;

  /* Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-pill: 999px;

  /* Spacing */
  --container-w: 1200px;
  --section-y: clamp(80px, 10vw, 140px);

  /* Easing */
  --ease-expo: cubic-bezier(0.19,1,0.22,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
  --ease-in-out: cubic-bezier(0.4,0,0.2,1);

  color-scheme: dark;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-0);
  color: var(--text-0);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* Fine film-grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  mix-blend-mode: overlay;
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: rgba(139,92,246,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple); }

/* Selection */
::selection { background: var(--purple-glow); color: var(--purple-pale); }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Outfit', system-ui, sans-serif;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

/* ── Layout ── */
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 clamp(20px,5vw,56px);
}

.section { padding: var(--section-y) 0; position: relative; }

.section-header {
  text-align: center;
  margin-bottom: clamp(48px,6vw,80px);
}

.section-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 18px;
  font-family: 'JetBrains Mono', monospace;
}

.section-title {
  font-size: clamp(30px,4.5vw,52px);
  font-weight: 800;
  color: var(--text-0);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Cursor Blob ── */
.cursor-blob {
  position: fixed;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.09) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  top: 0; left: 0;
  transform: translate(-50%,-50%);
  will-change: transform;
  transition: background 0.4s ease;
}

/* ════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.3s var(--ease-expo), box-shadow 0.3s ease, background 0.2s;
  position: relative;
  white-space: nowrap;
  user-select: none;
  will-change: transform;
}

.btn-primary {
  background: linear-gradient(135deg, var(--violet) 0%, var(--purple-light) 100%);
  color: white;
  box-shadow: 0 4px 24px rgba(124,58,237,0.35);
}
.btn-primary:hover {
  box-shadow: 0 8px 40px rgba(124,58,237,0.55);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-0);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-1);
  font-size: 13px;
  padding: 8px 18px;
}
.btn-nav:hover {
  border-color: var(--purple);
  color: var(--text-0);
}

.btn-product {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 15px;
  border-radius: var(--r-md);
  margin-top: auto;
}

.btn-purple {
  background: linear-gradient(135deg, var(--violet) 0%, var(--purple) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(124,58,237,0.3);
}
.btn-purple:hover {
  box-shadow: 0 8px 36px rgba(124,58,237,0.5);
  transform: translateY(-2px);
}

.btn-cyan {
  background: linear-gradient(135deg, var(--cyan-deep) 0%, var(--cyan-mid) 100%);
  color: #020B10;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(34,211,238,0.25);
}
.btn-cyan:hover {
  box-shadow: 0 8px 36px rgba(34,211,238,0.42);
  transform: translateY(-2px);
}

/* Chips */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
}
.chip-purple { background: rgba(139,92,246,0.12); color: var(--purple-light); border: 1px solid rgba(139,92,246,0.22); }
.chip-cyan   { background: rgba(34,211,238,0.09); color: var(--cyan-light);   border: 1px solid rgba(34,211,238,0.18); }
.chip-amber  { background: rgba(245,158,11,0.09); color: var(--amber-light);  border: 1px solid rgba(245,158,11,0.18); }
.chip-default{ background: var(--bg-card);        color: var(--text-3);       border: 1px solid var(--border); }

/* ════════════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.4s var(--ease-expo), border-color 0.4s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(5,6,17,0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 clamp(20px,5vw,56px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--text-0);
}
.nav-logo-img {
  width: 34px; height: 34px;
  border-radius: var(--r-sm);
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--text-0); background: var(--bg-card); }

@media (max-width: 640px) {
  .nav-links { display: none; }
}

/* ════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-0);
}

/* Bottom fade into products section */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 240px;
  background: linear-gradient(to bottom, transparent, var(--bg-1));
  z-index: 3;
  pointer-events: none;
}

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

/* Gradient orbs */
.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}
.orb-1 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(124,58,237,0.38) 0%, transparent 70%);
  top: -180px; left: -180px;
  animation: orb-float 14s ease-in-out infinite;
}
.orb-2 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(34,211,238,0.28) 0%, transparent 70%);
  bottom: -150px; right: -150px;
  animation: orb-float 18s ease-in-out infinite reverse;
  animation-delay: -6s;
}
.orb-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%);
  top: 50%; left: 55%;
  animation: orb-float 22s ease-in-out infinite;
  animation-delay: -11s;
}
@keyframes orb-float {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(25px,-35px) scale(1.06); }
  66%      { transform: translate(-18px,22px) scale(0.94); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 clamp(20px,5vw,48px);
  max-width: 820px;
  animation: fade-up 1.1s var(--ease-expo) 0.2s both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 18px;
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.22);
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--purple-light);
  margin-bottom: 28px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.03em;
  animation: fade-up 1s var(--ease-expo) 0.4s both;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--purple);
  border-radius: 50%;
  animation: pulse-glow 2.4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(139,92,246,0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(139,92,246,0); }
}

.hero-headline {
  font-size: clamp(52px,8.5vw,96px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--text-0);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.headline-line {
  display: block;
  animation: line-reveal 1s var(--ease-expo) both;
}
.headline-line:nth-child(1) { animation-delay: 0.5s; }
.headline-line:nth-child(2) { animation-delay: 0.65s; }
.accent-gradient {
  background: linear-gradient(110deg, var(--purple-light) 0%, var(--cyan-mid) 50%, var(--purple-pale) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: line-reveal 1s var(--ease-expo) 0.65s both, gradient-shift 5s ease infinite 1.5s;
}
@keyframes line-reveal {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes gradient-shift {
  0%,100% { background-position: 0% center; }
  50%     { background-position: 100% center; }
}

.hero-sub {
  font-size: clamp(16px,1.8vw,19px);
  color: var(--text-2);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
  animation: fade-up 1s var(--ease-expo) 0.8s both;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  animation: fade-up 1s var(--ease-expo) 1s both;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
  animation: fade-up 1s var(--ease-expo) 1.4s both;
}
.scroll-indicator-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(139,92,246,0.6));
  animation: line-breathe 2.2s ease-in-out infinite;
}
@keyframes line-breathe {
  0%,100% { opacity: 0.3; transform: scaleY(0.4); transform-origin: top; }
  50%     { opacity: 1;   transform: scaleY(1);   transform-origin: top; }
}

/* ════════════════════════════════════════════════════
   PRODUCTS
════════════════════════════════════════════════════ */
.products-section {
  background: var(--bg-1);
  overflow: hidden;
}
.products-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 5% 50%, rgba(124,58,237,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 55% 40% at 95% 50%, rgba(34,211,238,0.055) 0%, transparent 60%);
  pointer-events: none;
}

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

/* Product Card */
.product-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s var(--ease-expo);
}
.product-card:hover { border-color: var(--border-hover); }
#neighowl-card:hover {
  box-shadow: 0 24px 64px rgba(124,58,237,0.16), 0 0 0 1px rgba(139,92,246,0.1) inset;
}
#appaudio-card:hover {
  box-shadow: 0 24px 64px rgba(34,211,238,0.12), 0 0 0 1px rgba(34,211,238,0.08) inset;
}

/* Top edge glow line */
.product-card-glow {
  position: absolute;
  top: 0; left: 15%; width: 70%; height: 1px;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 0 0 4px 4px;
}
.product-card:hover .product-card-glow { opacity: 1; }
.glow-purple {
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  box-shadow: 0 1px 18px rgba(139,92,246,0.5);
}
.glow-cyan {
  background: linear-gradient(90deg, transparent, var(--cyan-mid), transparent);
  box-shadow: 0 1px 18px rgba(34,211,238,0.4);
}

.product-card-inner {
  padding: clamp(24px,3vw,34px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  height: 100%;
}

.product-header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.product-icon {
  width: 50px; height: 50px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.product-icon-owl  { background: linear-gradient(135deg, var(--violet-deep), var(--purple)); color: white; }
.product-icon-audio{ background: linear-gradient(135deg, var(--cyan-deep),   var(--cyan-mid)); color: white; }

.product-title-group { flex: 1; min-width: 0; }
.product-name {
  font-size: 21px;
  font-weight: 800;
  color: var(--text-0);
  letter-spacing: -0.02em;
}
.product-platform {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-3);
  margin-top: 3px;
  font-family: 'JetBrains Mono', monospace;
}

.product-ext-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: var(--r-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-2);
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.product-ext-link:hover { background: var(--bg-card-hover); border-color: var(--border-hover); color: var(--text-0); }

.product-desc {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.68;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-1);
}
.feature-icon { font-size: 15px; width: 20px; flex-shrink: 0; }

.product-chips { display: flex; flex-wrap: wrap; gap: 7px; }

/* ── Phone Mockup ── */
.product-mockup { border-radius: var(--r-md); overflow: hidden; }

.phone-frame {
  background: #060714;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 32px;
  padding: 12px;
  max-width: 260px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 0 60px rgba(139,92,246,0.1);
}
.phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 76px; height: 22px;
  background: #060714;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-screen {
  background: #08091A;
  border-radius: 22px;
  padding: 34px 12px 12px;
  min-height: 270px;
  border: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
}
.phone-ui { display: flex; flex-direction: column; gap: 10px; }

.phone-header {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: var(--text-0);
}
.phone-owl-icon { font-size: 14px; }
.phone-app-name { flex: 1; }
.phone-anon-badge {
  font-size: 9px;
  padding: 3px 8px;
  background: rgba(139,92,246,0.14);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: var(--r-pill);
  color: var(--purple-light);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
}

.phone-posts { display: flex; flex-direction: column; gap: 7px; }
.phone-post {
  display: flex;
  gap: 8px;
  padding: 9px 10px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 12px;
  transition: background 0.2s;
  animation: post-fade-in 0.5s var(--ease-expo) both;
}
.phone-post:nth-child(1) { animation-delay: 1.8s; }
.phone-post:nth-child(2) { animation-delay: 1.95s; }
.phone-post:nth-child(3) { animation-delay: 2.1s; }
@keyframes post-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

.post-avatar {
  font-size: 16px;
  width: 26px; height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.post-content { flex: 1; min-width: 0; }
.post-zone {
  font-size: 9px;
  color: var(--cyan-mid);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}
.post-text {
  font-size: 10.5px;
  color: var(--text-1);
  line-height: 1.45;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  color: var(--text-3);
  font-family: 'JetBrains Mono', monospace;
}
.post-expire { color: var(--amber-mid); }

/* ── macOS Window Mockup ── */
.mac-frame {
  background: #07081A;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  overflow: hidden;
  box-shadow: 0 0 50px rgba(34,211,238,0.07);
}
.mac-titlebar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.035);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mac-controls { display: flex; gap: 6px; }
.mac-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.mac-close { background: #FF5F57; }
.mac-min   { background: #FFBD2E; }
.mac-max   { background: #28C840; }
.mac-title {
  font-size: 10.5px;
  color: var(--text-3);
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mac-screen { padding: 14px; background: #06071A; }
.mac-ui { display: flex; flex-direction: column; gap: 12px; }

.mac-waveform {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-sm);
  padding: 12px;
}
.waveform-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2.5px;
  height: 52px;
  margin-bottom: 10px;
}
.waveform-bars .bar {
  flex: 1;
  max-width: 5px;
  border-radius: 2px;
  background: linear-gradient(to top, var(--cyan-mid), var(--purple-light));
  height: 15%;
  animation: bar-wave var(--dur, 1.2s) ease-in-out infinite alternate;
  animation-delay: var(--dly, 0s);
}

@keyframes bar-wave {
  from { height: 8%; }
  to   { height: var(--peak, 75%); }
}

.recording-indicator {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
  font-size: 10px;
  color: var(--text-2);
  font-family: 'JetBrains Mono', monospace;
}
.rec-dot {
  width: 7px; height: 7px;
  background: #FF5F57;
  border-radius: 50%;
  animation: rec-pulse 1.6s ease-in-out infinite;
}
@keyframes rec-pulse {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,95,87,0.5); }
  50%     { opacity: 0.7; box-shadow: 0 0 0 5px rgba(255,95,87,0); }
}

.mac-transcript {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-sm);
  padding: 12px;
}
.transcript-label {
  font-size: 9px;
  letter-spacing: 0.11em;
  color: var(--cyan-mid);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 8px;
}
.transcript-text {
  font-size: 11.5px;
  color: var(--text-1);
  line-height: 1.6;
}
.transcript-done { color: var(--text-2); }
.transcript-cursor {
  display: inline-block;
  width: 2px; height: 13px;
  background: var(--cyan-mid);
  border-radius: 1px;
  margin-left: 2px;
  vertical-align: middle;
  animation: caret-blink 1s step-end infinite;
}
@keyframes caret-blink {
  0%,100% { opacity: 1; }
  50%     { opacity: 0; }
}

/* ════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════ */
.about-section { background: var(--bg-0); }

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: clamp(28px,4.5vw,56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px,5vw,60px);
  align-items: start;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.about-card:hover { border-color: var(--border-hover); }

.about-card-glow {
  position: absolute;
  bottom: -120px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(139,92,246,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.about-title {
  font-size: clamp(26px,3.5vw,42px);
  text-align: left;
}

.about-text {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.72;
  margin-bottom: 12px;
}
.about-text:last-of-type { margin-bottom: 0; }
.about-text strong { color: var(--text-0); font-weight: 600; }

.about-stats {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.about-stat-num {
  display: block;
  font-size: 30px;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
  background: linear-gradient(110deg, var(--purple-light), var(--cyan-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.about-stat-label {
  font-size: 11px;
  color: var(--text-3);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* Dev card */
.dev-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.dev-card:hover {
  border-color: rgba(139,92,246,0.25);
  box-shadow: 0 0 40px rgba(139,92,246,0.08);
}

.dev-avatar-wrap {
  position: relative;
  width: 80px; height: 80px;
}
.dev-avatar {
  position: relative;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--violet), var(--cyan-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: white;
  z-index: 1;
}
.dev-avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--purple), var(--cyan-mid), var(--purple));
  opacity: 0.35;
  animation: ring-spin 6s linear infinite;
  z-index: 0;
}
@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

.dev-name {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-0);
  letter-spacing: -0.02em;
}
.dev-role {
  font-size: 11px;
  color: var(--text-3);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.07em;
}
.dev-tags { display: flex; gap: 7px; flex-wrap: wrap; justify-content: center; }
.dev-tag {
  padding: 4px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 11px;
  color: var(--text-2);
  font-family: 'JetBrains Mono', monospace;
}
.dev-quote {
  font-size: 12.5px;
  color: var(--purple-light);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  width: 100%;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .about-card { grid-template-columns: 1fr; }
  .about-title { text-align: center; }
  .about-stats { justify-content: center; }
}

/* ════════════════════════════════════════════════════
   PHILOSOPHY
════════════════════════════════════════════════════ */
.philosophy-section { background: var(--bg-1); }
.philosophy-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(124,58,237,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 18px;
}

.philosophy-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.35s var(--ease-expo), box-shadow 0.3s;
}
.philosophy-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,92,246,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.philosophy-card:hover {
  border-color: rgba(139,92,246,0.2);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(139,92,246,0.1);
}
.philosophy-card:hover::after { opacity: 1; }

.phil-icon {
  font-size: 26px;
  margin-bottom: 14px;
  display: block;
  position: relative;
  z-index: 1;
}
.philosophy-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}
.philosophy-card p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-0);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
  position: relative;
  overflow: hidden;
}
.footer-orb {
  position: absolute;
  bottom: -240px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--text-0);
  margin-bottom: 10px;
}
.footer-logo img { border-radius: var(--r-xs); object-fit: cover; }
.footer-tagline { font-size: 13.5px; color: var(--text-3); }

.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-0); }

.footer-bottom { padding: 20px 0 24px; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom p, .footer-made {
  font-size: 13px;
  color: var(--text-3);
}
.footer-bottom strong { color: var(--text-2); }

/* ════════════════════════════════════════════════════
   REVEAL ANIMATIONS
════════════════════════════════════════════════════ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

.card-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s var(--ease-expo), transform 0.85s var(--ease-expo);
}
.card-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* ════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .hero-ctas { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 480px) {
  .phone-frame { max-width: 100%; }
  .about-stats { gap: 18px; }
}


/* ════════════════════════════════════════════════════
   CREDENTIAL PILLS — About Section
════════════════════════════════════════════════════ */
.about-creds {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}
.cred-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cred-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-2);
  font-weight: 600;
}
.cred-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cred-pill {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-1);
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 13px;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
.cred-pill:hover {
  border-color: var(--border-hover);
  color: var(--text-0);
}

/* ════════════════════════════════════════════════════
   TELEMETRY — Clean Minimal Cards
════════════════════════════════════════════════════ */
.telemetry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.telemetry-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.telemetry-card:hover {
  transform: translateY(-3px);
}

/* Per-card accent on hover via top border glow */
.tel-card-visitors:hover { border-color: rgba(139,92,246,0.5); box-shadow: 0 12px 40px rgba(139,92,246,0.1); }
.tel-card-uptime:hover   { border-color: rgba(16,185,129,0.5);  box-shadow: 0 12px 40px rgba(16,185,129,0.1); }
.tel-card-location:hover { border-color: rgba(34,211,238,0.5);  box-shadow: 0 12px 40px rgba(34,211,238,0.1); }
.tel-card-coffee:hover   { border-color: rgba(245,158,11,0.5);  box-shadow: 0 12px 40px rgba(245,158,11,0.1); }

/* Subtle top-edge accent line per card */
.tel-card-visitors::before,
.tel-card-uptime::before,
.tel-card-location::before,
.tel-card-coffee::before {
  content: '';
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 1px;
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.telemetry-card:hover::before { opacity: 1; }
.tel-card-visitors::before { background: rgba(139,92,246,0.7); }
.tel-card-uptime::before   { background: rgba(16,185,129,0.7); }
.tel-card-location::before { background: rgba(34,211,238,0.7); }
.tel-card-coffee::before   { background: rgba(245,158,11,0.7); }

/* Icon */
.tel-card-icon {
  font-size: 22px;
  margin-bottom: 8px;
}

/* Value */
.tel-card-val {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-0);
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Label */
.tel-card-label {
  font-size: 12px;
  color: var(--text-2);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 2px;
}

/* ════════════════════════════════════════════════════
   PERSONAL BENTO DASHBOARD
   ════════════════════════════════════════════════════ */
.personal-bento {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.bento-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bento-card {
  background: var(--surface-1);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.bento-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
}

.bento-label {
  font-size: 12px;
  color: var(--text-2);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-top: 12px;
  text-align: center;
}

/* Nano Terminal */
.bento-terminal {
  min-height: 100px;
  padding: 12px 16px;
}
.term-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 8px;
}
.term-dots {
  display: flex;
  gap: 6px;
}
.term-dots span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.term-dots span:nth-child(1) { background: #ff5f56; }
.term-dots span:nth-child(2) { background: #ffbd2e; }
.term-dots span:nth-child(3) { background: #27c93f; }

.term-title {
  font-family: monospace;
  font-size: 11px;
  color: var(--text-2);
}
.term-body {
  font-family: monospace;
  font-size: 12px;
  color: #a5b4fc;
  display: flex;
  align-items: center;
}
.term-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: #a5b4fc;
  margin-left: 4px;
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Engine Load */
.bento-engine {
  align-items: center;
  justify-content: center;
  min-height: 120px;
}
.engine-ring-wrap {
  position: relative;
  width: 50px;
  height: 50px;
}
.engine-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.engine-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 3;
}
.engine-fill {
  fill: none;
  stroke: #22d3ee;
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dasharray 0.5s ease-out;
}
.engine-val {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-0);
  font-family: 'Outfit', sans-serif;
}

/* Deep Focus */
.bento-focus {
  align-items: center;
  justify-content: center;
  min-height: 120px;
}
.focus-bars {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 30px;
  margin-bottom: 8px;
}
.focus-bars span {
  display: block;
  width: 4px;
  background: #8b5cf6;
  border-radius: 2px;
  animation: audio-bounce 1s ease-in-out infinite alternate;
}
.focus-bars span:nth-child(1) { height: 10px; animation-delay: 0.1s; }
.focus-bars span:nth-child(2) { height: 24px; animation-delay: 0.3s; }
.focus-bars span:nth-child(3) { height: 14px; animation-delay: 0.0s; }
.focus-bars span:nth-child(4) { height: 28px; animation-delay: 0.4s; }
.focus-bars span:nth-child(5) { height: 12px; animation-delay: 0.2s; }

@keyframes audio-bounce {
  0% { transform: scaleY(0.5); opacity: 0.6; }
  100% { transform: scaleY(1.2); opacity: 1; }
}

@media (max-width: 768px) {
  .personal-bento { margin-top: 24px; }
}

/* ════════════════════════════════════════════════════
   ADVANCED BENTO WIDGETS
   ════════════════════════════════════════════════════ */

/* Lunar Clock (Advanced) */
.bento-clock {
  align-items: center;
  justify-content: flex-end;
  min-height: 120px;
  position: relative;
  transition: background 1s ease;
}
.bento-clock.time-day { background: linear-gradient(135deg, #1e3a8a, #0f172a); }
.bento-clock.time-dusk { background: linear-gradient(135deg, #4c1d95, #0f172a); }
.bento-clock.time-night { background: var(--surface-1); }

.clock-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.celestial-arc {
  width: 100%;
  max-width: 120px;
  height: 60px;
  position: absolute;
  top: -20px;
  pointer-events: none;
}
.celestial-body {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  transition: transform 1s ease, box-shadow 1s ease;
  z-index: 2;
}
/* Sun mode */
.celestial-body.is-sun {
  background: radial-gradient(circle at 30% 30%, #fff 0%, #fbbf24 50%, #f59e0b 100%);
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.8), 0 0 30px rgba(251, 191, 36, 0.4);
}
/* Moon mode */
.celestial-body.is-moon {
  background: radial-gradient(circle at 30% 30%, #fff 0%, #cbd5e1 50%, #64748b 100%);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}
.time-val {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text-0);
  letter-spacing: -0.02em;
  margin-top: 40px;
}

/* Tech Stack Orbit (Advanced) */
.bento-orbit {
  align-items: center;
  justify-content: center;
  min-height: 120px;
  overflow: visible;
  perspective: 600px; /* Outer perspective for the card */
}
.orbit-parallax {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  /* Mapped via JS mousemove */
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.1s ease-out;
}
.orbit-wrap {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
  transform-style: preserve-3d;
  /* Static base tilt */
  transform: rotateX(60deg);
}
.orbit-center.ai-core {
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 14px;
  margin: -7px 0 0 -7px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 20px #0ea5e9, 0 0 40px #0ea5e9;
  transform: rotateX(-60deg); /* Counter-rotate so it faces camera */
}
.ai-core::before {
  content: '';
  position: absolute;
  top: -10px; left: -10px; right: -10px; bottom: -10px;
  border-radius: 50%;
  border: 1px solid #0ea5e9;
  animation: core-pulse 2s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
}
@keyframes core-pulse {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  transform-style: preserve-3d;
  animation: orbit-spin linear infinite;
}
.orbit-node {
  position: absolute;
  top: -4px; left: 50%;
  width: 8px; height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
  transform-style: preserve-3d;
}
/* Comet Tails using conic-gradient */
.comet-tail {
  position: absolute;
  top: 50%; left: 50%;
  width: 40px; height: 40px;
  margin: -20px 0 0 -20px;
  border-radius: 50%;
  pointer-events: none;
  /* Rotate so tail flows backwards */
  transform: rotate(90deg);
}
.tail-python { background: conic-gradient(from 0deg, transparent 0deg, rgba(59,130,246,0.6) 90deg, transparent 90deg); }
.tail-swift  { background: conic-gradient(from 180deg, transparent 0deg, rgba(249,115,22,0.6) 90deg, transparent 90deg); }
.tail-js     { background: conic-gradient(from 0deg, transparent 0deg, rgba(234,179,8,0.6) 90deg, transparent 90deg); }

/* Ring Configs */
.ring-1 { width: 40px; height: 40px; margin: -20px 0 0 -20px; animation-duration: 4s; }
.node-python { color: #3b82f6; }

.ring-2 { width: 60px; height: 60px; margin: -30px 0 0 -30px; animation-duration: 6s; animation-direction: reverse; }
.node-swift { color: #f97316; }

.ring-3 { width: 80px; height: 80px; margin: -40px 0 0 -40px; animation-duration: 8s; }
.node-js { color: #eab308; }

@keyframes orbit-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* ════════════════════════════════════════════════════
   EXPANSION MAGIC: GIT TIMELINE & HOLO BADGES
   ════════════════════════════════════════════════════ */

/* Git Commit Timeline (Experience) */
.git-timeline-wrap {
  margin: 32px 0;
}
.git-timeline {
  position: relative;
  padding-left: 20px;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  margin-top: 16px;
}
/* Glowing animated flow line */
.git-timeline::before {
  content: '';
  position: absolute;
  top: 0; left: -2px;
  width: 2px; height: 100%;
  background: linear-gradient(to bottom, transparent, #8b5cf6, #0ea5e9, transparent);
  background-size: 100% 200%;
  animation: timeline-flow 4s linear infinite;
  opacity: 0.5;
}
@keyframes timeline-flow {
  0% { background-position: 0 -200%; }
  100% { background-position: 0 200%; }
}

.git-node {
  position: relative;
  margin-bottom: 24px;
  padding-left: 16px;
  cursor: pointer;
}
.git-node:last-child { margin-bottom: 0; }

.git-dot {
  position: absolute;
  top: 6px; left: -27px; /* Align to border */
  width: 12px; height: 12px;
  background: var(--surface-1);
  border: 2px solid #8b5cf6;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(139, 92, 246, 0);
}
.git-node:hover .git-dot {
  background: #8b5cf6;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
  transform: scale(1.2);
}

.git-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-0);
  margin: 0;
  transition: color 0.3s ease;
}
.git-node:hover .git-title {
  color: #8b5cf6;
}

/* Expansion Magic using grid */
.git-details-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.git-node:hover .git-details-wrap {
  grid-template-rows: 1fr;
}
.git-details {
  overflow: hidden;
  font-size: 14px;
  color: var(--text-2);
  margin: 0;
  padding-top: 0;
  transition: padding 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.git-node:hover .git-details {
  padding-top: 8px;
  opacity: 1;
}

/* Redacted Decoder (Certifications) */
.decoder-wrap {
  margin: 32px 0 48px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .decoder-wrap {
    flex-direction: row;
    align-items: stretch;
  }
}
.decoder-left {
  flex: 1;
}
.decoder-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.decoder-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface-1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  color: var(--text-1);
  transition: all 0.2s ease;
}
.decoder-item:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
  color: #fff;
  transform: translateX(4px);
}
.decoder-icon {
  font-size: 18px;
}

.decoder-right {
  flex: 1;
  display: flex;
}
.decoder-screen {
  flex: 1;
  background: #0f172a;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 2px 15px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  position: relative;
}
.decoder-screen-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: monospace;
  font-size: 10px;
  color: var(--text-2);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  text-transform: uppercase;
}
.red-dot {
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}
.decoder-text {
  font-family: monospace;
  font-size: 13px;
  line-height: 1.6;
  color: #a5b4fc;
  flex: 1;
}
.decoder-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: #a5b4fc;
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}

