@font-face {
      font-family: 'FixelText';
      src: url('fonts/FixelText-Regular.woff2') format('woff2');
      font-weight: 400;
      font-style: normal;
    }
    @font-face {
      font-family: 'FixelText';
      src: url('fonts/FixelText-SemiBold.woff2') format('woff2');
      font-weight: 600;
      font-style: normal;
    }

    :root {
      --main-bg: #F2E2FF;
      --body-bg: #F2E2FF;
      --features-bg: rgba(255, 255, 255, 0.6);
      --divider-color: rgba(0,0,0,0.1);
      --faq-plus-color: #6A3A95;
      --text-color: #333;
      --max-width: 1200px;
      --transition: 0.3s ease;
      --shadow-color: rgba(106, 58, 149, 0.4);
    }

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

    body {
      background: var(--body-bg);
      color: var(--text-color);
      font-family: 'FixelText', sans-serif;
      font-size: 1.1rem;
      line-height: 1.5;
    }

    .hero-container {
      width: 100%;
      background: var(--main-bg);
      display: flex;
      flex-direction: column;
      padding-bottom: 60px;
    }

    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 50px 40px 0 40px;
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
    }

    header img.logo {
      height: 30px;
    }

    header a.contact-us {
      text-decoration: none;
      color: var(--text-color);
      font-size: 1.1rem;
      font-weight: 500;
      position: relative;
    }
    header a.contact-us::after {
      content: "";
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 1px;
      background-color: var(--text-color);
      transition: width 0.3s ease;
    }
    header a.contact-us:hover::after {
      width: 100%;
    }

    .hero {
      flex: 1;
      position: relative;
      width: 100%;
      display: flex;
      flex-direction: column;
      margin-top: 60px;
    }

    .hero-top-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 20px;
      margin-bottom: 60px;
    }

    .hero-top-content .icon {
      height: 100px;
      filter: drop-shadow(0 25px 25px var(--shadow-color));
      border-radius: 25px;
    }

    .hero-top-content h1 {
      font-size: 2.4rem;
      margin: 20px 0 0px;
      font-weight: 600;
    }

    .hero-top-content .subtitle {
      font-size: 1.2rem;
      color: #555;
      margin-bottom: 20px;
      max-width: 470px;
      margin: 0 auto 20px auto;
    }

    .system-requirements {
      font-size: 0.95rem;
      letter-spacing: 0.05em;
      margin-top: 15px;
      opacity: 0.7;
    }

    /* Beta Signup Form */
    .beta-signup {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 54px;
      margin-bottom: 10px;
    }
    .join-btn {
      background: #000;
      color: #fff;
      border: none;
      border-radius: 14px;
      padding: 0 30px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      height: 100%;
      transition: all 0.3s ease;
      font-family: inherit;
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .join-btn img {
      width: auto;
      height: 20px;
      object-fit: contain;
    }
    .join-btn:hover {
      transform: scale(1.05);
      background: #222;
    }
    .join-btn.hidden {
      opacity: 0;
      transform: scale(0.9);
      pointer-events: none;
      position: absolute;
    }
    .beta-form {
      display: flex;
      height: 100%;
      opacity: 1;
      transition: opacity 0.3s ease, transform 0.3s ease;
      transform: scale(1);
      position: relative;
      z-index: 1;
    }
    .beta-form.hidden {
      opacity: 0;
      transform: scale(0.9);
      pointer-events: none;
      position: absolute;
    }
    .beta-form input {
      border: 2px solid #000;
      border-right: none;
      border-radius: 14px 0 0 14px;
      padding: 0 20px;
      font-size: 1rem;
      outline: none;
      height: 100%;
      width: 250px;
      font-family: inherit;
      background: rgba(255,255,255,0.8);
    }
    .beta-form button {
      background: #000;
      color: #fff;
      border: 2px solid #000;
      border-radius: 0 14px 14px 0;
      padding: 0 25px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      height: 100%;
      transition: background 0.2s;
      font-family: inherit;
    }
    .beta-form button:hover {
      background: #222;
    }
    .beta-success {
      color: #175B2A;
      font-weight: 600;
      font-size: 1.2rem;
      padding: 0 20px;
      background: rgba(255,255,255,0.6);
      border-radius: 14px;
      line-height: 54px;
      height: 54px;
    }
    .beta-success.hidden {
      display: none;
    }

    .screenshot-wrapper {
      width: calc(100% - 40px);
      max-width: calc(var(--max-width) - 40px);
      margin: 0 auto;
      text-align: center;
    }
    .screenshot-wrapper img {
      width: 100%;
      display: block;
    }

    /* Timer Section */
    .timer-container {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 15px;
      margin: 0 auto 30px;
    }

    .timer-icon-box {
      width: 76px;
      height: 76px;
      background: transparent;
      border: 2px solid rgba(0,0,0,0.1);
      border-radius: 30px; /* Stronger rounding */
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    }

    .timer-icon-box.pulse {
      transform: scale(1.1);
      box-shadow: 0 10px 30px rgba(106, 58, 149, 0.2);
      border-color: rgba(106, 58, 149, 0.3);
    }

    .timer-icon-box img {
      width: 44px; /* Slightly larger icon */
      height: 44px;
      opacity: 0.5; /* Darker icon */
    }

    .timer-box {
      height: 76px;
      background: transparent;
      border: 2px solid rgba(0,0,0,0.1);
      border-radius: 40px;
      padding: 0 40px;
      display: inline-flex;
      align-items: center;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      font-variant-numeric: tabular-nums;
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    }
    
    .timer-box.pulse {
      transform: scale(1.1);
      box-shadow: 0 10px 30px rgba(106, 58, 149, 0.2);
      border-color: rgba(106, 58, 149, 0.3);
    }

    .timer-main, .timer-ms {
      font-size: 4rem;
      font-weight: 600;
      line-height: 1;
    }

    .timer-main {
      color: #000;
    }

    .timer-ms {
      color: rgba(0,0,0,0.3);
    }

    /* Problem Description Section */
    .problem-description {
      max-width: 800px;
      margin: 140px auto 80px; /* Increased top margin */
      padding: 0 20px;
      text-align: center;
    }
    .problem-description h2 {
      font-size: 2.5rem;
      font-weight: 600;
      margin-bottom: 25px;
      color: #333;
      line-height: 1.1;
    }
    
    .text-highlight-purple {
      color: #6A0DAD;
    }
    
    .text-highlight-seconds {
      font-style: italic;
      position: relative;
      display: inline-block;
    }
    
    .text-highlight-seconds::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 2px;
      width: 0;
      height: 4px;
      background-color: #333;
      border-radius: 2px;
      transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
      transition-delay: 1s;
    }
    
    .text-highlight-seconds.underline-active::after {
      width: 100%;
    }

    /* Scroll Fade Up Animations */
    .fade-up-element {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .fade-up-element.is-visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    /* Apply fade up to specific sections */
    .tech-specs { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
    .faq-section { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
    .cta-section { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
    
    .tech-specs.is-visible, .faq-section.is-visible, .cta-section.is-visible {
      opacity: 1;
      transform: translateY(0);
    }
    .description-icon-circle {
      width: 60px;
      height: 60px;
      background: #FFFFFF;
      border-radius: 50%;
      margin: 0 auto 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    .cta-icon-app {
      border-radius: 15px !important;
    }
    .description-icon-circle img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .problem-description p {
      font-size: 1.2rem;
      line-height: 1.6;
      color: #555;
    }

    /* Tech Specs Section */
    .tech-specs {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: var(--max-width);
      margin: 40px auto 0;
      padding: 0 20px;
    }
    .tech-spec-card {
      background: rgba(255, 255, 255, 0.6);
      border-radius: 25px;
      padding: 30px 25px;
      text-align: left;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.03);
      display: flex;
      flex-direction: column;
    }
    .tech-icon-wrapper {
      width: 96px;
      height: 96px;
      border-radius: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
    }
    .tech-icon {
      width: 48px;
      height: 48px;
      object-fit: contain;
    }
    .color-icon-bg {
      background: #7B2CBF;
      color: white;
    }
    .default-icon-bg {
      background: #F3E5FC;
      color: #7B2CBF;
    }
    .tech-spec-card h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: #333;
      margin-bottom: 5px;
    }
    .tech-spec-card h4 {
      font-size: 1rem;
      font-weight: 600;
      color: #6A0DAD;
      margin-bottom: 15px;
    }
    .tech-spec-card p {
      font-size: 0.95rem;
      color: #555;
      line-height: 1.6;
      flex-grow: 1;
    }


    .features {
      max-width: var(--max-width);
      margin: 100px auto;
      padding: 0 20px;
    }

    .features h2 {
      text-align: center;
      font-size: 2.5rem;
      font-weight: 600;
      margin-bottom: 50px;
    }

    .features-grid {
      display: grid;
      gap: 25px;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .feature-item {
      background: var(--features-bg);
      border-radius: 25px;
      padding: 40px;
      text-align: left;
      box-shadow: 0 8px 24px rgba(0,0,0,0.03);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    .feature-item h3 {
      margin-bottom: 15px;
      font-size: 1.4rem;
      font-weight: 600;
    }
    .feature-item p {
      color: #444;
      font-size: 1.1rem;
      line-height: 1.6;
    }

    /* How It Works Section */
    .how-it-works {
      max-width: var(--max-width);
      margin: 100px auto;
      padding: 0 20px;
      text-align: center;
    }
    .how-it-works h2 {
      font-size: 2.5rem;
      font-weight: 600;
      margin-bottom: 60px;
    }
    .steps-grid {
      display: grid;
      gap: 30px;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      position: relative;
    }
    .steps-grid::before {
      content: "";
      position: absolute;
      top: 40px; /* center of the number circles */
      left: 15%;
      right: 15%;
      height: 2px;
      background: #E5D5F5;
      z-index: 0;
    }
    .step-item {
      padding: 0 20px;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index: 1;
    }
    .step-number {
      width: 80px;
      height: 80px;
      background: #FFFFFF;
      color: #6A0DAD;
      font-size: 1.6rem;
      font-weight: 700;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
      box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.4);
    }
    .step-item h3 {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 15px;
      color: #333;
    }
    .step-item p {
      color: #666;
      font-size: 1rem;
      line-height: 1.6;
    }

    /* FAQ Section */
    .faq-section {
      max-width: var(--max-width);
      margin: 40px auto;
      padding: 0 20px 60px;
    }
    .faq-section h2 {
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.5rem;
      font-weight: 600;
    }

    .faq-item {
      border-bottom: 1px solid var(--divider-color);
      padding: 15px 20px;
    }

    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      font-size: 1.2rem;
      font-weight: 600;
      user-select: none;
    }
    .faq-question span {
      color: var(--faq-plus-color);
      font-weight: 400;
      font-size: 1.5rem;
      transition: transform 0.4s ease;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
      opacity: 0;
      font-size: 1.1rem;
      color: #444;
      width: 80%;
      margin-top: 0;
      text-align: left;
      line-height: 1.6;
    }
    .faq-item.active .faq-answer {
      max-height: 500px;
      opacity: 1;
      margin-top: 15px;
    }

    /* CTA Section */
    .cta-section {
      width: calc(100% - 40px);
      max-width: calc(var(--max-width) - 40px);
      margin: 100px auto;
      padding: 60px 20px;
      text-align: center;
      background: rgba(255, 255, 255, 0.4);
      border-radius: 30px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.03);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    .cta-section h2 {
      font-size: 2.8rem;
      font-weight: 600;
      margin-bottom: 20px;
      line-height: 1.1;
    }
    .cta-section p {
      font-size: 1.2rem;
      color: #555;
      max-width: 600px;
      margin: 0 auto 20px auto;
      line-height: 1.6;
    }
    .cta-beta-signup {
      margin: 0 auto;
    }

    .faq-item.active .faq-question span {
      transform: rotate(45deg);
    }

    footer {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 40px 20px;
      text-align: center;
      font-size: 1.1rem;
      color: #666;
    }
    footer a {
      color: #666;
      text-decoration: none;
      margin: 0 8px;
      position: relative;
    }
    footer a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0;
      height: 1px;
      background-color: #666;
      transition: width 0.3s ease;
    }
    footer a:hover::after {
      width: 100%;
    }

    .footer-note {
      margin-top: 20px;
    }

    @media (max-width: 950px) {
      .tech-specs {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 767px) {
        .timer-icon-box {
          width: 56px;
          height: 56px;
          border-radius: 18px;
        }
        .timer-icon-box img {
          width: 30px;
          height: 30px;
        }
      .timer-box {
        height: 56px;
        padding: 0 25px;
      }
      .timer-main, .timer-ms {
        font-size: 2.5rem;
      }
      
      .text-highlight-seconds::after {
        bottom: -2px;
      }

      header {
        padding: 10px 20px 0 20px;
      }
      .hero-container {
         padding-bottom: 30px;
      }
      .hero-top-content {
        margin-bottom: 30px;
      }
      .hero-top-content h1 {
        font-size: 1.9rem;
      }
      .hero-top-content .subtitle {
        font-size: 1rem;
        max-width: 330px;
        margin-bottom: 20px;
      }
      .system-requirements {
        margin-top: 10px;
      }
      .beta-form input {
        width: 180px;
      }
      .problem-description {
        margin: 100px auto 60px; /* Increased top margin for mobile */
      }
      .problem-description h2 {
          font-size: 1.6rem;
          line-height: 1.1;
        }
        .description-icon-circle {
          width: 50px;
          height: 50px;
          margin-bottom: 20px;
        }
      .problem-description p {
        font-size: 1.05rem;
      }
      .features h2, .how-it-works h2, .faq-section h2 {
        font-size: 2rem;
      }
      .tech-specs {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
        margin-bottom: 0;
      }
      .faq-answer {
        width: 100%;
      }
      .how-it-works {
        margin: 50px auto;
      }
      .steps-grid {
        gap: 40px;
      }
      .steps-grid::before {
        display: none;
      }
      .faq-section {
        margin: 50px auto;
      }
      .cta-section {
        margin: 50px auto;
        padding: 40px 20px;
        border-radius: 25px;
      }
      .cta-section h2 {
        font-size: 2.2rem;
      }
      .cta-section p {
        font-size: 1.1rem;
      }
    }
