    :root {
      --bg-color: #f5f5f7; 
      --card-bg: #fff;
      --text-main: #1d1d1f;
      --text-muted: #86868b;
      --brand-red: #ff3b30;
      --accent-bg: #f2f2f7; /* Changed from red tint to grey */
      --border-soft: #0000000a;
      --shadow-soft: 0 10px 40px #00000008;
      --shadow-hover: 0 20px 40px #00000010;
      --radius-bento: 2rem;
    }

    body {
      background-color: var(--bg-color);
      color: var(--text-main);
    }

    .tracking-tight { 
        letter-spacing: -0.04em; 
    }
    
    .pill-badge {
      background: var(--card-bg);
      border: 1px solid #e5e5ea;
      padding: 6px 16px 6px 6px;
      border-radius: 999px;
      font-size: 0.85rem;
      font-weight: 500;
      box-shadow: 0 4px 12px #00000005;
    }

    .pill-badge .badge-inner {
      background: #f00707;
      color: white;
      padding: 4px 10px;
      border-radius: 999px;
      margin-right: 12px;
      font-size: 0.75rem;
      font-weight: 700;
    }

    .bento-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem 1.5rem 5rem;
    }

    .bento-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }

    .bento-card {
      background: var(--card-bg);
      border-radius: var(--radius-bento);
      padding: 2.5rem;
      border: 1px solid var(--border-soft);
      box-shadow: var(--shadow-soft);
      display: flex;
      flex-direction: column;
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
      cursor: pointer;
    }

    .bento-card:hover {
      transform: scale(0.985) translateY(-4px);
      box-shadow: 0 20px 40px #00000014;
    }

    .logo-box {
      width: 54px;
      height: 54px;
      background-color: var(--accent-bg);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 2rem;
      overflow: hidden;
    }

    .logo-box img {
      width: 28px;
      height: 28px;
      object-fit: contain;
    }

    .b-tag { 
        font-size: 0.75rem; 
        text-transform: uppercase; 
        letter-spacing: 0.05em; 
        font-weight: 700; 
        color: var(--text-muted); 
        margin-bottom: 0.5rem; 
    }

    .b-title { 
        font-size: 1.5rem; 
        font-weight: 700; 
        margin-bottom: 0.75rem; 
        letter-spacing: -0.02em; 
    }

    .b-desc { 
        font-size: 0.95rem; 
        color: var(--text-muted); 
        line-height: 1.5; 
        margin: 0; 
    }

    .col-span-2 { 
        grid-column: span 2; 
    }

    .col-span-4 { 
        grid-column: span 4; 
    }

    @media (width < 992px) {
      .bento-grid { 
        grid-template-columns: repeat(2, 1fr); 
      }

      .col-span-4 { 
        grid-column: span 2; 
      }
    }

    @media (width < 768px) {
      .bento-grid { 
        grid-template-columns: 1fr; 
      }
      
      .col-span-2, .col-span-4 { 
        grid-column: span 1; 
      }
    }

    @keyframes fade-in-up { 
        from { 
            opacity: 0; 
            transform: translateY(20px); 
        }

        to { 
            opacity: 1; 
            transform: translateY(0); 
        } 
    }

    .animate-up { 
        animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; 
        opacity: 0; 
    }

    .del-1 { 
        animation-delay: 0.1s; 
    }

    .del-2 { 
        animation-delay: 0.2s; 
    }

    .del-3 { 
        animation-delay: 0.3s; 
    }