    /* Import Fonts */
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

    /* CSS Variables */
    :root {
      --primary: #0066cc;
      --primary-dark: #004c99;
      --accent: #05c7f2;
      --accent-light: #7ee8ff;
      --text-dark: #1a1a2e;
      --text-gray: #4a5568;
      --text-light: #718096;
      --bg-light: #f7fafc;
      --bg-white: #ffffff;
      --border: #e2e8f0;
      --success: #10b981;
      --gradient-primary: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
      --gradient-accent: linear-gradient(135deg, #05c7f2 0%, #0066cc 100%);
      --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
      --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
      --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
      --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--text-dark);
      background: var(--bg-white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Header */
    .site-header {
      background: var(--gradient-primary);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: var(--shadow-md);
    }

    .header-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 1rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo img {
      height: 50px;
      width: auto;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .logo img:hover {
      transform: scale(1.05);
    }

    .moksho h4 {
      color: white;
      font-size: 1.1rem;
      font-weight: 600;
      letter-spacing: -0.01em;
    }

    .site-nav ul {
      display: flex;
      list-style: none;
      gap: 2rem;
      align-items: center;
    }

    .site-nav a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      position: relative;
    }

    .site-nav a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.3s ease;
    }

    .site-nav a:hover::after {
      width: 100%;
    }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
    }

    /* Toggle Circles */
    .toggle-between-data-roles {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      padding: 2.5rem 0 1rem;
      background: var(--bg-white);
    }

    .toggle-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
    }

    .toggle-circle {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      border: 2px solid var(--border);
      background: white;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: var(--shadow-sm);
    }

    .toggle-circle:hover {
      transform: scale(1.15);
      border-color: var(--primary);
      box-shadow: var(--shadow-md);
    }

    .toggle-circle.active {
      background: var(--gradient-accent);
      border-color: var(--accent);
      box-shadow: 0 0 15px rgba(5, 199, 242, 0.4);
      transform: scale(1.2);
    }

    .toggle-label {
      font-size: 0.85rem;
      color: var(--text-light);
      font-weight: 500;
      opacity: 0.7;
      transition: all 0.3s ease;
    }

    .toggle-item:hover .toggle-label,
    .toggle-circle.active + .toggle-label {
      color: var(--primary);
      opacity: 1;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
      padding: 3rem 0 4rem;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 50%;
      height: 100%;
      background: radial-gradient(circle at top right, rgba(5, 199, 242, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
    }

    .hero-text {
      animation: fadeInUp 0.8s ease;
    }

    .hero-text h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 2.5rem;
      line-height: 1.2;
      color: var(--text-dark);
      margin-bottom: 1.5rem;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .hero-text h3 span {
      background: var(--gradient-accent);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-text p {
      font-size: 1.15rem;
      color: var(--text-gray);
      margin-bottom: 1rem;
      line-height: 1.7;
    }

    .hero-text p strong {
      color: var(--text-dark);
      font-weight: 600;
    }

    .hero-cta {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.875rem 1.75rem;
      border-radius: 8px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      border: none;
      font-size: 1rem;
      box-shadow: var(--shadow-sm);
    }

    .btn-primary {
      background: var(--gradient-primary);
      color: white;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    .btn-secondary {
      background: white;
      color: var(--primary);
      border: 2px solid var(--primary);
    }

    .btn-secondary:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    /* Hero Image */
    .hero-image {
      position: relative;
      animation: fadeInRight 0.8s ease;
    }

    .hero-illustration {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow-xl);
      background: white;
    }

    .hero-illustration img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
      animation: float 6s ease-in-out infinite;
    }
    
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50%
       { transform: translateY(-10px); }
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }


    .hero-illustration:hover img {
      transform: scale(1.02);
    }

    /* Login Form */
    #login-form {
      background: white;
      border-radius: 16px;
      padding: 2rem;
      box-shadow: var(--shadow-xl);
      border: 1px solid var(--border);
    }

    #login-form input {
      width: 100%;
      padding: 0.875rem 1rem;
      border: 2px solid var(--border);
      border-radius: 8px;
      font-size: 1rem;
      margin-bottom: 1rem;
      transition: all 0.3s ease;
    }

    #login-form input:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    }

    #sign-in-button {
      width: 100%;
      padding: 0.875rem;
      background: var(--gradient-primary);
      color: white;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 0.5rem;
    }

    #sign-in-button:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    .link-group {
      text-align: center;
      margin-top: 1.5rem;
      font-size: 0.9rem;
    }

    .link-group a {
      color: var(--primary);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .link-group a:hover {
      color: var(--accent);
    }

    /* Features Section */
    .features {
      padding: 5rem 0;
      background: white;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .section-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-header h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 2.5rem;
      color: var(--text-dark);
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .section-header p {
      font-size: 1.25rem;
      color: var(--text-gray);
      max-width: 700px;
      margin: 0 auto;
    }

    .section-header p strong {
      color: var(--text-dark);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .feature-card {
      background: white;
      border: 2px solid var(--border);
      border-radius: 12px;
      padding: 2rem;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 0;
      background: var(--gradient-accent);
      transition: height 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
      border-color: var(--accent);
    }

    .feature-card:hover::before {
      height: 100%;
    }

    .feature-card h3 {
      font-size: 1.25rem;
      color: var(--text-dark);
      margin-bottom: 0.75rem;
      font-weight: 600;
    }

    .feature-card p {
      color: var(--text-gray);
      line-height: 1.6;
    }

   /* OPTION 6: Interview Theme - For "How It Works" */
    .how-it-works {
      padding: 5rem 0;
      background: linear-gradient(180deg, #f8fafc 0%, white 100%);
      position: relative;
      overflow: hidden;
      min-height: 500px;
    }

    /* Concentric circles (top right) - ANIMATED */
    .how-it-works::before {
      content: '';
      position: absolute;
      top: 10%;
      right: 8%;
      width: 300px;
      height: 300px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%2305c7f2' stroke-opacity='0.15' stroke-width='2'%3E%3Ccircle cx='100' cy='100' r='30'/%3E%3Ccircle cx='100' cy='100' r='50'/%3E%3Ccircle cx='100' cy='100' r='70'/%3E%3Ccircle cx='100' cy='100' r='90'/%3E%3C/g%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
      z-index: 1;
      opacity: 1;
      pointer-events: none;
      animation: pulse-radar-3 3s ease-in-out infinite;
    }

    /* Option 4: Dots on Circle (most prominent) */
    .radar-dots {
      position: relative;
      width: 200px;
      height: 200px;
    }

    .radar-dots::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%2305c7f2' stroke-opacity='0.2' stroke-width='2'%3E%3Ccircle cx='100' cy='100' r='30'/%3E%3Ccircle cx='100' cy='100' r='50'/%3E%3Ccircle cx='100' cy='100' r='70'/%3E%3Ccircle cx='100' cy='100' r='90'/%3E%3Ccircle cx='100' cy='70' r='5' fill='%2305c7f2' fill-opacity='0.9'/%3E%3Ccircle cx='150' cy='100' r='5' fill='%2305c7f2' fill-opacity='0.7'/%3E%3Ccircle cx='135' cy='135' r='5' fill='%2305c7f2' fill-opacity='0.5'/%3E%3Ccircle cx='100' cy='10' r='5' fill='%2305c7f2' fill-opacity='0.8'/%3E%3C/g%3E%3C/svg%3E");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      animation: rotate-full 6s linear infinite;
    }

    /* Radar pulse animation */
    @keyframes pulse-radar {
      0%, 100% {
        transform: scale(1);
        opacity: 1;
      }
      50% {
        transform: scale(1.1);
        opacity: 0.7;
      }
    }
    /* Rotating Bulls-eye (spinning):*/
    @keyframes pulse-radar-2 {
        0% {
          transform: scale(1) rotate(0deg);
        }
        100% {
          transform: scale(1) rotate(360deg);
        }
      }

    @keyframes pulse-radar-3 {
      0% {
        transform: scale(0.95);
        opacity: 0.5;
      }
      50% {
        transform: scale(1.05);
        opacity: 2;
      }
      100% {
        transform: scale(0.95);
        opacity: 0.9;
      }
    }
/* Change animation duration to: animation: pulse-radar 20s linear infinite; */

    /* Sound waves (bottom left) */
    .how-it-works::after {
      content: '';
      position: absolute;
      bottom: 10%;
      left: 5%;
      width: 250px;
      height: 200px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath fill='none' stroke='%230066cc' stroke-opacity='0.12' stroke-width='3' d='M20,100 Q60,80 100,100 T180,100 M20,120 Q60,100 100,120 T180,120 M20,140 Q60,120 100,140 T180,140'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
      z-index: 1;
      opacity: 1;
      pointer-events: none;
    }

    .how-it-works .container {
      position: relative;
      z-index: 2;
    }

    .steps {
      list-style: none;
      max-width: 900px;
      margin: 0 auto;
    }

    .steps li {
      background: white;
      border-radius: 12px;
      padding: 2rem;
      margin-bottom: 1.5rem;
      box-shadow: var(--shadow-md);
      border-left: 4px solid var(--accent);
      transition: all 0.3s ease;
      position: relative;
    }

    .steps li:hover {
      transform: translateX(8px);
      box-shadow: var(--shadow-lg);
    }

    .steps li strong {
      color: var(--primary);
      font-size: 1.1rem;
      display: block;
      margin-bottom: 0.5rem;
    }

    /* Pricing */
    .pricing {
      padding: 5rem 0;
      background: white;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1100px;
      margin: 0 auto;
    }

    .plan-card {
      background: white;
      border: 2px solid var(--border);
      border-radius: 16px;
      padding: 2.5rem;
      text-align: center;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .plan-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gradient-accent);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .plan-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-xl);
      border-color: var(--accent);
    }

    .plan-card:hover::before {
      transform: scaleX(1);
    }

    .plan-card h3 {
      font-size: 1.5rem;
      color: var(--text-dark);
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .plan-card p {
      color: var(--text-gray);
      margin-bottom: 0.75rem;
      line-height: 1.6;
    }

    .plan-card p strong {
      color: var(--primary);
      font-size: 1.75rem;
      display: block;
      margin: 1.5rem 0;
      font-weight: 700;
    }

    /* Testimonials */
    .testimonials {
      padding: 5rem 0;
      background: var(--bg-light);
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
    }

    .testimony {
      background: white;
      border-radius: 12px;
      padding: 2rem;
      box-shadow: var(--shadow-md);
      transition: all 0.3s ease;
      border-left: 4px solid var(--accent);
    }

    .testimony:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .testimony blockquote {
      font-style: italic;
      color: var(--text-gray);
      margin-bottom: 1.5rem;
      line-height: 1.7;
      font-size: 1.05rem;
    }

    .testimony .author {
      color: var(--primary);
      font-weight: 600;
      text-align: right;
      font-size: 0.95rem;
    }

    /* Footer */
    .site-footer {
      background: var(--text-dark);
      color: white;
      padding: 2rem 0;
      text-align: center;
    }

    .site-footer a {
      color: var(--accent);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .site-footer a:hover {
      color: white;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    /* Dual View Logic */
    .dual-view {
      display: none;
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .dual-view.active {
      display: block;
      animation: fadeInUp 0.6s ease forwards;
      opacity: 1;
    }

    /* Responsive */
    @media (max-width: 968px) {
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .hero-text h3 {
        font-size: 2rem;
      }

      .section-header h2 {
        font-size: 2rem;
      }

      .site-nav {
        display: none;
      }

      .nav-toggle {
        display: block;
      }
    }

    @media (max-width: 640px) {
      .toggle-between-data-roles {
        gap: 1rem;
      }

      .toggle-label {
        font-size: 0.75rem;
      }

      .hero-text h3 {
        font-size: 1.75rem;
      }

      .hero-text p {
        font-size: 1rem;
      }

      .hero-cta {
        flex-direction: column;
      }

      .btn {
        width: 100%;
        justify-content: center;
      }
       .moksho h4 {
      font-size: .7rem;
    }
    }
