/* New home page css */
:root {
      --brand-blue: #1e40af;       /* Deep Royal Blue */
      --brand-accent: #3b82f6;     /* Bright Accent Blue */
      --brand-purple: #6366f1;     /* AI Accent Purple */
      --bg-light: #f8fafc;         /* Slate Light Background */
      --text-main: #0f172a;        /* Deep Slate Text */
      --text-muted: #475569;       /* Muted Slate Text */
      --card-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04), 0 2px 6px -1px rgba(15, 23, 42, 0.02);
    }

    body {
      font-family: system-ui, -apple-system, sans-serif;
      color: var(--text-main);
      background-color: #ffffff;
      letter-spacing: -0.01em;
    }

    .section-tag {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--brand-accent);
      display: inline-block;
      margin-bottom: 0.75rem;
    }

    .premium-card {
      background: #ffffff;
      border: 1px solid #f1f5f9;
      border-radius: 16px;
      padding: 2rem;
      box-shadow: var(--card-shadow);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .premium-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px -4px rgba(15, 23, 42, 0.08);
    }

    .badge-outline {
      font-size: 11px;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 6px;
      background: var(--bg-light);
      color: var(--text-muted);
      border: 1px solid #e2e8f0;
    }
    .badge-active-blue {
      background: #eff6ff;
      color: var(--brand-blue);
      border: 1px solid #dbeafe;
    }
    .badge-active-purple {
      background: #f5f3ff;
      color: #7c3aed;
      border: 1px solid #ddd6fe;
    }

    .display-heading {
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.15;
    }
    
    .btn-brand {
      background-color: var(--brand-blue);
      color: #ffffff;
      font-weight: 600;
      border-radius: 10px;
      padding: 12px 28px;
    }
    .btn-brand:hover {
      background-color: #1d4ed8;
      color: #ffffff;
    }

    .ai-card {
      border: 1px solid #e0e7ff;
      background: linear-gradient(180deg, #ffffff 0%, #faf5ff 100%);
    }

/* Home ends */	