 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #050505;
      color: white;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(34,197,94,0.2), transparent 70%);
      top: -200px;
      left: -200px;
      z-index: -1;
    }

    body::after {
      content: '';
      position: fixed;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(16,185,129,0.15), transparent 70%);
      bottom: -250px;
      right: -250px;
      z-index: -1;
    }

    .container {
      width: 90%;
      max-width: 1300px;
      margin: auto;
    }

    header {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 0;
    }

    .hero {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 60px;
      align-items: center;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 10px 18px;
      border-radius: 999px;
      color: #cfcfcf;
      margin-bottom: 25px;
      backdrop-filter: blur(10px);
    }

    .pulse {
      width: 10px;
      height: 10px;
      background: #22c55e;
      border-radius: 50%;
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
      0% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.4); opacity: 0.5; }
      100% { transform: scale(1); opacity: 1; }
    }

    h1 {
      font-size: clamp(3rem, 8vw, 6rem);
      line-height: 0.95;
      font-weight: 900;
      margin-bottom: 25px;
    }

    h1 span {
      color: #22c55e;
    }

    .hero p {
      color: #b0b0b0;
      font-size: 1.2rem;
      line-height: 1.8;
      margin-bottom: 30px;
      max-width: 700px;
    }

    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .tag {
      padding: 12px 18px;
      border-radius: 14px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      color: #d4d4d4;
      transition: 0.3s ease;
    }

    .tag:hover {
      transform: translateY(-3px);
      border-color: rgba(34,197,94,0.5);
    }

    .hero-card {
      position: relative;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 40px;
      padding: 50px;
      backdrop-filter: blur(20px);
      overflow: hidden;
      box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    }

    .hero-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(34,197,94,0.2), transparent);
    }

    .hero-card-content {
      position: relative;
      text-align: center;
    }

    .icon-circle {
      width: 140px;
      height: 140px;
      margin: auto;
      border-radius: 50%;
      background: linear-gradient(135deg, #22c55e, #059669);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      margin-bottom: 30px;
      box-shadow: 0 20px 40px rgba(34,197,94,0.3);
    }

    section {
      padding: 100px 0;
    }

    .section-title {
      font-size: 3rem;
      margin-bottom: 15px;
      font-weight: 800;
    }

    .section-description {
      color: #9ca3af;
      max-width: 700px;
      margin-bottom: 50px;
      line-height: 1.7;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 30px;
      padding: 35px;
      transition: 0.35s ease;
      backdrop-filter: blur(12px);
    }

    .card:hover {
      transform: translateY(-6px);
      background: rgba(255,255,255,0.06);
      border-color: rgba(34,197,94,0.4);
    }

    .card-icon {
      font-size: 3rem;
      margin-bottom: 20px;
    }

    .card h3 {
      font-size: 1.7rem;
      margin-bottom: 15px;
    }

    .card p {
      color: #b0b0b0;
      line-height: 1.7;
    }

    .project {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      padding: 40px;
      background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 30px;
      margin-bottom: 25px;
      transition: 0.3s ease;
    }

    .project:hover {
      transform: scale(1.01);
      border-color: rgba(34,197,94,0.4);
    }

    .project small {
      color: #22c55e;
      font-size: 0.9rem;
      font-weight: 600;
    }

    .project h3 {
      font-size: 2rem;
      margin: 10px 0;
    }

    .project p {
      color: #b0b0b0;
      line-height: 1.7;
      max-width: 700px;
    }

    .quote {
      background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(255,255,255,0.03));
      border: 1px solid rgba(34,197,94,0.2);
      border-radius: 40px;
      padding: 60px;
    }

    .quote h2 {
      font-size: clamp(2rem, 5vw, 4rem);
      line-height: 1.2;
      margin-bottom: 25px;
      font-weight: 900;
    }

    .quote p {
      color: #d4d4d4;
      line-height: 1.8;
      font-size: 1.1rem;
      max-width: 900px;
    }

    footer {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 35px 0;
      color: #777;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    @media (max-width: 768px) {
      .project {
        flex-direction: column;
        align-items: flex-start;
      }

      .quote {
        padding: 40px 25px;
      }

      .hero-card {
        padding: 35px;
      }
    }