    /* ==========================================================================
       AASHIRVAAD CONSULTANCY SERVICES - CORE DESIGN SYSTEM (INLINED)
       ========================================================================== */
    :root {
      --bg-primary: #070a13;
      --bg-secondary: #0f1524;
      --bg-card: rgba(20, 27, 45, 0.65);
      --bg-input: rgba(255, 255, 255, 0.03);
      --accent-cyan: #10b981;
      --accent-emerald: #059669;
      --accent-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
      --text-primary: #ffffff;
      --text-secondary: #94a3b8;
      --text-muted: #64748b;
      --border-color: rgba(255, 255, 255, 0.08);
      --border-focus: rgba(16, 185, 129, 0.5);
      --success-color: #10b981;
      --error-color: #ef4444;
      --font-heading: 'Outfit', sans-serif;
      --font-body: 'Inter', sans-serif;
      --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      --transition-fast: all 0.15s ease-out;
    }

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

    html {
      scroll-behavior: smooth;
      font-family: var(--font-body);
      background-color: var(--bg-primary);
      color: var(--text-primary);
      line-height: 1.6;
      scrollbar-width: thin;
      scrollbar-color: var(--bg-secondary) var(--bg-primary);
    }

    body {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      overflow-x: hidden;
      position: relative;
      background: radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 45%),
                  radial-gradient(circle at 90% 80%, rgba(5, 150, 105, 0.05) 0%, transparent 40%),
                  #070a13;
    }

    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: var(--bg-primary); }
    ::-webkit-scrollbar-thumb { background: var(--bg-secondary); border-radius: 4px; border: 2px solid var(--bg-primary); }
    ::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

    /* Watermark Background - no image needed */
    .watermark-bg {
      position: fixed; top: 0; left: 0;
      width: 100%; height: 100%;
      opacity: 0; pointer-events: none; z-index: -1;
    }

    /* Header */
    .main-header {
      position: sticky; top: 0; z-index: 100;
      background: rgba(7, 10, 19, 0.75);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-color);
      padding: 1rem 0;
    }
    .header-container {
      max-width: 1280px; margin: 0 auto; padding: 0 2rem;
      display: flex; justify-content: space-between; align-items: center;
    }
    .brand { display: flex; align-items: center; gap: 0.75rem; }
    .brand-logo {
      height: 42px; width: 42px; border-radius: 8px;
      object-fit: cover; border: 1.5px solid rgba(255, 255, 255, 0.2);
    }
    .brand-logo-icon {
      height: 42px; width: 42px; border-radius: 8px;
      background: var(--accent-gradient);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-heading); font-weight: 800; font-size: 1.25rem;
      color: #070a13; border: 1.5px solid rgba(255, 255, 255, 0.2);
      flex-shrink: 0;
    }
    .brand-name {
      font-family: var(--font-heading); font-weight: 700;
      font-size: 1.25rem; letter-spacing: -0.5px; color: white;
    }
    .brand-name .accent-text {
      background: var(--accent-gradient);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Support Widget */
    .support-widget { display: flex; gap: 0.75rem; }
    .support-btn {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.5rem 1rem; border-radius: 9999px; text-decoration: none;
      font-weight: 600; font-size: 0.875rem; transition: var(--transition-smooth);
    }
    .whatsapp-btn {
      background: rgba(37, 211, 102, 0.1);
      border: 1px solid rgba(37, 211, 102, 0.15);
      color: #25d366;
    }
    .whatsapp-btn:hover {
      background: #25d366; color: #fff;
      box-shadow: 0 0 15px rgba(37, 211, 102, 0.4); transform: translateY(-2px);
    }
    .support-text { font-size: 0.875rem; }

    /* Hero */
    .hero-section {
      flex: 1; display: flex; align-items: center;
      padding: 4rem 2rem; max-width: 1280px; margin: 0 auto; width: 100%;
    }
    .hero-container {
      display: grid; grid-template-columns: 1.2fr 1fr;
      gap: 4rem; align-items: center; width: 100%;
    }
    .hero-text { display: flex; flex-direction: column; align-items: flex-start; }
    .badge {
      font-family: var(--font-heading); font-size: 0.875rem; font-weight: 600;
      letter-spacing: 1px; text-transform: uppercase;
      background: rgba(16, 185, 129, 0.1); color: var(--accent-cyan);
      padding: 0.35rem 1rem; border-radius: 9999px;
      border: 1px solid rgba(16, 185, 129, 0.2); margin-bottom: 1.5rem;
    }
    .hero-text h1 {
      font-family: var(--font-heading); font-size: 3.5rem; font-weight: 800;
      line-height: 1.15; letter-spacing: -1.5px; margin-bottom: 1.5rem;
    }
    .hero-text .subtitle {
      font-size: 1.125rem; color: var(--text-secondary);
      margin-bottom: 2.5rem; max-width: 520px;
    }

    /* Service Pills */
    .hero-services-mini { display: flex; flex-wrap: wrap; gap: 0.5rem; }
    .service-pill {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border-color);
      padding: 0.4rem 1rem; border-radius: 9999px;
      font-size: 0.85rem; color: var(--text-secondary);
      font-weight: 500; transition: var(--transition-fast);
    }
    .service-pill:hover {
      border-color: var(--accent-cyan); color: var(--text-primary);
      background: rgba(16, 185, 129, 0.05);
    }

    /* Auth Card */
    .auth-card-container { display: flex; justify-content: flex-end; }
    .auth-card {
      width: 100%; max-width: 440px;
      background: var(--bg-card);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--border-color); border-radius: 24px;
      padding: 2.5rem;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
      transition: var(--transition-smooth);
    }
    .auth-card:hover {
      border-color: rgba(16, 185, 129, 0.25);
      box-shadow: 0 25px 50px rgba(16, 185, 129, 0.08);
    }
    .auth-card-header { text-align: center; margin-bottom: 2rem; }
    .auth-card-header h2 {
      font-family: var(--font-heading); font-size: 1.75rem;
      font-weight: 700; margin-bottom: 0.5rem;
    }
    .auth-card-header p { color: var(--text-secondary); font-size: 0.95rem; }

    /* Form */
    .auth-form { display: flex; flex-direction: column; gap: 1.25rem; }
    .form-group { display: flex; flex-direction: column; gap: 0.5rem; }
    .form-group label {
      font-size: 0.875rem; font-weight: 500; color: var(--text-secondary);
    }
    .form-group input {
      background: var(--bg-input); border: 1px solid var(--border-color);
      padding: 0.75rem 1rem; border-radius: 12px; color: var(--text-primary);
      font-family: var(--font-body); font-size: 0.95rem;
      transition: var(--transition-fast);
    }
    .form-group input:focus {
      outline: none; border-color: var(--accent-cyan);
      background: rgba(16, 185, 129, 0.02);
      box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
    }

    /* Buttons */
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: 12px;
      font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
      cursor: pointer; transition: var(--transition-smooth); border: none;
    }
    .btn-primary {
      background: var(--accent-gradient); color: #070a13;
      box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
    }
    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
    }
    .btn-arrow { width: 16px; height: 16px; transition: var(--transition-smooth); }
    .btn-primary:hover .btn-arrow { transform: translateX(4px); }

    .btn-google {
      background: #ffffff; color: #1e293b; border: 1px solid #e2e8f0;
    }
    .btn-google:hover {
      background: #f8fafc; transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
    }

    .divider {
      display: flex; align-items: center; text-align: center;
      color: var(--text-muted); font-size: 0.8rem;
      text-transform: uppercase; letter-spacing: 0.5px; margin: 0.5rem 0;
    }
    .divider::before, .divider::after {
      content: ''; flex: 1; border-bottom: 1px solid var(--border-color);
    }
    .divider:not(:empty)::before { margin-right: .75em; }
    .divider:not(:empty)::after { margin-left: .75em; }

    .sso-info-note {
      margin-top: 1.5rem; padding: 0.75rem 1rem; border-radius: 10px;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid var(--border-color);
      font-size: 0.8rem; color: var(--text-secondary);
      display: flex; gap: 0.5rem; align-items: flex-start; line-height: 1.4;
    }
    .sso-info-note span.icon { font-size: 1.1rem; line-height: 1; }

    /* Footer */
    .main-footer {
      background: var(--bg-secondary);
      border-top: 1px solid var(--border-color);
      margin-top: auto; font-size: 0.9rem; color: var(--text-secondary);
    }
    .footer-bottom {
      border-top: 1px solid var(--border-color);
      padding: 1.5rem 0; background: #090e18;
    }
    .footer-container {
      max-width: 1280px; margin: 0 auto; padding: 0 2rem;
    }
    .bottom-container {
      display: flex; justify-content: space-between; align-items: center;
      font-size: 0.8rem; color: var(--text-muted);
    }
    .powered-by { font-weight: 500; color: var(--text-secondary); }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero-container { grid-template-columns: 1fr; gap: 3rem; }
      .hero-text { align-items: center; text-align: center; }
      .hero-text .subtitle { margin-left: auto; margin-right: auto; }
      .hero-services-mini { justify-content: center; }
      .auth-card-container { justify-content: center; }
    }
    @media (max-width: 768px) {
      .hero-section { padding: 2.5rem 1rem; }
      .hero-text h1 { font-size: 2.5rem; }
      .header-container { padding: 0 1rem; flex-direction: column; gap: 1rem; }
      .support-widget { width: 100%; justify-content: center; }
      .support-btn { flex: 1; justify-content: center; }
      .bottom-container { flex-direction: column; gap: 0.75rem; text-align: center; }
    }
  </style>
