    :root {
      --bg: #05070f;
      --bg-soft: #0d1223;
      --text: #edf1ff;
      --muted: #a8b7d8;
      --line: rgba(255, 255, 255, 0.16);
      --accent: #24d9a9;
      --accent-2: #f4be5d;
      --accent-3: #0ff;
      --accent-4: #ff6b9d;
      --card: rgba(255, 255, 255, 0.05);
	      --white: #fff;
    --white-2: #efefef;
    --white-3: #e9e9e9;
    --white-4: #f0f0f0;
    --white-5: #fbfbfb;
    --white-6: #d7d7d7;
    --white-7: #F5F5F5;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Manrope", sans-serif;
      background: radial-gradient(circle at 12% 0%, #163559 0, transparent 34%),
                  radial-gradient(circle at 92% 82%, #0a4d46 0, transparent 30%),
                  linear-gradient(140deg, var(--bg), var(--bg-soft));
      color: var(--text);
      min-height: 100vh;
      overflow-x: hidden;
    }

    .grain {
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
      background-size: 3px 3px;
      opacity: 0.06;
      z-index: -1;
    }

    .container {
      width: min(1200px, 92vw);
      margin: 0 auto;
      padding: 2rem 0;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(12px);
      background: rgba(5, 7, 15, 0.68);
      border-bottom: 1px solid var(--line);
      margin-bottom: 2rem;
    }

    .nav-wrap {
      width: min(1200px, 92vw);
      margin: 0 auto;
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .logo {
      text-decoration: none;
      color: var(--text);
      display: flex;
      align-items: baseline;
      gap: 0.55rem;
      font-family: "Streetbrush";
      font-weight: 200;
      letter-spacing: 0.02em;
      font-size: 2.4rem;
      transition: color 0.3s ease;
    }

    .logo:hover {
      color: var(--accent-3);
    }

    nav a {
      color: var(--text);
      text-decoration: none;
      transition: color 0.3s ease;
      font-size: 0.95rem;
    }

    nav a:hover {
      color: var(--accent-3);
    }

    h1 {
      font-size: 3.2rem;
      font-weight: 800;
      margin-bottom: 0.5rem;
      background: linear-gradient(135deg, var(--accent-3), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .subtitle {
      font-size: 1.2rem;
      color: var(--muted);
      margin-bottom: 2rem;
    }

    .section-title {
      font-size: 2rem;
      font-weight: 700;
      margin: 3rem 0 1.5rem;
      color: var(--text);
      border-bottom: 2px solid var(--accent);
      padding-bottom: 0.5rem;
      display: inline-block;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin: 2rem 0;
    }

    .card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 1.8rem;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .card:hover {
      border-color: var(--accent-3);
      box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
      transform: translateY(-4px);
    }

    .card-icon {
      font-size: 2.5rem;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 255, 255, 0.1);
      border-radius: 12px;
    }

    .card h3 {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--text);
    }

    .card p {
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.6;
      flex-grow: 1;
    }

    .btn {
      display: inline-block;
      padding: 12px 24px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      text-align: center;
      border: 1px solid transparent;
      cursor: pointer;
    }

    .btn-primary {
      background: var(--accent-3);
      color: var(--bg);
    }

    .btn-primary:hover {
      box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: transparent;
      color: var(--accent-3);
      border-color: var(--accent-3);
    }

    .btn-secondary:hover {
      background: rgba(0, 255, 255, 0.1);
    }

    .btn-accent {
      background: var(--accent);
      color: var(--bg);
    }

    .btn-accent:hover {
      box-shadow: 0 0 20px rgba(36, 217, 169, 0.4);
    }

    .btn-warning {
      background: var(--accent-2);
      color: var(--bg);
    }

    .btn-warning:hover {
      box-shadow: 0 0 20px rgba(244, 190, 93, 0.4);
    }

    .btn-danger {
      background: var(--accent-4);
      color: var(--bg);
    }

    .btn-danger:hover {
      box-shadow: 0 0 20px rgba(255, 107, 157, 0.4);
    }

    .login-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin: 2rem 0;
    }

    .login-card {
      background: var(--card);
      border: 2px solid var(--line);
      border-radius: 16px;
      padding: 2rem;
      text-align: center;
      transition: all 0.3s ease;
    }

    .login-card:hover {
      border-color: var(--accent);
      box-shadow: 0 0 30px rgba(36, 217, 169, 0.2);
    }

    .login-card h3 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
      color: var(--text);
    }

    .login-card p {
      color: var(--muted);
      margin-bottom: 1.5rem;
      font-size: 0.9rem;
    }

    .features-list {
      list-style: none;
      margin: 1.5rem 0;
      text-align: left;
    }

    .features-list li {
      padding: 0.5rem 0;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .features-list li:before {
      content: "✓ ";
      color: var(--accent);
      font-weight: 700;
      margin-right: 0.5rem;
    }

    .highlight-box {
      background: rgba(0, 255, 255, 0.08);
      border: 1px solid var(--accent-3);
      border-radius: 12px;
      padding: 1.5rem;
      margin: 2rem 0;
    }

    .highlight-box h4 {
      color: var(--accent-3);
      margin-bottom: 0.5rem;
    }

    .future-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      margin: 1.5rem 0;
    }

    .future-item {
      background: rgba(244, 190, 93, 0.05);
      border: 1px dashed var(--accent-2);
      border-radius: 12px;
      padding: 1rem;
      text-align: center;
    }

    .future-item-icon {
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }

    .future-item-text {
      font-size: 0.9rem;
      color: var(--muted);
    }

    footer {
      border-top: 1px solid var(--line);
      margin-top: 3rem;
      padding-top: 2rem;
      text-align: center;
      color: var(--muted);
      font-size: 0.9rem;
    }

    @media (max-width: 768px) {
      h1 {
        font-size: 2rem;
      }

      .grid, .login-grid {
        grid-template-columns: 1fr;
      }

      .nav-wrap {
        flex-direction: column;
        gap: 1rem;
      }
    }

    /* Contact Modal Styles */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 300ms ease, visibility 300ms ease;
      z-index: 1000;
    }

    .modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .modal {
      background: linear-gradient(165deg, rgba(13, 18, 35, 0.95), rgba(5, 7, 15, 0.98));
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 2.5rem;
      max-width: 480px;
      width: 100%;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 1px rgba(0, 234, 255, 0.3);
      animation: modalSlideIn 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
      position: relative;
    }

    @keyframes modalSlideIn {
      from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
      }
      to {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
    }

    .modal-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      width: 36px;
      height: 36px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.05);
      color: var(--text);
      border-radius: 10px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      transition: all 180ms ease;
      padding: 0;
    }

    .modal-close:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--accent);
      color: var(--accent);
      transform: rotate(90deg);
    }

    .modal-header {
      text-align: center;
      margin-bottom: 2rem;
    }

    .modal-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 1rem;
      background: linear-gradient(135deg, rgba(36, 217, 169, 0.2), rgba(0, 234, 255, 0.2));
      border: 1.5px solid var(--accent);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: var(--accent);
      box-shadow: 0 0 20px rgba(36, 217, 169, 0.2);
    }

    .modal-header h2 {
      font-size: 1.75rem;
      margin-bottom: 0.5rem;
      background: linear-gradient(135deg, var(--accent), var(--accent-3));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 700;
    }

    .modal-header p {
      color: var(--muted);
      font-size: 0.95rem;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      margin-bottom: 2rem;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.2rem;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--line);
      border-radius: 14px;
      transition: all 200ms ease;
    }

    .contact-item:hover {
      background: rgba(255, 255, 255, 0.06);
      border-color: var(--accent);
      transform: translateX(4px);
    }

    .contact-icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
      background: rgba(36, 217, 169, 0.15);
      border: 1px solid var(--accent);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      font-size: 1.2rem;
    }

    .contact-details {
      flex: 1;
    }

    .contact-details label {
      display: block;
      font-size: 0.8rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 0.35rem;
      font-weight: 600;
    }

    .contact-details a {
      display: block;
      color: var(--text);
      text-decoration: none;
      font-weight: 600;
      font-size: 1.05rem;
      transition: color 180ms ease;
    }

    .contact-details a:hover {
      color: var(--accent);
    }

    .subscribe-message {
      background: linear-gradient(135deg, rgba(244, 190, 93, 0.1), rgba(36, 217, 169, 0.1));
      border: 1px solid rgba(244, 190, 93, 0.2);
      border-radius: 14px;
      padding: 1.5rem;
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .subscribe-message p {
      color: var(--text);
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
    }

    .subscribe-message .highlight {
      color: var(--accent-2);
      font-weight: 700;
    }

    .modal-actions {
      display: flex;
      gap: 0.8rem;
      flex-wrap: wrap;
    }

    .modal-btn {
      flex: 1;
      min-width: 140px;
      padding: 0.85rem 1rem;
      border-radius: 12px;
      border: none;
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 200ms ease;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
    }

    .modal-btn.btn-primary {
      background: linear-gradient(135deg, var(--accent), #8ff8d6);
      color: #081416;
      box-shadow: 0 8px 20px rgba(36, 217, 169, 0.3);
    }

    .modal-btn.btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(36, 217, 169, 0.5);
    }

    .modal-btn.btn-secondary {
      background: rgba(255, 255, 255, 0.05);
      color: var(--text);
      border: 1px solid var(--line);
    }
    .paint {
      
      color: var(--accent-2);
      font-size: 1.9em;
      margin-left: 0.12rem;
      text-shadow: 0 8px 26px rgba(244, 190, 93, 0.34);
      font-weight:10;
  
    }

    .modal-btn.btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--text);
    }

    @media (max-width: 480px) {
      .modal {
        padding: 1.8rem;
        margin: 20px;
      }

      .modal-header h2 {
        font-size: 1.4rem;
      }

      .contact-item {
        padding: 1rem;
      }

      .modal-actions {
        flex-direction: column;
      }

      .modal-btn {
        min-width: auto;
      }
      
    }
