 /* Import Neuropol X font */
 @font-face {
     font-family: 'Neuropol X';
     src: url('https://db.onlinewebfonts.com/t/40451c5b58c663ae408e200a43c19bdd.eot');
     src: url('https://db.onlinewebfonts.com/t/40451c5b58c663ae408e200a43c19bdd.eot?#iefix') format('embedded-opentype'),
         url('https://db.onlinewebfonts.com/t/40451c5b58c663ae408e200a43c19bdd.woff2') format('woff2'),
         url('https://db.onlinewebfonts.com/t/40451c5b58c663ae408e200a43c19bdd.woff') format('woff'),
         url('https://db.onlinewebfonts.com/t/40451c5b58c663ae408e200a43c19bdd.ttf') format('truetype');
     font-weight: normal;
     font-style: normal;
 }

 /* Reset and base styles */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Montserrat', sans-serif;
     margin: 0;
     padding: 0;
     color: #ffffff;
     background: #0b0c2a;
     overflow-x: hidden;
 }

 /* Header styles */
 header {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1000;
     transition: background-color 0.3s ease, box-shadow 0.3s ease;
     padding: 16px 0;
     background-color: transparent;
 }

 header.scrolled {
     background-color: rgba(11, 12, 42, 0.9);
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }

 .header-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 24px;
     width: 100%;
 }

 .logo-container {
     display: flex;
     align-items: center;
 }

  .logo-circle {
      width: 60px !important;
      height: 60px;
      border-radius: 50%;
      background-color: #00ffff;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px;
      overflow: hidden;
  }

  .logo-circle img {
      width: 60px;
      height: 60px;
      object-fit: cover;
  }

 .logo-text {
     color: #0b0c2a;
     font-weight: bold;
     font-size: 18px;
 }

 .brand-name {
     font-family: 'Cinzel', serif;
     font-size: 22px;
     font-weight: bold;
     background-image: linear-gradient(to right, #ffffff, #a9b4d0);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .header-actions {
     display: flex;
     align-items: center;
 }

 /* Button styles */
 .button {
     background-color: #00cfff;
     color: #0b0c2a;
     border: none;
     border-radius: 30px;
     padding: 10px 20px;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     outline: none;
     text-decoration: none;
     display: inline-block;
     text-align: center;
 }

 .button:hover {
     background-color: #00ffff;
 }

 .primary-button {
     background-color: #00ffff;
     padding: 14px 30px;
     font-size: 18px;
     box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
 }

 .primary-button:hover {
     background-color: #00e0e0;
     transform: translateY(-2px);
 }

 .secondary-button {
     background-color: transparent;
     border: 2px solid #00cfff;
     color: #ffffff;
     padding: 12px 28px;
     margin-left: 16px;
 }

 .secondary-button:hover {
     background-color: rgba(0, 207, 255, 0.1);
     color: #00ffff;
 }

 /* Hero section */
 .hero-section {
     padding: 160px 24px 100px;
     position: relative;
     overflow: hidden;
     background: linear-gradient(180deg, #0b0c2a 0%, #1e2b4f 100%);
 }

 .hero-content {
     display: flex;
     flex-direction: column;
     align-items: center;
     max-width: 1200px;
     margin: 0 auto;
     position: relative;
     z-index: 1;
 }

 .hero-text-container {
     max-width: 600px;
     margin-bottom: 60px;
     width: 100%;
 }

 .coming-soon-pill {
     display: inline-block;
     background: linear-gradient(to right, #00ffff, #00cfff);
     border-radius: 30px;
     padding: 8px 16px;
     color: #0b0c2a;
     font-weight: bold;
     font-size: 14px;
     margin-bottom: 24px;
 }

 .hero-title {
     font-family: 'Cinzel', serif;
     font-size: 36px;
     font-weight: 800;
     line-height: 1.1;
     margin: 0 0 24px 0;
 }

 .hero-title-line {
     display: block;
     margin-bottom: 10px;
 }

 .accent-cyan {
     color: #00ffff;
 }

 .accent-sky-blue {
     color: #00cfff;
 }

 .hero-description {
     font-family: 'Neuropol X', 'Montserrat', sans-serif;
     font-size: 18px;
     line-height: 1.6;
     color: #a9b4d0;
     margin-bottom: 32px;
 }

 .hero-buttons {
     display: flex;
     flex-direction: column;
     gap: 16px;
     width: 100%;
 }

 .hero-image-container {
     width: 100%;
     display: flex;
     justify-content: center;
 }

 .hero-image-bg {
     position: relative;
     width: 100%;
     max-width: 500px;
     height: 500px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .glow-orb {
     position: absolute;
     width: 80%;
     height: 80%;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(0, 255, 255, 0.4) 0%, rgba(0, 207, 255, 0.1) 50%, rgba(0, 0, 0, 0) 70%);
     filter: blur(40px);
     animation: pulse 4s infinite ease-in-out;
 }

 .hero-shapes {
     position: relative;
     width: 70%;
     height: 70%;
 }

 .resume {
     position: absolute;
     top: 0;
     left: 0;
     width: 60%;
     height: 80%;
     background-color: #0b0c2a;
     border-radius: 12px;
     padding: 16px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
     transform: rotate(-5deg);
     z-index: 1;
 }

 .job-description {
     position: absolute;
     bottom: 0;
     right: 0;
     width: 60%;
     height: 80%;
     background-color: #1e2b4f;
     border-radius: 12px;
     border: 2px solid #00cfff;
     padding: 16px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
     transform: rotate(5deg);
     z-index: 2;
 }

 .document-header {
     width: 40%;
     height: 10%;
     background-color: #00ffff;
     border-radius: 6px;
     margin-bottom: 12px;
 }

 .job-document-header {
     background-color: #00cfff;
 }

 .document-line {
     width: 100%;
     height: 6%;
     background-color: #a9b4d0;
     opacity: 0.6;
     border-radius: 4px;
     margin-bottom: 12px;
 }

 .ai-icon {
     position: absolute;
     top: 40%;
     left: 40%;
     width: 20%;
     height: 20%;
     border-radius: 50%;
     background-color: #00ffff;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
     z-index: 3;
     animation: float 3s infinite ease-in-out;
 }

 /* Features section */
 .features-section {
     padding: 100px 24px;
     background: #0b0c2a;
 }

 .content-wrapper {
     max-width: 1200px;
     margin: 0 auto;
 }

 .section-heading {
     text-align: center;
     margin-bottom: 60px;
 }

 .section-title {
     font-family: 'League Spartan', sans-serif;
     font-size: 36px;
     font-weight: 700;
     margin-bottom: 16px;
     background: linear-gradient(to right, #ffffff, #a9b4d0);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .section-description {
     font-family: 'Montserrat', sans-serif;
     font-size: 18px;
     color: #a9b4d0;
     max-width: 600px;
     margin: 0 auto;
     line-height: 1.6;
 }

 .features-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 24px;
 }

 .feature-card {
     background-color: #1e2b4f;
     border-radius: 16px;
     padding: 32px 24px;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     cursor: pointer;
 }

 .feature-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
 }

 .feature-icon-container {
     margin-bottom: 24px;
 }

 .feature-icon {
     width: 50px;
     height: 50px;
     border-radius: 12px;
     background-color: #00ffff;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .feature-title {
     font-family: 'League Spartan', sans-serif;
     font-size: 20px;
     font-weight: 600;
     margin-bottom: 12px;
 }

 .feature-description {
     font-family: 'Montserrat', sans-serif;
     font-size: 16px;
     color: #a9b4d0;
     line-height: 1.6;
 }

 /* How it works section */
 .how-it-works-section {
     padding: 100px 24px;
     background: #1e2b4f;
 }

 .steps-container {
     display: grid;
     grid-template-columns: 1fr;
     gap: 40px;
 }

 .step {
     text-align: center;
     padding: 24px;
 }

 .step-number {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     background-color: #00ffff;
     color: #0b0c2a;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 24px;
     font-size: 24px;
     font-weight: bold;
 }

 .step-title {
     font-family: 'League Spartan', sans-serif;
     font-size: 22px;
     font-weight: 600;
     margin-bottom: 16px;
 }

 .step-description {
     font-size: 16px;
     color: #a9b4d0;
     line-height: 1.6;
 }

 /* CTA section */
 .cta-section {
     padding: 80px 24px;
     background: linear-gradient(to right, #0b0c2a, #1e2b4f);
     position: relative;
     overflow: hidden;
 }

 .cta-content {
     max-width: 800px;
     margin: 0 auto;
     text-align: center;
     position: relative;
     z-index: 1;
 }

 .cta-title {
     font-family: 'League Spartan', sans-serif;
     font-size: 36px;
     font-weight: 700;
     margin-bottom: 20px;
 }

 .cta-description {
     font-size: 18px;
     color: #a9b4d0;
     margin-bottom: 32px;
     line-height: 1.6;
 }

 .cta-button {
     background-color: #00ffff;
     padding: 16px 40px;
     font-size: 18px;
     box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
 }

 /* Footer */
 .footer {
     background-color: #0b0c2a;
     padding: 80px 24px 24px;
 }

 .footer-content {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     flex-direction: column;
     margin-bottom: 60px;
 }

 .footer-logo {
     display: flex;
     align-items: center;
     margin-bottom: 40px;
 }

 .footer-logo-circle {
     width: 36px;
     height: 36px;
 }

 .footer-brand-name {
     font-family: 'Cinzel', serif;
     font-size: 20px;
     font-weight: bold;
     color: #ffffff;
 }

 .footer-links {
     display: flex;
     flex-wrap: wrap;
     gap: 40px;
 }

 .footer-link-column {
     display: flex;
     flex-direction: column;
 }

 .footer-link-title {
     font-family: 'League Spartan', sans-serif;
     font-size: 16px;
     font-weight: 600;
     margin-bottom: 16px;
     color: #ffffff;
 }

 .footer-link {
     color: #a9b4d0;
     text-decoration: none;
     margin-bottom: 12px;
     transition: color 0.3s ease;
     font-size: 14px;
 }

 .footer-link:hover {
     color: #00ffff;
 }

 .footer-bottom {
     border-top: 1px solid rgba(169, 180, 208, 0.2);
     padding-top: 24px;
     text-align: center;
 }

 .copyright {
     color: #a9b4d0;
     font-size: 14px;
 }

 /* Animations */
 @keyframes pulse {
     0% {
         opacity: 0.2;
     }

     50% {
         opacity: 0.5;
     }

     100% {
         opacity: 0.2;
     }
 }

 @keyframes float {
     0% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-10px);
     }

     100% {
         transform: translateY(0);
     }
 }

 /* Media Queries */
 @media (min-width: 480px) {
     .hero-buttons {
         flex-direction: row;
     }
 }

 @media (min-width: 640px) {
     .features-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (min-width: 768px) {
     .hero-content {
         flex-direction: row;
         align-items: center;
         justify-content: space-between;
     }

     .hero-text-container {
         margin-bottom: 0;
         width: 50%;
     }

     .hero-title {
         font-size: 64px;
     }

     .hero-description {
         font-size: 20px;
     }

     .hero-image-container {
         width: 50%;
     }

     .section-title {
         font-size: 42px;
     }

     .steps-container {
         grid-template-columns: repeat(3, 1fr);
     }

     .cta-title {
         font-size: 42px;
     }

     .footer-content {
         flex-direction: row;
         justify-content: space-between;
     }

     .footer-logo {
         margin-bottom: 0;
     }
 }

 @media (min-width: 1024px) {
     .features-grid {
         grid-template-columns: repeat(4, 1fr);
     }
 }