/* 🦐 Scampi Landing — Bioluminescent Deep Sea Tech */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  /* Deep sea palette */
  --abyss: #0a0e14;
  --deep-water: #0d1520;
  --current: #14202e;
  --surface: #1a2838;
  
  /* Bioluminescent accents */
  --coral-glow: #ff6b4a;
  --coral-bright: #ff8f6a;
  --coral-soft: #ffb299;
  --coral-dim: rgba(255, 107, 74, 0.15);
  
  /* Sea life accents */
  --plankton: #4ecdc4;
  --jellyfish: #a78bfa;
  --anglerfish: #fbbf24;
  
  /* Text */
  --text-bright: #f8fafc;
  --text-mid: #94a3b8;
  --text-dim: #64748b;
  
  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 5rem;
  --space-4xl: 8rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--abyss);
  color: var(--text-bright);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Underwater atmosphere */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(78, 205, 196, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(255, 107, 74, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 100% 100% at 50% 100%, rgba(167, 139, 250, 0.03) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

/* Links */
a {
  color: var(--coral-glow);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: var(--coral-bright);
  text-shadow: 0 0 20px rgba(255, 107, 74, 0.5);
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) var(--space-2xl);
  background: linear-gradient(to bottom, var(--abyss) 0%, transparent 100%);
  z-index: 100;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-bright);
  letter-spacing: -0.02em;
}

.nav-logo:hover {
  color: var(--coral-glow);
  text-shadow: 0 0 30px rgba(255, 107, 74, 0.6);
}

.nav-links {
  display: flex;
  gap: var(--space-xl);
}

.nav-links a {
  font-family: var(--font-body);
  color: var(--text-dim);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral-glow);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--coral-glow);
}

.nav-links a:hover {
  color: var(--text-bright);
  text-shadow: none;
}

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

/* Main Container */
main {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-4xl) var(--space-2xl);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: var(--space-3xl) 0;
  position: relative;
}

.hero-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3xl);
  align-items: center;
  width: 100%;
}

/* Floating avatar */
.hero-avatar {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.avatar-img {
  width: 200px;
  height: 200px;
  border-radius: 24px;
  object-fit: cover;
  border: 3px solid var(--coral-dim);
  box-shadow: 
    0 0 60px rgba(255, 107, 74, 0.3),
    0 20px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
}

.avatar-img:hover {
  border-color: var(--coral-glow);
  box-shadow: 
    0 0 80px rgba(255, 107, 74, 0.5),
    0 25px 70px rgba(0, 0, 0, 0.6);
  transform: scale(1.05);
}

/* Glow ring behind avatar */
.hero-avatar::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 32px;
  background: conic-gradient(from 180deg, var(--coral-glow), var(--plankton), var(--jellyfish), var(--coral-glow));
  opacity: 0.15;
  filter: blur(30px);
  animation: rotate 10s linear infinite;
}

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

/* Hero text */
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.03em;
}

.highlight {
  background: linear-gradient(135deg, var(--coral-glow) 0%, var(--coral-bright) 50%, var(--anglerfish) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.tagline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: var(--space-xl);
  letter-spacing: -0.01em;
}

.intro {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 480px;
  margin-bottom: var(--space-2xl);
  font-weight: 300;
}

.intro em {
  color: var(--plankton);
  font-style: normal;
  font-weight: 500;
}

/* Stats with glow effect */
.hero-stats {
  display: flex;
  gap: var(--space-2xl);
}

.stat {
  position: relative;
  padding: var(--space-md) var(--space-lg);
  background: var(--current);
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 74, 0.1);
  transition: all 0.3s ease;
}

.stat:hover {
  border-color: var(--coral-glow);
  box-shadow: 0 0 30px rgba(255, 107, 74, 0.2);
  transform: translateY(-2px);
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--coral-bright);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== PROJECTS SECTION ===== */
.projects {
  padding: var(--space-4xl) 0;
  position: relative;
}

.projects h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-dim);
  font-size: 1.1rem;
  margin-bottom: var(--space-2xl);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--space-xl);
}

/* Project cards with depth */
.project-card {
  position: relative;
  background: linear-gradient(135deg, var(--current) 0%, var(--deep-water) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: var(--space-2xl);
  color: var(--text-bright);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--coral-dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--coral-glow);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(255, 107, 74, 0.15);
}

.project-card:hover::before {
  opacity: 1;
}

.project-icon {
  font-size: 3rem;
  margin-bottom: var(--space-lg);
  display: inline-block;
  animation: bob 3s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.project-card:nth-child(2) .project-icon {
  animation-delay: -1.5s;
}

.project-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  position: relative;
  z-index: 1;
}

.project-tagline {
  font-family: var(--font-display);
  color: var(--coral-glow);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.project-desc {
  color: var(--text-dim);
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
  font-weight: 300;
}

.project-meta {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.badge {
  padding: var(--space-xs) var(--space-md);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid;
}

.badge-devnet {
  background: rgba(167, 139, 250, 0.1);
  color: var(--jellyfish);
  border-color: rgba(167, 139, 250, 0.3);
}

.badge-mainnet {
  background: rgba(78, 205, 196, 0.1);
  color: var(--plankton);
  border-color: rgba(78, 205, 196, 0.3);
}

.badge-usdc {
  background: rgba(78, 205, 196, 0.1);
  color: var(--plankton);
  border-color: rgba(78, 205, 196, 0.3);
}

.badge-signals {
  background: rgba(251, 191, 36, 0.1);
  color: var(--anglerfish);
  border-color: rgba(251, 191, 36, 0.3);
}

.project-cta {
  font-family: var(--font-display);
  color: var(--coral-glow);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.project-card:hover .project-cta {
  text-shadow: 0 0 20px rgba(255, 107, 74, 0.5);
}

/* ===== FOR AGENTS SECTION ===== */
.for-agents {
  position: relative;
  background: var(--deep-water);
  border: 1px solid rgba(78, 205, 196, 0.2);
  border-radius: 24px;
  padding: var(--space-2xl);
  margin: var(--space-3xl) 0;
  overflow: hidden;
}

.for-agents::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--plankton), var(--coral-glow), var(--jellyfish));
}

.for-agents h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.for-agents > p {
  color: var(--text-dim);
  margin-bottom: var(--space-lg);
}

.agent-links code {
  display: block;
  background: var(--abyss);
  border: 1px solid var(--current);
  border-radius: 12px;
  padding: var(--space-lg);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  white-space: pre;
  overflow-x: auto;
  line-height: 2;
  color: var(--text-mid);
}

.agent-links .comment {
  color: var(--plankton);
}

.agent-note {
  margin-top: var(--space-md);
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: var(--space-3xl) 0;
}

.about h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-2xl);
  letter-spacing: -0.02em;
}

.about-duo {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.duo-avatars {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.duo-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.duo-avatar img {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  object-fit: cover;
  border: 2px solid var(--current);
  transition: all 0.3s ease;
}

.duo-avatar:hover img {
  border-color: var(--coral-glow);
  box-shadow: 0 0 30px rgba(255, 107, 74, 0.3);
  transform: translateY(-3px);
}

.duo-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-bright);
}

.duo-role {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.duo-connector {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--coral-glow);
  opacity: 0.6;
}

.about-content {
  max-width: 540px;
  position: relative;
}

.about-content p {
  color: var(--text-dim);
  margin-bottom: var(--space-lg);
  font-size: 1.05rem;
  font-weight: 300;
}

.about-content strong {
  color: var(--coral-bright);
  font-weight: 500;
}

@media (max-width: 768px) {
  .about-duo {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .duo-avatars {
    justify-content: center;
  }
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--current);
  padding: var(--space-2xl);
  text-align: center;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--coral-glow), transparent);
}

.footer-content p {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer-sub {
  color: var(--text-dim);
  font-size: 0.8rem;
  margin-top: var(--space-xs);
  opacity: 0.6;
}

/* ===== PROJECT PAGE STYLES ===== */
.project-page {
  max-width: 800px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: var(--space-xl);
  transition: all 0.3s ease;
}

.back-link:hover {
  color: var(--coral-glow);
  transform: translateX(-4px);
  text-shadow: 0 0 15px rgba(255, 107, 74, 0.4);
}

.project-header {
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--current);
}

.project-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  letter-spacing: -0.02em;
}

.project-header .tagline {
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
}

.project-page section {
  margin-bottom: var(--space-2xl);
}

.project-page h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--text-bright);
  letter-spacing: -0.01em;
}

.project-page h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  margin-top: var(--space-xl);
  color: var(--coral-bright);
}

.project-page p {
  color: var(--text-dim);
  margin-bottom: var(--space-md);
  font-weight: 300;
}

.project-page ul, .project-page ol {
  color: var(--text-dim);
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.project-page li {
  margin-bottom: var(--space-sm);
  font-weight: 300;
}

.project-page li strong {
  color: var(--text-bright);
  font-weight: 500;
}

/* Code blocks */
.code-block {
  background: var(--deep-water);
  border: 1px solid var(--current);
  border-radius: 16px;
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  overflow-x: auto;
  position: relative;
}

.code-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--coral-glow), var(--plankton));
  border-radius: 16px 16px 0 0;
}

.code-block code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  line-height: 1.8;
  white-space: pre;
  color: var(--text-mid);
}

.code-block .comment { color: var(--text-dim); }
.code-block .keyword { color: var(--jellyfish); }
.code-block .string { color: var(--plankton); }
.code-block .variable { color: var(--coral-bright); }

/* Info boxes */
.info-box {
  background: rgba(255, 107, 74, 0.05);
  border: 1px solid rgba(255, 107, 74, 0.2);
  border-radius: 16px;
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.info-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--coral-glow);
}

.info-box.warning {
  background: rgba(251, 191, 36, 0.05);
  border-color: rgba(251, 191, 36, 0.2);
}

.info-box.warning::before {
  background: var(--anglerfish);
}

.info-box h4 {
  font-family: var(--font-display);
  color: var(--coral-glow);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.info-box.warning h4 {
  color: var(--anglerfish);
}

.info-box p {
  margin-bottom: 0;
}

.info-box code {
  background: var(--abyss);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85em;
}

/* Quick reference box */
.quick-ref {
  background: linear-gradient(135deg, var(--current) 0%, var(--deep-water) 100%);
  border: 1px solid rgba(78, 205, 196, 0.2);
  border-radius: 16px;
  padding: var(--space-xl);
  margin-bottom: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.quick-ref::before {
  content: '🤖';
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  font-size: 2rem;
  opacity: 0.3;
}

.quick-ref h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--plankton);
}

.quick-ref-item {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--current);
}

.quick-ref-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.quick-ref-label {
  color: var(--text-dim);
  min-width: 80px;
  font-weight: 500;
}

.quick-ref-value {
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-bright);
  word-break: break-all;
  font-size: 0.85rem;
}

/* ===== ANIMATIONS ===== */

/* Fade in up - subtle entrance */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gentle glow pulse */
@keyframes glowPulse {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.25; }
}

/* Subtle shimmer for text */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Hero entrance - staggered */
.hero-avatar {
  animation: fadeInUp 0.7s ease-out 0.1s backwards;
}

.hero-text h1 {
  animation: fadeInUp 0.7s ease-out 0.2s backwards;
}

.tagline {
  animation: fadeInUp 0.7s ease-out 0.3s backwards;
}

.intro {
  animation: fadeInUp 0.7s ease-out 0.4s backwards;
}

.hero-stats {
  animation: fadeInUp 0.7s ease-out 0.5s backwards;
}

/* Section titles fade in */
.projects h2,
.about h2 {
  animation: fadeInUp 0.6s ease-out backwards;
}

/* Project cards - staggered entrance */
.project-card {
  animation: fadeInUp 0.6s ease-out backwards;
}

.project-card:nth-child(1) { animation-delay: 0.15s; }
.project-card:nth-child(2) { animation-delay: 0.25s; }

/* For agents section */
.for-agents {
  animation: fadeInUp 0.6s ease-out 0.35s backwards;
}

/* About paragraphs */
.about-content p {
  animation: fadeInUp 0.5s ease-out backwards;
}

.about-content p:nth-child(1) { animation-delay: 0.1s; }
.about-content p:nth-child(2) { animation-delay: 0.2s; }
.about-content p:nth-child(3) { animation-delay: 0.3s; }

/* Glow ring slow pulse */
.hero-avatar::before {
  animation: rotate 20s linear infinite, glowPulse 4s ease-in-out infinite;
}

/* Highlight text shimmer on hover */
.highlight {
  background-size: 200% auto;
}

h1:hover .highlight {
  animation: shimmer 2s ease-in-out;
}

/* Nav links subtle lift */
.nav-links a {
  transition: all 0.3s ease, transform 0.2s ease;
}

.nav-links a:hover {
  transform: translateY(-1px);
}

/* Stats subtle scale on hover */
.stat {
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-3px);
}

/* Code blocks - subtle border glow on hover */
.code-block {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.code-block:hover {
  border-color: rgba(78, 205, 196, 0.3);
  box-shadow: 0 0 20px rgba(78, 205, 196, 0.1);
}

/* Quick ref hover */
.quick-ref {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.quick-ref:hover {
  border-color: rgba(78, 205, 196, 0.4);
  box-shadow: 0 0 30px rgba(78, 205, 196, 0.1);
}

/* Footer glow line */
.footer::before {
  animation: glowPulse 3s ease-in-out infinite;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav {
    padding: var(--space-md);
  }
  
  .nav-links {
    gap: var(--space-md);
  }
  
  main {
    padding: var(--space-3xl) var(--space-md);
  }
  
  .hero {
    min-height: auto;
    padding: var(--space-2xl) 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-xl);
  }
  
  .hero-avatar {
    justify-self: center;
  }
  
  .avatar-img {
    width: 150px;
    height: 150px;
  }
  
  .intro {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .stat {
    flex: 1;
    min-width: 100px;
    text-align: center;
  }
  
  .project-grid {
    grid-template-columns: 1fr;
  }
  
  .project-header h1 {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
}

/* Bubble particles (decorative) */
.bubbles {
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.bubble {
  position: absolute;
  bottom: -20px;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 50%;
  animation: rise 15s infinite ease-in;
  opacity: 0;
}

.bubble:nth-child(1) { left: 10%; animation-delay: 0s; width: 8px; height: 8px; }
.bubble:nth-child(2) { left: 20%; animation-delay: 2s; width: 12px; height: 12px; }
.bubble:nth-child(3) { left: 35%; animation-delay: 4s; }
.bubble:nth-child(4) { left: 50%; animation-delay: 6s; width: 6px; height: 6px; }
.bubble:nth-child(5) { left: 65%; animation-delay: 8s; width: 14px; height: 14px; }
.bubble:nth-child(6) { left: 80%; animation-delay: 10s; width: 8px; height: 8px; }
.bubble:nth-child(7) { left: 90%; animation-delay: 12s; }

@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.1;
  }
  100% {
    transform: translateY(-100vh) scale(0.5);
    opacity: 0;
  }
}
