:root {
    --accent: #000000;
    --text-dark: #0a0a0a;
    --muted: #49505b;
    --line: #e5e5e5;
  }

  
  body {
    background: transparent !important;
    position: relative;
    z-index: 1;
  }
  
  /* Ensure all top-level content stacks above */
  header, section, footer {
    position: relative;
    z-index: 1;
  }
  .card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  }
  .chip {
    background: #f7f7f7;
    color: var(--muted);
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
  }
  .reveal {
    animation: fadeInUp 0.8s ease-out both;
  }
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .logo{
      position: relative;
      width: 225px;
  }

  html {
      scroll-behavior: smooth;
  }

  @keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
  }
  .fade-up {
  animation: fadeUp 0.6s ease-out both;
  }

  .footer-logo{
      width:185px;
  }

  .logo-icon{
    position:relative;
    left:-5px;
    top:2px;
  }

  .hamburger{
    position: relative;
    top:3px;
    left:-2px;
  }

    