
    body { background: #f0f4f8; }

    .landing {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      padding: 40px 20px;
    }

    .landing-brand {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #0066cc;
      margin-bottom: 12px;
    }

    .landing-title {
      font-size: 32px;
      font-weight: 700;
      color: #1a1a1a;
      margin: 0 0 8px;
      text-align: center;
    }

    .landing-subtitle {
      font-size: 15px;
      color: #666;
      margin: 0 0 48px;
      text-align: center;
    }

    .landing-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      max-width: 560px;
      width: 100%;
    }

    @media (max-width: 480px) {
      .landing-cards { grid-template-columns: 1fr; }
    }

    .landing-card {
      background: white;
      border: 1px solid #e0e0e0;
      border-radius: 12px;
      padding: 32px 24px;
      text-align: center;
      text-decoration: none;
      color: inherit;
      transition: all 0.2s;
      display: block;
    }

    .landing-card:hover {
      border-color: #0066cc;
      box-shadow: 0 6px 20px rgba(0, 102, 204, 0.12);
      transform: translateY(-3px);
    }

    .landing-card-icon {
      font-size: 36px;
      margin-bottom: 14px;
    }

    .landing-card-title {
      font-size: 17px;
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: 8px;
    }

    .landing-card-desc {
      font-size: 13px;
      color: #888;
      line-height: 1.5;
    }

    .landing-card-primary { border-color: #bbdefb; background: #f0f7ff; }
    .landing-card-primary:hover { border-color: #0066cc; background: white; }
 