/* ============================================================
   DEVFLIQ — Main Stylesheet
   Structure:
     1. CSS Variables & Reset
     2. Cursor
     3. Navigation
     4. Hero
     5. Stats
     6. Services
     7. Process
     8. Work / Portfolio
     9. Testimonials
    10. Pricing
    11. CTA
    12. Footer
    13. Animations & Utilities
   ============================================================ */

/* ── 1. Variables & Reset ─────────────────────────────────── */
:root {
  --bg:        #080c14;
  --bg2:       #0d1220;
  --bg3:       #111827;
  --teal:      #00d4b4;
  --teal-dim:  #00a38a;
  --teal-glow: rgba(0, 212, 180, 0.15);
  --white:     #f0f4ff;
  --muted:     #6b7a99;
  --border:    rgba(0, 212, 180, 0.12);
  --border2:   rgba(255, 255, 255, 0.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
}

/* ── 2. Cursor ────────────────────────────────────────────── */
.cursor {
  width: 20px;
  height: 20px;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform-origin: 2px 2px;
  transition: transform 0.1s ease;
}
.cursor svg {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 0 3px rgba(0, 212, 180, 0.6));
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(0, 212, 180, 0.35);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, margin 0.2s ease;
}
.cursor-follower.hovered {
  width: 56px;
  height: 56px;
  border-color: rgba(0, 212, 180, 0.8);
  margin: -10px 0 0 -10px;
}

/* ── 3. Navigation ────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 6%;
  background: rgba(8, 12, 20, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border2);
  transition: all 0.3s ease;
}
nav.scrolled { padding: 1rem 6%; }

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
}
.logo span { color: var(--teal); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: transparent;
  border: 1px solid var(--teal);
  color: var(--teal);
  padding: 0.55rem 1.4rem;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: none;
  transition: all 0.25s ease;
  letter-spacing: 0.03em;
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--teal);
  color: var(--bg);
  box-shadow: 0 0 24px rgba(0, 212, 180, 0.3);
}

/* ── 4. Hero ──────────────────────────────────────────────── */
main { position: relative; z-index: 1; }
section { position: relative; }

#particle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: 0.5;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 6% 6rem;
  overflow: hidden;
}

.hero-content {
  max-width: 780px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal-glow);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2.2rem;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.8rem;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero h1 .line:nth-child(1) span { animation-delay: 0.4s; }
.hero h1 .line:nth-child(2) span { animation-delay: 0.55s; }
.hero h1 .line:nth-child(3) span { animation-delay: 0.7s; }
.hero h1 .accent { color: var(--teal); }

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.05s forwards;
}

.btn-primary {
  background: var(--teal);
  color: var(--bg);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
  cursor: none;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: #00f0ce;
  box-shadow: 0 0 32px rgba(0, 212, 180, 0.4);
  transform: translateY(-2px);
}
.btn-primary .arrow { transition: transform 0.2s ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--white); }

/* Hero floating card (right side) */
.hero-visual {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 360px;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

.floating-card {
  background: rgba(13, 18, 32, 0.8);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  animation: float 6s ease-in-out infinite;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border2);
}
.card-dot { width: 10px; height: 10px; border-radius: 50%; }
.card-dot.r { background: #ff5f56; }
.card-dot.y { background: #ffbd2e; }
.card-dot.g { background: #27c93f; }

.card-title {
  font-size: 0.78rem;
  color: var(--muted);
  margin-left: 0.5rem;
  font-family: 'DM Sans', sans-serif;
}

.code-line {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  line-height: 2;
  color: var(--muted);
}
.code-line .kw  { color: #7c6eff; }
.code-line .fn  { color: var(--teal); }
.code-line .str { color: #f9a158; }
.code-line .cm  { color: #3d4f6e; }

.build-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border2);
  font-size: 0.8rem;
  color: var(--teal);
}
.build-status::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* Mini floating cards */
.mini-card {
  position: absolute;
  background: rgba(13, 18, 32, 0.9);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  backdrop-filter: blur(20px);
  font-size: 0.82rem;
}

.mini-card-1 {
  bottom: -60px;
  left: -60px;
  animation: float 5s ease-in-out 1s infinite;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.mini-card-1 strong { display: block; font-size: 1.1rem; color: var(--teal); font-family: 'Syne', sans-serif; }
.mini-card-1 span   { color: var(--muted); font-size: 0.75rem; }

.mini-card-2 {
  top: -30px;
  right: -40px;
  animation: float 7s ease-in-out 0.5s infinite;
}
.mini-card-2 .stars { color: #fbbf24; letter-spacing: 2px; margin-bottom: 0.3rem; }
.mini-card-2 p      { color: var(--muted); font-size: 0.75rem; margin-top: 0.2rem; }

/* ── 5. Stats ─────────────────────────────────────────────── */
.stats {
  padding: 5rem 6%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border2);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
}

.stat-item {
  background: var(--bg);
  padding: 3rem 2.5rem;
  transition: background 0.3s;
}
.stat-item:hover { background: var(--bg2); }

.stat-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}
.stat-number .teal { color: var(--teal); }

.stat-label {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.5;
}

/* ── 6. Services ──────────────────────────────────────────── */
.services { padding: 8rem 6%; }

.section-label {
  font-size: 0.75rem;
  color: var(--teal);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
  font-weight: 300;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border2);
  border: 1px solid var(--border2);
  border-radius: 16px;
  overflow: hidden;
}

.service-card {
  background: var(--bg);
  padding: 2.5rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  cursor: none;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { background: var(--bg2); transform: translateY(-4px); }

.service-icon {
  width: 48px; height: 48px;
  background: var(--teal-glow);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}
.service-card:hover .service-icon {
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 0 20px rgba(0, 212, 180, 0.3);
}

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}
.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--teal);
  font-size: 0.85rem;
  margin-top: 1.5rem;
  text-decoration: none;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}
.service-card:hover .service-link { opacity: 1; transform: translateX(0); }

/* ── 7. Process ───────────────────────────────────────────── */
.process {
  padding: 8rem 6%;
  background: var(--bg2);
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.process-step { text-align: center; padding: 2rem 1.5rem; position: relative; }

.step-num {
  width: 64px; height: 64px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
  background: var(--bg2);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.process-step:hover .step-num {
  background: var(--teal);
  color: var(--bg);
  box-shadow: 0 0 24px rgba(0, 212, 180, 0.4);
  border-color: var(--teal);
}

.process-step h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.process-step p { color: var(--muted); font-size: 0.85rem; line-height: 1.7; font-weight: 300; }

/* ── 8. Work / Portfolio ──────────────────────────────────── */
.work { padding: 8rem 6%; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.work-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border2);
  cursor: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  background: var(--bg2);
}
.work-card:hover { transform: translateY(-6px); border-color: var(--border); }
.work-card.large { grid-column: span 2; }

.work-thumb {
  height: 260px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-card.large .work-thumb { height: 360px; }

.work-thumb-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.work-card:hover .work-thumb-bg { transform: scale(1.04); }

.bg-1 { background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); }
.bg-2 { background: linear-gradient(135deg, #1a0533, #2d1b69, #1a0533); }
.bg-3 { background: linear-gradient(135deg, #0a2d2a, #0f4a44, #00d4b4, #0a2d2a); }

.work-thumb-inner { position: relative; z-index: 1; text-align: center; }

.mock-ui {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  min-width: 260px;
  backdrop-filter: blur(10px);
}

.mock-bar { height: 8px; border-radius: 4px; margin-bottom: 0.6rem; background: rgba(255, 255, 255, 0.2); }
.mock-bar.teal  { background: var(--teal); width: 70%; }
.mock-bar.short { width: 40%; }
.mock-bar.mid   { width: 55%; }

.work-info {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.work-tag {
  font-size: 0.72rem;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.work-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.work-arrow {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.work-card:hover .work-arrow { background: var(--teal); border-color: var(--teal); color: var(--bg); }

/* ── 9. Testimonials ──────────────────────────────────────── */
.testimonials {
  padding: 8rem 6%;
  background: var(--bg2);
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.testi-card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}
.testi-card:hover { border-color: var(--border); transform: translateY(-4px); }

.testi-stars { color: #fbbf24; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 1.2rem; }

.testi-text {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.testi-text::before { content: '"'; color: var(--teal); font-size: 1.5rem; }

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border2);
}

.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--bg);
  background: var(--teal);
  flex-shrink: 0;
}

.testi-name  { font-weight: 500; font-size: 0.9rem; }
.testi-role  { color: var(--muted); font-size: 0.78rem; }

/* ── 10. Pricing ──────────────────────────────────────────── */
.pricing { padding: 8rem 6%; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  align-items: start;
}

.price-card {
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--border2);
  background: var(--bg2);
  transition: all 0.35s ease;
  cursor: none;
}
.price-card.featured {
  border-color: var(--teal);
  background: var(--bg3);
  position: relative;
  box-shadow: 0 0 40px rgba(0, 212, 180, 0.1);
}
.price-card:hover { transform: translateY(-6px); }

.price-badge {
  background: var(--teal);
  color: var(--bg);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.price-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-desc  { color: var(--muted); font-size: 0.85rem; margin-bottom: 1.5rem; font-weight: 300; }

.price-amount {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.3rem;
}
.price-amount span { font-size: 1rem; font-weight: 400; color: var(--muted); letter-spacing: 0; }

.price-period { color: var(--muted); font-size: 0.8rem; margin-bottom: 2rem; }

.price-divider { height: 1px; background: var(--border2); margin-bottom: 1.5rem; }

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
}
.price-features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }

.price-btn {
  display: block;
  text-align: center;
  padding: 0.85rem;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: none;
  border: 1px solid var(--border);
  color: var(--white);
}
.price-btn:hover { border-color: var(--teal); color: var(--teal); }

.price-btn.featured-btn { background: var(--teal); color: var(--bg); border-color: var(--teal); }
.price-btn.featured-btn:hover { background: #00f0ce; box-shadow: 0 0 24px rgba(0, 212, 180, 0.4); }

/* ── 11. CTA ──────────────────────────────────────────────── */
.cta-section {
  padding: 8rem 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0, 212, 180, 0.08) 0%, transparent 70%);
}

.cta-section .section-title { font-size: clamp(2.5rem, 5vw, 4rem); max-width: 700px; margin: 1rem auto 1.5rem; }
.cta-section .section-sub   { margin: 0 auto 3rem; text-align: center; max-width: 500px; }

.cta-actions { display: flex; gap: 1rem; justify-content: center; align-items: center; flex-wrap: wrap; }

/* ── 12. Footer ───────────────────────────────────────────── */
footer {
  padding: 4rem 6% 3rem;
  border-top: 1px solid var(--border2);
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 4rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 260px;
  font-weight: 300;
}

.footer-col h5 {
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }

.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
  font-weight: 300;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding: 1.5rem 6%;
  border-top: 1px solid var(--border2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { color: var(--muted); font-size: 0.82rem; font-weight: 300; }

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

.social-links a {
  width: 36px; height: 36px;
  border: 1px solid var(--border2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.social-links a:hover { border-color: var(--teal); color: var(--teal); }

/* ── 13. Animations & Utilities ───────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

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

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible        { opacity: 1; transform: translateY(0); }
.reveal-delay-1        { transition-delay: 0.1s; }
.reveal-delay-2        { transition-delay: 0.2s; }
.reveal-delay-3        { transition-delay: 0.3s; }

::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--teal-dim); border-radius: 2px; }

::selection { background: rgba(0, 212, 180, 0.2); color: var(--white); }
