 /* --- Hero Section --- */
    .site-header {
      width: 100%;
      color: #fff;
      position: relative;
      padding: 40px 100px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
    }

    .header-inner {
      max-width: 1200px;
      animation: fadeIn 1s ease-in-out;
    }

    /* --- Headings --- */
    .header-title {
      font-size: 2rem;
      font-weight: 700;
      color: #ffffffcc;
      margin-bottom: 10px;
    }

    .header-title-content {
      font-size: 2.8rem;
      font-weight: 800;
      line-height: 1.3;
      margin-bottom: 25px;
    }

    /* --- Paragraph --- */
    .header-lead {
      color: #f2f2f2;
      font-size: 1.1rem;
      line-height: 1.7;
      font-weight: 400;
      margin-bottom: 40px;
      max-width: 700px;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    }

    /* --- Buttons --- */
    .header-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }

    .btn-pill {
      display: inline-block;
      background: #00b36b;
      color: white;
      padding: 12px 32px;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 600;
      font-size: 16px;
      transition: all 0.3s ease;
      box-shadow: 0 6px 18px rgba(0, 179, 107, 0.3);
    }

    .btn-pill:hover {
      background: #00975c;
      transform: translateY(-3px);
      box-shadow: 0 10px 24px rgba(0, 179, 107, 0.4);
    }

    .btn-outline {
      display: inline-block;
      padding: 12px 32px;
      border-radius: 40px;
      border: 2px solid #fff;
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      font-size: 16px;
      transition: all 0.3s ease;
      background: transparent;
    }

    .btn-outline:hover {
      background: #fff;
      color: #000;
      transform: translateY(-3px);
    }

    /* --- Medium Screens (Tablets) --- */
    @media (max-width: 992px) {
      .site-header {
        padding: 30px 50px;
        justify-content: flex-start;
      }

      .header-inner {
        max-width: 650px;
      }

      .header-title {
        font-size: 1.5rem;
      }

      .header-title-content {
        font-size: 2rem;
      }

      .header-lead {
        font-size: 1rem;
        margin-bottom: 30px;
      }

      .header-ctas {
        justify-content: flex-start;
      }
    }

    /* --- Small Screens (Mobiles) --- */
    @media (max-width: 600px) {
      .site-header {
        padding: 30px 30px;
        min-height: auto;
      }

      .header-title {
        font-size: 1rem;
      }

      .header-title-content {
        font-size: 1rem;
        margin-bottom: 20px;
      }

      .header-lead {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 25px;
      }

      .btn-pill,
      .btn-outline {
        font-size: 12px;
        padding: 8px 20px;
      }

      .header-ctas {
        gap: 12px;
        align-items: center;
      }
    }

    /* --- Animation --- */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    #preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Container */
.code-core {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Courier New", monospace;
}

/* Brackets */
.bracket {
  font-size: 90px;
  font-weight: 700;
  color: #22c55e;
  animation: float 1.6s infinite ease-in-out;
}

/* Inside animation */
.core {
  width: 60px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.core span {
  height: 8px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: 4px;
  animation: compile 1.2s infinite ease-in-out;
}

.core span:nth-child(2) { animation-delay: .15s; }
.core span:nth-child(3) { animation-delay: .3s; }

/* Animations */
@keyframes compile {
  0%   { transform: scaleX(0.2); opacity: 0.3; }
  50%  { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(0.2); opacity: 0.3; }
}

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